-
Notifications
You must be signed in to change notification settings - Fork 0
/
CronniX todo.oo3
1065 lines (1065 loc) · 31.7 KB
/
CronniX todo.oo3
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0" encoding="utf-8" standalone="no"?>
<!DOCTYPE outline PUBLIC "-//omnigroup.com//DTD OUTLINE 3.0//EN" "http://www.omnigroup.com/namespace/OmniOutliner/xmloutline-v3.dtd">
<outline xmlns="http://www.omnigroup.com/namespace/OmniOutliner/v3">
<style-attribute-registry>
<style-attribute version="0" key="font-family" group="font" name="family" class="string">Helvetica</style-attribute>
<style-attribute version="1" key="font-fill" group="font" name="fill color" class="color">
<color w="0"/>
</style-attribute>
<style-attribute version="0" key="font-italic" group="font" name="italic" class="bool">no</style-attribute>
<style-attribute version="0" key="font-size" group="font" name="size" class="number">12</style-attribute>
<style-attribute version="0" key="font-weight" group="font" name="weight" class="number">5</style-attribute>
<style-attribute version="0" key="item-gutter-color(com.omnigroup.OmniOutliner)" group="row" name="gutter color" class="color">
<color w="0" a="0"/>
</style-attribute>
<style-attribute version="0" key="paragraph-first-line-head-indent" group="paragraph" name="first line head indent" class="number">0</style-attribute>
<style-attribute version="0" key="paragraph-head-indent" group="paragraph" name="head indent" class="number">0</style-attribute>
<style-attribute version="1" key="underline-color" group="underline" name="color" class="color">
<color w="0"/>
</style-attribute>
<style-attribute version="1" key="underline-style" group="underline" name="style" class="enum">
<enum-name-table default-value="0">
<enum-name-table-element value="0" name="none"/>
<enum-name-table-element value="1" name="single"/>
<enum-name-table-element value="2" name="thick"/>
<enum-name-table-element value="9" name="double"/>
</enum-name-table>
</style-attribute>
</style-attribute-registry>
<settings>
<base-style>
<style>
<value key="item-gutter-color(com.omnigroup.OmniOutliner)">
<color r="1" g="1" b="1"/>
</value>
</style>
</base-style>
</settings>
<editor content-size="{567, 660}">
<note-split-view is-note-expanded="no"/>
<selected-rows ids="g1eqA67Erz4"/>
<selected-columns ids="f00822ae3c666f44095581d7"/>
<selected-characters range="{0, 0}"/>
</editor>
<columns>
<column id="c11a4aaa3d6f41824a2b0104" type="text" width="18" minimum-width="18" maximum-width="18" text-export-width="1" is-note-column="yes">
<title>
<text>
<p/>
</text>
</title>
</column>
<column id="f00822ae3c666f44095581d7" type="text" width="531" minimum-width="13" maximum-width="1000000" text-export-width="72" is-outline-column="yes">
<title>
<text>
<p/>
</text>
</title>
</column>
</columns>
<root>
<item id="nVA3JqnqiAg" expanded="yes">
<style/>
<style>
<value key="font-size">11</value>
</style>
<values>
<text>
<p>
<run>
<lit>3.1 Todo, bugs</lit>
</run>
</p>
</text>
</values>
<children>
<item id="g1eqA67Erz4">
<values>
<text>
<p>
<run>
<style>
<value key="font-weight">9</value>
<value key="paragraph-head-indent">35</value>
</style>
<lit>From: </lit>
</run>
<run>
<style>
<value key="paragraph-head-indent">35</value>
</style>
<lit>James Grubic </lit>
</run>
<run>
<style>
<value key="paragraph-head-indent">35</value>
</style>
<lit><cell href="mailto:james.grubic@bsd7.org" name="james.grubic@bsd7.org"/></lit>
</run>
<run>
<style>
<value key="paragraph-head-indent">35</value>
</style>
</run>
</p>
<p>
<run>
<style>
<value key="font-weight">9</value>
<value key="paragraph-head-indent">31</value>
</style>
<lit>Date: </lit>
</run>
<run>
<style>
<value key="paragraph-head-indent">31</value>
</style>
<lit>18. Mai 2007 18:39:56 MESZ</lit>
</run>
</p>
<p>
<run>
<style>
<value key="font-weight">9</value>
<value key="paragraph-head-indent">21</value>
</style>
<lit>To: </lit>
</run>
<run>
<style>
<value key="paragraph-head-indent">21</value>
</style>
<lit><cell href="mailto:info@abstracture.de" name="info@abstracture.de"/></lit>
</run>
<run>
<style>
<value key="paragraph-head-indent">21</value>
</style>
</run>
</p>
<p>
<run>
<style>
<value key="font-weight">9</value>
<value key="paragraph-head-indent">47</value>
</style>
<lit>Subject: Bug in Cronnix?</lit>
</run>
</p>
<p>
<run>
<style>
<value key="font-size">12</value>
</style>
</run>
</p>
<p>
<run>
<style>
<value key="font-size">12</value>
</style>
<lit>Hello,</lit>
</run>
</p>
<p>
<run>
<style>
<value key="font-size">12</value>
</style>
</run>
</p>
<p>
<run>
<style>
<value key="font-size">12</value>
</style>
<lit>I think I found a bug in Cronnix.</lit>
</run>
</p>
<p>
<run>
<style>
<value key="font-size">12</value>
</style>
</run>
</p>
<p>
<run>
<style>
<value key="font-size">12</value>
</style>
<lit>When I drag a job from the bottom of the list to the top, the user field (root) became embedded into the command (/bru/checkschedule). This really messed up everything in the Crontab file and I had to start completely from scratch by deleting all entries and entering them again.</lit>
</run>
</p>
<p>
<run>
<style>
<value key="font-size">12</value>
</style>
</run>
</p>
<p>
<run>
<style>
<value key="font-size">12</value>
</style>
</run>
</p>
<p>
<run>
<style>
<value key="font-size">12</value>
</style>
<lit>James</lit>
</run>
</p>
</text>
</values>
</item>
</children>
</item>
<item id="eIIXh84TNk-" expanded="yes" state="indeterminate">
<values>
<text>
<p>
<run>
<lit>3.0 Todo, bugs</lit>
</run>
</p>
</text>
</values>
<children>
<item id="d6E_Kbs3mJT">
<values>
<text>
<p>
<run>
<lit>Hide intervals tab</lit>
</run>
</p>
</text>
</values>
</item>
<item id="iKUIFs1ON_u">
<values>
<text>
<p>
<run>
<lit>add Catalan translation</lit>
</run>
</p>
</text>
</values>
</item>
<item id="bVTee-0nnOB" state="checked">
<values>
<text>
<p>
<run>
<lit>Bug: line breaks in info string</lit>
</run>
</p>
</text>
</values>
<children>
<item id="jmBsWH5nb5n" state="checked">
<values>
<text>
<p>
<run>
<lit>implemented write out multi info lines</lit>
</run>
</p>
</text>
</values>
</item>
<item id="njCJgjGEDxd" state="checked">
<values>
<text>
<p>
<run>
<lit>read back fails for a 14 line test case (fixed -- now using indexOfObjectIdentical instead of indexOfObject)</lit>
</run>
</p>
</text>
</values>
</item>
</children>
</item>
<item id="mmI8ucKN2Qt" state="checked">
<values>
<text>
<p>
<run>
<lit>Bug: add new env vars after the last env var, not at the end of the list</lit>
</run>
</p>
</text>
</values>
</item>
<item id="g2XpMeIBcyg" state="checked">
<values>
<text>
<p>
<run>
<lit>Env var key and value changes to "Value" when tabbing through</lit>
</run>
</p>
</text>
</values>
</item>
<item id="luad-vdOfq8" state="checked">
<values>
<text>
<p>
<run>
<lit>index out of bounds on duplicate last line</lit>
</run>
</p>
</text>
</values>
</item>
<item id="oDOHDXsSJs5" state="checked">
<values>
<text>
<p>
<run>
<lit>keep "@" commands</lit>
</run>
</p>
</text>
</values>
</item>
<item id="hc8KxBpC87S" state="checked">
<values>
<text>
<p>
<run>
<lit>allow rearranging of tasks</lit>
</run>
</p>
</text>
</values>
<children>
<item id="gPv5JoIQiWY" state="checked">
<values>
<text>
<p>
<run>
<lit>tasks are copied right now instead of moved</lit>
</run>
</p>
</text>
</values>
</item>
<item id="gmzkWh_MOzQ" state="checked">
<values>
<text>
<p>
<run>
<lit>moving backwards overwrites entry</lit>
</run>
</p>
</text>
</values>
</item>
</children>
</item>
<item id="fE9lKGWQUYT" state="checked">
<values>
<text>
<p>
<run>
<lit>allow rearranging of env vars</lit>
</run>
</p>
</text>
</values>
<children>
<item id="acF4zXrF2iD" state="checked">
<values>
<text>
<p>
<run>
<lit>moving backwards overwrites entry</lit>
</run>
</p>
</text>
</values>
</item>
</children>
</item>
<item id="bjFR9SaX87K" state="checked">
<values>
<text>
<p>
<run>
<lit>implement add, remove, replace env var test (especially about where they are added in a crontab -- after the last env var)</lit>
</run>
</p>
</text>
</values>
<children>
<item id="hztGa7rKS2t" state="checked">
<values>
<text>
<p>
<run>
<lit>add/insert</lit>
</run>
</p>
</text>
</values>
</item>
<item id="lTKHm3e35ne" state="checked">
<values>
<text>
<p>
<run>
<lit>remove</lit>
</run>
</p>
</text>
</values>
</item>
</children>
</item>
<item id="kKVelBHQb2C" state="checked">
<values>
<text>
<p>
<run>
<lit>Keep structure of 'non-parsed' content (Norton Scheduler)</lit>
</run>
</p>
</text>
</values>
</item>
<item id="aBkQDQu_VRh" state="checked">
<values>
<text>
<p>
<run>
<lit>eliminate flickering on internal D&D</lit>
</run>
</p>
</text>
</values>
</item>
<item id="aShO0zGET4D" state="checked">
<values>
<text>
<p>
<run>
<lit>French translation updates (Michaël Ghez, 2005-01-18)</lit>
</run>
</p>
</text>
</values>
</item>
<item id="ks-MJW3T_Y3" state="checked">
<values>
<text>
<p>
<run>
<lit>@-command parsing bug (Reid Ellis, 2005-01-12)</lit>
</run>
</p>
</text>
</values>
</item>
<item id="o1TKv6Kko-k" state="checked">
<values>
<text>
<p>
<run>
<lit>add Japanese Help (credits: Yuzuru Shiraiwa)</lit>
</run>
</p>
</text>
</values>
</item>
</children>
</item>
<item id="oFTmgLhTE_0" expanded="yes" state="indeterminate">
<values>
<text>
<p>
<run>
<lit>Feature requests</lit>
</run>
</p>
</text>
</values>
<children>
<item id="kG4Bna5zUBE" expanded="yes">
<values>
<text>
<p>
<run>
<lit>Preferences</lit>
</run>
</p>
</text>
</values>
<children>
<item id="cmkzb6t4Wq_">
<values>
<text>
<p>
<run>
<lit>Prefix open on dnd</lit>
</run>
</p>
</text>
</values>
</item>
<item id="hiaKc0JXDG8">
<values>
<text>
<p>
<run>
<lit>authorize for system crontab reading</lit>
</run>
</p>
</text>
</values>
</item>
<item id="pQLtizzbbh3">
<values>
<text>
<p>
<run>
<lit>default task (time, command)</lit>
</run>
</p>
</text>
</values>
</item>
<item id="fAIVWCZ-mwh">
<values>
<text>
<p>
<run>
<lit>open user crontab on start</lit>
</run>
</p>
</text>
</values>
</item>
<item id="e1dw4ERAeKG">
<values>
<text>
<p>
<run>
<lit>double click edit / edit dialog</lit>
</run>
</p>
</text>
</values>
</item>
</children>
</item>
<item id="oF1z-1JkEuV">
<values>
<text>
<p>
<run>
<lit>button "System crontab" (Mark Nettleingham, 2004-12-05)</lit>
</run>
</p>
</text>
</values>
</item>
<item id="bZpPYWaobTi">
<values>
<text>
<p>
<run>
<lit>add support for cron.log (Mark Nettleingham, 2004-12-05</lit>
</run>
</p>
</text>
</values>
</item>
<item id="erq5-imSdtm">
<values>
<text>
<p>
<run>
<lit>cut, copy, paste for tasks</lit>
</run>
</p>
</text>
</values>
</item>
<item id="hr5SmaQ2xFT">
<values>
<text>
<p>
<run>
<lit>undo</lit>
</run>
</p>
</text>
</values>
</item>
<item id="eL68O1cI4-X">
<values>
<text>
<p>
<run>
<lit>revert to saved</lit>
</run>
</p>
</text>
</values>
</item>
<item id="oWbLUd8FFyb">
<values>
<text>
<p>
<run>
<lit>Network crontab (ssh)</lit>
</run>
</p>
</text>
</values>
</item>
<item id="ceUKltlToE1">
<values>
<text>
<p>
<run>
<lit>include "man 5 crontab" in docs</lit>
</run>
</p>
</text>
</values>
</item>
<item id="eI0_PneZRhY">
<values>
<text>
<p>
<run>
<lit>Unicode encoding to support extended characters</lit>
</run>
</p>
</text>
</values>
</item>
<item id="pZBT80Yh96U">
<values>
<text>
<p>
<run>
<lit>"run next minute" command</lit>
</run>
</p>
</text>
</values>
</item>
<item id="i4ItIcPg8OC">
<values>
<text>
<p>
<run>
<lit>sudo bei "Run now" fuer andere Benutzer</lit>
</run>
</p>
</text>
</values>
</item>
<item id="lk-lPVZabFj">
<values>
<text>
<p>
<run>
<lit>Crontab write preview</lit>
</run>
</p>
</text>
</values>
</item>
<item id="eWt8CfPsBHz">
<values>
<text>
<p>
<run>
<lit>scriptability</lit>
</run>
</p>
</text>
</values>
</item>
<item id="nbl1EXKW5z8">
<values>
<text>
<p>
<run>
<lit>display "@" commands</lit>
</run>
</p>
</text>
</values>
</item>
<item id="bXV9F604A_6">
<values>
<text>
<p>
<run>
<lit>anacron </lit>
</run>
<run>
<style>
<value key="font-family">Monaco</value>
<value key="font-fill">
<color r="0.101961" g="0.101961" b="1"/>
</value>
<value key="font-size">10</value>
<value key="underline-color">
<color r="0.101961" g="0.101961" b="1"/>
</value>
<value key="underline-style">single</value>
</style>
<lit><cell href="http://sourceforge.net/projects/anacron" name="sourceforge.net—anacron"/></lit>
</run>
</p>
</text>
</values>
</item>
<item id="cS58jAf7J0z">
<values>
<text>
<p>
<run>
<lit>at</lit>
</run>
</p>
</text>
</values>
</item>
<item id="gm1ow8ptqnz">
<values>
<text>
<p>
<run>
<lit>sendmail instructions (folder locations)</lit>
</run>
</p>
</text>
</values>
</item>
<item id="cA_bH_EQz4j">
<values>
<text>
<p>
<run>
<lit>2) allow hidden directories to be browsed to import files. for example, an admin might want to set up multiple users identically.</lit>
</run>
</p>
<p/>
<p>
<run>
<style>
<value key="font-italic">yes</value>
</style>
<lit>Have you tried Apple-Shift-G to enter a hidden directory? I'll look into it.</lit>
</run>
</p>
</text>
</values>
</item>
<item id="no2v40-23OF">
<values>
<text>
<p>
<run>
<lit>3) I think it would be nice if entries could be copied/moved between user crontab files, and moved to/from the system crontab. a move to the system crontab would insert the username, a move from the system crontab would delete the username and move to that user's crontab. anacron only seems to mind the system contab, so moving entries would control if anacron will mind an entry.</lit>
</run>
</p>
<p/>
<p>
<run>
<style>
<value key="font-italic">yes</value>
</style>
<lit>CronniX 3 has full support for moving/dragging/dropping tasks. No multi document at the moment, but I might add it at some point (on the todo list).</lit>
</run>
</p>
</text>
</values>
</item>
<item id="m7ckgT0vdJZ">
<style>
<value key="font-family">Monaco</value>
<value key="font-size">10</value>
</style>
<values>
<text>
<p>
<run>
<style>
<value key="font-fill">
<color r="0" g="0" b="0.866667"/>
</value>
<value key="paragraph-first-line-head-indent">10</value>
<value key="paragraph-head-indent">10</value>
</style>
<lit>"dailyWakeup" version 1, released March 21 2004,is a command line program that will allow the user to queue a wakeup request to their Macintosh. I use the program to wake up my Mac a couple of minutes before each cron job is scheduled to run.</lit>
</run>
</p>
<p>
<run>
<style>
<value key="font-fill">
<color r="0" g="0" b="0.866667"/>
</value>
<value key="paragraph-first-line-head-indent">10</value>
<value key="paragraph-head-indent">10</value>
</style>
</run>
</p>
<p>
<run>
<lit><cell href="http://homepage.mac.com/levanj/Cocoa/" name="homepage.mac.com—Cocoa"/></lit>
</run>
</p>
</text>
</values>
</item>
<item id="p4_mTslmZtx" state="checked">
<values>
<text>
<p>
<run>
<lit>sample submission on webpage</lit>
</run>
</p>
</text>
</values>
</item>
<item id="dZ20qEMOLBc" state="checked">
<values>
<text>
<p>
<run>
<lit>samples on webpage</lit>
</run>
</p>
</text>
</values>
</item>
<item id="b6461EE73Ql" state="checked">
<values>
<text>
<p>
<run>
<lit>comments for commands (Colin Foster)</lit>
</run>
</p>
</text>
</values>
</item>
<item id="jduKTJ-PZnE" state="checked">
<values>
<text>
<p>
<run>
<lit>new etc context items (click area sensitive)</lit>
</run>
</p>
</text>
</values>
</item>
<item id="j0A2XYqQvYr" state="checked">
<values>
<text>
<p>
<run>
<lit>"New..." every hour, every X hour, etc...</lit>
</run>
</p>
</text>
</values>
</item>
<item id="meUE0XMpS3E" state="checked">
<values>
<text>
<p>
<run>
<lit>better syntax description, samples</lit>
</run>
</p>
</text>
</values>
</item>
<item id="bfLudwkbz1w" state="checked">
<values>
<text>
<p>
<run>
<lit>buttons for "Run now" und "Insert program"</lit>
</run>
</p>
</text>
</values>
</item>
<item id="a0X_TOfMY_t" state="checked">
<values>
<text>
<p>
<run>
<lit>task dialog</lit>
</run>
</p>
</text>
</values>
</item>
<item id="awal2Oob9e6" state="checked">
<values>
<text>
<p>
<run>
<lit>save reordered columns</lit>
</run>
</p>
</text>
</values>
</item>
<item id="m6YaY2jU-c4" state="checked">
<values>
<text>
<p>
<run>
<lit>hor. scrollbar (for command)</lit>
</run>
</p>
</text>
</values>
</item>
<item id="ajINK2mxL_a" state="checked">
<values>
<text>
<p>
<run>
<lit>weblink in help menu/help file</lit>
</run>
</p>
</text>
</values>
</item>
</children>
</item>
<item id="fl95byqMZ7t" expanded="yes">
<values>
<text>
<p>
<run>
<lit>Low priority / hard to address bugs</lit>
</run>
</p>
</text>
</values>
<children>
<item id="aHBC-Dle84z">
<values>
<text>
<p>
<run>
<lit>Bug: Large crontab</lit>
</run>
</p>
</text>
</values>
</item>
<item id="fBOMVMG_kU7">
<values>
<text>
<p>
<run>
<lit>I was editing a cron file for an admin user, and tried to run one of the commands. the request for authentication (password) appeared in the console, but I couldn't respond to answer it.</lit>
</run>
</p>
<p/>
<p>
<run>
<style>
<value key="font-italic">yes</value>
</style>
<lit>I'm not sure what could have caused this but the file reading/writing is redone in CronniX 3 (not released, no ETA). From your description it sounds like running a command on an unsaved crontab triggers save first and then blocks because the main window is in the background. I'll investigate.</lit>
</run>
</p>
</text>
</values>
</item>
</children>
</item>
<item id="kFFP0qKIQiY">
<values>
<text>