forked from aigan/paraframe2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Changes
5623 lines (3166 loc) · 176 KB
/
Changes
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-02-09 jonas <[email protected]>
* lib/Para/Frame/Time.pm: No TZ if only year is given
2009-02-03 jonas <[email protected]>
* lib/Para/Frame/DBIx.pm: undef-bugfix
* lib/Para/Frame/Template.pm: debug
* lib/Para/Frame/File.pm:
Bugfix for setting file objs as dir if called as dir
2009-01-29 jonas <[email protected]>
* lib/Para/Frame/Renderer/TT.pm: more debug
* lib/Para/Frame/List.pm: spelling
2009-01-26 jonas <[email protected]>
* Changes: changelog update
2009-01-21 jonas <[email protected]>
* lib/Para/Frame/List.pm: docfix
2009-01-19 jonas <[email protected]>
* lib/Para/Frame/Worker.pm: less debug
* lib/Para/Frame/Worker.pm: Handling coderefs in worker
* lib/Para/Frame.pm: Handle coderefs from worker
2009-01-18 jonas <[email protected]>
* t/02_frame.t: bugfix
* lib/Para/Frame/Widget.pm: Added password widget
* INSTALL: more modules to get from apt
2009-01-16 jonas <[email protected]>
* t/app/www/test/.htaccess: dir-holder
2009-01-15 jonas <[email protected]>
* t/02_frame.t: Added 21 tests
* lib/Para/Frame/Action/take_five.pm:
Take a count value. defaults to five seconds
* lib/Para/Frame/File.pm: Cached files may also be templates
2009-01-14 jonas <[email protected]>
* lib/Para/Frame/URI.pm: bugfixbugfix
* lib/Para/Frame/Logging.pm, MANIFEST: bugfix
2009-01-08 jonas <[email protected]>
* t/pod_coverage.t: new test
* t/strict.t, t/critic.t: todo
* t/02_frame.t: more tests
* lib/Para/Frame/Request.pm: bugfix
* lib/Para/Frame.pm: debug
* Makefile.PL: bugfix
2009-01-05 jonas <[email protected]>
* t/02_frame.t, t/Makefile, t/TODO, t/critic.t, t/distribution.t, t/pod.t, t/strict.t:
developed tests
* lib/Para/Frame/Request/Response.pm: undef-fix
* lib/Para/Frame/Action/take_five.pm: use strict
* Makefile.PL: more test modules
* MANIFEST: updated manifest
* INSTALL: more modules
* lib/Para/Frame/Request/Response.pm:
expanded last_modified for js files
* lib/Para/Frame/File.pm: is_updated() now checks mtime itself
* lib/Para/Frame/DBIx.pm: less debug
2008-12-17 jonas <[email protected]>
* lib/Para/Frame/Watchdog.pm:
Doing a restart by exec rather than fork after more than 10 forks
2008-12-11 jonas <[email protected]>
* lib/Para/Frame/Template.pm: debug
* lib/Para/Frame/Request/Response.pm: docs
* lib/Para/Frame/Request.pm: docfix
* lib/Para/Frame/Overview.pod, lib/Para/Frame/File.pm: docs
2008-12-10 jonas <[email protected]>
* lib/Para/Frame/Request.pm: oups. bugfix
* lib/Para/Frame/Request.pm: one extra precaution of cancelled req
2008-12-01 jonas <[email protected]>
* lib/Para/Frame/Route.pm: Runx hook after_bookmark after bookmark
* lib/Para/Frame/DBIx.pm: Commit DB after bookmark
* lib/Para/Frame.pm: added hook after_bookmark
2008-11-27 jonas <[email protected]>
* html/pf/js/awstats_misc_tracker.js: from awstats package
2008-11-19 jonas <[email protected]>
* lib/Para/Frame/Utils.pm, lib/Para/Frame/Reload.pm: bugfix
2008-11-12 jonas <[email protected]>
* lib/Para/Frame/Dir.pm: bugfix
* lib/Para/Frame/File.pm: added method is_owned()
* lib/Para/Frame/Dir.pm: Only chmod owned files on dir create
2008-11-05 jonas <[email protected]>
* lib/Para/Frame/URI.pm: Generalized as_html()
2008-11-04 jonas <[email protected]>
* lib/Para/Frame/Watchdog.pm: Fixes Ticket 46HJ6G
2008-11-03 jonas <[email protected]>
* Changes: Updated Changes
* lib/Para/Frame/DBIx.pm: debug
* lib/Para/Frame.pm: docs
2008-10-31 jonas <[email protected]>
* lib/Para/Frame/Request.pm: less debug
2008-10-30 jonas <[email protected]>
* lib/Para/Frame/Widget.pm: bugfix
* lib/Para/Frame/List.pm: debug
* lib/Para/Frame/URI.pm: Only display host for a URL in as_html
* lib/Para/Frame/Widget.pm: Bugfix of function selector()
* lib/Para/Frame/List.pm: Added method sorted_on
2008-10-29 jonas <[email protected]>
* lib/Para/Frame/List.pm:
Added methods set_limit_pages(), limit_pages(), limit_display(), set_limit_display(), size_limited(), max_limited()
2008-10-24 jonas <[email protected]>
* lib/Para/Frame/URI.pm: layout
2008-10-23 jonas <[email protected]>
* lib/Para/Frame/Email/Address/Fallback.pm, lib/Para/Frame/Email/Address.pm:
expanded
* html/inc/debug.tt: moved debug level indicator from top admin menu
2008-10-22 jonas <[email protected]>
* lib/Para/Frame/URI.pm: bugfix
2008-10-21 jonas <[email protected]>
* lib/Para/Frame/Utils.pm: Back to right
* INSTALL: docfix
* lib/Para/Frame/Watchdog.pm: undef-fix
* lib/Para/Frame/Utils.pm, lib/Para/Frame/Widget.pm: &
* t/01_basic.t: synced
2008-10-18 jonas <[email protected]>
* lib/Para/Frame/File.pm: handling css_tt and other long suffixes
* lib/Para/Frame/CSS.pm: handling css_tt
* lib/Para/Frame.pm: handling css_tt and js_tt
* html/pf/loading.html, html/pf/.htaccess: handling css_tt
2008-10-16 jonas <[email protected]>
* lib/Para/Frame/Worker.pm: less debug
* lib/Para/Frame/Watchdog.pm:
Added methods get_next_server_message() and handle server connection in get_server_message()
* lib/Para/Frame.pm: Added method go_down()
2008-10-15 jonas <[email protected]>
* lib/Para/Frame/Request/Response.pm, lib/Para/Frame/Widget.pm, lib/Para/Frame/Route.pm:
handling pfport param
* lib/Para/Frame/Request.pm: docs
2008-10-14 jonas <[email protected]>
* lib/Para/Frame/Child/Result.pm, lib/Para/Frame/Worker.pm:
FreezeThaw -> Storable
* lib/Para/Frame/Utils.pm: Redirecting to Para::Frame::URI/retrieve
* lib/Para/Frame/URI.pm: Added method retrieve()
* lib/Para/Frame/Request.pm, lib/Para/Frame/Client.pm, lib/Para/Frame/Child.pm, lib/Para/Frame.pm:
FreezeThaw -> Storable
* lib/Para/Frame/Watchdog.pm: Made $LIMIT_SYSTOTAL configurable
* lib/Para/Frame/DBIx.pm: less debug
* lib/Para/Frame.pm: added code note
2008-10-12 jonas <[email protected]>
* html/pf/css/paraframe.css_tt:
Renamed file paraframe.css_tt, formerly paraframe.css
* html/pf/css/paraframe.css:
Renamed from paraframe.css to paraframe.css_tt
* lib/Para/Frame/Renderer/TT.pm: Introducing _tt-files
* lib/Para/Frame/Request/Ctype.pm:
Adding methods desig() and sysdesig()
* lib/Para/Frame/Template.pm: adding arg charset
* html/pf/.htaccess: introducing _tt-files
* html/pf/css/default.css_tt:
Renamed file default.css_tt, formerly default.css
* html/pf/css/default.css: Renamed from default.css to default.css_tt
2008-10-11 jonas <[email protected]>
* lib/Para/Frame/Watchdog.pm: Raising memlimit
* lib/Para/Frame.pm: bugfix
2008-10-09 jonas <[email protected]>
* lib/Para/Frame/Watchdog.pm: Automatic memory limit adjustment
* lib/Para/Frame.pm: Better restart handling
* Makefile.PL: Added Linux::SysInfo
* lib/Para/Frame/Action/server_reload.pm:
Dumps debug info on server reload request
* lib/Para/Frame/Watchdog.pm: Replaced constants with global variables
* lib/Para/Frame.pm: Added $MEMORY as a even softer HUP
* lib/Para/Frame/Request/Response.pm, lib/Para/Frame/Request.pm:
Better reload handling with pfport
* lib/Para/Frame/Client.pm: Better reloading handling
2008-10-08 jonas <[email protected]>
* lib/Para/Frame/Uploaded.pm: Changes regardin Ticket 3Y39KX
* lib/Para/Frame/Spreadsheet.pm: changes regarding Ticket 3Y39KX
2008-10-02 jonas <[email protected]>
* lib/Para/Frame/Widget.pm: bugfix
* lib/Para/Frame/Utils.pm: added function escape_js
2008-10-01 jonas <[email protected]>
* lib/Para/Frame/Action/user_login.pm: login enabled
* lib/Para/Frame/Action/user_login.pm: temp disabeling of login
* lib/Para/Frame/Widget.pm: fixes in html-area
2008-09-30 jonas <[email protected]>
* lib/Para/Frame/DBIx.pm, lib/Para/Frame.pm: more debug
2008-09-24 jonas <[email protected]>
* lib/Para/Frame/Widget.pm: Added calendar doc
* lib/Para/Frame/Unicode.pm: docfix
* lib/Para/Frame/Time.pm: Added support for argument format in desig
* lib/Para/Frame/CSS.pm: added support for css none
* lib/Para/Frame.pm: bugfix
2008-09-17 jonas <[email protected]>
* lib/Para/Frame/Worker.pm: less debug
* lib/Para/Frame/Site.pm: new default loopback url
* lib/Para/Frame/Request.pm: clearer debug
* lib/Para/Frame/File.pm: cleanup
* html/pf/clean/inc/footer.tt, html/pf/clean/inc/header_prepare.tt:
for clean dir
* html/pf/clean/empty.tt: empty template
* lib/Para/Frame.pm: cleanup
* lib/Para/Frame/Request.pm: bugfixes in subreq registration hanlding
* lib/Para/Frame.pm: optimization
* lib/Para/Frame/Request.pm: testing
* lib/Para/Frame/Request.pm: more debug
* lib/Para/Frame/Request/Response.pm, lib/Para/Frame/Renderer/TT.pm:
I18N
* lib/Para/Frame/L10N/sv.pm: L10N + sorting
* lib/Para/Frame/L10N/en.pm: L10N
* lib/Para/Frame/Template.pm, lib/Para/Frame/Client.pm, lib/Para/Frame.pm:
I18N
* lib/Para/Frame/Request.pm: bugfix for get_req_by_id
2008-09-11 jonas <[email protected]>
* lib/Para/Frame/File.pm: file2url translation bugfix
* lib/Para/Frame/Client.pm: less debug
* lib/Para/Frame/Request/Response.pm: debugging
* lib/Para/Frame/File.pm: Bugfix for //-paths
* lib/Para/Frame/Client.pm: bugfix for ///-patsh
2008-09-05 jonas <[email protected]>
* lib/Para/Frame.pm: less debug
2008-09-04 jonas <[email protected]>
* lib/Para/Frame/Request.pm: bugfix
* lib/Para/Frame.pm: more debug
* lib/Para/Frame/Request.pm: overloaded
* lib/Para/Frame.pm: bugfix
* lib/Para/Frame.pm: More debug
* lib/Para/Frame/Request.pm: Trying to handle overload
* lib/Para/Frame/Request.pm: less debug
* lib/Para/Frame/Request.pm: added nop
* lib/Para/Frame.pm: bugfix
* lib/Para/Frame.pm: trying to handle overload
* lib/Para/Frame.pm: Bugfix
* lib/Para/Frame.pm: bugfix
* lib/Para/Frame/Request.pm: added debug
* Makefile.PL: added dependency on Spreadsheet::ParseExcel 0.32
* lib/Para/Frame.pm: bugfix
* lib/Para/Frame.pm: handling lode
* lib/Para/Frame/Worker.pm, lib/Para/Frame.pm: more debug
* lib/Para/Frame.pm: handle large load
* lib/Para/Frame.pm: bugfix
* lib/Para/Frame.pm: trying to handle large load
* lib/Para/Frame.pm, lib/Para/Frame/Request.pm: bugfix
* lib/Para/Frame/Request.pm: more debug
2008-08-21 jonas <[email protected]>
* html/pf/cms/fckeditor/.htaccess: Disables MultiViews
* INSTALL: Added notes about MultiViews
2008-08-20 jonas <[email protected]>
* html/pf/cms/fckeditor/editor/dialog/fck_spellerpages/spellerpages/blank.html, html/pf/cms/fckeditor/editor/dialog/fck_spellerpages/spellerpages/controlWindow.js, html/pf/cms/fckeditor/editor/dialog/fck_spellerpages/spellerpages/controls.html, html/pf/cms/fckeditor/editor/dialog/fck_spellerpages/spellerpages/server-scripts/spellchecker.pl, html/pf/cms/fckeditor/editor/dialog/fck_spellerpages/spellerpages/spellChecker.js, html/pf/cms/fckeditor/editor/dialog/fck_spellerpages/spellerpages/spellchecker.html, html/pf/cms/fckeditor/editor/dialog/fck_spellerpages/spellerpages/spellerStyle.css, html/pf/cms/fckeditor/editor/dialog/fck_spellerpages/spellerpages/wordWindow.js:
new files
2008-08-18 jonas <[email protected]>
* lib/Para/Frame/Worker.pm, lib/Para/Frame/Client.pm: bugfix
2008-08-07 jonas <[email protected]>
* lib/Para/Frame/Connection.pm: less debug
2008-08-05 jonas <[email protected]>
* lib/Para/Frame/Child/Result.pm: less sleepy
* lib/Para/Frame.pm: less debug
* lib/Para/Frame/User.pm: more debug
* lib/Para/Frame/Child.pm: debug
2008-08-04 jonas <[email protected]>
* lib/Para/Frame/Child.pm, lib/Para/Frame.pm: more debug
* lib/Para/Frame/Child/Result.pm: bugfix
* html/pf/cms/source.tt: Linkiung to admin-index
* html/pf/cms/edit_src.tt: - Linking to admin-index
- Higher z-index on edit area
* html/inc/menu_admin_pf.tt: edit_src is better...
* html/def/admin-index.tt: linking to show source
2008-07-21 jonas <[email protected]>
* lib/Para/Frame.pm: Making worker_startup a configuration variable
* lib/Para/Frame/Watchdog.pm: Fault tolerance?
* lib/Para/Frame/Client.pm: Bugfix
* lib/Para/Frame/Renderer/TT.pm:
Now uses $burner->pre_dir and $burner_inc_dir for TT include paths
* lib/Para/Frame/Worker.pm: less debug
* lib/Para/Frame/Template.pm: bugfix
* lib/Para/Frame/Request.pm:
Sending RESTARTING signal to client if TERMINATE set
* lib/Para/Frame/File.pm: Less debug
* lib/Para/Frame/Client.pm:
Uses backup_port if man server is restarting
* lib/Para/Frame/Burner.pm:
Now using pre_dir and inc_dir for setting up tt include paths
* lib/Para/Frame.pm: - Added method kill_children()
- Now using pre_dir and inc_dir for defining include paths
* html/inc_plain/css_components.tt:
inc_plain will not use interpolated variables anymore
* html/inc_plain/css_components.tt:
Renamed file inc_plain/css_components.tt, formerly inc/css_components.tt
* html/inc/css_components.tt:
Renamed from inc/css_components.tt to inc_plain/css_components.tt
2008-07-20 jonas <[email protected]>
* lib/Para/Frame/Worker.pm, lib/Para/Frame/Child.pm: Worker development
* lib/Para/Frame.pm: Worker bugfix
* lib/Para/Frame/Child/Result.pm: Added method reset()
* lib/Para/Frame/Worker.pm: Worker development
* lib/Para/Frame/Request.pm: Added method get_by_id()
* lib/Para/Frame/Child.pm, lib/Para/Frame.pm: Worker development
2008-07-16 jonas <[email protected]>
* lib/Para/Frame/Worker.pm: New class
* lib/Para/Frame/Watchdog.pm: cleanup
* lib/Para/Frame/Utils.pm: using workers
* lib/Para/Frame/Client.pm: added debug
* lib/Para/Frame.pm: - workers startup
- bugfix for close socket
* demo/demoserver.pl: added comments
2008-07-14 jonas <[email protected]>
* lib/Para/Frame/Request.pm: bugfix
* lib/Para/Frame/Child.pm, lib/Para/Frame.pm: introducing workers
2008-07-10 jonas <[email protected]>
* lib/Para/Frame/Client.pm:
Just add a suggestion if a SetHandler perl-script may be missing
* lib/Para/Frame/Request.pm: Restores reaper on fork failure
2008-07-06 jonas <[email protected]>
* html/pf/cms/edit_html.tt: handles javascript content
* html/pf/cms/edit_src.tt: larger textarea
* html/pf/cms/edit_src.tt: fullscreen button working
* html/pf/images/fullscreen.gif: fullscreen button
* lib/Para/Frame/Request.pm: Trying to ease restart of server
* lib/Para/Frame.pm: less debug
* lib/Para/Frame.pm: Development
2008-07-01 jonas <[email protected]>
* lib/Para/Frame/L10N.pm: changed load order
2008-06-30 jonas <[email protected]>
* lib/Para/Frame.pm: Bugfix
* lib/Para/Frame/File.pm: added sanity check
* lib/Para/Frame/Dir.pm: debugging
* lib/Para/Frame/Dir.pm: dir debug
* lib/Para/Frame/Dir.pm: better error message
* lib/Para/Frame/List.pm: bugfix
2008-06-29 jonas <[email protected]>
* lib/Para/Frame/Widget.pm: Adding htmlarea, using fckeditor
2008-06-28 jonas <[email protected]>
* lib/Para/Frame/File.pm: Not adding extra BOM on save
* lib/Para/Frame.pm: gives sid in session debug
* html/pf/config/inc/menu.tt: menu
* lib/Para/Frame/Watchdog.pm: bugfix
* lib/Para/Frame.pm: expiering old sessions
* lib/Para/Frame/Widget.pm: Changed loading order
* lib/Para/Frame/Watchdog.pm: Avoid importing all POSIX constants
* lib/Para/Frame/Utils.pm: Changed loading order
* lib/Para/Frame/Template.pm: undef fix
* lib/Para/Frame/Reload.pm: docfix
* lib/Para/Frame/L10N.pm: Changed loading order
* lib/Para/Frame/Email.pm: Makes Crypt::OpenPGP optional
* lib/Para/Frame.pm: Changed loading order
* INSTALL: libdatetime-set-perl availible
2008-06-24 jonas <[email protected]>
* INSTALL, Makefile.PL: Added Captcha::ReCAPTCHA dependency
2008-06-23 jonas <[email protected]>
* lib/Para/Frame/Action/send_mail.pm, lib/Para/Frame/Captcha.pm, lib/Para/Frame/L10N/sv.pm, lib/Para/Frame/Site.pm:
Added captcha functionality
2008-06-19 jonas <[email protected]>
* lib/Para/Frame/Action/imagedir_modify.pm: bugfix
* html/inc/menu_admin_pf.tt: updated admin buttons
2008-06-18 jonas <[email protected]>
* lib/Para/Frame/Action/imagedir_modify.pm: new action
2008-06-17 jonas <[email protected]>
* lib/Para/Frame/Request/Ctype.pm: Make class usable without active req
* lib/Para/Frame/Renderer/TT.pm: Selects charset for compiled page
* lib/Para/Frame/Template.pm:
Save compiled pages with bom it charset is utf8
* lib/Para/Frame/File.pm: Check for doucble slashes
* lib/Para/Frame/Client.pm: Reomoves extra slashes
2008-06-13 jonas <[email protected]>
* lib/Para/Frame/Template.pm:
Using set_content_as_text() for storing file, in order to add the BOM
* lib/Para/Frame.pm:
No interpolation of plain text failes anymore, du to complications for js
* html/pf/css/paraframe.css, html/pf/css/default.css: No inline anymore
* html/pf/cms/fckeditor/.htaccess: added CRLF on the end
2008-06-12 jonas <[email protected]>
* lib/Para/Frame/L10N/sv.pm, lib/Para/Frame/Action/user_login.pm, lib/Para/Frame/User.pm:
login development
* lib/Para/Frame.pm: Added hook before_user_login
* INSTALL: Added more packages
2008-06-10 jonas <[email protected]>
* lib/Para/Frame/Action/user_login.pm: i18n user login error message
* lib/Para/Frame.pm: bugfix
* Makefile.PL: PGP should be optional
2008-06-07 jonas <[email protected]>
* lib/Para/Frame/Action/store_content.pm: bugfix for /index.tt
2008-05-28 jonas <[email protected]>
* html/pf/cms/fckeditor/fckconfig.js: reverting to not escaping dollar
* html/pf/cms/fckeditor/.htaccess: bugfix
* html/pf/cms/fckeditor/editor/js/.htaccess, html/pf/cms/fckeditor/editor/js/fckeditorcode_gecko.js, html/pf/cms/fckeditor/editor/js/fckeditorcode_ie.js:
reverting to not escaping dollar
2008-05-22 jonas <[email protected]>
* lib/Para/Frame/Action/send_mail.pm: bugfix
* lib/Para/Frame/Action/send_mail.pm: Added docs
* lib/Para/Frame/Email.pm: more debug
2008-05-13 jonas <[email protected]>
* lib/Para/Frame/DBIx.pm: less debug
2008-05-12 jonas <[email protected]>
* lib/Para/Frame/List.pm: Bugfix for set_limit()
* lib/Para/Frame/List.pm: bugfix in merge
2008-05-09 jonas <[email protected]>
* lib/Para/Frame/Widget.pm: radio, previous
2008-05-04 jonas <[email protected]>
* lib/Para/Frame/Widget.pm: Exporting selector... som small fixes
2008-04-29 jonas <[email protected]>
* lib/Para/Frame/Dir.pm, lib/Para/Frame.pm: bugfix
2008-04-16 jonas <[email protected]>
* html/inc/form_start.tt, html/pf/js/pf.js:
Safing up for idiots (read: IE)
2008-04-14 jonas <[email protected]>
* lib/Para/Frame/Widget.pm: bugfix
2008-04-09 jonas <[email protected]>
* lib/Para/Frame/Widget.pm: Adding js pattern matching
2008-04-08 jonas <[email protected]>
* lib/Para/Frame.pm: Dafults bg_user to root
2008-04-04 jonas <[email protected]>
* lib/Para/Frame/Utils.pm: Should not rewrite the error message....
* lib/Para/Frame/Request.pm: maby handle more error cases
* Makefile.PL: added dependency
* lib/Para/Frame/Email/Address.pm:
desigs returns addres usable for inclusion in To field
* lib/Para/Frame/Burner.pm, lib/Para/Frame/Request.pm: docfix
2008-04-03 jonas <[email protected]>
* html/inc/css_components.tt: relative font-size
2008-04-02 jonas <[email protected]>
* lib/Para/Frame/Request/Response.pm: less debug
2008-04-01 jonas <[email protected]>
* lib/Para/Frame/Client.pm: bugfix
2008-03-30 jonas <[email protected]>
* lib/Para/Frame/L10N.pm: Not sending Vary if only one language in site
* lib/Para/Frame/Client.pm: more debug
2008-03-25 jonas <[email protected]>
* lib/Para/Frame/File.pm: less debug
* tools/find_nonlatin1: New utf8 tool
* lib/Para/Frame/Email/Address.pm, lib/Para/Frame/Widget.pm: undef fix
2008-03-23 jonas <[email protected]>
* dev/inc_pre/header_prepare.tt, html/inc/border_bottom.tt, html/inc/form_start.tt, html/inc/header_prepare.tt, html/inc/js.tt, html/pf/js/pf.js, html/pf/loading.html, lib/Para/Frame/Client.pm, lib/Para/Frame/Widget.pm:
For xhtml1.1 compliance, removed name attribute from form. use document.forms['f'] instead!
2008-03-18 jonas <[email protected]>
* lib/Para/Frame/Utils.pm, lib/Para/Frame/User.pm: bugfix
2008-03-17 jonas <[email protected]>
* lib/Para/Frame.pm, lib/Para/Frame/Action/debug_change.pm, lib/Para/Frame/Action/language_set.pm, lib/Para/Frame/Action/mark.pm, lib/Para/Frame/Action/next_step.pm, lib/Para/Frame/Action/remove_step.pm, lib/Para/Frame/Action/send_mail.pm, lib/Para/Frame/Action/server_reload.pm, lib/Para/Frame/Action/server_restart.pm, lib/Para/Frame/Action/server_terminate.pm, lib/Para/Frame/Action/session_vars_update.pm, lib/Para/Frame/Action/skip_step.pm, lib/Para/Frame/Action/store_content.pm, lib/Para/Frame/Action/symdump.pm, lib/Para/Frame/Action/user_login.pm, lib/Para/Frame/Action/user_logout.pm, lib/Para/Frame/Action/wait_for_req.pm, lib/Para/Frame/Burner.pm, lib/Para/Frame/CGI.pm, lib/Para/Frame/CSS.pm, lib/Para/Frame/Change.pm, lib/Para/Frame/Child.pm, lib/Para/Frame/Child/Result.pm, lib/Para/Frame/Client.pm, lib/Para/Frame/Code/Class.pm, lib/Para/Frame/Connection.pm, lib/Para/Frame/Cookies.pm, lib/Para/Frame/DBIx.pm, lib/Para/Frame/DBIx/Pg.pm, lib/Para/Frame/DBIx/State.pm, lib/Para/Frame/DBIx/Table.pm, lib/Para/Frame/DBIx/mysql.pm, lib/Para/Frame/Dir.pm, lib/Para/Frame/Email.pm, lib/Para/Frame/Email/Address.pm, lib/Para/Frame/Email/Address/Fallback.pm, lib/Para/Frame/File.pm, lib/Para/Frame/Image.pm, lib/Para/Frame/L10N.pm, lib/Para/Frame/L10N/en.pm, lib/Para/Frame/L10N/sv.pm, lib/Para/Frame/List.pm, lib/Para/Frame/Logging.pm, lib/Para/Frame/Reload.pm, lib/Para/Frame/Renderer/Custom.pm, lib/Para/Frame/Renderer/HTML_Fallback.pm, lib/Para/Frame/Renderer/TT.pm, lib/Para/Frame/Request/Ctype.pm, lib/Para/Frame/Request/Response.pm, lib/Para/Frame/Result.pm, lib/Para/Frame/Result/Part.pm, lib/Para/Frame/Route.pm, lib/Para/Frame/Session.pm, lib/Para/Frame/Site.pm, lib/Para/Frame/Spreadsheet.pm, lib/Para/Frame/Spreadsheet/CSV.pm, lib/Para/Frame/Spreadsheet/Excel.pm, lib/Para/Frame/Template.pm, lib/Para/Frame/Template/Compiled.pm, lib/Para/Frame/Template/Plugin/Meta/Interpolate.pm, lib/Para/Frame/Template/Plugin/Sorted_table.pm, lib/Para/Frame/Template/Stash/CheckUTF8.pm, lib/Para/Frame/Time.pm, lib/Para/Frame/URI.pm, lib/Para/Frame/Unicode.pm, lib/Para/Frame/Uploaded.pm, lib/Para/Frame/User.pm, lib/Para/Frame/Utils.pm, lib/Para/Frame/Watchdog.pm, lib/Para/Frame/Widget.pm:
Removed DESCRIPTION from license part of modules and updated copyright
2008-03-16 jonas <[email protected]>
* lib/Para/Frame.pm: less debug
2008-03-12 jonas <[email protected]>
* lib/Para/Frame/Request/Response.pm: Setting cookies on stored page
* lib/Para/Frame/CSS.pm: spelling
2008-03-08 jonas <[email protected]>
* lib/Para/Frame/Request.pm: added note
2008-03-05 jonas <[email protected]>
* lib/Para/Frame.pm: docfix
2008-03-03 jonas <[email protected]>
* lib/Para/Frame/Widget.pm: Bugfix in submit()
2008-02-28 jonas <[email protected]>
* lib/Para/Frame.pm: %USER not used
2008-02-27 jonas <[email protected]>
* lib/Para/Frame/Request/Response.pm:
Includes a timestamp in response object
* lib/Para/Frame.pm:
Using timestamp in response rather than last request time
* lib/Para/Frame/Utils.pm: undef fix
2008-02-14 jonas <[email protected]>
* lib/Para/Frame/Widget.pm:
Cleaned up href_args for go(), jump() and submit()
2008-02-13 jonas <[email protected]>
* lib/Para/Frame/Request.pm: bugfix
2008-02-12 jonas <[email protected]>
* lib/Para/Frame/Request/Ctype.pm: less debug
2008-02-10 jonas <[email protected]>
* lib/Para/Frame/Utils.pm:
Handle exceptions from inside IO::Socket module
* lib/Para/Frame/Request.pm: Added note about secret ttc dir
* html/inc/js.tt: Added comment
* lib/Para/Frame.pm: debugging
2008-02-08 jonas <[email protected]>
* lib/Para/Frame/Route.pm: bugfix
* Makefile.PL: Added dependancy
* INSTALL: added dependancy
2008-01-31 jonas <[email protected]>
* lib/Para/Frame/List.pm: Added method resort()
* html/pf/css/paraframe.css: No border around sort arrow
2008-01-30 jonas <[email protected]>
* lib/Para/Frame/Utils.pm: better debug
2008-01-29 jonas <[email protected]>
* lib/Para/Frame/Email/Address.pm: Better error handling
* lib/Para/Frame/Utils.pm: added note
* lib/Para/Frame/DBIx.pm: Added method delete
2008-01-22 jonas <[email protected]>
* lib/Para/Frame/Result/Part.pm: docfix
* lib/Para/Frame/Site.pm: More debug
* lib/Para/Frame/List.pm: Added merge() and reverse()
2008-01-16 jonas <[email protected]>
* html/pf/cms/fckeditor/editor/js/fckeditorcode_gecko.js, html/pf/cms/fckeditor/editor/js/fckeditorcode_ie.js, html/pf/cms/fckeditor/fckconfig.js:
Escaping $
2007-12-13 jonas <[email protected]>
* lib/Para/Frame/Request/Ctype.pm: adding graphviz
2007-12-11 jonas <[email protected]>
* lib/Para/Frame/Client/Fixup.pm: new module
* INSTALL: Added note about Para::Frame::Client::Fixup
2007-12-10 jonas <[email protected]>
* t/pod.t: new test
* lib/Para/Frame/Email/Address.pm:
Temporary force updated version of Net::Domain::TLD
2007-12-05 jonas <[email protected]>
* lib/Para/Frame/Utils.pm: More exact timediff
* t/01_basic.t, MANIFEST: fix
2007-12-04 jonas <[email protected]>
* lib/Para/Frame/Widget.pm: docfix
2007-11-26 jonas <[email protected]>
* lib/Para/Frame.pm, lib/Para/Frame/Watchdog.pm:
Detatching during server startup AFTER init done
2007-11-23 jonas <[email protected]>
* html/inc/components.tt, html/inc/form_start.tt: ajax
2007-11-20 jonas <[email protected]>
* lib/Para/Frame/Session.pm: Added method latest()
* lib/Para/Frame.pm: not TERMINATING if pages stored in session
2007-11-13 jonas <[email protected]>
* lib/Para/Frame/File.pm, lib/Para/Frame/Dir.pm:
Checks if file exist before removing
2007-11-07 jonas <[email protected]>
* lib/Para/Frame/Request.pm: more debug
* lib/Para/Frame.pm: added esc_apostophe filter
* dev/inc_pre/header_prepare.tt: Bugfix
* lib/Para/Frame/Request/Ctype.pm: bugfix
2007-10-29 jonas <[email protected]>
* lib/Para/Frame/User.pm: i18n
* lib/Para/Frame.pm: better defaults
2007-10-26 jonas <[email protected]>
* lib/Para/Frame/Widget.pm: bugfix for 0
2007-10-24 jonas <[email protected]>
* lib/Para/Frame/Reload.pm: bugfix
* lib/Para/Frame/Widget.pm: exporting checkbox
2007-10-17 jonas <[email protected]>
* lib/Para/Frame/Request.pm: bugfix
* lib/Para/Frame/Email.pm: bugfix. Using deunicode
* INSTALL: added dependency
2007-10-16 jonas <[email protected]>
* lib/Para/Frame/Unicode.pm: unicode module
* lib/Para/Frame/Utils.pm: using Para::Frame::Unicode
* Makefile.PL: added dependency
* lib/Para/Frame/Request.pm: bugfix
2007-10-15 jonas <[email protected]>
* lib/Para/Frame/Email/Address.pm: - validating domain
- removing invisible chars
* Makefile.PL: Added a dependency
2007-10-14 jonas <[email protected]>
* lib/Para/Frame/Utils.pm: added note about password crypt