tell (current date) as «class isot» asstringtoset current_date totext1thru10 to joinList(aList, delimiter) set retVal to"" set prevDelimiter toAppleScript's text item delimiters setAppleScript's text item delimitersto delimiter set retVal to aList asstring setAppleScript's text item delimitersto prevDelimiter return retVal end joinList to splitString(aString, delimiter) set retVal to {} set prevDelimiter toAppleScript's text item delimiters log delimiter setAppleScript's text item delimitersto {delimiter} set retVal toeverytextitemof aString setAppleScript's text item delimitersto prevDelimiter return retVal end splitString
# See if any tasks in Reminders.app "Next-Actions" list are completed # Mark those that are as @done in TaskPaper # Delete tasks currently in Reminders.app "Now" list tellapplication"TaskPaper"torun tellapplication"Reminders" run tell account "iCloud" telllist"Next-Actions" set tasks toget reminders repeatwith k from1tolengthof tasks set this_task toitem k of tasks set is_completed toget completed of this_task if is_completed istruethen set this_task_name_and_project togetnameof this_task set tmp tomy splitString(this_task_name_and_project astext, ": ") set this_task_name toitem2of tmp tellapplication"TaskPaper" tell document "todo.taskpaper" repeatwith each in search with query this_task_name tell each if entry type of each isnot project type then make tag with properties {name:"done", value:current_date} exitrepeat endif endtell endrepeat endtell endtell endif endrepeat delete reminders endtell endtell endtell
# Move "Next-Actions" tasks from TaskPaper to Reminders.app tellapplication"TaskPaper" run tell document "todo.taskpaper" set debug to"" repeatwith each in search with query "((@today or @overdue or @due <= " & current_date & " ) and not @done)+d" if (containing project of each isnotmissing value) and (entry type of each isnot project type) and (entry type of each isnot note type) then set containing_project tonameof containing project of each if containing project of (containing project of each) isnotmissing valuethen set containing_project to (nameof containing project of containing project of each) & "/" & nameof containing project of each endif set the_task to containing_project & ": " & nameof each set the_priority to0 set the_note to"" if exists (tag named "priority"of each) then set the_priority to value of tag named "priority"of each endif if exists (note of each) then set the_note tonameof note of each endif tellapplication"Reminders" run tell account "iCloud" telllist"Next-Actions" set newremin to make new reminder setnameof newremin to the_task set priority of newremin to the_priority asnumber set body of newremin to the_note endtell endtell endtell endif endrepeat endtell endtell
# Move Reminders.app inbox to TaskPaper # Include the due date, if there is one tellapplication"Reminders" tell account "iCloud" telllist"Inbox" set inbox_contents to (get reminders) iflengthof inbox_contents isgreater than0then repeatwith k from1tolengthof inbox_contents set this_todo toitem k of inbox_contents set inbox_item to"- " & (getnameof this_todo) set due_date to (get due dateof this_todo) set due_date_string to"" if due_date isnotmissing valuethen set y totext -4thru -1of ("0000" & (yearof due_date)) set m totext -2thru -1of ("00" & ((monthof due_date) asinteger)) set d totext -2thru -1of ("00" & (dayof due_date)) set due_date_string to" @due(" & y & "-" & m & "-" & d & ")" endif set inbox_item to inbox_item & due_date_string tellapplication"TaskPaper" tell document "todo.taskpaper" tell project "Inbox" make new entry with properties {name:inbox_item} endtell save endtell endtell delete this_todo endrepeat endif endtell endtell endtell tellapplication"Reminders"to quit