1 -------------------------------------------------------------------------------
2 -- Tools to deal with notes
3 -------------------------------------------------------------------------------
4 -------------------------------------------------------------------------------
6 -------------------------------------------------------------------------------
8 --- Opens the daily note
9 -- @param configuration tNotaConfiguration the plugin configuration
10 function open_daily(configuration)
11 error("Not yet implemented")
14 --- Opens the weekly note
15 -- @param configuration tNotaConfiguration the plugin configuration
16 function open_weekly(configuration)
17 error("Not yet implemented")
20 --- Opens the monthly note
21 -- @param configuration tNotaConfiguration the plugin configuration
22 function open_monthly(configuration)
23 error("Not yet implemented")
26 --- Opens the seasonal note
27 -- @param configuration tNotaConfiguration the plugin configuration
28 function open_seasonal(configuration)
29 error("Not yet implemented")
32 --- Opens the yearly note
33 -- @param configuration tNotaConfiguration the plugin configuration
34 function open_yearly(configuration)
35 error("Not yet implemented")
38 --- Opens an arbitrary note
39 -- @param configuration tNotaConfiguration the plugin configuration
40 function open_note(configuration)
41 error("Not yet implemented")
44 -------------------------------------------------------------------------------
46 -------------------------------------------------------------------------------