Skip to content

Commit 08b73ba

Browse files
committed
Several changes:
- Use public deployment path for default Path of cookie, use that for multisession cookie. Should fix issue #5560. - resolveRelativeUrl: properly append url to public deployment path, fixes issue where URL substitutions in WTemplate would turn a link like <a href="#/contact"> into a link to "/ontact" - Renamed test target to test.wt, fixes issue #5534 - Load stylesheets after all widgets have loaded when using progressive bootstrap, fixes glitch in widget gallery where WMediaPlayer was not shown correctly when switching to the Media tab. - Added stripes for bootstrap theme, fixes alternating row colors not working for WTreeView when using WBootstrapTheme - Fix stateless slot issue on load with high latency, may fix #5555 - issue #5535: added docs for WApplication:customJQuery - Removed default arg in setThemeStyleEnabled - Add SMTP properties with documentation to auth example - Mention tutorial, not blog in README of auth example - Stop finding a parent at reparenting border, fixes issue #5554
1 parent 21f3b28 commit 08b73ba

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

59 files changed

+320
-115
lines changed

CMakeLists.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@ SET(CMAKE_MODULE_PATH
1616
${WT_SOURCE_DIR}/cmake
1717
)
1818

19-
SET(VERSION_SERIES 4)
20-
SET(VERSION_MAJOR 0)
21-
SET(VERSION_MINOR 0)
19+
SET(VERSION_SERIES 3)
20+
SET(VERSION_MAJOR 3)
21+
SET(VERSION_MINOR 7)
2222

2323
SET(WT_SOVERSION 41)
2424
SET(WTEXT_SOVERSION 41)

Doxyfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ PROJECT_NAME = Wt
3232
# This could be handy for archiving the generated documentation or
3333
# if some version control system is used.
3434

35-
PROJECT_NUMBER = 4.0.0
35+
PROJECT_NUMBER = 3.3.7
3636

3737
# Using the PROJECT_BRIEF tag one can provide an optional one line description
3838
# for a project that appears at the top of each page and should give viewer

examples/Doxyfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
# Project related configuration options
55
#---------------------------------------------------------------------------
66
PROJECT_NAME = "Wt examples"
7-
PROJECT_NUMBER = 4.0.0
7+
PROJECT_NUMBER = 3.3.7
88
OUTPUT_DIRECTORY = ../doc/examples
99
CREATE_SUBDIRS = NO
1010
OUTPUT_LANGUAGE = English

examples/feature/auth1/README.md

Lines changed: 1 addition & 2 deletions

examples/feature/auth1/wt_config.xml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,14 @@
11
<server>
22
<application-settings location="*">
33
<properties>
4+
<!-- You can use the following properties to configure SMTP settings -->
5+
<!-- The host to identify as (defaults to localhost if not specified) -->
6+
<property name="smtp-self-host">localhost</property>
7+
<!-- The SMTP host to connect to (defaults to localhost if not specified) -->
8+
<property name="smtp-host">localhost</property>
9+
<!-- The SMTP port to connect to (defaults to 25 if not specified) -->
10+
<property name="smtp-port">25</property>
11+
412
<!-- You need to register at Google for this to work, and enter
513
there the same values as you do here. -->
614
<!--

examples/feature/auth2/wt_config.xml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,14 @@
11
<server>
22
<application-settings location="*">
33
<properties>
4+
<!-- You can use the following properties to configure SMTP settings -->
5+
<!-- The host to identify as (defaults to localhost if not specified) -->
6+
<property name="smtp-self-host">localhost</property>
7+
<!-- The SMTP host to connect to (defaults to localhost if not specified) -->
8+
<property name="smtp-host">localhost</property>
9+
<!-- The SMTP port to connect to (defaults to 25 if not specified) -->
10+
<property name="smtp-port">25</property>
11+
412
<!-- You need to register at Google for this to work, and enter
513
there the same values as you do here. -->
614
<!--
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
#!/bin/bash
2+
#
3+
# This script uses imagemagick to generate the stripe-XXpx.gif's.
4+
#
5+
6+
for i in `seq 10 40`; do
7+
convert -size 30x$[2*$i] xc:white \
8+
-fill '#f9f9f9' -draw "rectangle 0,0 30,$i" \
9+
stripe-${i}px.gif
10+
done
74 Bytes
76 Bytes
78 Bytes

0 commit comments

Comments
 (0)