-
Notifications
You must be signed in to change notification settings - Fork 7
/
ChangeLog
3777 lines (2742 loc) · 108 KB
/
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
2009-12-19 Kouichirou Eto <[email protected]>
* lib/qwik/site-report.rb: Fix bug.
2009-09-18 Kouichirou Eto <[email protected]>
* lib/qwik/group-db.rb: Revert add method. (Sorry for mistake.)
2009-09-15 Kouichirou Eto <[email protected]>
* lib/qwik/group-db.rb: Delete add method.
* lib/qwik/act-site.rb: Fix a test case.
* lib/qwik/site-search.rb: Fix a test case.
2009-09-09 Kouichirou Eto <[email protected]>
* lib/qwik/act-search.rb: Refactoring.
* lib/qwik/site-search.rb: Ditto.
* lib/qwik/db-searchword.rb: Ditto.
* lib/qwik/act-isearch.rb: Splited.
* lib/qwik/act-searchwords.rb: Ditto.
* lib/qwik/act-search.rb: Ditto.
* lib/qwik/act-search.rb: Bring back search function.
* lib/qwik/site-search.rb: Ditto.
* lib/qwik/act-site.rb: New file.
* lib/qwik/act-site.rb: Show site status.
* lib/qwik/site-config.rb: New method blessed.
* lib/qwik/site-group.rb: New two methods.
* lib/qwik/site-config.rb: Delete old SiteConfig spec.
* lib/qwik/site-config.rb: Do not cache siteconfig.
2009-09-08 Kouichirou Eto <[email protected]>
* lib/qwik/act-pagelist.rb: Fix bug.
2009-09-04 Kouichirou Eto <[email protected]>
* lib/qwik/act-archive.rb: Use Thread.
* lib/qwik/act-archive.rb: Delete flag related methods.
* lib/qwik/act-pagelist.rb: Use Thread for page list.
2009-09-03 Kouichirou Eto <[email protected]>
* lib/qwik/act-metadata.rb: Cache feed file.
* lib/qwik/action.rb: New method site_updated. This method is
called when the site is updated.
* lib/qwik/act-new.rb: Ditto.
* lib/qwik/act-save.rb: Ditto.
* lib/qwik/act-mdlb.rb: Delete unused function.
* lib/qwik/response.rb: Fix ico mimetype.
* lib/qwik/act-theme.rb: Add favicon.ico support.
* lib/qwik/farm.rb: Do not use each method.
* lib/qwik/site-report.rb: Ditto.
* lib/qwik/db-filesystem.rb: Do not use Enumerable.
* lib/qwik/pages.rb: New method list.
* lib/qwik/pages.rb: New method title_list_keys and date_list_keys.
* lib/qwik/pages.rb: Do not cache Page objects.
* lib/qwik/pages.rb: Clear unused code.
* lib/qwik/page-title.rb: Disable unused PageTitle function.
* lib/qwik/page-title.rb: Delete the code.
* lib/qwik/pages.rb: FIX: add page-wikidb again.
* lib/qwik/page-wikidb.rb: Do not cache WikiDB object.
* lib/qwik/act-status.rb: Add test cases.
* lib/qwik/act-history.rb: TimeMachine function is disabled.
* lib/qwik/act-comment.rb: Guests cannot post comments.
* lib/qwik/db-filesystem.rb: New method size.
* lib/qwik/page-get.rb: Ditto.
* lib/qwik/act-html.rb: Prepare big page test case.
* lib/qwik/act-html.rb: Add big page error.
* lib/qwik/act-archive.rb: Cache archive.
* lib/qwik/act-archive.rb: Do not start creating archive when the
process is running.
2009-09-02 Kouichirou Eto <[email protected]>
* lib/qwik/act-metadata.rb: Do not cache SiteMetadata object.
* lib/qwik/act-metadata.rb: Do not show page title.
* lib/qwik/act-metadata.rb: Limit only 10 items per feed.
* lib/qwik/act-metadata.rb: Disable RSS 0.91 and RSS 1.0.
* lib/qwik/act-metadata.rb: Delete comments.
* lib/qwik/site-search.rb: Search function is disabled for now.
* lib/qwik/site.rb: Ditto.
* lib/qwik/act-search.rb: Ditto.
* lib/qwik/act-rrefs.rb: Reverse ref function is disabled for now.
* lib/qwik/act-new.rb: Ditto.
* lib/qwik/act-save.rb: Ditto.
2009-09-01 Kouichirou Eto <[email protected]>
* lib/qwik/act-status.rb: Show status action.
* lib/qwik/db-backup.rb: Disable content of each function.
* lib/qwik/act-backup.rb: Ditto.
* lib/qwik/act-history.rb: Ditto.
* lib/qwik/pages.rb: Ditto.
2009-08-28 Kouichirou Eto <[email protected]>
* lib/qwik/periodic.rb: Do not cache farm on memory.
2009-08-27 Kouichirou Eto <[email protected]>
* lib/qwik/qwikweb-adduser.rb: Fix spell miss.
* lib/qwik/qwik-service.rb: Ditto.
* lib/qwik/server-memory.rb: Do not cache farm object.
* lib/qwik/farm.rb: Fix test cases.
* lib/qwik/act-rrefs.rb: Fix a test case.
* lib/qwik/farm.rb: Clean comments.
* lib/qwik/periodic.rb: Ditto.
2009-08-21 Kouichirou Eto <[email protected]>
* lib/qwik/db-searchwords.rb: Debug.
2009-08-20 Kouichirou Eto <[email protected]>
* lib/qwik/farm.rb: Do not cache @sites.
* super/_PageAttribute.txt: rrefs plugin is disabled.
* lib/qwik/act-search.rb: Debug for em nil case.
2009-08-19 Kouichirou Eto <[email protected]>
* lib/qwik/farm.rb: Do not cache Site objects.
* lib/qwik/act-monitor.rb: Comment outed some tests.
* lib/qwik/act-wema.rb: Ditto.
* lib/qwik/act-rrefs.rb: Ditto.
* lib/qwik/check-many-pages.rb: Update.
2009-07-26 Kouichirou Eto <[email protected]>
* lib/qwik/check-many-pages.rb: Check performance for many pages.
2009-07-26 Kouichirou Eto <[email protected]>
* lib/qwik/site.rb: Add require "site-search".
* lib/qwik/util-webrick.rb: Fix test.
* lib/qwik/site-member.rb: Ditto.
2009-07-26 Kouichirou Eto <[email protected]>
* lib/qwik/check-htree-rexml.rb: Delete tests for deprecated method.
2008-12-08 Keiki Shimada <shimada-k aist.go.jp>
* lib/qwik/catalog-ja.rb, lib/qwik/catalog-ml-ja.rb, and other related files:
Correct some English messages.
* lib/qwik/site-search.rb: Ignore a line which start with `#' in searching.
2008-12-01 Keiki Shimada <shimada-k aist.go.jp>
* lib/qwik/page-get.rb: Fix bug: Ignore line start with ``#'' in
super_pre and comment plugin.
2008-11-13 Keiki Shimada <shimada-k aist.go.jp>
* lib/qwik/mail-body.rb, lib/qwik/mail-header.rb,
lib/qwik/test-submit-japanese.rb: Fix garbling mail sent from
AppleMail; "Content-Type: text/plain;charset=CP932" in header section.
2008-11-13 Keiki Shimada <shimada-k aist.go.jp>
* revert last commit to get to work on some more minor changes.
2008-10-30 Keiki Shimada <shimada-k aist.go.jp>
* lib/qwik/act-getpass.rb, lib/qwik/act-httpauth.rb
lib/qwik/act-login.rb, lib/qwik/act-ring.rb, lib/qwik/catalog-ja.rb
lib/qwik/common-basic.rb, lib/qwik/password.rb, lib/qwik/qwik-service.rb
lib/qwik/test-module-session.rb: Generate random password for each user.
2008-10-21 Keiki Shimada <shimada-k aist.go.jp>
* lib/qwik/act-wema.rb: require login when edit wema.
2008-10-16 Keiki Shimada <shimada-k aist.go.jp>
* lib/qwik/farm.rb, lib/qwik/site-group, lib/qwikdb-filesystem.rb,
lib/qwik/test-module-session.rb, test-ms-confirm.rb: Enable burying.
Delete unconfirmed group at burying.
2008-10-06 Keiki Shimada <shimada-k aist.go.jp>
* lib/qwik/act-files.rb: Force download attached html files, Add
case-insensitive check for compromise file extentions.
2008-09-04 Keiki Shimada <shimada-k aist.go.jp>
* lib/qwik/farm.rb, lib/qwik/server.rb, lib/qwik/site-group.rb:
Add logging bury info to log/bury.log
2008-07-30 Keiki Shimada <shimada-k aist.go.jp>
* lib/qwik/group-site.rb, lib/qwik/test-submit-japanese.rb:
Support various charsets
2008-07-29 Keiki Shimada <shimada-k aist.go.jp>
* lib/qwik/db-backup.rb, lib/qwik/db-filesystem.rb,
lib/qwik/db-indexer.rb, lib/qwik/group-config.rb,
lib/qwik/group-db.rb, lib/qwik/page-files.rb,
lib/qwik/page-images.rb, lib/qwik/site-files.rb: Use './.test/'
directory for test
2008-07-28 Kouichirou Eto <2008 eto.com>
* lib/qwik/db-backup.rb: Fix bug in IGNORE_PAGES.
2008-07-25 Keiki Shimada <shimada-k aist.go.jp>
* lib/qwik/db-backup.rb: Do not backup counter pages
2008-07-25 Keiki Shimada <shimada-k aist.go.jp>
* lib/qwik/ml-processor.rb, lib/qwik/test-ms-ignore-spam.rb: move
one test case
2008-07-23 Keiki Shimada <shimada-k aist.go.jp>
* lib/qwik/act-sitebackup.rb: change test to follow the previous
commit
2008-07-23 eto
* lib/qwik/act-sitebackup.rb: Support symbolic link.
2008-07-22 Keiki Shimada <shimada-k aist.go.jp>
* lib/qwik/test-module-server.rb: fix bug: using real data/test/
directory at test suite
2008-07-16 Keiki Shimada <shimada-k aist.go.jp>
* share/theme/css/base.css: remove unused style
2008-07-09 Keiki Shimada <shimada-k aist.go.jp>
* lib/qwik/act-sitebackup.rb: remove unused REQUIRE statement
2008-07-09 Keiki Shimada <shimada-k aist.go.jp>
* lib/qwik/act-sitebackup.rb: change path to tar command
2008-07-08 Keiki Shimada <shimada-k aist.go.jp>
* lib/qwik/act-edit.rb, lib/qwik/act-sitebackup.rb: rewrite
sitebackup
2008-07-02 Keiki Shimada <shimada-k aist.go.jp>
* lib/qwik/ml-processor.rb, lib/qwik/test-ms-ignore-spam.rb: change
variable name used in test
2008-07-01 Keiki Shimada <shimada-k aist.go.jp>
* lib/qwik/ml-processor.rb: fix code for test: in case
@rejection_ignore_list includes "test"
2008-06-30 Keiki Shimada <shimada-k aist.go.jp>
* lib/qwik/ml-processor.rb: add log message on Rejection ignored
2008-06-27 eto
* lib/qwik/act-sitebackup.rb: update.
2008-06-27 Keiki Shimada <shimada-k aist.go.jp>
* lib/qwik/act-sitebackup.rb: change test to avoid a side effect of
test suite
2008-06-27 Keiki Shimada <shimada-k aist.go.jp>
* lib/qwik/act-edit.rb, lib/qwik/act-sitebackup.rb,
lib/qwik/catalog-ja.rb, lib/qwik/response.rb: add feature: Site
Backup
2008-06-26 Keiki Shimada <shimada-k aist.go.jp>
* lib/qwik/act-christel.rb: change query encoding to euc
2008-06-13 Keiki Shimada <shimada-k aist.go.jp>
* lib/qwik/ml-processor.rb, lib/qwik/test-ms-ignore-spam.rb: avoid
sending rejection-report to specific spam mails
2008-06-12 Keiki Shimada <shimada-k aist.go.jp>
* lib/qwik/act-archive.rb: add test: odd second for timestamp
2008-06-11 Keiki Shimada <shimada-k aist.go.jp>
* lib/qwik/act-archive.rb: change comment a bit
2008-06-11 Keiki Shimada <shimada-k aist.go.jp>
* lib/qwik/act-archive.rb: set timestamp in archive files. ref:
http://qwik.jp/qwikweb/13.html
2008-06-09 Keiki Shimada <shimada-k aist.go.jp>
* test.txt: remove commit-test file
2008-06-09 Keiki Shimada <shimada-k aist.go.jp>
* test.txt: this is just a test commit
2007-12-17 y-eto
* lib/qwik/site-report.rb: report mail header "Precedence: bulk"
added.
thanks for Masao Takaku <masao nii.ac.jp>.
2007-10-03 Kouichirou Eto <2007 eto.com>
* lib/qwik/ml-logger.rb: Change filename in a test case.
* lib/qwik/test-module-session.rb: Ditto.
2007-10-02 Kouichirou Eto <2007 eto.com>
* lib/qwik/qwikweb-*.rb: Commented out unused codes.
* lib/qwik/group-site.rb: Fix spell.
* lib/qwik/site-config.rb: Go back to original default_config.
* lib/qwik/farm.rb: Comment out sweep test for now.
* lib/qwik/group-db.rb: BUGFIX: Make directory here.
* lib/qwik/ml-processor.rb: Add test case for create new group.
* lib/qwik/site-group.rb: Fix directory for create site.
2007-09-25 Kouichirou Eto <2007 eto.com>
* lib/qwik/qwik-service.rb: Add '-d' for pidfile in debug mode.
2007-09-21 Kouichirou Eto <2007 eto.com>
* lib/qwik/farm.rb: For the trouble, do not sweep sites for now.
* lib/qwik/qwik-service.rb: Add debug option showinactive.
2007-09-18 Kouichirou Eto <2007 eto.com>
* lib/qwik/site-url.rb: Check nil.
* lib/qwik/util-basic.rb: Add NilClass#empty?
2007-09-17 Kouichirou Eto <2007 eto.com>
* lib/qwik/smtp-session.rb: New file for smtp-session.
* lib/qwik/ml-processor.rb: Do not quote original body message to
avoid transfer spam message.
* lib/qwik/test-ms-ignore-spam.rb: Fot test it.
* lib/qwik/catalog-ml-ja.rb: The message.
* lib/qwik/util-sendmail.rb: Add a global variable to test sendmail.
2007-08-13 Kouichirou Eto <2007 eto.com>
* lib/qwik/Makefile: Reset target clean.
* lib/qwik/act-files.rb (show_files_form_and_the_list): Divided.
* lib/qwik/act-files.rb: Refactoring.
* lib/qwik/act-files.rb: Force download if the filename contains
disallowable characters.
* lib/qwik/util-filename.rb (allowable_characters_for_path?): New
method to check if the character only contains allowable
characters or not.
2007-08-12 Kouichirou Eto <2007 eto.com>
* lib/qwik/farm.rb (each): Add check site (stub).
* lib/qwik/farm.rb (check_inactive_sites): Check the directory is
a site or not.
* lib/qwik/qwikweb-server.rb: Add plugin directory.
* lib/qwik/helper.rb: New file as load path helper.
* lib/qwik/page-wikidb.rb: Add a test case to check tab.
* share/super/_SiteConfig.txt: Add default setting.
* share/super/_SiteConfig.txt: Add description.
* lib/qwik/site-config.rb: Get default config from super site.
* lib/qwik/site-url.rb: You can select title order of web page.
* share/super/_SiteConfig.txt: Add setting for it.
* share/super/_SiteConfig.txt: Change default to page title first.
* lib/qwik/site-url.rb: Update test caeses.
* lib/qwik/config.rb: Change test directory to '.test'.
* lib/qwik/farm.rb: Ditto.
* lib/qwik/act-attach.rb: Ditto.
* lib/qwik/ml-processor.rb: Ditto.
* lib/qwik/password.rb: Ditto.
* lib/qwik/test-module-session.rb: Ditto.
* lib/qwik/util-pathname.rb: Create direcotry with mkpath
2007-08-10 Kouichirou Eto <2007 eto.com>
* lib/qwik/act-ruby.rb: Refactoring.
* lib/qwik/farm.rb: Create _QwikSite.txt when the site is created.
* lib/qwik/site.rb: Add a test case to check unnecessary directory.
* lib/qwik/group-db.rb: Do not create unnecessary directory.
* lib/qwik/farm.rb: Add check.
* lib/qwik/site.rb: Ditto.
2007-08-09 Kouichirou Eto <2007 eto.com>
* lib/qwik/act-ruby.rb: New plugin to embed ruby code.
* lib/qwik/config.rb: Add 'enable_ruby' setting.
* etc/config.txt: Ditto.
* etc/config-debug.txt: Ditto.
* lib/qwik/act-presen.rb (plg_presen_switch): New plugin to switch
to presen mode.
* share/super/_AdminMenu.txt: Add "presen_switch".
* lib/qwik/act-presen.rb: Make title to back link.
* share/theme/s5/qwikworld/pretty.css: Ditto.
2007-08-05 Kouichirou Eto <2007 eto.com>
* lib/qwik/page-files.rb: Do not backup files in default.
* lib/qwik/db-backup.rb: Do not backup some pages.
* lib/qwik/act-files.rb: Set max file size.
* lib/qwik/site-config.rb: Ditto.
* lib/qwik/catalog-ja.rb: Ditto.
* lib/qwik/farm.rb: Do bury to same directory.
2007-06-25 Kouichirou Eto <2007 eto.com>
* lib/qwik/Makefile: Make test all default.
* Makefile: Ditto.
* lib/qwik/act-diary.rb: Fix a test case.
* lib/qwik/act-day.rb: Ditto.
* lib/qwik/util-charset.rb: Ditto.
2007-04-29 MIWA Takayuki <mw-hawk proof.con.ne.jp>
* lib/qwik/parser-inline.rb: Fixed a bug in embedding images
with ALT text. See http://qwik.jp/qwikweb/23.html.
* lib/qwik/act-diary.rb: Removed duplicated definition of
Qwik::Action::D_PluginInclude_ja.
2007-04-25 Kazuhiro NISHIYAMA <zn mbf.nifty.com>
* lib/qwik/mail-header.rb, lib/qwik/group-site.rb: Remove
own ml prefix only.
* Makefile: Add .PHONY target.
2007-04-21 Kouichirou Eto <2007 eto.com>
* bin/qwik-service.rb: Change LOAD_PATH order.
* bin/qwik-service.rb: Add error msg for Permission Denied.
* bin/qwik-service.rb (die): New method.
* bin/qwik-service.rb (error): New method.
* common-plugin.rb: Set local mode if the hostname is without
domain name.
* act-diary.rb: Update the format. Add titles for each pages.
2007-04-20 Kouichirou Eto <2007 eto.com>
* qwik-service.rb: Bug fix. Append config file information for
quickml_server. Thanks to Mr. MIWA Takayuki.
* group-member.rb: Skip empty lines. Thanks to Mr. cho45.
* typekey.rb: Bug fix. Set token correctly. Thanks to Mr. dotimpact.
* qwikweb-watch.rb: Bug fix. Do not use util-tail.
2007-04-17 Kouichirou Eto <2007 eto.com>
* act-diary.rb: Add description.
2007-04-16 Kouichirou Eto <2007 eto.com>
* act-comment.rb (plg_nomore_mcomment): New plugin for just only
show the content of the comment.
* act-diary.rb: New file for diary plugin.
2007-04-12 Kouichirou Eto <2007 eto.com>
* COPYRIGHT: Update the URL for Ms. rica's icons.
2007-04-03 Kouichirou Eto <2007 eto.com>
* act-keywords.rb: Do not test if we have no required library.
* act-code.rb: Ditto.
* check-htree.rb: Do not test beacause of the change of HTree.
* htree-to-wabisabi.rb: Ditto.
* act-code.rb: Change LOAD_PATH order beacause we have qwik lib in
the ruby directory.
* dev-replace.rb: Add a replace.
I changed all other related files.
2007-03-26 Kouichirou Eto <2007 eto.com>
* ml-session.rb: Since I failed to add a new file smtp-session.rb,
I revert to old file.
* smtp-session.rb: Create an empty file.
* wabisabi-diff.rb: Change diff to algorithm/diff
* htree-diff.rb: Ditto.
2006-09-12 Kouichirou Eto <[email protected]>
* qwikgreen.css: Do not use MS P Gothic.
* mock-sendmail.rb: Make sendmail system more general.
* act-basic.rb (plg_window): Add class 'external'.
2006-09-10 NIIBE Yutaka <[email protected]>
* debian/rules: Fix debin -> debian.
* debian/changelog (0.8.4.3): Another trial to upload to Debian.
* debian/docs (COPYING): Removed.
* debian/copyright: Spell fix. Refer common-licenses/GPL-2.
* COPYRIGHT: Spell fix.
2006-09-08 NIIBE Yutaka <[email protected]>
* debian/changelog (0.8.4.2): Another trial to upload to Debian.
* debian/control (Tag): Removed.
* debian/copyright: Clarified more.
* debian/rules: Added +x bit.
2006-08-16 Kouichirou Eto <[email protected]>
* smtp-session.rb: New file.
* ml-session.rb: Use the new class.
* ml-sendmail.rb (Sendmail): Refactoring.
2006-08-07 Kouichirou Eto <[email protected]>
* lib/qwik/version.rb (VERSION): 0.8.4.1.
(RELEASE_DATE): 20060807.
2006-08-07 Kouichirou Eto <2006 eto.com>
* Update debian/*.
2006-07-31 Kouichirou Eto <2006 eto.com>
* Add more details for Copyright notice.
2006-07-31 Kouichirou Eto <2006 eto.com>
* qwikWeb 0.8.4 is released.
See NEWS for the Changes.
2006-07-30 Kouichirou Eto <2006 eto.com>
* Add more details for Copyright notice.
2006-07-27 Kouichirou Eto <2006 eto.com>
* Add Copyright notice.
2006-07-24 Kouichirou Eto <2006 eto.com>
* Reformat Copyright notice.
* webdavhandler.rb: Deleted.
* test-typekey.rb: Splited from typekey.rb
2006-07-22 Kouichirou Eto <2006 eto.com>
* qwikWeb 0.8.3 is released.
See NEWS for the Changes.
2006-07-22 Kouichirou Eto <2006 eto.com>
* act-graphviz.rb: Deleted.
* act-report.rb, act-secdb.rb, act-summary.rb, act-tagsearch.rb: Ditto.
2006-07-21 Kouichirou Eto <2006 eto.com>
* act-album.rb: Deleted.
* act-takahashi.rb: Ditto.
2006-07-20 Kouichirou Eto <2006 eto.com>
* common-surface.rb: Add RSS Auto Discovery.
2006-07-19 Kouichirou Eto <2006 eto.com>
* dev-replace.rb: Update.
* dev-add-copyright.rb: New file.
* Add Copyright Notice to all .rb files.
* act-charts.rb: Removed.
* util-tail.rb: Removed.
2006-07-05 Kouichirou Eto <2006 eto.com>
* wabisabi-diff.rb: Set timout for diff.
http://jvn.jp/jp/JVN%2398836916/index.html
2006-07-04 Kouichirou Eto <2006 eto.com>
* wabisabi-diff.rb: Do not use module Qwik.
2006-06-23 Kouichirou Eto <2006 eto.com>
* group-db.rb (get): Bug fix. Delete e on rescue.
2006-06-22 Kouichirou Eto <2006 eto.com>
* act-wema.rb (ext_wema): Debug for non-exist wema.
2006-06-20 Kouichirou Eto <2006 eto.com>
* response.rb (get_mimetypes): New method.
* response.rb (set_content_type): New method.
It can handle UPCASE extention.
Releated files are changed.
2006-05-27 NIIBE Yutaka <[email protected]>
* lib/qwik/version.rb (VERSION): 0.8.2.2.
(RELEASE_DATE): 20060527.
* MANIFEST: Added debian/watch.
2006-05-24 Kouichirou Eto <2006 eto.com>
* site-search.rb: Add obfuscate mailaddress.
* Refactoring: Rename util-* files.
2006-05-21 Kouichirou Eto <2006 eto.com>
* act-povray.rb: Add open3 support.
2006-04-30 Kouichirou Eto <2006 eto.com>
* act-povray.rb: New plugin to render 3D CG.
* act-textarea.rb: Refactoring.
2006-04-20 Kouichirou Eto <2006 eto.com>
* act-basic.rb: New plugin. plugin_list
* act-basic.rb: New plugin. my_group
* act-plan.rb: Use start_time instead of Time.now
* farm.rb: Refactoring.
2006-04-17 Kouichirou Eto <2006 eto.com>
* version.rb: Version up to 0.8.3p. 'p' means pre.
* act-sendpass.rb: You can send password for the members.
* act-sendpass.rb: Only members can access it.
* act-edit.rb: Ditto.
* act-plan.rb: Reuse if the plan page is already exist.
* act-login.rb: Refine Login page.
You see getpass form in the same Login page.
* act-getpass.rb: Ditto.
* act-plan.rb: The default Date and Title is set.
* util-filename.rb: Ad hoc bug fix for tilda(~).
* server.rb: You can see time information for the action.
* logger.rb: Ditto.
* description.rb: Add _LoginMaessage link.
* description-ja.rb: Ditto.
* qwikeditor.css: Bug fix for IE.
Thanks to Mr. Takashi Maekawa.
2006-04-15 Kouichirou Eto <2006 eto.com>
* qwikWeb 0.8.2 is released.
See NEWS for the Changes.
2006-04-15 Kouichirou Eto <2006 eto.com>
* act-basic.rb (plg_pre): New plugin.
* act-sample.rb (plg_bhello): New plugin.
2006-03-20 Kouichirou Eto <2006 eto.com>
* act-metadata.rb: Reverse order, newest is first.
* act-metadata.rb: Take only 10 pages.
* pages.rb: Enable Senna indexer by config setting.
2006-03-20 Kouichirou Eto <2006 eto.com>
* act-archive.rb: Force create static HTML page.
* act-html.rb: Refactoring.
2006-03-20 Kouichirou Eto <2006 eto.com>
* description.rb: Update description link.
* description-ja.rb: Ditto.
* act-theme.rb: Ditto.
2006-03-20 Kouichirou Eto <2006 eto.com>
* site-plan.rb: Change plan notation.
* act-plan.rb: Ditto.
* test-ms-plan.rb: Ditto.
* act-html.rb: Add wysiwyg only mode.
* qwik-service.rb: Bug fix. You can use watchlog now.
* act-edit.rb: Add a link to post-it description.
* act-edit.rb: Add a link to GroupConfig.
* super/_PageAttribute.txt: Delete wema description.
* common-basic.rb (c_set_location): New method.
* common-notice.rb: Ditto.
* group.rb: Refactoring.
* ml-sweeper.rb: Do not close.
* group.rb: Ditto.
* ml-sweeper.rb: Refactoring.
* ml-processor.rb: Refactoring.
* ml-session.rb: Refactoring.
* ml-session.rb: Add test case.
2006-03-16 Kouichirou Eto <2006 eto.com>
* act-edit.rb: Bug fix. Change textformat link.
* qwik-service.rb: Bug fix. Add mailaddresss.
* password.rb: Bug fix. Return generation num.
* act-lang.rb: New plugin lang_select.
You can see another language pages related to the page.
* act-plan.rb: New plugin new_plan
* act-code.rb: Bug fix. Add no-repeat
* act-html.rb: Refactoring. Change to private_page
* act-summary.rb: Refactoring.
* act-calc.rb: Add description for tab_calc
* site-plan.rb: Do not show the page with tag date.
* super/_SiteTheme.rb: Bug fix. Change link to PluginStyle.
2006-03-13 Kouichirou Eto <2006 eto.com>
* act-calc.rb: New plugin plg_tab_calc
* act-style.rb: You can make a link by using img plugin.
Thanks to Mr. Takashi Maekawa.
* util-csv-tokenizer.rb: Put out from Qwik module.
* util-css.rb: Ditto.
* util-charset.rb: Merge util-kconv.rb, util-iconv.rb
* util-string.rb: Merge util-escape.rb
* util-basic.rb: Merge util-integer.rb, util-icase.rb
2006-03-09 Kouichirou Eto <2006 eto.com>
* act-wema.rb: Change footer message.
* mailaddress.rb: Add test for only number name.
2006-03-09 Kouichirou Eto <2006 eto.com>
* act-archive.rb: Bug fix: remove return. Add test case.
* Bug fix: Add link to obsolete description.
act-takahashi.rb, act-christel.rb, act-code.rb
2006-03-07 Kouichirou Eto <2006 eto.com>
* act-plan.rb: Add test case.
* test-module-session.rb (ok_attr): New method.
* qwikeditor.css: Bug fix for Firefox. Delete height line.
2006-03-06 Kouichirou Eto <2006 eto.com>
* act-edit.rb: Bug fix. Change SiteManagement link.
* password.rb: Add test case for password_file
* Add side page plugins.
act-pagelist.rb,
* act-charset.rb: Refactoring.
2006-03-06 Kouichirou Eto <2006 eto.com>
* password.rb: Bug fix. You can use password.txt now.
Thanks to Mr. Yoshinori Kawasaki.
2006-03-02 Kouichirou Eto <2006 eto.com>
* act-wema.rb: Make how to link.
* util-pathname.rb: Make sure to delete testdir.
* act-aa.rb: Split aa plugin with aa database.
2006-02-28 Kouichirou Eto <2006 eto.com>
* act-describe.rb: Change description naming scheme.
Rename all descriptions.
* common-basic.rb: Merge several common files.
common-data.rb, common-exception.rb, common-response.rb,
common-reqrite-plugin.rb are merged.
* act-basic.rb: Merge common-pageattribute.rb
* util-time.rb: Some date related methods are moved here.
* act-map.rb: Use root URL. This is restriction of Google Local API.
2006-02-28 Kouichirou Eto <2006 eto.com>
* act-plan.rb: Do not show if there's no plan.
* act-map.rb: Add description.
2006-02-27 Kouichirou Eto <2006 eto.com>
* Add descriptions.
* Add Japanese descriptions.
* site-plan.rb: Merge site-footer.rb
* act-search.rb: Merge act-isearch.rb
* act-book.rb: Change book to book_search
* act-plan.rb: New plugin to make a new plan.
2006-02-26 Kouichirou Eto <2006 eto.com>
* site.rb: Delete @dir
Related files are also changed.
site-files.rb, site-group.rb,
* act-password.rb: Refactoring.
* act-basic.rb: Merge act-adminmenu.rb
* act-pagelist.rb: Renamed from act-pages.rb
* act-style.rb: Merge act-monta.rb
* act-mdlb.rb: Merge act-mdlb-*.rb
* act-ring.rb: Merge act-ring-*.rb
2006-02-26 Kouichirou Eto <2006 eto.com>
* act-style.rb: Fix. Extract content in sytle_div.
* act-theme.rb: You can use SiteTheme now.
* act-theme.rb: site.theme is moved to Action.
Related files are also changed.
* common-surface.rb: Ditto.
* act-archive.rb: Ditto.
* act-theme.rb: Merge act-css.rb
* check-act-theme.rb: Renamed from check-ext-css.rb
* super/_SideMenu.txt: Change TitleList and RecentList for archive.
* act-theme.rb: Do not use relative_to_root
2006-02-26 Kouichirou Eto <2006 eto.com>
* version.rb: Change version from 0.8.1 to 0.8.2p
* site-url.rb: Bug fix. Add test to use with path.
* act-qrcode.rb: Refactoring. Delete QRCodeMemory.
* qrcode.rb: Ditto.
* qrcode-view.rb: Ditto.
* server-memory.rb: Ditto.
* act-theme.rb: Add _SiteTheme page function.
* site-theme.rb: Merged to act-theme.rb
* super/_SiteTheme.txt: New file for SiteTheme.
* act-search.rb: Show query if there is no hit.
* act-isearch.rb: Ditto. Add query if notfound.
* act-wema.rb: New plugin wema_compat. Show only if there is wema.
* act-wema.rb: Refactoring.
* super/_PageAttribute.txt: Change wema to wema_compat
* descriptions.rb: Make a site management page here.
* descriptions-ja.rb: Japanese version.
* act-edit.rb: Change link to there.
* act-edit.rb: Add a site archive link.
* super/_SiteMenu.txt: Almost deleted.
* super/QwikWebPlugin.txt: Deleted.
* super/QwikWebStructure.txt: Deleted.
* act-keywords.rb: New plugin keywords.
* css/base.css: Add keywords class.
* qwikborder.css: Do not user border-bottom for a link.
* qwikgreen.css: Ditto.
* act-day.rb: I don't know why but it doesn't pass the test.
* act-chronology.rb: Renamed from time_walker.
2006-02-24 Kouichirou Eto <2006 eto.com>
* Refactoring descriptions.
* act-comment.rb: Merge hcomment, mcomment.
* act-config.rb: New file for config. Under construction.
* common-javascript.rb: New file. Splited from common-plain.rb
2006-02-24 Kouichirou Eto <2006 eto.com>
* config.rb: Change ml_domain to 'q.example.com' to make clear.
The other files are also changed.
* test-module-ml.rb: Change to use TestConfig.