-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathChangelog
More file actions
3021 lines (2070 loc) · 92.7 KB
/
Changelog
File metadata and controls
3021 lines (2070 loc) · 92.7 KB
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
28-10-2010:
* WebSession: use sequence instead of random numbers for resources
* WebRenderer: be resilient to multiple GET requests for the main
script
* WApplication: unload() does not quite() when reload-is-new-session
is disabled
* WebRenderer: fix regression where timers are stopped by refreshing
a session when reload-is-new-session is disabled
27-10-2010:
* examples/feature/dbo: added examples from the Wt::Dbo tutorial
* WPushButton: added setRef() and setResource() APIs to make a button
behave like an anchor
* WString::widen() and WString::narrow(): fix broken implementation
26-10-2010:
* WMessageResourceBundle: better preservation of white-space when
parsing the XML resource bundle
25-10-2010:
* WFileUpload: added setMultiple() which alows multiple files to
be uploaded at once (and demonstrate in composer example)
* Http/Request: changed UploadedFileMap typedef from std::map to
std::multimap
* WAbstractItemView: added methods sortColumn() and sortOrder()
22-10-2010:
* WFileUpload, WResource: support upload progress tracking (currently
only with wthttpd)
21-10-2010:
* various: support IE9 in IE9 document mode, enabling HTML5 features
like canvas and disabling workarounds no longer needed -- hooray !
19-10-2010:
* WPopupMenu: fix recycling of popup menu
18-10-2010:
* WSignal: EventSignal::connect(): added an overload which accepts
a JavaScript function, as a short-cut for JSlot when connection
management is not needed
* WSpinBox: a spin box is in the making
* WApplication: deprecated getUpdateLock() in favour of the more
conventional RIIA UpdateLock(WApplication *app) constructor
* WebSession: do not access WebSession shared_ptr during ~WebSession
but allow acquiring the update lock to fail instead when an application
is slated for destruction (#564)
* SyncLock: an adaptor for a Boost Mutex lock which avoids dead-locks
when used while holding an application lock
15-10-2010:
* WApplication: addMetaHeader() allows now to set http-equiv meta
headers and override the X-UA-Compatible meta header
14-10-2010:
* WWebWidget: reimplemented buggy clear() optimisation.
12-10-2010:
* WBoostAny: added registerType<Type>() method to register
new types for boost::any support by standard item views.
11-10-2010:
* Dbo/WtSqlTraits, Dbo/backends: added support for WTime
* Dbo/QueryModel: added support for customized header data, and
option for setQuery() to keep the current columns.
* js/StdGridLayoutImpl: use parent node geometry for detecting need
for relayout, fixes IE7+ behaviour
07-10-2010:
* WTableView, WTreeView, *ProxyModel: shift model indexes only after
the source model has inserted or removed rows, see bug #546
* WProgressBar: added valueChanged() and progressCompleted() signals,
from Omer Katz.
05-10-2010:
* CMakeLists.txt: patch for gentoo, make many things optional which
can be enabled or disabled explicitly regardless of whether the
libraries and header files for it are found
01-10-2010:
* WebController, WebSession: use shared_ptr for WebSession to resolve
concurrency bug #544
* Wt::Dbo: use a spirit based parser for sql queries to handle more
complex queries like 'WITH ... SELECT ...' syntax, but also with
complex aggregate functions in the SELECT clause.
28-09-2010:
* WDatePicker: add setGlobalPopup() method which can be used to avoid
clipping problems on a date picker
* WDatePicker: add setPopupVisible() method
* Http/Request: add getRanges(), parsing the HTTP 1.1 Ranges header
* Http/Response: add setContentLength() allowing you to specify the
content length.
* WFileResource: support ranges to return partial file contents.
27-09-2010:
* WMenuItem: destructor now cleans up properly
* all connectors: consider appRoot as the location for the
wt_config.xml file and provide ways to configure appRoot for
wthttp and fastcgi connectors.
22-09-2010:
* WProgressBar: based on a contribution by Thomas Suckow.
21-09-2010:
* WRegExpValidator, WSortFilterProxyModel: support case-insensitive
regular expressions
* WSuggestionPopup: optimized behaviour w.r.t server-side and
client-side filtering
20-09-2010:
* WApplication: added makeAbsoluteUrl() method.
* WPopupMenuItem: support setDisabled().
16-09-2010:
* WPaintDevice: remove paintFlags() method; PaintUpdate is a property of
the painted widget, and no longer something which has to do with
WPainter. In this we revert to the old behaviour of supporting multiple
WPainters on a single paint device in turn.
14-09-2010:
* Wt.js: fix JavaScript memory leak after learning about the
surprising JavaScript scoping rules
* WApplication: add unload() and setConfirmCloseMessage() to handle the
event of the user closing the window respectively have a confirmation
* WInteractWidget, WMouseEvent: add mouseWheel() event
* WTabWidget: fixed polished style close icon, and wrapping to next line
if having many tabs
* WFormWidget: implement hasFocus()
* WLineEdit, WTextArea: implements methods for retrieving cursor
position and current selection
08-09-2010:
* WCheckBox: better tri-state support, using opacity: 0.5 as
workaround instead of an image
07-09-2010:
* WBoxLayout, WGridLayout: improved client-side performance by
selectively doing relayout
* WDate, WCalendar, WDatePicker, ...: support i18n through built-in
message resource bundle and get rid of ugly i18n bool in API
23-08-2010:
* fcgi: fix connector when using WDialog::exec() or server push
(this is broken in 3.1.4!)
* WSocketNotifier: finally (!) this beast works as advertised
10-08-2010:
* isapi: various improvements
* WSignal: SLOT/slots macro can be disabled using -DWT_NO_SLOT_MACROS
* examples: cleanups to use appRoot() and no longer use SLOT() macro
02-08-2010:
* WBatchEditProxyModel: a model that caches editing until submitted
in batch (or reverted)
* Dbo/QueryModel: remove edit strategy, this is now handled by
WBatchEditProxyModel
* WModelIndex: clarify usage when model rows/columns shift, implement
in-place toRaw/fromRaw conversion
* WDialog: add titleBar() to access the title bar
30-07-2010:
* Dbo/Query: support 'select distinct/all' syntax, and case-insenstive
query parsing
29-07-2010:
* WSuggestionPopup: misc improvements to server-side filtering, fixing
rendering glitches
* examples/feature/suggestionpopup: example demonstrating WSuggestionPopup
features
27-07-2010:
* WRasterImage: Graphicsmagick backend implementation for WPaintDevice,
sponsorted by Eurofer, can be used for PNG, GIF, etc... output
22-07-2010:
* WPdfImage: PDF backend implementation for WPaintDevice,
sponsored by Eurofer.
* http/Reply.C: enable compression for image/svg+xml mime-type.
* WInteractWidget: suppress click and double click mouse events when
disabled
20-07-2010:
* Wt/WTreeNode: added insertChildNode(), as suggested by
Aleksey Chirkin
19-07-2010:
* isapi: added a (first implementation) of an ISAPI connector,
which provides native support in Microsft IIS.
* WebSession: fix one possible race condition, and one possible dead-lock
when grabbing the session lock
* Dbo/QueryModel: implement write support (setData(), insertRows(),
and removeRows())
15-07-2010:
* Wt::Dbo: adds support for natural keys, including composite
keys, custom id and version field names, and foreign key
constraint definition that is compatible with mysql's broken sql.
* Wt::Dbo: Dbo base class is now changed to Dbo<C> template
class to take into account customizable id type.
14-07-2010:
* resizable layout managers: reset total width percentage of all
remaining columns to 100
* WCanvasPaintDevice: fix transformation bug
07-07-2010:
* examples/feature/serverPush: fix WIN32 build problem
* Chart/WCartesianChart: fix clipping margin glitch
* Dbo/QueryModel: fix missing implementation fields() method
* WAbstractToggleButton: fix disabled/readonly properties #423
* WApplication: useStyleSheet(): allow media to be specified
* WCanvasPaintDevice: fix font rendering glitch
* WTableView: improved keyboard navigation through editors
30-06-2010:
* WTabWidget, WMenu: support for closing, hiding and disabing
items, contributed by Dmitriy Igrishin
* Wt::Dbo: fix boost::optional<T> support
* WAbstractItemView: build fix for MSVC in non-Latin locales
* WAbstractItemModel: copyData() does first nullify existing data
* WSuggestionPopup: fix bug in handling of model row removal
* WWebWidget, WebRenderer: fix statelss slot learning bug when a
stubbed widget is affected (see treelist example)
* WWebWidget: fix addStyleClass(), removeStyleClass()
implementations with force=true (from Dmitriy Igrishin)
* WTableView: improved handling of arrow keys for navigating editors
10-06-2010:
* WTableView, WTreeView: workaround IE bug w.r.t. white-space: nowrap
* Chart/WCartesianChart: added createLegendItemWidget() to paint the
legend item outside the chart
* WItemDelegate, WAbstractItemView: add support for validation
* WBorderLayout: add missing setSpacing() method to control internal
spacing
* WWidget: addStyleClass() and removeStyleClass() (finally!)
* WContainerWidget: workaround scrolling bug in IE caused by
position: relative
* WEnvironment: agent() and agentIsXXX() methods
* WSvgImage: give in to inkscape's CSS font needs
* WHTML5Video, WHTML5Audio: HTML5 video and audio support
* WSuggestionPopup: implement explicit trigger (icon, key down)
* WTreeNode: support selection by click on whole row
* WWebWidget: added doJavaScript()
* examples/blog: improved support for MSVC builds, new feature allowing
profile editing
* examples/feature/serverpush: simple example illustrating use of
server push
20-05-2010:
* build: added support for cygwin
19-05-2010:
* WMenu: fix first selection not emitting internal path change (dmitry)
* WTableView: properly react to model changes
* WItemDelegate: explicit focus support
18-05-2010:
* Chart/WChart2DRenderer: fix rendering glitch when rendering grids
13-05-2010:
* WInteractWidget: added mouseDragged()
* WApplication: added addMetaHeader()
10-05-2010:
* WTableView: now supports (almost) same API as WTreeView, with the
similar style, but better performance for tabular data.
* WTableView, WTreeView, WAbstractItemView: support non-AJAX rendering
using a paging bar.
* WAbstractItemDelegate, WItemDelegate, WAbstractItemView:
supports editing
* Dbo/QueryModel: a Wt model for viewing data from a Dbo::Query
result (a first version).
* Dbo/SqlTraits: sql_result_traits was renamed to query_result_traits,
and its API updated to allow more robust query creation and result
interpretation as a list of boost::any's
* Signal: SignalBase and EventSignalBase are now documented API
* WFlashObject: reimplemented: no longer relies on JavaScript to load
the flash movie. WFlashObject no longer uses SwfObject.js. The objects
will also be resized when inserted in a layout manager.
* WHTML5Video: HTML-5 video implementation, will become part of
generic video support later
* http/Reply.C, http/StaticReply.C: support for http range header
and partial content
* web/CgiParser.C: fix parsing logic error for multi-part/formdata
28-04-2010:
* WTimer: implement singleShot(f) with f a function object variant
21-04-2010:
* WMenu: support usage without contentsStack_
* rapidxml.hpp: fix bug #344 (some special entity characters not being
handled properly)
* examples/planner: new example illustrating simple dbo usage
20-04-2010:
* Dbo/SqlConnectionPool, Dbo/FixedSqlConnectionPool: connection pool
implementations
* Dbo/Query: support for several bind strategies, including a new
DynamicBinding strategy which supports incremental query
specification
* Dbo/Session: add execute() method for executing SQL that does not
return results
08-04-2010:
* Http/Request: added headerValue()
07-04-2010:
* WSuggestionPopup: add setFilterLength() and filterModel() methods
which allow for server-side filtering based on initial input. Also
support setMaxSize() to specifiy maximum height of the popup and
scrolling through the list of suggestions
30-03-2010:
* WPanel: make titleBarWidget() public
26-03-2010:
* Wt/WShadow, Wt/WPainter: add support for drop shadows
* Wt/Chart/WDataSeries, Wt/Chart/WChart2DRenderer: add support for shadows
25-03-2010:
* Wt/Dbo/backend: provide generic properties() and API clean-ups
24-03-2010:
* Wt/Dbo/Query: also support queries without 'from' or 'select'
* Wt/Dbo/DbAction.C: create indexes on join table for each referenced
table id
* Wt/Dbo: support schema-qualified tables
23-03-2010:
* Wt/Dbo/Postgres, Wt/Dbo/Sqlite3: add proper support for dates,
time stamps, binary blobs, var chars
19-03-2010:
* WCheckBox, WRadioButton: fix inconsistencies when setting style
attributes and they have a non-empty label
15-03-2010:
* Dbo/backend/Postgres: a PostgreSQL backend, contributed by Hilary
Cheng
12-03-2010:
* EscapeOStream, WSvgImage: a host of performance improvements by
tossing away stringstream in favour of a simple SStream
* WWidget: add setLayoutSizeAware() and layoutSizeChanged() methods
08-03-2010:
* WResource: add setInternalPath() to deploy a resource at a
deterministic URL
05-03-2010:
* WebSession: add support for http PUT/DELETE methods.
* src/Http/Request: add method() to access request method
* src/Http/Response: add setStatus() to set the response status
03-03-2010:
* WCalendar: add HorizontalHeaderFormat enum (long day name support),
currentPageChanged signal, clicked signal, activated signal,
SelectionMode enum (NoSelection mode support), renderCell() virtual
method
01-03-2010:
* WGridLayout, WBoxLayout: add support for user resizing ('splitter')
functionality
* WTreeView, WGridLayout: externalize JS
25-02-2010:
* src/Wt/WString: fix narrow() and widen() character encoding
conversions
* http connector: spool large POSTs to a temporary file instead
of in-memory, and avoid extra copies
* web/CgiParser.C: skip large file uploads entirely (instead of
erroneously buffering them to memory)
22-02-2010:
* Dbo/StdSqlTraits: support float and double
* WApplication: missing initialization messes up refresh() by reload
* WPainter: now has defined behavior when missing horizontal or vertical
alignment flags in drawText()
18-02-2010:
* web/EscapeOStream.C: fix build error on MSVC
* Wt 3.1.1 released
12-02-2010:
* mxml: replace mxml with an (adapted) rapidxml browser.
28-01-2010:
* Ext/Container.C, WStackedWidget.C: fixed behavior in combination
with layout managers
25-01-2010:
* WTreeView.C: simplified column resize handling code
22-01-2010:
* WCanvasPaintDevice: Use HTML5 native canvas text when available
21-01-2010:
* WSuggestionPopup, WTree, WTreeNode, & co: make CSS themed
18-01-2010:
* Dbo: additional optional parameter to hasMany() allows the
definition of the joinId in the joinTable (you need this if you
are doing Many-to-Many between the same table).
* WDateTime, WTime: fix AM/PM parsing problem
* Dbo/SqlStatement: explicit null binding, since SQLite3 does not
reset bindings on reset()
* WTreeView: fix ite column 0 changing
12-01-2010:
* WTemplate: do not rerender bound widgets when rerendering the
template if the widget was already rendered
11-01-2010:
* themes/polished: several improvements
* WPanel, WCalendar, WDatePicker, WDialog: improved theme support
* WTreeView: several bug fixes and improved IE bug workaround support
05-01-2010:
* Chart/WAxis: added setLabelFont(), labelFont() methods
* WTreeNode: fix selection handling when removing and readding a node
* Boot.html, Hybrid.html: fix an XSS vulnerability arising from the
internal path
04-01-2010:
* Wt.js, CommAjax.js, CommScript.js: support communication problems
by retrying with exponential back-off
31-12-2009:
* Dbo: quote all identifiers
* WContainerWidget: support resetting a layout manager
29-12-2009:
* Release 3.1.0, after some more bug fixes
22-12-2009:
* Ext/FormWidget: add changed(), blurred() and focussed() signals
21-12-2009:
* WTemplate: add handleUnresolvedVariable() from Maurice Gittens
* WMenu: sanitize internal path handling
* documentation: integrate asciidoc and doxygen in CMake (target
'doc'), and improve Wt::Dbo documentation
18-12-2009:
* WTreeView: fix treeview column add/remove glitches with column 1 fixed
17-12-2009:
* WSlider: correct upside down behavior of WSlider, use more accurate
position handling
15-12-2009:
* Wt/Dbo: new C++ ORM layer
* test/: automated test suite (for non-GUI features)
* src/Wt/WTemplate: new XHTML template-based widget
* examples/blog: new example that implements a blog using Wt and
Wt::Dbo
* src/Wt/WDateTime, src/Wt/WTime: date time and time classes
15-12-2009:
* CMakeLists.txt: add XML_FEATURES option which can be used to disable
the (mini-)XML library
11-12-2009:
* WPaintedWidget, Ext::Container: properly react to resizes within
a Wt layout manager, both width and height
* StdGridLayoutItem.C, Ext::Widget: concatenate html and body style
classes to not have interference
09-12-2009:
* WDataSeries: added setHidden(bool) and isHidden()
* WCartesianChart: added renderLegendIcon()
* WTextEdit: fix updating of contents
07-12-2009:
* WWidget: added isRendered(), let widgets keep track of being rendered
* WSignal: added connect(Function& f) method
04-12-2009:
* src/web/skeleton/Wt.js: added getSelectionRange and setSelectionRange
utility functions for line edits and text areas
30-11-2009:
* src/mxml: updated to an unmodified mxml-2.6 (which includes our bug
UTF-8 bug fixes)
25-11-2009:
* all: added support for CSS-based themes.
* WAbstractItemModel, WAggregateProxyModel, WTreeView: addded support
for drilling down through treeview columns
* WSlider: added sliderMoved() signal
* Chart/WAxis: added setAutoLimits() and autoLimits() methods, and have
maximum() and minimum() return computed values
* Chart/WCartesianChart: use MarkerPenColorRole and
MarkerBrushColorRole to override colors for markers per data point
* WCanvasPaintDevice: several improvements for outputting more
concise JavaScript rendering statements
* WWidget: add find() method to find a widget with a particular
objectName()
* WFileUpload: fileTooLarge() signal now propagates within the
event loop
10-11-2009:
* Chart/WCartesianChart, Chart/WDataSeries: added mapFromDevice() and
mapToDevice() methods.
03-11-2009:
* WTreeView: fix for adding a first row to an otherwise empty model
(from Guy De Leeuw)
03-11-2009:
* 3.0.0: released!
21-10-2009:
* WMenu: set correct internal path before loading a menu item
09-10-2009:
* WAxis: add TimeDateScale to AxisScale enum
28-09-2009:
* WCartesianChart: seriesIndexOf() is now private
* WebRenderer: several small fixes for the hybrid bootstrap
23-09-2009:
* WTableView: table_ is now private and a protected getter table() was
added
18-09-2009
* Wt.js: cancelEvent() includes an option to only include cancelling
propagation or the default action
* WResource: add setChanged() and url() methods which are more
useful than the generateUrl() method
* http/RequestParser: fix possible shared_ptr corruption issue
reported by David Galicia
* WCssDecorationStyle: add method for WResource as background
image
* JSlot: fix internal consistency problem when connecting same
JSlot to same signal twice
* JSlot::exec() now takes parameters for object and event
* WTreeView: fix vertical scrolling showing mis-aligned columns
when column 1 is fixed
15-09-2009:
* WWidget: move WFormWidget::setEnabled() to WWidget::setDisabled(),
allowing all widgets to be set enabled or disabled.
* WWidget: isVisible() and isEnabled() reflect the computed visibility
respectively being enabled taking int account ancestors settings
* WWidget: added setHiddenKeepsGeometry(), which uses css visibility
for setHidden()
03-09-2009:
* WDialog, Ext::Dialog, and related: allow for multiple modal dialogs
and nested exec() calls.
* Boot.html, Hybrid.html: add a loadScript() method to defer loading of
user JavaScript
01-09-2009
* WDatePicker: Use 'positionAtWidget' to make sure the widget
is rendered visible even if at bottom of page (folds up instead of down)
* WDialog: Fix JavaScript positioning for IE6
* WFileUpload: Fix empty file regression (#53)
31-08-2009
* Wt.js: fix server push mayhem
* WTreeView: fix autoJavaScript performance
* Wt.js: fix mouse capture on IE, fix mouse capture of mouse up when
dragging outside the window
* Wt.js: fix synchronisation issue with 'load' request and loading
of JS libraries
* Wt.js, DomElement: use setExpression() to set a CSS expression
(for min/max-width)
* WApplication: fix conditional stylesheet condition parse error
with 'gte' expression
26-08-2009
* Wt.js: attach mouse grab events to body using DOM event
capture
* HybridBoot.html, WebSession, WebRenderer: assimilate new
bootstrap method with a refactoring, make it all a bit less
stateful
* WApplication: notify() can now be used as a generic request
handling point where you grab and free request-specific
resources
22-08-2009
* fcgi/Sever.C: make multi-threaded, using the <num-threads>
number of threads
19-08-2009
* ProgressiveBoot.html, WebSession, WebRenderer: a new bootstrap
method has been added which implements the principle of
"progressive enhancement"
* WebSession, Boot.html: avoid one extra round-trip when
redirecting to the canonical URL.
* Plain.html: better SEO: do not render the form to a spider engine
18-08-2009
* WWidget: add boxPadding() and boxBorder() methods, which are
used by the layout managers to correct for built-in borders and
paddings of form widgets
* WComboBox: listen to layoutChanged()
06-08-2009
* WGoogleMap: add setCenter() method without zoom argument, change
myHtml argument to WString
01-08-2009
* WLineEdit: work around IE's inability to change <input> type
attribute
* DomElement, WebRenderer, EscapeOStream: use IE alternative
createElement() which also sets all attribute values, and thus
saves JavaScript calls
* StdGridLayoutImpl, StdWidgetItemImpl: fix IE glitches in
layout managers
31-07-2009
* WCssDecorationStyle: add custom cursor image functionality
23-07-2009
* WApplication: simplified the semantics of internal path API signal
internalPathChanged(). You may still use the old behavior by
defining the property oldInternalPathAPI.
20-07-2009:
* WAxis: fix crash when dealing with negative values and a logscale axis
17-07-2009:
* WServer, WGlobal: move WServer::Application and WServer::WidgetSet to
global enum
* WAbstractToggleButton.C: put label inside a <span> so that it works
as expected when used within a layout manager
* Test/WTestEnvironment: test environment, for instantiating
WApplication instances usable for (unit) tests
06-07-2009:
* WGridLayout, WBoxLayout, WTabWidget: better documentation that
discusses how to set contents with 100% height.
29-06-2009:
* JSlot: fix exec() call as suggested by Adrian Sutherland
25-06-2009:
* WCanvasPaintDevice, WSvgImage, WVmlImage: string -> stringstream
optimizations
* WTableCell: fix vertical component of content alignment
* WModelIndex: fix operator== to not use memcmp() since this gets
into trouble with struct padding bytes
19-06-2009:
* Chart/WAbstractChart: react well to modelReset() and
modelLayoutChanged()
* WCheckbox, WRadioButton: internal cleanup and simplifications
* WButtonGroup: added checkedChanged() signal
* WIntValidator: allow entry of +/- signs
15-06-2009:
* WGlobal: fix Horizontals = Left | Right and Verticals = Top | Bottom
* WPanel: clear the title bar
* DomElement: fix an unstubbing regression with ExtJS widgets
* Wt.js: fix server push + JSignal.emit()
* WGlobal: fix doxygen for WFlags masks
* http/Server.C: avoid http/https accept() to abort on Win32
* WResource, WFileResource: fix continuation + suggested filename
data corruption, and implement WFileResource::setBufferSize()
10-06-2009:
* WRectF: added isEmpty() method, removed isNull() method
09-06-2009:
* WEnvironment: added headerValue method
08-06-2009:
* WPoint, WPointF, WLineF: removed obsolete isNull methods
02-06-2009:
* WAbstractItemDelegate, WItemDelegate: new classes to which the
rendering of a model item is delegated.
* WTreeView: use WAbstractItemDelegate and WItemDelegates, and
API to customize the used item delegate class.
* WWidget: add setSelectable() method which can enable or disable
the rendering of the browser's default text selection handling
29-05-2009:
* fcgi/Server.C: build fixes for FreeBSD and OpenSolaris
* fcgi/Server.C: implement a (mostly stub) WServer implementation
* Http/Response: add continuation() method to get a continuation
created for the response.
28-05-2009:
* WMenu: show vertical scrollbar when needed
* WGridLayout: support row stretch value of -1, like 0, but
indicates that height of cell contents for that row still needs to
be managed
* DomElement.C: fix IE6 min/max-width workaround bugs
* WStackedWidget: make behave well in layout managers
* WPainter::Image: add constructor that fetches image dimensions
from file (from Daniel Derr)
* DomElement.C: fix style.float -> style.cssFloat or
style.styleFloat property
26-05-2009:
* WebRenderer, Configuration, WebSession, http/WServer: add support
for a favicon per EntryPoint, and in general for a favicon not in
"/favicon.ico"
18-05-2009:
* WAbstractItemModel: add reset() method and modelReset() signal, which
are used to invalidate the whole model. Adjusted the views to listen
to this signal, and make WStandardItemModel::clear() call reset()
* Ext/ToolBar: implement addStretch()
* WPaintedWidget, WPaintDevice: support PaintUpdate flag which does
not erase the painting but merely adds to it
* WTreeView: fix setColumnWidth() for column 0 bug,
setSortingEnabled() when no model yet set bug, column removal
behavior bug, JavaScript error when no column sort/resize handles
* StdGridLayoutImpl, WStackedWidget: make WStackedWidget manage
children height actively when in a layout manager
* WebSession: make server push survive refresh(), and fix cookie
support detection regression
* WApplication.C: fix expose logic for widgets removed from the
widget tree
* WCssDecorationStyle: WBorder::None is not always default
11-05-2009
* WDate: refactor modifiedJulianDate() to toJulianDate(), replaced
modifiedJulianDate constructor to static fromJulianDate function
05-05-2009
* WebSession: fix WApplication::attachThread(), simplify use of
thread specific storage
04-05-2009
* WString: do not assume a message resource bundle as localized
strings
* Wt.js: fix empty line edit regression
* WCalendar: setSingleClickSelect()
* WEnvironment: getDeploymentPath()
23-04-2009:
* WCheckBox, WAbstractToggleButton: tri-state checkboxes
* WAbstractItemModel, WModelIndex, WStandardItem: support
tri-state checkboxes (ItemIsTriState ItemFlag)
22-04-2009:
* WebRenderer: keep iterating the update map as long as render()
calls add new widgets to it
21-04-2009:
* WFormWidget: add setReadOnly(), isReadOnly() methods
* WTimer.C: fix multiple signals firing when stopping and
restarting, and use client-side repetition if the signal is not
exposed
* WFileUpload: deprecated isUploaded(), new method canUpload()
16-04-2009:
* WApplication, WDialog: simplify dialog rendering, allow
(multiple) non-modal dialogs (WDialog::setModal(false)), allow
dialogs to be moved around by dragging in the title bar
* WWebWidget: saner handling of z-index, only apply IE6 shim to DIVs
* WPaintedWidget: fix use of WImage for WAbstractArea's
* WImage, Wt.js: fix position reporting in mouse events from
WAbstractArea's in non-compliant browsers (all except for Firefox)
07-04-2009:
* Ext/FormField: add setFocus() method
30-03-2009:
* WEnvironment.C, WebSession.C, wt_config.xml: allow configuration
of AJAX-capable user agents and bots in configuration file
* Configuration.C, wt_config.xml: synchronize configuration
defaults. WARNING: default settings have changed! (see
wt_config.xml what the default values are)
* WTabWidget.C: use a layout manager to manage vertical height
* WLabel.C: fix bug with placement of image and add option to place
image to left or right of label text
* WDatePicker.C: implement setEnabled()
* WT_SERIES, WT_MAJOR, WT_MINOR, WT_VERSION: change to hexadecimal
format for preprocessor defines
* Ext/TableView.C: fix access to null dataStore_
26-03-2009:
* Fixed cookie handling. Cookie parser is now less strict, and cookie
values are URL encoded, similar to PHP. Fixed setting multiple
cookies.
24-02-2009:
* WWebWidget: implement a real propagateRenderOk() that does not
cause render() of children widgets of stubbed widgets
* WTreeView: move JavaScript around that assumes jsRef() exists
* WGoogleMap: fix require() dependency
* install: do not overwrite existing configuration file wt_config.xml
20-03-2009:
* WFormWidget: refuse to give focus to a disabled widget
* Wt.js: make sure updated autoJavaScript() is executed by onresize
handler
19-03-2009:
* WGoogleMap: fix require() to depend on google.load
* filetostring: removed in favor of a CMAke-only solution
* simplechat: improve its behaviour
* WebSession/WebRenderer: update the form object list after
each event since it may contain stale objects
17-03-2009: