You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Modifications : 1.1 - 21/05/13 - CR Added a line so we add a task to include line to sqlite setup as well
8
+
# : 1.2 - 11/06/2013 - CR - Added a new line to check the headers are correct in the script
9
+
10
+
# Description : This will create a new project titled with the name of the script and have all of the actions so I can record/track/document my scripts
11
+
12
+
-- Display a prompt to get the script title, this will also be the project name
13
+
14
+
display dialog"Name of the script" default answer ""
-- Set the date to start the project to today's date
34
+
35
+
setdateTodayto (current date)
36
+
37
+
-- Create the project in the given folder
38
+
39
+
setMyProject1to make new project withproperties {name:scriptName, context:pContext} atendof project of myFolder
40
+
tell MyProject1
41
+
42
+
-- Create the tasks
43
+
44
+
setMyActionto make new task withproperties {name:"Script tested", context:pContext, start date:dateToday}
45
+
setMyActionto make new task withproperties {name:"Fully commented", context:pContext, start date:dateToday}
46
+
setMyActionto make new task withproperties {name:"Headers added", context:pContext, start date:dateToday}
47
+
setMyActionto make new task withproperties {name:"Copied to right directory in the scripts directory", context:tContext, start date:dateToday}
48
+
setMyActionto make new task withproperties {name:"Copied to the github directory", context:tContext, start date:dateToday}
49
+
setMyActionto make new task withproperties {name:"Script copied into evernote", context:tContext, start date:dateToday}
50
+
setMyActionto make new task withproperties {name:"Note location copied to main page in Scripts note in evernote", context:tContext, start date:dateToday}
51
+
setMyActionto make new task withproperties {name:"Edited the mysql_setup.sql to include the new script", context:tContext, start date:dateToday}
52
+
setMyActionto make new task withproperties {name:"Edited the sqlite_setup.sql to include the new script", context:tContext, start date:dateToday}
53
+
setMyActionto make new task withproperties {name:"Inserted the record into the databases", context:tContext, start date:dateToday}
0 commit comments