-
Notifications
You must be signed in to change notification settings - Fork 364
/
Changelog
3880 lines (2639 loc) · 117 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
WARNING! This file is no longer used.
Please refer to the ReleaseNotes for major changes, and the git log for
more fine-grained information on changes.
28-11-2013:
* WRasterImage: now also support skia as backend. Cmake option
ENABLE_GM is replaced by WT_RASTERIMAGE_IMPLEMENTATION, which has
to be set to none, GraphicsMagick, or skia.
10-07-2013:
* WSignal: Due to boost 1.54 complaining on boost.signals being
deprecated, namespace Wt::Signals was created. This namespace contains
the boost signals implementation that is optimal for your boost: for
boost < 1.54 it will be signals, for boost > 1.54 it will be signals2.
15-05-2013:
* WStandardItem, WStandardItemModel: before: checkboxes are rendered
in enabled state when ItemIsUserCheckable flag is set. Now: checkboxes
are rendered when CheckStateRole is present. If ItemIsUserCheckable is
set, the checkbox will be editable. If ItemIsUserCheckable is not set,
the checkbox will be uneditable. setCheckable(true) will add a
CheckStateRole of false when no CheckStateRole was present on the
element.
05-04-2013:
* Client SSL certificates can be queried from (static) WResources
26-02-2013:
* Fixed bugs #1711, #1712, #1713, #1714, #1715
* Wt-3.3.0-rc3
19-02-2013:
* Fixed bugs #1689, #1698, #1687 (from Starius)
* Implemented features #1675 (from Thomas Saquet)
* Wt-3.3.0-rc2
18-02-2013:
* Fixed regression in resource continations
15-02-2013:
* Fixed bugs #1699, #1697, #1696, #1695, #1677, #1676
* Fixed WPopupMenu::triggered() behaviour change from 3.2.3
12-02-2013:
* Wt-3.3.0-rc1
25-01-2013:
* Merged in bootstrap branch, with many additions, changes and above
all addition of support for Twitter's Bootstrap framework as a new
theme
12-12-2012:
* Added binary WebGL VBO buffers, contributed by Tassilo Glander
01-11-2012:
* Wt-3.2.3
05-10-2012:
* Layouts: various bug fixes and improvements
* Render: added support for repeating table headers
* WApplication: added some tentative methods for 404 generation in
response to internal paths
13-09-2012:
* Render: added support for explicit page breaks and % widths
* layouts: fix popup widgets confusing preferred size calculations
(tentatively)
13-08-2012:
* Payment: new API for payment processing, with an implementation
for PayPal
10-08-2012:
* layouts: fix various issues
* WTextEdit: fix behaviour inside a WPanel
* Render: code reorganizations for java port
03-08-2012:
* QueryModel: added stableResultRow() method which has more guarantees
of consistently returning the same result regardless of database
changes
27-07-2012:
* Dbo/Exception: add support for SQLSTATE code information
* Mail/Client: log configuration that will be used on first use
* WAnchor: use <a> tag even if no link has been provided (#1348)
* WDoubleSpinBox: fix formatting (#1358)
* WSlider: add more hooks for custom styles
25-07-2012:
* Layouts: fix error in switching to contents determining layout size
* Wt-3.2.2-p1
23-07-2012:
* WebController: workaround filesystem runtime problem for boost 1.50
* Wt-3.2.2
16-07-2012:
* Wt: fix compile issues with boost 1.50
* WPieChart: support TooltipRole data
* WGridLayout, WBoxLayout: fix dynamic add/remove behaviour, fix
behaviour in WGroupBox, and honor minimum size settings on container
* Wt-3.2.2-rc2
04-07-2012:
* Wt-3.2.2-rc1
28-06-2012:
* WAbstractSpinBox: fix (server-side) validate()
* WComboBox: handle current index when deleting rows
* WTreeView: use hasChildren() do determine need for expand icon
* layout: properly constrain minimum sizes in the application root
23-05-2012:
* dbo: add One-to-One relations, using Wt::Dbo::weak_ptr<>
* dbo: check relations are soundly defined instead of generating wrong
SQL
* dbo: collection::clear() method added
* Utils::base64Encode(): added option to omit CRLFs from generated
base64 stream
* WGridLayout, WBoxLayout: more fixes to be backwards compatible
with previous version
* http/WtReply: fix memory leak when too-large files are uploaded
leaving stale temporary files
* WebSession: clean-up session-id file for FastCGI (regression)
* WApplication::setInternalPath(): make it work properly when used
without JavaScript
15-05-2012:
* feature/dbo/tutorial9 example added: splits the classes over several
files
* WCartesianChart: add support for custom markers, and custom axis
padding
* WGridLayout, WBoxLayout: several bug fixes
14-05-2012:
* WInteractWidget::setMouseOverDelay() configures a delay before
the mouse over signal is fired
* WInteractWidget::doubleClicked() has been reimplemented using
mouseClicked() so that not both will fire in case both have events
attached
09-05-2012:
* WGridLayout, WBoxLayout: new implementation, which should get rid
of misfeatures and annoyances
* WebRenderer: do not generate double '//' when loading theme CSS
* WebSession: do not wait for 'load' signal if not using ajax puzzle
* WFileUpload: fix behaviour in MS HTA mode
05-04-2012:
* StdGridLayoutImpl.js: unbreak layout in WGroupBox behaviour
* Dbo/QueryModel: fix Firefox not showing header problem (LevelRole error)
03-04-2012:
* WGlobal: add more forwards
* WTreeView: relax fix for behaviour in layout manager
* Dbo::QueryModel: make const methods const
30-03-2012:
* Wt 3.2.1 (final) released
03-01-2012:
* Wt/Utils: new header with utility functions that implement
commonly used hash functions and encoding/decoding
* WAxis: fix Date and DateTime scale rendering, to take into acount
labelInterval() and better choice of label values
28-12-2011:
* Dbo/Transaction: do not require a commit() to commit a transaction
(but preserve behaviour to rollback in case of an exception)
27-12-2011:
* Auth/: reorganisation, more model/widget separation
26-12-2011:
* WSlider: implement disabled rendering
22-12-2011:
* hangman example: add Russian translation
19-12-2011:
* Render/: optimize table rendering
07-12-2011:
* WGoogleMap: unify loading for v2 and v3, fixes bugs in loading
a second v3 google map
01-12-2011:
* Wt.js, WtReply: more robust handling of flaky WebSocket connections
* hangman example: misc editorial changes
* WReadOnlyProxyModel: a simple proxy model that allows sharing of
source model between different sessions (but read-only)
* Dbo: added belongsTo() and hasMany() overloads which infers the
foreign key names from the foreign table
* Dbo: added session() method to actions
* WStringStream: optimization for string literals which avoids
strlen()
* WDialog: fix positionAt()
* wtfcgi: fix regression (data corruption) when built with DEBUG=ON
29-11-2011:
* Released: 3.2.0
21-11-2011:
* Wt/Dbo/backend/Firebird: merged Firebird backend contributed by
Lukasz Matuszewski from Technical University of Gdansk.
* Wt/WLogger: the library now uses macros that wrap around
Wt::log() by default for internal logging, but this could be
adapted to use another logging system of your choice. We also
abide the third law of logging libraries: that they will expand
their features until they become unusable: we added configurations
options to enable or disable specific logging.
* WServer: support catching SIGHUP (on unix-like) systems to
reread the configuration file.
* httpd: implement newer (and newest) WebSocket drafts (protocol
versions 7, 8 and 13)
* all: closed several bugs and feature requests (#956, #1015,
#1018, #1064)
18-11-2011:
* WString: we now store arguments as WString so they are also
properly i18n-ed (#1059).
07-11-2011:
* WException: new, public exception class (was previously an internal
one)
* WIOService: new, public service class for async I/O, and its
thread pool
* WStringStream: new, public fast stringstream implementation (was
previously an internal class)
* Wt/Auth: new, authentication module
* Wt/Json: new, JSON library
* Wt/Mail: new, mail client
* Wt/Http/Client: new, http client (former Client renamed to WtClient)
* Wt/Test/WTestEnvironment: has moved to a "wttest" pseudo-connector
library
* WFormWidget: added a valueText() that returns the textual
representation of the current value
* WApplication: added deferRendering() and resumeRendering() API,
useful for asynchronous client operations
* Wt::log(): global logging method, similar to but more useful
than WApplication::log()
* WTemplate: added support for functions, and two standard functions
id() and tr()
* WTemplate: implemented arguments parsing and use ("class")
* WebSession: added DoS meausures: ajax puzzle and plain session
rate limitation
19-10-2011:
* WAbstractItemView: reimplemented and simplified header item rendering
* Wt.js: workaround browser bugs in scrollLeft reading in RTL mode,
fixing WAbstractItemView column resizing in RTL layouts.
12-10-2011:
* WRectF: fix isEmpty() to be more restrictive: only a rect with
width = 0 and height = 0 is now empty
11-10-2011:
* WPopupMenuItem: fix crash with re-showing hidden popup
* WDialog: add setClosable() which adds a close icon to the title bar
* WAbstractItemView: more flexible API for header height and vertical
alignment
05-10-2011
* WMediaPlayer: make sure that relative URLs resolve against deployment
path (#1007)
03-10-2011
* Dbo: added dialect option for 'rows ? to ?' (Firebird database).
23-09-2011
* Wt 3.1.11 released
19-09-2011
* WAnchor, RefEncoder: added indirection to strip session ID from the
referrer before navigating to an external URL (#607)
* wthttp: stabilized WebSockets handling
13-09-2011
* WConfig: added a check to detect header/library version mismatches
* Chart/WAxis.C: a fix from Joe Garcia, crash with log scaling
* WItemDelegate: set target new window for WLink data when it references
a resource
* WMenu: fix hiding of a menu item to hide the entire item, not just
the contents (label)
05-09-2011
* WResource, Http/ResponseContinuation: added API to suspend a response
while waiting for more data, and resuming later
31-08-2011:
* WResource: use suggestedFilename() also when set during
handleRequest() (#920)
22-08-2011:
* Dbo/DbAction: fix missing actId() in FromAnyAction triggered
by QueryModel with natural ids
* WAbstractServer, WebMain, WebSession: added support for
scheduling events, used to timeout bootstyle response to avoid problems
on IE(9) ?
* WCssDecorationStyle: fix border() segfault
10-08-2011:
* WContainerWidget, WScrollArea, DomElement: use overflow-x and
overflow-y CSS style since now well cross-browser supported (#830)
* Dbo/Session: add forceReread parameter to load()
* WLength: throw exception when unit is corrupt
* WTreeTable: throw exception on contract abuse
* examples/wt-homepage: Russian translation contributed by Dmitriy
Igrishin
09-08-2011:
* Wt.js: fix z-index for drag widget (#927)
* WTreeView.js: fix column 0 resizing with total treeview regression
* WFormWidget.C: do not allow editing when isReadOnly()
* Dbo/ptr: fix ptr operator bool() loading the object (#909)
* Dbo/CMakeLists.txt: support building and installing Wt::Dbo
independently from Wt (#907)
05-08-2011:
* WApplication: added a docRoot() method which returns the webserver
document root
03-08-2011:
* WMediaPlayer: new cross-browser, flexible, audio/video player widget
* WHTML5Video, WHTML5Audio, WHTML5Media: renamed to WVideo, WAudio, WAbstractMedia
* WSound, SoundManager: reimplemented using WMediaPlayer
* WPopupMenu: new method setAutoHide() for automatic hide when
the mouse leaves
* WLink, ...: new utility class that abstracts a link destination (be
it a URL, a WResource or an internal path)
* WPopupMenuItem: new methods setLink() and setLinkTarget()
associate a link with the popup menu
25-07-2011:
* WPopupMenu, WPopupMenuItem: improved triggered() signal API and
added setSelectable() signals
18-07-2011:
* WMenuItem: fix takeContents() (#897)
* WMenu, WMenuItem, WSubMenuItem: simplifiy internal path handling with submenus
15-07-2011:
* examples/feature/broadcast: add an example that illustrates
server push, WServer::post() and synchronizing a shared resource
across sessions
14-07-2011:
* fix min-width being ignored in layout managers
* WDialog: implement setResiable() (#612)
12-07-2011:
* collection: implemented count() method for relational
collections (#882)
11-07-2011:
* WFileUpload, WApplication: fix maximum request size and fileTooLarge()
bugs (#794)
* WTestEnvironment: add methods to test reentrant eventloops (#711)
08-07-2011:
* Wt 3.1.10 !
07-07-2011:
* Dbo: allow foreign key constraints to be passed to a
primary key (that is also a foreing key)
* Dbo: implement ostream<< for a ptr<C>.
06-07-2011:
* Wt.js: fix HTML5 history spec weirdness with null state
* WFileUpload: fix second upload() crash (#888).
04-07-2011:
* WWebWidget: added childrenChanged() signal and use this in
WMenu to track contents stack updates
29-06-2011:
* WWidget: show/hide animations also work on FF5 now
* WMenu: better handling of internal path changes to use best
match (when components include more than one level)
* WMenu: fix stateless slot learning issue with submenu items
28-06-2011:
* Dbo/ptr: let modify() return a proxy mutator object which marks
dirty from its constructor and destructor, ensuring that
modifications are not lost in the case the session is flushed
amidst a modification.
27-06-2011:
* Dbo/collection: implement insert() and erase() for ManyToOne
collections
24-06-2011:
* WApplication: implemented changeSessionId() method, useful to
mitigate session fixation attacks
* WApplication: added removeMetaHeader() method
* WFontMetrics: solve pango font-based metrics for cursive fonts
* WTableCell, WTableRow, WTableColumn: add more convenience
methods for navigating the row, column
23-06-2011:
* WApplication: button img style to keep HTML4 behaviour of centering
the icon vertically in the button
* WWidget, WWebWidget, js/ToolTip: implement an XHTML tooltip using
JavaScript
* WTableView: fix setHeaderRowHeight() in plain HTML mode, other
plain HTML style consistency improvements
19-06-2011:
* collection: implement copy constructor which is needed for relational
collections
14-06-2011:
* WTemplate, WText: implement setInternalPathEncoding() method which
encodes anchors with internal path references
* WAnchor, ... resolve relative paths correctly when HTML5 History
internal path implementations are used
30-05-2011:
* WAbstractItemView, WTreeView: fix browser memory leaks of
inline stylesheet definitions (#834)
27-05-2011:
* WebRenderer, WebSession: better detection of IE9 and workaround
its bugs (box-sizeing border-box)
* WWebWidget: do not set an offset auto for IE (gets confused)
23-05-2011:
* WTextEdit: implement missing toolBar() method
* WCssDecorationStyle: fix operator= behaviour and unset properties
(#816)
20-05-2011:
* WServer, http: remove singleton objects to allow multiple
WServer instances
* WAbstractSpinBox: fix behaviour on IE
* Wt.js: fix button up registration
19-05-2011:
* WTextEdit: make all things configurable per instance (#801).
13-05-2011:
* WebSession: relax needs for setting baseURL. Looks good !
* WWidget, WAnimation: added animation options for setHidden(),
and new methods animateShow() and animateHide()
* WStackedWidget: added support for a transition animation
* WDialog: added animation support for the dialog cover as well,
and improved centering on IE (at least it seems to me ?)
06-05-2011:
* WebSession: fix baseURL property usage and internal path
inconsistencies
* WObject: fixed memory leak (signal destroyed was never deleted)
* WTreeTable: fixed progressive bootstrap behaviour
* WTableView: pageSize is minimally 1
* http/Connection: fix HTTP1.0 + continuations error (#810)
* WTestEnvironment: fix reading from server_ = 0 bug
27-04-2011:
* backend/Postgres: use actual autogenerated id field name instead
of "id"
26-04-2011:
* http/Connection: fix a leak in websocket sockets (file descriptors)
* WLayout: added a clear() method which removes all contents
* WDataSeries: fix setLabelColor() being ignored
* Dbo/backend/Postgres: set client encoding to UTF8
* WTable: added moveRow() and moveColumn() methods
* WTableView: fix setColumnHidden() with headerColumns()
* WebSession: use baseURL property for self-referencing URLs
* WServer: post() with optional fallbackFunction that is called
when the targeted session is dead (by Gaetano Mendola)
14-04-2011:
* WAbstractArea: fix anchor not being deleted
13-04-2011:
* WebSession: fix setting cookies when using websockets
* WApplication: fix unload() interfering with session reload
when reload-is-new-session is set to false
* sqlite3: bump to version 3.7.6
12-04-2011:
* WebSession, WebRenderer: handle WidgetSet session reloading
11-04-2011:
* http/Configuration.C: fix missing --docroot segfault problem
* web/WebRenderer: option to allow splitting skeleton file in an
invariant and variant part (useful if refreshing frequently)
* WGoogleMap: fix rendering in layout manager on webkit
* WStreamResource: refactored WFileResource, contributed by Dmitriy
Igrishin
07-04-2011:
* 3.1.9: release time !
05-04-2011:
* target/android, target/osx: starting to support these mobile targets
* Ext/Calendar: set selected date on render
01-04-2011:
* Chart/WChart2DRenderer.C: avoid clipping with WRasterImage backend of
labels, titles by rendering in a wider box
* WServer::post(): for lock-free event delivery to a session, instead of
taking the WApplication::UpdateLock. Simplechat and codeview exapmles were
adapted to use this approach.
29-03-2011:
* WAbstractItemView: fix API usage when not rendered
* WDate: patches from Gaetano Mendola w.r.t. invalid dates after month/year
operations + isLeapYear() implementation
25-03-2011:
* FontSupportPango: store leaky pango_font_map in thread local memory
* WRasterImage: fix clipping problem with text rendering
* W*Slider: fix 0 value and readonly attribute behaviour (#748, #749)
* Wt.js: fitToWindow() when object is wider/taller than window (#766)
* WebSession: support cookies in CORS (withCredentials flag)
* Wt/WAxis: setResolution() implementation, contributed by Gaetano Mendola
23-03-2011:
* target/osx: Add script to generate an OSX Framework for iPad/iPhone
* Dbo/Query: fix limit_ and offset_ not being copied in copy constructor
* Chart/WCartesianChart: allow custom color for a single bar in a bar
series using BarPenColorRole and BarBrushColorRole data roles
21-03-2011:
* Dbo/QueryModel: honour original limit() and offset()
25-02-2011:
* WSpinBox, WDoubleSpinBox: separated integer from double spinbox,
rewrite to take into account #737, #727, #721. Note that the API
changed in several ways.
23-02-2011:
* WRasterImage: implement drawImage() and improved text rendering,
using libpango as font selector and glyph shaper, if available.
* WPdfImage: use libpango for selecting (truetype) fonts, if available.
15-02-2011:
* WebSession: support HTML5 History API for internal paths
* wthttpd: a value for docroot like .:/css,/resources,/style is
interpreted as defaulting to a deployed app except for the given
paths, allowing deployment without ugly URLs (?_=)
12-02-2011:
* WSubMenuItem: behave more consistently w.r.t selection (#694)
11-02-2011:
* WString, WMessageResourceBundle: added i18n support for plural forms
* WSlider: provide better CSS-ability and support for HTML5 input range
native control
10-02-2011:
* WRun(), WServer::addEntryPoint(): uses a boost::function for the
application creator callback, so that you can bind additional arguments
* WServer::initializeThread() a virtual method which can be used to
initialize thread in a specialized WServer class (only for built-in httpd)
09-02-2011:
* WTableView, WTreeView: renamed (and implemented for WTableView)
setColumn1Fixed to setRowHeaderCount()
04-02-2011:
* Released 3.1.8
28-01-2011:
* Dbo: belongsTo() and hasMany(/* ManyToMany */) can now be passed
foreign key constraints such as NotNull and OnDeleteCascade.
27-01-2011:
* StdGridLayout: collapse paddings of empty items (affects all non-Ext
layout managers)
25-01-2011:
* Wt/Text/Renderer: warn but proceed when minimum render width exceeds
page width
* Wt/WPaintDevice: solve inconsistencies w.r.t. clear()
* WebRenderer, WebSession, Boot.html: wait for stylesheets to load
before loading widget tree in default bootstrap mode
* WApplication: initial work for RTL layout, set using
setLayoutDirection()
19-01-2011:
* Wt/WPdfImage: add true type font support (libharu patch pending)
* Wt/WApplication.C: fix #693
(sloppy WApplication::internalPathMatches())
* Wt/WBoostAny.C: add support for bool types (#690)
* Boot.html, Hybrid.html: fix IE8 unreliable startup (occasional
blank screen)
13-01-2011:
* Wt/Chart/WCartesianChart: implement legend location, alignment,
and styling options
* Wt/Chart/WDataSeries: add setXSeriesColumn() to allow for
individual X series per Y series in a scatter plot.
11-01-2011:
* Wt/WAbstractItemView: implement setHeaderItemDelegate() and defer
rendering of header cells to the item delegate; also added
WStandardItemModel::setHeaderFlags() to allow configuration of
header flags.
07-01-2011:
* Wt/WAbstractItemView: implement scrollTo()
* Wt/Dbo: support for bool types
06-01-2011:
* Render/WTextRenderer, Render/WPdfRenderer: XHtml-to-(PDF) renderer.
* Wt/WFontMetrics: font metrics info
* Wt/WPaintDevice: add methods for font metrics
* WLength: add a string-based constructors which parses a CSS
length declaration like "50%"
* WFont: the string-based constructor now parses #aabbcc and
rgb(a,b,c) values into rgb components.
* WWidget: added setHeight() and setWidth() methods
21-12-2010:
* WAbstractItemView, WTableView, WTreeView: persist editors through
model changes and avoid closing editors when something changes
* WAbstractItemModel: clarify (and narrow down) usage of internal data
in a model index so that views can keep their relaxed take on stale
indexes.
16-12-2010:
* WEvent: add eventType() method
* wt-homepage, simplechat examples: show-case widget set mode
* blog example: add archive
* libwtwithqt: simplify implementation since notify() is now used
more consistently by Wt
* WObject: object ids are now seeded by a random start value, to
allow mixing of several wt applications
* WRasterImage: implemented a getPixel() method
08-12-2010:
* WApplication: fix unload event interfering with session refresh
* WebSession: handle session quit() during a websocket message
* WRandom: moved high-entropy random generator to public API, and
a utility method to create a random id
* wt-homepage example: illustrate use of a cookie to persist logins
across sessions
02-12-2010:
* WebSession, WApplication, ...: support CORS (Cross-Origin Resource
Sharing including IE's XDomainRequest and WebSockets), deprecated
WApplication::setAjaxMethod() which is now chosen automatically
and support request pref-flighting using OPTIONS.
01-12-2010:
* WApplication, examples/wtwithqt/DispatchThread: attach the Qt
thread only during event handling
* Dbo/Session: add rereadAll() option to reread single table
* WFileUpload: correctly handle non-ascii tokens in suggestFileName()
30-11-2010:
* fixed a regression in layout managers, released as 3.1.7a
27-11-2010:
* js/StdGridLayout.js: implement rowspan handling
26-11-2010:
* released 3.1.7
24-11-2010:
* WAbstractItemView: added support for column hiding
23-11-2010:
* Chart/WCartesianChart: support ToolTipRole data using WAbstractArea
areas
15-11-2010:
* Dbo/Sesion: add rereadAll()
* Wt.js: fix IE6-8 history management regression
10-11-2010:
* QueryModel: setData() now converts the incoming type to the database
field type (if possible), and also uses a transaction to persist the
result (if not nested in another transaction)
08-11-2010:
* WebSession: landed Web Sockets support, must be enabled in the
configuration file
05-11-2010:
* Wt.js: fix opera script loading indicating failure when loading from
cache
02-11-2010:
* WebSession: initialize() in first notify()
* WStringUtil: fix a bug in widen() when the underlying conversion
gives an error
* build: fixes suggested by Pau
29-10-2010:
* Wt 3.1.6 released
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.