-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathold_ChangeLog
2206 lines (1403 loc) · 70.5 KB
/
old_ChangeLog
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
commit 917673ab8b107aebdf529e6ffd96faefa9f0da55
Author: William Xu <[email protected]>
Date: Sun Sep 7 22:25:25 2008 +0800
minor updates.
commit 6824dc80bc32cb38fab53e53aa0bab1dd01f6111
Author: William Xu <[email protected]>
Date: Tue Aug 26 22:02:54 2008 +0800
Revert "Release 1.0."
This reverts commit a9df80e22e1dc5f461d1f7ff8cedc9f39f3fff9c.
commit d9f95c0c04028a8377cc34892dc7709fe6ae2f06
Author: William Xu <[email protected]>
Date: Tue Aug 26 22:01:40 2008 +0800
*** empty log message ***
commit a9df80e22e1dc5f461d1f7ff8cedc9f39f3fff9c
Author: William Xu <[email protected]>
Date: Tue Aug 26 21:49:28 2008 +0800
Release 1.0.
commit 885d31bd7eda6d3aa76959b68a43da965d46ff4f
Author: William Xu <[email protected]>
Date: Sat Aug 2 10:28:32 2008 +0800
(generic-apt-fink-upgrade): Default to "yes" for interactive questions.
commit 1c3e7125eee73d3dd78a5c552965f6376b862628
Author: William Xu <[email protected]>
Date: Fri Aug 1 12:53:37 2008 +0800
(calendar-generate-month): New function. generate-calendar-month has been
changed to calendar-generate-month since 23, update to reflect this.
commit a81b81cebcb67e0ec64544bb4f87386f7ffd8ebd
Author: William Xu <[email protected]>
Date: Fri Aug 1 12:34:11 2008 +0800
chinese-date-diary-pattern, etc: Update them to work under 23.
commit a6e5154264c252b64ede733a4ded1d0bf897d85b
Author: William Xu <[email protected]>
Date: Sun Jul 13 18:54:29 2008 +0900
(buffer-action-match): Catch `string-match' error.
commit c95f9fedfa43b3fa2c78688637673064fa37ea88
Author: William Xu <[email protected]>
Date: Sat Jul 12 20:55:13 2008 +0900
Fix typo.
commit f079587aaf0512f544764423b48be92e3160e7a0
Author: William Xu <[email protected]>
Date: Sat Jul 12 20:54:28 2008 +0900
Minor updates.
commit 21d91f5938dbaa2859d9c34100c121a2963c18f2
Author: William Xu <[email protected]>
Date: Sat Jul 12 20:53:04 2008 +0900
* Update variable / function namings due to filename changes.
* Release 0.1.
commit ca2a39958180cb057bcfb9a121f4e92c33da6948
Author: William Xu <[email protected]>
Date: Sat Jul 12 20:47:34 2008 +0900
Renamed: scheme-extra.el -> chicken-scheme-extras.el
commit 8800ea709f249754a39a1a083801a37b18dd8600
Author: William Xu <[email protected]>
Date: Fri Jul 11 16:50:15 2008 +0900
(calendar-mark-holidays, mark-calendar-holidays): defadvice both of them for 23
and 22, respectively.
Hmm, (defalias 'mark-calendar-holidays 'calendar-mark-holidays), then defadvice
only calendar-chinese-year doesn't work. :(
commit 26912193d8f818b8dbba3024f78c27bd0cd8223d
Author: William Xu <[email protected]>
Date: Fri Jul 11 16:29:41 2008 +0900
* Add a new section Compatabilities.
* chinese-year has been renamed to calendar-chinese-year in 23, fix this.
commit 4586d9e3040cc6e7941e3496dbdc36c49d8e77d1
Author: William Xu <[email protected]>
Date: Fri Jul 11 11:48:03 2008 +0900
Make 'if indented as in elisp.
commit 4ebc2931d84c31b902b8a24227148f61eaa58475
Author: William Xu <[email protected]>
Date: Thu Jul 10 13:19:43 2008 +0900
Initial commit.
commit 611f067591e22c6ca4cbdd374db2be6d64a11910
Author: William Xu <[email protected]>
Date: Tue Jul 8 14:54:47 2008 +0900
Bump version to 0.4a.
commit 3a6f5c24f7b4972546eff359619b038f64e28e67
Author: William Xu <[email protected]>
Date: Sun Jul 6 21:02:45 2008 +0900
Commentary updates.
commit 6c2ce994caf9d8ed03c66f5b135d645b43338882
Author: William Xu <[email protected]>
Date: Sun Jul 6 20:39:12 2008 +0900
Release 0.3, bump version to 0.4a.
commit 961358c97edc6b5b1b0c8e75685f3a3f036b5732
Author: William Xu <[email protected]>
Date: Sun Jul 6 01:09:27 2008 +0900
Bump version to 0.2a.
commit 556dfe57e6a1544800a70a10ee0aba0055e7a7bf
Author: William Xu <[email protected]>
Date: Sun Jul 6 00:53:25 2008 +0900
Commentary fix.
commit 21a34ebecf1634e78ebc011ea59ebbf0c3cf5eac
Author: William Xu <[email protected]>
Date: Sun Jul 6 00:39:02 2008 +0900
Rewrite many parts, now running multiple sessions(eg, fink on localhost, apt-get
on a remote debian machine) also work well.
commit 068a91dc0f00c6b9c8d9ad667674888470c1cf00
Author: William Xu <[email protected]>
Date: Fri Jul 4 17:52:24 2008 +0900
smart-operator c++ mode updates.
commit d5b9ada8ff92593bbb0f0ba667d2b039f86d234d
Author: William Xu <[email protected]>
Date: Fri Jul 4 17:51:50 2008 +0900
Fix spelling.
commit b558df09b6a0fb6d210f0b22dcdae5b9d6fddbf3
Author: William Xu <[email protected]>
Date: Fri Jul 4 17:48:58 2008 +0900
Also updating menus for texinfo mode.
commit b2ceb600fd855af52e644713b3dfcfa4137c2059
Author: William Xu <[email protected]>
Date: Wed Jul 2 17:58:48 2008 +0900
* easy-todo-regexp-face-alist, easy-todo-regexps, easy-todo-matcher: New
variables.
* Change color scheme for items in different status.
commit 560e025cf17446e5c684e4172af9b9bcc41dac38
Author: William Xu <[email protected]>
Date: Wed Jul 2 17:08:00 2008 +0900
* easy-todo-flags: New variable.
* Improve Commentary.
commit a928975bad88fc8ff8b6bb40461c82884cfa3094
Author: William Xu <[email protected]>
Date: Wed Jul 2 17:03:30 2008 +0900
* (easy-todo-item-done): New function.
* Bind easy-todo-item-interrupted from "C-c C-u" to "C-c C-i".
commit a46fddafab4453e3557febdd6711f17a04784dab
Author: William Xu <[email protected]>
Date: Wed Jul 2 16:54:06 2008 +0900
Rename "*-unfinished-*" to "*-interrupted-*", and replace "^x" with "^|".
commit 67259937a35d3fbe364fd5735a6c35451e908f89
Author: William Xu <[email protected]>
Date: Wed Jul 2 02:02:31 2008 +0900
* Don't sort buffer automatically when switching item status.
* Bump version to 3.0a
* (easy-todo-sort-region): save-excursion doesn't work for we're
modifying the buffer with insertion and deletion? Anyway, thus let's
disable save-excursion and simply place final point at the beginning
of the region.
* (easy-todo-item-todo, and alike): Improve docs.
commit ff9459d389f4d6c1423e5079f05d58a3904dbc0e
Author: William Xu <[email protected]>
Date: Mon Jun 23 19:21:37 2008 +0900
Initial commit: Turn on bracketphobia-hide only for bracketphobia-modes.
commit e98486925a88d7dee6ce9957ec3cc9f8c0363086
Author: William Xu <[email protected]>
Date: Wed Jun 18 21:37:37 2008 +0900
Update Commentary.
commit 249c1327cf4685402308e8525db49e8159f1d976
Author: William Xu <[email protected]>
Date: Wed Jun 18 21:36:59 2008 +0900
finkinfo-keywords: Add two new fields: "SetLIBS","SetCFLAGS".
commit 812f7fbbbab701c69f207f84e5dbcc059a981152
Author: William Xu <[email protected]>
Date: Wed Jun 18 19:49:30 2008 +0900
Update Commentary.
commit cde494b43d9ada1bdfa47af39aafc9d576f4e6b1
Author: William Xu <[email protected]>
Date: Wed Jun 18 19:35:45 2008 +0900
(finkinfo-insert-keyword): Append ":" after keywords.
commit 313f06b5376c0dd02b50b437a85318bd3e945099
Author: William Xu <[email protected]>
Date: Wed Jun 18 19:33:20 2008 +0900
Init commit.
commit b9df73bdbc4409db1045684daff489fb4a35d874
Author: William Xu <[email protected]>
Date: Mon Jun 9 13:19:10 2008 +0900
Add new command listfiles and fix package caching support.
* (generic-apt-listfiles): New function.
* generic-apt-available-pkgs: Make it function properly.
commit aca35f20b169ad0a99fa70b3f76a753dbe6e767b
Author: William Xu <[email protected]>
Date: Sun May 18 18:20:08 2008 +0900
Revert "Add a file variable: -*- coding: utf-8; -*-."
This reverts commit 4cd7936aa7f73ac16285f63092d9312459d64a66.
commit df6b14b1b0732c53d9f5aebed2f0b2cc921be1f7
Author: William Xu <[email protected]>
Date: Sun May 18 18:16:52 2008 +0900
Upgrade licence to GPL3+.
commit 4cd7936aa7f73ac16285f63092d9312459d64a66
Author: William Xu <[email protected]>
Date: Sun May 18 17:39:26 2008 +0900
Add a file variable: -*- coding: utf-8; -*-.
commit 04814d0e870a101536084d5e9eaf3af8f7f685bc
Author: William Xu <[email protected]>
Date: Sun May 18 17:21:19 2008 +0900
Release v0.9.
commit e3fc587fd67ff3f6d2d017ab4cca5bb16e903334
Author: William Xu <[email protected]>
Date: Sat May 17 22:59:14 2008 +0900
*** empty log message ***
commit b9f94501e1ef1807d0d11f4538a50dd675ed4c7d
Author: William Xu <[email protected]>
Date: Sat May 17 22:58:26 2008 +0900
(buffer-action-compile): Now when a user's edited the compile command
interactively, we can save it for next time use !
commit 8065b4d3fa2e95eb75846389483819cc405e433b
Author: William Xu <[email protected]>
Date: Fri May 16 19:56:18 2008 +0900
Now Makefile can build for subdirs.
commit 5f17f1fb004cbbd76fe87009506c18d0f7a297f5
Author: William Xu <[email protected]>
Date: Fri May 16 19:39:30 2008 +0900
generic-apt-available-pkgs: Typo fix.
commit 52b68624cc8e52e7b4a28b0d7aa0df848a75be4a
Author: William Xu <[email protected]>
Date: Fri May 16 19:29:23 2008 +0900
(generic-apt-upgrade-all): New command.
commit 4a900db8383fcc24828a03b238407460fcd204f3
Author: William Xu <[email protected]>
Date: Fri May 16 19:09:06 2008 +0900
generic-apt-*: Add per backend font-lock keywords highlighting setup.
commit d1b8a16ea0f4ba459c8bdc11dc06e1ea80edb4dc
Author: William Xu <[email protected]>
Date: Fri May 16 19:08:22 2008 +0900
buffer-action-table: Add java support.
commit 93f257a6e01639d922696c2de8f1cfe7c9502f95
Author: William Xu <[email protected]>
Date: Fri May 16 19:07:14 2008 +0900
generic-apt-font-lock-keywords: Make font-lock highlighting backend configurable.
commit 009bb86b0c8c93085a789aa749bb4a6c01c5fd7f
Author: William Xu <[email protected]>
Date: Fri May 16 18:57:13 2008 +0900
(generic-apt-edit-sources): Concat "/sudo::" with config filename.
commit a705428a9a5b23a3da8c9bdb6cd4fd1accaa4881
Author: William Xu <[email protected]>
Date: Fri May 16 18:48:52 2008 +0900
(generic-apt-fink-update-available-pkgs): Remove debug command.
commit d21b2a37dcddb467e17bd17ff3350ac54de90caf
Author: William Xu <[email protected]>
Date: Thu May 15 20:56:26 2008 +0900
- When holiday-lunar returns a holiday that is beyond current calendar
view, we should not add it to calendar-holidays.
Testcase: (holiday-lunar 10 21 "Hello"), calendar centered at
2009.01. The correct holidays are 2008.11.18 and 2009.12.07, but
you'll find that 2008.12.07 is marked as holiday incorrectly.
Thanks to wxd@#emacs-cn for reporting this.
commit 4391010525060b6eec61e0798c4a62292d92aaa7
Author: William Xu <[email protected]>
Date: Fri May 2 00:31:53 2008 +0900
- Update keymaps settings, Commentary, Todo.
- (generic-apt): Add a new optional argument `method'.
commit 9e14895b1f3783bb4aa0692df46cdc0f8a88764e
Author: William Xu <[email protected]>
Date: Fri May 2 00:30:20 2008 +0900
Update commentary.
commit e7fbba41360aadb84d7f347082b0052f3d980ca9
Author: William Xu <[email protected]>
Date: Fri May 2 00:08:02 2008 +0900
generic-apt: Initial commit.
fink seems basically working. :-)
commit b6624de8dbd5eaa903072c423baac46015f8f709
Author: William Xu <[email protected]>
Date: Thu Apr 24 00:37:11 2008 +0900
*** empty log message ***
commit 35f3d71868807f4826982c62c3e000af4f8f74c9
Author: William Xu <[email protected]>
Date: Sun Apr 20 15:40:47 2008 +0900
Initial commit.
commit eac38bef9659f6ea626ce7f3429a11c748fbed36
Author: William Xu <[email protected]>
Date: Sat Apr 19 14:54:00 2008 +0000
Comment last change.
darcs-hash:20080419145457-cfa61-9a3672fc22a9e7017d95fdba9b3fbe3d648e6ddf.gz
commit f4bddb6ffc899fea69d55884172ea9beeae0e3af
Author: William Xu <[email protected]>
Date: Sat Apr 19 14:52:00 2008 +0000
Removed to CEjp repo.
darcs-hash:20080419145223-cfa61-6bc1a0d5fe037458b1ed61f9556c2f6c68777cf6.gz
commit cb72c75f02c8398ed02f3caf9afdd686f8b52eed
Author: William Xu <[email protected]>
Date: Tue Apr 15 12:33:00 2008 +0000
- Initial commit.
- (require 'nnheader) to avoid failures encountered after byte-compiling.
darcs-hash:20080415123304-cfa61-76da9e4a8830a9b5fa4de78211027b6d099d11e7.gz
commit 1ee7429c8cff29fe9d0cc4c268700cd27aeb9380
Author: William Xu <[email protected]>
Date: Fri Apr 11 14:36:00 2008 +0000
*** empty log message ***
darcs-hash:20080411143603-cfa61-6c785c6d833c5fe8e1ff1be5058f281b902cec90.gz
commit d8db4ebaaa733f5aef47c9ddf5917226731d70f8
Author: William Xu <[email protected]>
Date: Fri Apr 11 12:21:00 2008 +0000
- update-calendar-mode-line has been renamed to
calendar-update-mode-line in cvs 23, update this. (Thanks to
[email protected] for reporting this.)
- Version bumped to 0.8.3. (Previous version is 0.82, which was bad?
Should be 0.8.2)
darcs-hash:20080411122101-cfa61-92ef2f6b70591c2ff5baf408fe559cbdb0030f20.gz
commit bfa8cc602b3eeb2f7a81f97f9027548f5b34fa34
Author: William Xu <[email protected]>
Date: Tue Apr 1 15:46:00 2008 +0000
*** empty log message ***
darcs-hash:20080401154630-cfa61-197994c1eea4633116ee41304e05e5ded7b9018d.gz
commit 95ebd1d04ec7faa2a5edc9c9fa539a49044d8c6f
Author: William Xu <[email protected]>
Date: Tue Apr 1 07:42:00 2008 +0000
*** empty log message ***
darcs-hash:20080401074256-cfa61-b0177f640f4e1bc14d2629a01f408d382c8f3d3e.gz
commit d1d582463db9b8be68da1892deb2cc5b4c18f10c
Author: William Xu <[email protected]>
Date: Mon Mar 31 06:22:00 2008 +0000
(require 'holidays) for `calendar-holiday-list'.
darcs-hash:20080331062232-cfa61-c20c6dd469894dac5baf41905e6ff90e7e9ffb16.gz
commit b5716107db6ca0dd4f6589a8f4cb6db96e1115cb
Author: William Xu <[email protected]>
Date: Thu Mar 27 03:55:00 2008 +0000
* buffer-action-table: for texinfo-mode compile handler, do not update
menu/nodes automatically now.
darcs-hash:20080327035523-cfa61-52bdddff4b58be0c488027d26926417fce706e8d.gz
commit c28cdf2c551cdc518daaf71efe5f719278cd1086
Author: William Xu <[email protected]>
Date: Wed Mar 26 04:12:00 2008 +0000
buffer-action-table: texinfo-mode, restore original cursor position.
darcs-hash:20080326041239-cfa61-579aef60e4156c93cd2a71b6297ae998910d8889.gz
commit f6b3befa35efe1a16319b272769742eae310c342
Author: William Xu <[email protected]>
Date: Wed Mar 26 04:10:00 2008 +0000
buffer-action-table: Fix compile handler bug for texinfo-mode.
darcs-hash:20080326041002-cfa61-f4cdc3084c3fd41b378657ed7b0fce9c521c0c3c.gz
commit 7623b9c216ff6b49ec855725b898c39fcb85cdbc
Author: William Xu <[email protected]>
Date: Mon Mar 24 15:20:00 2008 +0000
buffer-action-table: When generating info files, make/update menu and
notes automatically.
darcs-hash:20080324152022-cfa61-65c0adcddba60441000f7d700ab08388f4307b60.gz
commit 541ad2d2c068d61b82677ef9a04c9605b0719d9b
Author: William Xu <[email protected]>
Date: Sat Mar 22 15:53:00 2008 +0000
buffer-action-table: Fix run handler for texinfo-mode by using full path
for buffer file.
darcs-hash:20080322155334-cfa61-1bf14847f79a4b475a3eabc796fd0d833d227296.gz
commit 3640661f7ba8944edd43c9a41b109b754a4df895
Author: William Xu <[email protected]>
Date: Thu Mar 20 10:53:00 2008 +0000
buffer-action-table: Fix compile handler for Makefile.
darcs-hash:20080320105332-cfa61-0dc9306a6a0258f3790ba20265dda3edcc44401b.gz
commit a01cb5f919a3e5c9a0070ee15382ac55e6c79ad1
Author: William Xu <[email protected]>
Date: Thu Mar 20 10:52:00 2008 +0000
*** empty log message ***
darcs-hash:20080320105209-cfa61-8cd5b3e155ec97d248d27a5e959ca8c6a0c8bb19.gz
commit 7abff8a1f00c274181f143d13a473915c8668aed
Author: William Xu <[email protected]>
Date: Thu Mar 20 10:50:00 2008 +0000
- Bump version to 3.1.
- buffer-action-table: Add graphviz dot files handler.
darcs-hash:20080320105000-cfa61-84f78365bf3bd1841a1c06213f19c71aeefbf535.gz
commit 88b95206437ff61a6c46757feea8198504b05424
Author: William Xu <[email protected]>
Date: Sat Mar 15 09:32:00 2008 +0000
Initial commit.
darcs-hash:20080315093206-cfa61-03a7f5417294b8924309fed3a788c1fa15f35703.gz
commit cdb2ff84d737bc9bb172808b18d4d511e82d6a24
Author: William Xu <[email protected]>
Date: Sat Mar 15 09:31:00 2008 +0000
wajig.el: Replace occurances of (lambda (el) el) with 'identify.
darcs-hash:20080315093138-cfa61-02ae0c1bb5cb4ce8460d1536fbe5d6e5e4c3b080.gz
commit aa81534118fda823166dcf929ec71354fe491c9d
Author: William Xu <[email protected]>
Date: Wed Mar 12 14:29:00 2008 +0000
(require 'cl) when byte compiling.
darcs-hash:20080312142914-cfa61-fdc0630d2578bbf290689b381ba35a925865c24d.gz
commit 3d0b65d732f01c08e0d7e4a13ea3a492a6478d79
Author: William Xu <[email protected]>
Date: Mon Mar 10 08:33:00 2008 +0000
buffer-action-table: Add Makefile handler.
darcs-hash:20080310083306-cfa61-7e74033c6b3b81720b02a41000962b343ec39cb5.gz
commit 1c4744c7ec3dfe3bf624634a2a5b5d791f7fa1b3
Author: William Xu <[email protected]>
Date: Mon Mar 10 04:00:00 2008 +0000
(dashboard-tenseijingo-callback): Replace dashboard-decode-html
w/url-html-decode-buffer.
darcs-hash:20080310040051-cfa61-8e4eed37bd6d1c24afe4f8e12f58bf6e74d5736b.gz
commit 4628b11703d756029b57f53d84ee1f4c51db5e58
Author: William Xu <[email protected]>
Date: Mon Mar 10 03:59:00 2008 +0000
Seems we'd better skip the already updated widgets.
darcs-hash:20080310035950-cfa61-7c3cec52c78073737c1a18d14eb5fea419a1496a.gz
commit 94996143409331de32a755a68da0d158cf2d9956
Author: William Xu <[email protected]>
Date: Mon Mar 10 03:52:00 2008 +0000
- Sync w/nba website updates.
- Use url-html.el.
darcs-hash:20080310035223-cfa61-3d2ede34c1c40fcb6974e62018879ecb6b4185ff.gz
commit ebbf3ef8fb3acac0409ff2eb77ab9128f86130a3
Author: William Xu <[email protected]>
Date: Fri Mar 7 08:48:00 2008 +0000
(smart-operator-%): Bug fix.
darcs-hash:20080307084807-cfa61-2383016fd8461eced006fbce7a292a32a5dd6241.gz
commit 8000a00ca5833110d2587e914ebee50916eab225
Author: William Xu <[email protected]>
Date: Fri Mar 7 08:29:00 2008 +0000
(smart-operator-%): New function.
darcs-hash:20080307082958-cfa61-d1c57da5c4ad8c5059b1ca9996b13ebc43ceec62.gz
commit e9f2b7ac71109f5d9c88eca5c8530dd705cbdd01
Author: William Xu <[email protected]>
Date: Thu Mar 6 03:59:00 2008 +0000
(cwit-receive-callback): Also keep silent when cwit-use-local is t.
darcs-hash:20080306035927-cfa61-8c04d2a3dd58516f317fcf93905a79045a43f7d8.gz
commit c3b2c78f5705a8c70fc924b2690d81b596b0d023
Author: William Xu <[email protected]>
Date: Thu Mar 6 03:51:00 2008 +0000
(cwit-receive): Turn off `message' in minibuffer when `cwit-use-local'
is t.
darcs-hash:20080306035115-cfa61-e1e17dc8289658d1e36e99d4111dd4708a447fc1.gz
commit a3364abdd4aeb9fc0200c3e68f761c308093b079
Author: William Xu <[email protected]>
Date: Wed Mar 5 10:16:00 2008 +0000
(cwit-generate-script): New function.
darcs-hash:20080305101622-cfa61-e76d5d82323bce7bc093ebdea1c16cc3019b229d.gz
commit 44ce926f4540639a27afeccd79af470e462c0123
Author: William Xu <[email protected]>
Date: Wed Mar 5 07:38:00 2008 +0000
Update TODO.
darcs-hash:20080305073837-cfa61-914c513beeffcedb479ac547bce4e5a7dd9f690b.gz
commit 95b1a6429b670eb3968fde0f610caf142f5d2076
Author: William Xu <[email protected]>
Date: Wed Mar 5 07:37:00 2008 +0000
Now cwit can read from local cached html pages, images. The key
variable is `cwit-use-local'.
Bump to 0.2.1
darcs-hash:20080305073751-cfa61-9d01c8d29d8e9e2e66c4c08768e75c56e3a6bba3.gz
commit 39a63e942befb713ab5e93eab095021b3b537626
Author: William Xu <[email protected]>
Date: Tue Mar 4 15:39:00 2008 +0000
(buffer-action-match): Remove local exit FIXME.
darcs-hash:20080304153916-cfa61-ff2e473388436a3d4f9950a7053763c6459201bd.gz
commit 6b464fcad25b879d83a12dfcae3b22d684ee49d1
Author: William Xu <[email protected]>
Date: Tue Mar 4 14:50:00 2008 +0000
(smart-operator-<): Define `<' as `<>' in sgml-mode.
darcs-hash:20080304145013-cfa61-119f268d72cc297368bdc74122a6a70400d71d89.gz
commit f73539586f2c8f6809a8df6611aa4f6c8266b2ce
Author: William Xu <[email protected]>
Date: Tue Mar 4 07:13:00 2008 +0000
(smart-operator->): In c-mode, place cursor after `->' correctly.
darcs-hash:20080304071350-cfa61-429a2a7a9d90579956c25d7cbeaca40d699a4f15.gz
commit 9a8b0a678a9118b3e1e80e37ee9c2f79c923003c
Author: William Xu <[email protected]>
Date: Mon Mar 3 10:20:00 2008 +0000
*** empty log message ***
darcs-hash:20080303102046-cfa61-243e9f6657c633a35baad5d560da87a31ce88a7b.gz
commit 26a67387796c83b1f56d634e58f1626815f497c8
Author: William Xu <[email protected]>
Date: Mon Mar 3 07:55:00 2008 +0000
(cwit-send): Add missing argument image-url for cwit-insert-entry call.
darcs-hash:20080303075516-cfa61-2e08b79896e16aff3b715ac5de9338b096c02d2a.gz
commit db37dafc6a21428eff839b821c1693ede0a06bd6
Author: William Xu <[email protected]>
Date: Sun Mar 2 06:34:00 2008 +0000
(smart-operator-?): New function.
darcs-hash:20080302063435-cfa61-31981618fa598643662621c9859982831a165a82.gz
commit ac67c32b81a2846453dec81290d9c25dc40489d8
Author: William Xu <[email protected]>
Date: Sun Mar 2 05:15:00 2008 +0000
Update GPLv2 to GPLv3.
darcs-hash:20080302051557-cfa61-6969b85076ae5d8d35f6aa976c832e4dfcabff00.gz
commit bfa2723a6d5b9b09fd56e332b5c9dac7acccdfeb
Author: William Xu <[email protected]>
Date: Sat Mar 1 17:45:00 2008 +0000
Remove temp debug info.
darcs-hash:20080301174531-cfa61-5e170191c5e35188b03f0f26653e6a314b727f1b.gz
commit 0be073ebca89e63236a35b3163ce49fa98bb4f18
Author: William Xu <[email protected]>
Date: Sat Mar 1 17:38:00 2008 +0000
Add lots of fine tuned smart-operator-* functions. Remove c, c++ mode
specific functions.
darcs-hash:20080301173817-cfa61-bb905ae35b5295be72caf526d99b57d57a986b6d.gz
commit 4b3e79185ce40611775dec2905443ea0fe9f19ac
Author: William Xu <[email protected]>
Date: Sat Mar 1 16:39:00 2008 +0000
A complete rewritten, now as a minor mode.
Bump to version 3.0.
darcs-hash:20080301163959-cfa61-7f4dcbe160a2c5ac673b99fc0c3d48097d07bf96.gz
commit a04d6e26ed1eeeb6b04e36f41bedcb002b69270d
Author: William Xu <[email protected]>
Date: Sat Mar 1 09:22:00 2008 +0000
*** empty log message ***
darcs-hash:20080301092224-cfa61-34efcbff69bf447044630e3c8cca03bde7c37de9.gz
commit 426fc5a990d668c0630647189cb4ae630fb84efe
Author: William Xu <[email protected]>
Date: Sat Mar 1 09:15:00 2008 +0000
(buffer-action-compile): Fix stupid missing ) bug.
darcs-hash:20080301091515-cfa61-63ac839e13b9cc4b8830d919d4f909ac804f9fc8.gz
commit b744709bcabc8c236281a76140792290583340c7
Author: William Xu <[email protected]>
Date: Sat Mar 1 08:53:00 2008 +0000
(buffer-action-match): Let's abort when buffer matches nothing in
buffer-action-table.
darcs-hash:20080301085355-cfa61-24b608f3e3c3e950100916918c95e55e565ddbe7.gz
commit 53143f5e7f3d83fa7fc5c4e8989ba3b19e549208
Author: William Xu <[email protected]>
Date: Sat Mar 1 08:34:00 2008 +0000
(buffer-action-match): Fix matching bug, replace dolist with while loop.
(buffer-action-shell-command): Fix closing async command buffer bug.
darcs-hash:20080301083412-cfa61-7f05ea8d5b353d3441fced58a5f69bc569b8c3cc.gz
commit 3764882c3198000f99c38bbd33ab4df9901b5595
Author: William Xu <[email protected]>
Date: Sat Mar 1 07:58:00 2008 +0000
- Refactoring lots of codes, should be much cleaner than previous' now.
- Bumped to 3.0
- Test passing by playing with foo.c.
darcs-hash:20080301075802-cfa61-d7eacc95130af629f357bb04b32c830a8be735d6.gz
commit 9f54492d49130943ca3f4eead9c23985c378f8e7
Author: William Xu <[email protected]>
Date: Sat Mar 1 05:56:00 2008 +0000
Rename file-action.el to buffer-action.el
darcs-hash:20080301055606-cfa61-8a069d4c1dde4b86082693378671241c7b4bb628.gz
commit b35a454e8605ee03ef4c7288c39d1f0c1e391ed9
Author: William Xu <[email protected]>
Date: Fri Feb 29 14:54:00 2008 +0000
Rename smart-compile.el to file-action.el
darcs-hash:20080229145407-cfa61-3cf994279e836a2418334c357060150713b8f73d.gz
commit c7d56cc08600f202e347924e1b144a7659ab6cb5
Author: William Xu <[email protected]>
Date: Fri Feb 29 14:46:00 2008 +0000
smart-compile-table: Add .info files handler.
darcs-hash:20080229144613-cfa61-998737ad8b6772022b11e160ec97a64c5ac80508.gz
commit 971917aeb83ee6b4de0dfb3eccc4287e1d67d9b8
Author: William Xu <[email protected]>
Date: Fri Feb 29 09:42:00 2008 +0000
Add buddy icon display support.
Buggy though, maybe in cwit.el, maybe in w3m.
darcs-hash:20080229094245-cfa61-0cef2e929d3e0f290f396bc3efd8664a0a51fa92.gz
commit 8760abe868c761e81af5c5f0700da2a2296517e7
Author: William Xu <[email protected]>
Date: Thu Feb 28 07:49:00 2008 +0000
(cwit-receive-callback): When startup, do not increase
cwit-unread-message-counter.
darcs-hash:20080228074908-cfa61-844506766450453f41b58e74548d6309e5d8a93b.gz
commit 0c51f7a843683174cf2cf4fef341087128186cc7
Author: William Xu <[email protected]>
Date: Thu Feb 28 07:35:00 2008 +0000
Bind u, U to fink-selfupdate and fink-update-all respectively.
darcs-hash:20080228073535-cfa61-bed1cc1763ad4a4cd348d72e7e7fbb5392fbc532.gz
commit 2f8b90217965769a195052b95722b0f821581b59
Author: William Xu <[email protected]>
Date: Thu Feb 28 07:27:00 2008 +0000
fink-mode-map: Bind `U' to fink-selfupdate instead of fink-upgrade-all.
darcs-hash:20080228072736-cfa61-f9c36d460eefe880bf83abb51b51745d2bc94007.gz
commit fd640b26afaca1f1e20cf9d47192dcd6f90f89a2
Author: William Xu <[email protected]>
Date: Thu Feb 28 03:22:00 2008 +0000
(cwit-receive-callback): Do not increase unread message counter when
author is me.
darcs-hash:20080228032246-cfa61-b07d68de32b2dd90312c30b6a0b9cbdfed1f258b.gz
commit b6bb9e2e192d02de7b41496cc4eac76c488c6dd9
Author: William Xu <[email protected]>
Date: Wed Feb 27 15:09:00 2008 +0000
Initial commit.
darcs-hash:20080227150950-cfa61-45ed84b0d7514d1d5b5fe648cd186610392cc952.gz
commit b031f2f6d7649dcb8e51984a8f1a919d1ae4e397
Author: William Xu <[email protected]>
Date: Thu Feb 21 12:09:00 2008 +0000
Bump version to 0.81.
darcs-hash:20080221120950-cfa61-b602b8ec5884427e90316fe06fd4448713a33055.gz
commit ab89df61cdceefbfc4744d5c9c944766b6ac7520
Author: William Xu <[email protected]>
Date: Thu Feb 21 12:09:00 2008 +0000
`mark-calendar-holidays' in emacs22 has been renamed to
`calendar-mark-holidays' since 23, fixed this.
darcs-hash:20080221120909-cfa61-d5a6cda190ee478789c12af20bf429c2d4ecf224.gz
commit fc3e43a41f586f83910aedf1777c32b662ec7671
Author: William Xu <[email protected]>
Date: Tue Feb 19 04:12:00 2008 +0000
(cwit-receive-callback): Use `url-html-decode-buffer' defined in
url-html.el, replacing emms-url. Release 0.1.
darcs-hash:20080219041219-cfa61-e4b671447e7a032c011a267904653353992c4019.gz
commit d6ed4c141c1807398a133ea2598462f237a82d9d
Author: William Xu <[email protected]>
Date: Tue Feb 19 04:09:00 2008 +0000
(url-html-decode-buffer): Set parameter BUFFER at the start. Fix regex
searching for charset info, so as not to mess with http header.
darcs-hash:20080219040911-cfa61-231f4d07ba256ec37ee490ff2d548d7ca3b6205d.gz
commit 4bd39767a7cee779517be57a95ecf00e01532100
Author: William Xu <[email protected]>
Date: Tue Feb 19 04:01:00 2008 +0000
url-html.el: New file, for handling html pages.
darcs-hash:20080219040141-cfa61-74d821257ec23b0a8b65fe785c278d8293c96879.gz
commit 73b5893059fb575617dbc15a8f6b2e778c359f87
Author: William Xu <[email protected]>
Date: Sat Feb 16 09:13:00 2008 +0000
(dashboard-tenseijingo-callback): Use re-search-forward instead of
search-forward when locating the starting point of tenseijingo content.
darcs-hash:20080216091341-cfa61-1b70150c805ef39fdc849ae665f4d4058c2ec614.gz
commit 3c1f31db9c0971cb0bdfdda0fc26a6517b2a968a
Author: William Xu <[email protected]>
Date: Fri Feb 15 11:21:00 2008 +0000
Now a basically working version! Add a new widget dashboard-tenseijingo.el.
darcs-hash:20080215112153-cfa61-3a6b0f73fedccf519875e1265e640f10ab9ede84.gz
commit 61908b52716a07c5d75b9244738a967e96df4135
Author: William Xu <[email protected]>
Date: Fri Feb 15 08:23:00 2008 +0000
dashboard: New module. Dashboard inside Emacs.
darcs-hash:20080215082308-cfa61-0b15b369372c78bcfa3da182c81ff94eb9e12079.gz
commit 8465c12ccf180f86ebe17815e9c8d6ae79a0e363
Author: William Xu <[email protected]>
Date: Fri Feb 15 08:16:00 2008 +0000
Make predefined holidays a const.
darcs-hash:20080215081609-cfa61-d8096beb4bc6468cd68a1386f0f8ac5302adc721.gz
commit d80737c3e47c968acf5d81d1ec11d49c45d8439e
Author: William Xu <[email protected]>
Date: Tue Feb 12 02:40:00 2008 +0000
- Fix typo.
darcs-hash:20080212024038-cfa61-4860776c0d591624dae72a8d05edaea2d7a42906.gz
commit b824d666bc4732f582673d403f0ac12736eff28d
Author: William Xu <[email protected]>
Date: Mon Feb 11 12:14:00 2008 +0000
- Display error message at minibuffer for url failures.
- Make use of emms-url.el for decoding html buffer returned by
url-retrieve.
darcs-hash:20080211121449-cfa61-00527ce33ab044ced5547cd0ee1083ff2c7c9223.gz
commit d42e30eb9baef1946dcfc0526fca3d8377746c92
Author: William Xu <[email protected]>
Date: Wed Feb 6 09:24:00 2008 +0000
- Fix `cwit-last-entry-index' lock issue.
darcs-hash:20080206092433-cfa61-6bf7d3c4473f2d3284afa8e131a1e14400e7fd86.gz
commit 7ebaaf526e095c4ef25f8ec1c7cb6b3f3c308b87
Author: William Xu <[email protected]>
Date: Wed Feb 6 08:24:00 2008 +0000
- Replace call-process-region with w3m-region.
- Detect coding system by looking at Content-type, charset.
- Fix `cwit-update-mode-line'.
darcs-hash:20080206082405-cfa61-37f0c272617705dc24b2cbd5c1b17cfa8f3a7847.gz
commit 8ddc13b0cad40e5d8f2ddc290d96a77c5adbffb1
Author: William Xu <[email protected]>
Date: Tue Feb 5 03:14:00 2008 +0000
* Add cowsay welcome startup page.
* cwit-update-interval: Renamed from `cwit-refresh-interval'.
* Comments updates.
darcs-hash:20080205031432-cfa61-7f4301d43922128776fc92531835d27b5a8070ed.gz
commit a2bb4fb58e48caf57f21df1a466cab0f9caab650
Author: William Xu <[email protected]>
Date: Mon Feb 4 12:53:00 2008 +0000
Work around utf-8 partial characters missing problem by commenting
"(skip-chars-forward "[[:space:]]")". Now this is a fairly workable
version !
darcs-hash:20080204125315-cfa61-6dc2566d3d2247ac57ca7c77ba65152b9f5dff8c.gz
commit f9ed8a84e6a855b643c000acf6bb7c8c36cb8e6d
Author: William Xu <[email protected]>
Date: Fri Feb 1 12:24:00 2008 +0000
- Wash html correctly using external tool "w3m", when available.
- Update Commentary.