forked from maekitalo/tntnet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathChangeLog
2016 lines (1243 loc) · 60.4 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
2015-07-26 Tommi Mäkitalo <tommi@tntnet.org>
- do not use libtool in project templates for standalone applications
2015-07-20 Tommi Mäkitalo <tommi@tntnet.org>
- fix syntax error in configure.ac
some version of autoconf generated a invalid configure script. Indeed it
was wrong in configure.ac.
2015-07-15 Tommi Mäkitalo <tommi@tntnet.org>
- add a generated file to .gitignore
- fix handling scope when default value was set
- fix wrong unit tests
2015-05-25 Tommi Mäkitalo <tommi@tntnet.org>
- add js file per page to mvc template
- new standard component empty@tntnet, which sends an empty result
2015-05-19 Tommi Mäkitalo <tommi@tntnet.org>
- change mvc template: call controller also for dynamic pages, which are not routed through webmain
- fix wrong comment in index page of mvc standalone template
2015-05-18 Tommi Mäkitalo <tommi@tntnet.org>
- add a default http return code to components.
The default http return code is by default 200 HTTP_OK but may be configured per
mapping. The special value DECLINED instructs tntnet to continue with the next
mapping.
The ecpp compiler generates now a return code DEFAULT, which instructs tntnet to
fall back to that dfeault http return code.
The mvc templates use that feature so that it is not more necessary to return
DECLINED in controllers but just fall throug the end of the component.
2015-04-12 Tommi Mäkitalo <tommi@tntnet.org>
- remove some private headers from installation
- impl tnt::Tntnet
2015-04-11 Tommi Mäkitalo <tommi@tntnet.org>
- fix setting access log file using the method tnt::Tntnet::setAccessLog
2015-04-05 Tommi Mäkitalo <tommi@tntnet.org>
- add some more documentation to project templates
- use cxxtools::LogConfiguration to initialize logging
2015-03-16 Tommi Mäkitalo <tommi@tntnet.org>
- check for sed in configure - it is used in tntnet-project
2015-03-21 Tommi Mäkitalo <tommi@tntnet.org>
- remove irritating comment from tntnet.xml
- remove <%application> scope from project templates since it should really be avoided, so we do not suggest it to use
2015-03-16 Tommi Mäkitalo <tommi@tntnet.org>
- minor changes after running cppcheck
2015-03-15 Tommi Mäkitalo <tommi@tntnet.org>
- fix generation of dependencies in ecppc: do not just use basename but full file path of target
- change project templates to use new default file scope in models
- add new file scope as default scope to ecpp
- fix ecpp parser: <<$ is now parsed correctly
- do not install internal header files from defcomp and add new defcomp "setheader"
2015-03-01 Tommi Mäkitalo <tommi@tntnet.org>
- remove some internal classes from api documentation
2015-02-27 Tommi Mäkitalo <tommi@tntnet.org>
- add examples for tntdb dburl in project template
2015-02-09 Tommi Mäkitalo <tommi@tntnet.org>
- Update quick-start-guide.markdown
2015-02-06 Tommi Mäkitalo <tommi@tntnet.org>
- remove unused include from project templates
2015-02-05 Joan <jouven@gmail.com>
- Update applicationunlocker.h
2015-02-02 Tommi Mäkitalo <tommi@tntnet.org>
- generalize mapping in mvc template projects
- fix g++ linker errors with tntnet-project
2015-02-01 Tommi Mäkitalo <tommi@tntnet.org>
- improve project template: add some layout and instructions, how to proceed
- improve project templates: add compile flags for C++11 when available and use xml configuration in mvc-standalone
2015-01-31 Tommi Mäkitalo <tommi@tntnet.org>
- fix Makefile.am (README in mvc-standalone template is README.md)
2015-01-30 Tommi Mäkitalo <tommi@tntnet.org>
- make definition of port in listener mandatory instead of taking 80 (or 443 for ssl) as default
allow definition of one listener at top level of configuration file
- Update Makefile.am
- Update Makefile.am
- Update Makefile.am
- Update Makefile.am
- Update Makefile.am
- fix linker command
2015-01-26 Tommi Mäkitalo <tommi@tntnet.org>
- improve mvc-standalone project template
2015-01-25 Tommi Mäkitalo <tommi@tntnet.org>
- improve mvc templates of tntnet-project
- remove useless flag DEFER_ACCEPT passed to accept method of ssl socket
2015-01-24 Tommi Mäkitalo <tommi@tntnet.org>
- remove old remaining fragments of stressjob - the stressjob was removed already long ago
2015-01-23 Tommi Mäkitalo <tommi@tntnet.org>
- new howto for chunked encoding
2015-01-22 Tommi Mäkitalo <tommi@tntnet.org>
- make socketoption SO_REUSEADDR configurable; default is to set the option
- minor change: get http error text automatically
2015-01-10 Tommi Mäkitalo <tommi@tntnet.org>
- add --config flag to tntnet-project to generate a tntnet.xml template and replace tntnet-config with tntnet-project for that in the demo applications
2015-01-09 Tommi Mäkitalo <tommi@tntnet.org>
- minor cleanup in unit test for component
2015-01-04 Tommi Mäkitalo <tommi@tntnet.org>
- add some unit tests for component processing and fix cmd interface after finding bugs with those tests
2014-12-29 Tommi Mäkitalo <tommi@tntnet.org>
- Update ecppc.1.markdown
- Update quick-start-guide.markdown
Add:
- terminal promt for terminal instruction
- tab size from 1 to 4, for better reading ecpp (html) code
- Update ecppc.1.markdown
Typo fixes
2014-12-28 Tommi Mäkitalo <tommi@tntnet.org>
- Update ecppl.1.markdown
- Update ecppl.1.markdown
Add:
- help and version usage
- Update ecppc.1.markdown
Add:
- help and version option usage
- Update quick-start-guide.markdown
2014-11-22 Jonas Platte <mail@jonasplatte.de>
- Fixed an include path issue introduced when adding -h / --help to ecppc and ecppl
- Added -h / --help to tntnet-project, improved error handling
2014-11-13 Jonas Platte <mail@jonasplatte.de>
- Updated wrong argument and help option handling in ecppc,
removed Usage exception class (from ecppc.h), added myself to the AUTHORS file
2014-12-28 Tommi Mäkitalo <tommi@tntnet.org>
- merged changes from jplatte
2014-11-11 Jonas Platte <mail@jonasplatte.de>
- Added version and help flags to ecppc, minor readabilty changes
2014-11-09 Jonas Platte <mail@jonasplatte.de>
- Added -V, -h and --help options to ecppl
2014-12-28 Tommi Mäkitalo <tommi@tntnet.org>
- Update quick-start-guide.markdown
- install instruction before install from tarball, this are similar with the FAQ 1.9.
2014-12-27 Ralf Schülke <ralf.schuelke@gmail.com>
- Update quick-start-guide.markdown
Small typo fix and add a autotools mini howto link.
2014-12-26 Tommi Mäkitalo <tommi@tntnet.org>
- remove old documents, logos and tntnet-config
2014-12-25 Tommi Mäkitalo <tommi@tntnet.org>
- change generation of component name and output file name in ecpp compiler ecppc:
remove just .ecpp extension and keep others, so that e.g. tntnet.jpg results
in a component name "tntnet.jpg" and output file name "tntnet.jpg.cpp".
- add tntnet logo
2014-12-22 Tommi Mäkitalo <tommi@tntnet.org>
- update copyright header
- update gitignore
- update README file
- fix project templates: add static sources in dist package
- cleanup demos
- minor improvement in project templates (use srcdir instead of top_srcdir to find sources)
- fix out of tree build of new chat demo
2014-12-21 Tommi Mäkitalo <tommi@tntnet.org>
- replace chat and rajax-jquery demos with a better chat demo with long poll
2014-12-14 Tommi Mäkitalo <tommi@tntnet.org>
- fix bug in chunked encoding; output to reply.sout() must be routed through chunked encoder
2014-12-10 Tommi Mäkitalo <tommi@tntnet.org>
- fixes for compression
2014-12-05 Tommi Mäkitalo <tommi@tntnet.org>
- install demos again into pkg dir since disabling that prevents automake to create .so-files - very strange
- some fixes for chunked output stream in http reply - compression might work now but not yet tested
2014-12-04 Tommi Mäkitalo <tommi@tntnet.org>
- use opitimized ostream to collect output data instead of std::ostringstream
- update autoconf macro to check for C++-11 (makes C++-11 flag optional)
- remove generated file
2014-11-17 Tommi Mäkitalo <tommi@tntnet.org>
- undeprecate "global" scope and improve some error messages in ecpp parser
2014-11-15 Tommi Mäkitalo <tommi@tntnet.org>
- do not install demo applications on make install
- read values optionally from xml attributes in tntnet.xml when cxxtools supports it (cxxtools version >=2.3)
2014-11-09 Tommi Mäkitalo <tommi@tntnet.org>
- move definition of TcpJob and SslTcpJob from job.cpp into separate source file
- remove useless condition which leads to a compiler warning about uninitialized variable in openssl.cpp
2014-11-04 Tommi Mäkitalo <tommi@tntnet.org>
- use autoconf variables instead of directly call mkdir -p and sed in Makeile.am
2014-11-02 Jonas Platte <mail@jonasplatte.de>
- Added pkg-config support
- Updated .gitignore
- Added $(AM_V_GEN) for tntnet.xml generation in /etc
2014-11-04 Tommi Mäkitalo <tommi@tntnet.org>
- remove optional extension in url from default mapping
2014-11-03 Tommi Mäkitalo <tommi@tntnet.org>
- update gitignore
- move mapping of resources to top in project templates
2014-11-01 Tommi Mäkitalo <tommi@tntnet.org>
- update ChangeLog
- remove generated file tntnet-project
- update gitignore
- fix project templates: add mapping to resources, allow - in project name
2014-10-31 Tommi Mäkitalo <tommi@tntnet.org>
- add static resources to all tntnet-project templates and other small fixes in those
2014-10-28 Tommi Mäkitalo <tommi@tntnet.org>
- discard previous http reply on execute if not fully read in http client
2014-10-19 Tommi Mäkitalo <tommi@tntnet.org>
- fix handling of ranges in static@tntnet when using sendfile
2014-10-17 Tommi Mäkitalo <tommi@tntnet.org>
- update http redirect code, use 307 instead of 302 for temporary redirects
2014-10-08 Tommi Mäkitalo <tommi@tntnet.org>
- use c++ 11 mode of compiler if supported for better optimization
2014-10-08 Tommi Mäkitalo <tommi@tntnet.org>
- do not log content size when chunked encoding is used since it is not really known
2014-09-12 Tommi Mäkitalo <tommi@tntnet.org>
- forward flush of chunked output stream buffer to underlying stream buffer after writing chunk
2014-08-26 Tommi Mäkitalo <tommi@tntnet.org>
- fix configuring tntnet using a own TntConfig object
- fix compiler warning in openssl.cpp
2014-04-15 Jonas Platte <mail@jonasplatte.de>
- Last big style update:
fixed all warnings from gcc with -Wall -Wextra (without building demos, with ssl=openssl)
2014-04-14 Jonas Platte <mail@jonasplatte.de>
- Some style updates:
Added explicitly "private:" to classes where it was missing,
Corrected indentation and line breaks,
Updated private member variable names (more to come)
- Unified blank lines in source files
- Added missing TNT_ prefix for include guard macros
- Small style and doc update for Component
- Removed duplicate libtool entry in .gitignore
2014-04-08 Jonas Platte <mail@jonasplatte.de>
- Added some documentation to HttpRequest
2014-08-01 Tommi Mäkitalo <tommi@tntnet.org>
- change in ecppc: use typedefs for scoped variables only when really needed (when typename contains a comma)
2014-07-23 Tommi Mäkitalo <tommi@tntnet.org>
- small optimization when setting date header
2014-06-29 Tommi Mäkitalo <tommi@tntnet.org>
- add content size of previous components to content length header in static@tntnet
2014-06-09 Tommi Mäkitalo <tommi@tntnet.org>
- create projects using templates in tntnet-project
2014-06-03 Tommi Mäkitalo <tommi@tntnet.org>
- add emulation for old pushArg method for positional parameters in mappings
- revert component variable definition due to problems with types with commas (like std::map<std::string,std::string>)
2014-05-30 Tommi Mäkitalo <tommi@tntnet.org>
- fix syntax error in tnt/sessionunlocker.h (looks like nobody use it)
2014-05-29 Tommi Mäkitalo <tommi@tntnet.org>
- build fix: according to the standard std::ostream do not have a default constructor (but in gcc)
2014-05-02 Tommi Mäkitalo <tommi@tntnet.org>
- do not report a warning when a empty file is send on systems without sendfile
2014-04-07 Tommi Mäkitalo <tommi@tntnet.org>
- fix generating projects with special characters in tntnet-project
2014-04-06 Jonas Platte <mail@jonasplatte.de>
- Added $(AM_V_GEN) to alldemos, tntnet-project
2014-04-06 Tommi Mäkitalo <tommi@tntnet.org>
- fix unittest for scopes and add scope tests
2014-04-05 Jonas Platte <mail@jonasplatte.de>
- Fixed build + some small improvements for the demos
2014-04-04 Ralf Schülke <ralf.schuelke@gmail.com>
- Update quick-start-guide.markdown
2014-04-04 Tommi Mäkitalo <tommi@tntnet.org>
- fix build on systems without epoll (build was broken since style revision)
- tntnet-wizzard was renamed to tntnet-project - do so also in Makefile.am
2014-04-03 Jonas Platte <mail@jonasplatte.de>
- Little fix for non-working references
- Added missing "@endcond internal" doxygen label
2014-04-02 Tommi Mäkitalo <tommi@tntnet.org>
- rename tntnet-wizzard to tntnet-project
- make out of tree build working in tntnet-wizzard generated projects
2014-03-31 Jonas Platte <mail@jonasplatte.de>
- Various small doc and style updates
- Another documentation revision for TntConfig
- Small fixes in Tntnet documentation
2014-03-30 Jonas Platte <mail@jonasplatte.de>
- Cleaned up the source tree a bit
2014-03-30 Tommi Mäkitalo <tommi@tntnet.org>
- set cache-control header only when not already set by user
- fix licence header from GPL to LGPL
2014-03-30 Tommi Mäkitalo <tommi@tntnet.org>
- set cache control header just once
2014-03-20 Jonas Platte <jonasplatte@myopera.com>
- A little last style update in cookie.h
- Style revisions
2014-03-18 Tommi Mäkitalo <tommi@tntnet.org>
- integrate newsdb demo into build of demos
2014-03-18 Tommi Mäkitalo <tommi@tntnet.org>
- do not use C++ style comments in C source
- improve mvc demo including adding documentation
- improve mvc demo including adding documentation
- add gd demo application to demonstrate how to create dynamic graphics using the famous gd library
2014-03-18 Jonas Platte <mail@jonasplatte.de>
- Further style revision
2014-03-17 Tommi Mäkitalo <tommi@tntnet.org>
- update unzip stuff
- fix memory leak when reading configuration files
- fix invalid use of return code in SSL_shutdown
2014-03-17 Jonas Platte <mail@jonasplatte.de>
- Style revision for everything from applicationunlocker to dispatcher {.h|.cpp}
2014-03-16 Tommi Mäkitalo <tommi@tntnet.org>
- move and rename directory sdk/demos to demo
- use configure flag --enable/--disable for server, sdk and demos and disable building demos by default
2014-03-15 Tommi Mäkitalo <tommi@tntnet.org>
- add unused switch-cases back to reduce compiler warnings
2014-03-15 Jonas Platte <jonasplatte@myopera.com>
- Fixed Mime class not overwriting virtual function configure from its base class Component, removed .dirstamp files
2014-03-14 Jonas Platte <jonasplatte@myopera.com>
- Added null initialization for member pointers that previously were not initialized on object construction
2014-03-11 Jonas Platte <mail@jonasplatte.de>
- Some minor bugfixes
- Removed dead and unused code
- Little documentation update
2014-03-10 Jonas Platte <mail@jonasplatte.de>
- Reverted style changes
2014-03-09 Jonas Platte <jonasplatte@myopera.com>
- Style revision on HttpMessage and HttpReply, partial style revision on HttpRequest,
partial documentation revision on all three
- Completed style and documentation revision of Compident, Maptarget and Tntnet,
added a new mapUrl overload and deprecated old ones including vMapUrl
2014-03-01 Jonas Platte <mail@jonasplatte.de>
- Revised code style and documentation for Compident
2014-02-21 Tommi Mäkitalo <tommi@tntnet.org>
- fix handling scoped variables - scope was forgot when variables were initialized
2014-02-19 Tommi Mäkitalo <tommi@tntnet.org>
- make type conversion explicit to reduce compiler warnings
2014-02-19 Jonas Platte <mail@jonasplatte.de>
- Started documentation revision on httpmessage.h,
httpreply.h and httprequest.h; some minor changes in the documentation of tntnet.h
2014-02-18 Tommi Mäkitalo <tommi@tntnet.org>
- check in generated man page of ecpp with documentaion of <%attr> included
- add documentation about <%attr> tag
- Fixed building in a subdirectory
2014-02-10 Tommi Mäkitalo <tommi@tntnet.org>
- fix some doxygen comments
2014-02-08 Tommi Mäkitalo <tommi@tntnet.org>
- better error message in ecpp parser on unexpected end of file
- fix doxygen comment of listen method in tnt::Tntnet
- allow one line c++ section (% at start of line) to be closed with eof
2014-02-05 Tommi Mäkitalo <tommi@tntnet.org>
- add missing include in gnutls.cpp
2014-02-04 Tommi Mäkitalo <tommi@tntnet.org>
- fix formatting in tntnet-wizzard
2014-02-03 Tommi Mäkitalo <tommi@tntnet.org>
- make <%config> working again - was broken for quite some time
2014-02-01 Tommi Mäkitalo <tommi@tntnet.org>
- remove one directory level in generated projects of tntnet-wizzard to simplify project structure
2014-01-29 Tommi Mäkitalo <tommi@tntnet.org>
- implement chunked encoding transfer mode
2014-01-22 Tommi Mäkitalo <tommi@tntnet.org>
- add new jquery with tntnet howto
2014-01-21 Tommi Mäkitalo <tommi@tntnet.org>
- update doxygen documentation in tnt::TntConfig
- remove background worker feature - it was never used I guess
2014-01-20 Tommi Mäkitalo <tommi@tntnet.org>
- update version number and abi version (must be higher than version 2.2 and 2.2.1)
2014-01-05 Tommi Mäkitalo <tommi@tntnet.org>
- change default user of tntnet to tntnet
- remove init script from tntnet - the packager has to write it depending on the distribution
2014-01-04 Jonas Platte <mail@jonasplatte.de>
- Started documenting TntConfig, flagged some classes internal
2013-12-26 Tommi Mäkitalo <tommi@tntnet.org>
- fix changing root dir of tntnet
2013-12-25 Tommi Mäkitalo <tommi@tntnet.org>
- add missing linkflag -lz to ecppc
2013-12-22 Jonas Platte <mail@jonasplatte.de>
- Reformatted multiline doc comments in tntnet.h
2013-12-21 Jonas Platte <mail@jonasplatte.de>
- Revised documentation in tnt/tntnet.h
(still some bits missing)
2013-12-19 Tommi Mäkitalo <tommi@tntnet.org>
- add some sanity checks for urls in static component
2013-12-11 Tommi Mäkitalo <tommi@tntnet.org>
- fix possible information leak
2013-11-29 Tommi Mäkitalo <tommi@tntnet.org>
- update installation hints
2013-11-10 Tommi Mäkitalo <tommi@tntnet.org>
- update tntnet-wizzard (move source to src subdirectory and other changes)
- replace configure.in with configure.ac in tntnet-config generated autoproject
- fix some minor stuff in quick start guide
2013-11-06 Tommi Mäkitalo <tommi@tntnet.org>
- fix typo in quick start guide
2013-11-05 Tommi Mäkitalo <tommi@tntnet.org>
- fix forward declaration of struct TntConfig (produced a compiler warning)
2013-10-31 Tommi Mäkitalo <tommi@tntnet.org>
- use memmove instead of memcpy when removing message header since the areas may overlap
2013-10-11 Tommi Mäkitalo <tommi@tntnet.org>
- add --version switch to all tntnet tools
2013-10-03 Tommi Mäkitalo <tommi@tntnet.org>
- autoscan.sh is obsolete - use "autoreconf -i" instead
2013-09-22 Tommi Mäkitalo <tommi@tntnet.org>
- the tnt::Job do not need to be atomic ref counted; making it simple ref counted speeds up tntnet for about 1%
- add doctype to tntnet-config template
- fix escape sequence and add doctype to template in tntnet wizzard
- fix racing condition: releasing request may result in a pthread unlock error
2013-09-20 Tommi Mäkitalo <tommi@tntnet.org>
- fix syntax error in wizzard
2013-09-07 Tommi Mäkitalo <tommi@tntnet.org>
- do not try to write access log when it is disabled
- do not call SSL_shutdown twice when the first call completed the shutdown already
2013-08-25 Tommi Mäkitalo <tommi@tntnet.org>
- empty setting for server will omit server header
2013-08-23 Tommi Mäkitalo <tommi@tntnet.org>
- make server response header configurable
- fix setting http header without trailing colon
2013-08-21 Tommi Mäkitalo <tommi@tntnet.org>
- do not accept %00 in url since it is not processed correctly anyway
2013-08-16 Tommi Mäkitalo <tommi@tntnet.org>
- fix url encoding (%xx accepted every alphanumeric character instead of just hex digits)
2013-08-05 Tommi Mäkitalo <tommi@tntnet.org>
- tntnet has a new logo
2013-08-04 Tommi Mäkitalo <tommi@tntnet.org>
- make dburl configuration parameter optional in mvc project of tntnet-wizzard
- tntnet-wizzard can now create a simple project in addition to a mvc project
- add check for autoconf and automake to tntnet-wizzard
- add upload howto from homepage to documentation
2013-08-03 Tommi Mäkitalo <tommi@tntnet.org>
- fix setting include directory in tntnet-wizzard
2013-07-29 Tommi Mäkitalo <tommi@tntnet.org>
- add tntnet-wizzard to dist package and fix dist target in the generated project
- create tntnet-wizzard, which creates web applications with the mvc pattern
2013-07-28 Tommi Mäkitalo <tommi@tntnet.org>
- fix another bug in ecpp parser where scope could be set only once per page
2013-07-26 Tommi Mäkitalo <tommi@tntnet.org>
- fix ecpp parser: scope could be set only once per page
2013-07-22 Tommi Mäkitalo <tommi@tntnet.org>
- repalce deprecated GLOBAL with SHARED in calcmvc demo application
2013-07-20 Tommi Mäkitalo <tommi@tntnet.org>
- rename scope="global" to scope="shared"
2013-07-10 Tommi Mäkitalo <tommi@tntnet.org>
- disable static build by default and other small cleanups in the build system
2013-07-09 Tommi Mäkitalo <tommi@tntnet.org>
- update build; autoconf wants configure.ac instead of configure.in
- simplify reading listeners from configuration
2013-07-06 Tommi Mäkitalo <tommi@tntnet.org>
- remove StressJob class - it was for load testing but not used any more
- fix vim syntax highlighting for ecpp: allow scope definition to spread multiple lines
2013-06-21 Tommi Mäkitalo <tommi@tntnet.org>
- set max age of files in multi binary components to 4 hours and allow it to be modified using maxAge arg
2013-06-20 Tommi Mäkitalo <tommi@tntnet.org>
- no need to check url in static@tntnet since it is already done before
- fix handling of documentRoot and change MaxAge setting to maxAge for consistency
2013-06-19 Tommi Mäkitalo <tommi@tntnet.org>
- add cache control header to static files and make setting cache control header more intuitive in ecpp components
- reduce warning level in tnt::Savepoint
- initialize variables in calcmvc demo
2013-06-16 Tommi Mäkitalo <tommi@tntnet.org>
- bugfix: scope was set only for first defined variable; the bug is quite new - version 2.2 is not affected
2013-06-02 Tommi Mäkitalo <tommi@tntnet.org>
- fix section in tntnet.xml man page
- use jquery in calcajax demo
- function in cpp must not be inline to be usable
- add support for permanent redirects as well as temporary in API and redirect@tntnet
- make controls demo working again
2013-06-01 Tommi Mäkitalo <tommi@tntnet.org>
- remove request.clearSession(), which do not work anyway - use reply.clearSession() instead
2013-05-30 Tommi Mäkitalo <tommi@tntnet.org>
- remove obsolete demo cgi-getenv
2013-05-29 Tommi Mäkitalo <tommi@tntnet.org>
- add configuration for calcmvc demo
2013-05-28 Tommi Mäkitalo <tommi@tntnet.org>
- multiple changes:
* simplify definition components from cpp
* simplify configuration of components
* session and application unlocker lock scope on destruction only if scope was locked before
* move macros to define scoped variables to header tnt/component.h from tnt/ecpp.h to make them
available in components defined in cpp and construct the key parameter from type and varname
instead of expecting it as a parameter
* document default components of tntnet from tntnet.so in man page tntnet-defcomp(1)
* use the simplified way to define components in demos
* add include attribute to scope tags
2013-05-20 Tommi Mäkitalo <tommi@tntnet.org>
- fix case of pidfile and compPath in documentation and example file
- fix fetching vector of query parameters
- implemented easier api for accessing and converting query arguments
2013-05-17 Tommi Mäkitalo <tommi@tntnet.org>
- implement virtualhosts configuration, so that all mappings for a virtual host can be combined into one section
2013-05-15 Tommi Mäkitalo <tommi@tntnet.org>
- fix references to other man pages in man pages
- do not set http headers when static@tntnet is not called as top level component
2013-05-04 Tommi Mäkitalo <tommi@tntnet.org>
- helper method tnt::Mapping::setArg to add arguments to mapping in application mode easier
2013-04-15 Tommi Mäkitalo <tommi@tntnet.org>
- implement controller feature in ecpp - scoped variables get a chance to handle the request
2013-04-07 tommi@tntnet.org
- use json in chat demo
2013-03-31 tommi@tntnet.org
- fix compiler warnings
- set pthread flags and select threaded compiler globally in configure script
- remove some obsolete documentation files (converted to markdown now)
2013-03-20 tommi@tntnet.org
- fix for out of tree build
2013-03-17 tommi@tntnet.org
- replace call to awk with $(AWK), which is set by configure to a suitable awk implementation
- set preprocesor flags in CPPFLAGS instead of CXXFLAGS
- fix some compiler warnings
2013-03-16 tommi@tntnet.org
- release candidate 2.2rc2
- add chapters about business logic, application class and logging to quick start guide
2013-03-11 tommi@tntnet.org
- add configure switch --disable-locale
- remove obsolete configure check for cxxtools::net::TcpServer::getFd
- don't crash if standard locale could not be created
2013-03-10 tommi@tntnet.org
- add converter script from tntnet.conf to tntnet.xml to dist package and install it
- bugfix: request.getArgDef(number, default) did not use the default value
- update man page for tntnet.xml (tag <url> is optional, request.getArgs with number)
- make url in mapping optional
- fix converting mapping from tntnet.conf to xml: tag in <mappings> should be <mapping>
- make static component loader publicly available
2013-03-09 tommi@tntnet.org
- reduce warnings with clang compiler
- do not use implicit conversion of cxxtools::SmartPtr to raw pointer
- using std::set in poller is somewhat stupid - std::vector is simpler here
- add documentation about mimeDb to tntnet.xml man page
2013-03-03 tommi@tntnet.org
- release candidate 2.2rc1
2013-03-01 tommi@tntnet.org
- regenerate man pages
- remove special characters from markdown man pages
- add new <%get> and <%post> tags to vim syntax highlighting
2013-02-28 tommi@tntnet.org
- convert static-howto document to markdown and update the content
- add <%get> and <%post> sections to receive GET or POST parameters
2013-02-27 tommi@tntnet.org
- do not use parent values feature of cxxtools::QueryParams since it was never really used and will be removed in cxxtools
- fix leak of scopes
2013-02-24 tommi@tntnet.org
- ignore exception message "lost connection to peer" when killing the monitor process before the worker process in daemon mode
- remove all references to tntnet.conf
- update documentation
2013-02-24 tommi@tntnet.org
- revert invalid change: make %config variables optional again
- make ip address in listener section of tntnet.xml optional
- remove ip address from generated tntnet.xml since it is normally not needed and now optional
- add a convenience method tnt::Tntnet::listen with just a port number to listen on all local interfaces; previously a empty string must be specified, which remains possible of course
2013-02-21 tommi@tntnet.org
- replace references to tntnet.conf with tntnet.xml in man pages
2013-02-19 tommi@tntnet.org
- add example to url mapping and listeners section in man page tntnet.xml(7)
2013-02-18 tommi@tntnet.org
- update documentation (man page for tntnet.xml is finished)
- implement named args in tntnet.xml
- continue man page for tntnet.xml (not finished yet)
2013-02-17 tommi@tntnet.org
- make node <target> mandatory in tntnet.xml as it should be
- add man page for tntnet.xml and remove obsolete man page for tntnet.conf
2013-02-16 tommi@tntnet.org
- document option -i in the man page of ecppc
- read filenames for multibinary component optionally from file using option -i in ecppc
2013-02-13 tommi@tntnet.org
- fix crash in direct mode (which is used when static files are sent)
2013-02-12 tommi@tntnet.org
- fix memory leak: scopes were never deleted since a change in cxxtools some times ago
2013-02-06 tommi@tntnet.org
- cleaner termination of tntnet using method cxxtools::net::TcpServer::terminateAccept()
2013-01-18 tommi@tntnet.org
- do not set -pedantic on xlC compiler
2013-01-08 tommi@tntnet.org
- port man pages to markdown and use md2man to generate man pages (markdown is so much easier to write)
2012-12-28 tommi@tntnet.org
- change global tntnet.conf to tntnet.xml
- remove duplicate entry from tntconfig
2012-12-24 tommi@tntnet.org
- add pkg.m4 to dist package also
- remove the unused flushdelay from man page tntnet.properties (although tntnet.properties is obsolet nowadays)
- fix builing dist package
2012-12-01 tommi@tntnet.org
- process HEAD requests for static files
2012-11-10 tommi@tntnet.org
- replace ssllisteners section from tntnet.xml with a listener entry with certificate tag
- compile with -pedantic and -Wall by default when compiler supports it
2012-10-13 tommi@tntnet.org
- do not initialize string iterator with 0 - it is not standard conformant
- replace include of tnt/encoding.h with forward declaration in tnt/httpreply.h
2012-10-02 tommi@tntnet.org
- implement method tnt::HttpReply::clearSession to clear the current session after the current request
2012-10-01 tommi@tntnet.org
- call _exit instead of exit when tntnet tries to restart itself to make restarting more robust
2012-08-04 tommi@tntnet.org
- fix forward declaration for tnt::Compident struct
2012-07-25 tommi@tntnet.org
- update gnutls support and other patches from debian package
2012-07-08 tommi@tntnet.org
- fix locking when url map cache is cleared
2012-06-30 tommi@tntnet.org
- use original query string from request instead of qparam, which is a combination of GET and POST parameters in proxy component (Artem)
2012-06-25 tommi@tntnet.org
- add some unittests for ecpp parser
- fix proxy (pass additional headers, handle '/' correctly)
- add vhost and url to not found exception
- simplify management of pooled http reply impl objects
- improvements in ecpp compiler:
- report right line number (numbering started from 0, but it should start with 1)
- don't stop on first error but try to recover
- allow '/' in component names when calling without quotes (<& foo/bar >)
2012-06-17 tommi@tntnet.org
- fix http status code ordering
invalid ordering results in invalid binary search. The bug here had no
effect until now just with good luck.
2012-06-11 tommi@tntnet.org
- make stopping tntnet more robust (I don't exactly know, if this fixes possible crashes, but looks better now)
2012-06-10 tommi@tntnet.org
- improve converter script from tntnet.conf to tntnet.xml (initialize logging using xml)
- replace tntnet.conf and tntnet.properties with new tntnet.xml in newsdb demo
- fix 2 memory leaks (static structures, which were not cleaned up correctly when tntnet stops)
- optimize writing accesslog by buffering actual writes when there are multiple requests running in parallel
2012-06-08 tommi@tntnet.org
- tntnet.properties is obsolete - do not try to generate it any more
- optimize writing access log slightly
2012-05-31 tommi@tntnet.org
- fix writing access log and pid file
- default configuration file when started as root is also xml
- fix specifiaction of compPath in generated example tntnet.xml
2012-05-28 tommi@tntnet.org
- fix typo in generated sample tntnet xml configuration
- do not truncate error log on start
- move logging configuration into tntnet.xml; cxxtools got support for configuration of logging using the serialization framework
2012-05-13 tommi@tntnet.org