From owner-svn-ports-all@freebsd.org Wed Aug 17 21:19:44 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 3D13ABBDFB9; Wed, 17 Aug 2016 21:19:44 +0000 (UTC) (envelope-from arved@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 0A9A71F97; Wed, 17 Aug 2016 21:19:43 +0000 (UTC) (envelope-from arved@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u7HLJhmW021768; Wed, 17 Aug 2016 21:19:43 GMT (envelope-from arved@FreeBSD.org) Received: (from arved@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u7HLJg6w021760; Wed, 17 Aug 2016 21:19:42 GMT (envelope-from arved@FreeBSD.org) Message-Id: <201608172119.u7HLJg6w021760@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: arved set sender to arved@FreeBSD.org using -f From: Tilman Keskinoz Date: Wed, 17 Aug 2016 21:19:42 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r420373 - in head/www: . wt wt/files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 17 Aug 2016 21:19:44 -0000 Author: arved Date: Wed Aug 17 21:19:42 2016 New Revision: 420373 URL: https://svnweb.freebsd.org/changeset/ports/420373 Log: Add Wt, a C++ library for developing web applications. PR: 210750 Submitted by: Mohammad S. Babaei Added: head/www/wt/ head/www/wt/Makefile (contents, props changed) head/www/wt/distinfo (contents, props changed) head/www/wt/files/ head/www/wt/files/patch-CMakeLists.txt (contents, props changed) head/www/wt/pkg-descr (contents, props changed) head/www/wt/pkg-plist (contents, props changed) Modified: head/www/Makefile Modified: head/www/Makefile ============================================================================== --- head/www/Makefile Wed Aug 17 21:07:22 2016 (r420372) +++ head/www/Makefile Wed Aug 17 21:19:42 2016 (r420373) @@ -2300,6 +2300,7 @@ SUBDIR += wordpress SUBDIR += wsdlpull SUBDIR += wsmake + SUBDIR += wt SUBDIR += www6to4 SUBDIR += wwwoffle SUBDIR += xapian-omega Added: head/www/wt/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/wt/Makefile Wed Aug 17 21:19:42 2016 (r420373) @@ -0,0 +1,299 @@ +# Created by: Mohammad S. Babaei +# $FreeBSD$ + +PORTNAME= wt +PORTVERSION= 3.3.6 +CATEGORIES= www +MASTER_SITES= https://github.com/${GH_ACCOUNT}/${PORTNAME}/archive/${PORTVERSION}/ \ + http://github.com/${GH_ACCOUNT}/${PORTNAME}/archive/${PORTVERSION}/ + +MAINTAINER= info@babaei.net +COMMENT= Widget-centric C++ library for developing web applications + +LICENSE= GPLv2 +LICENSE_FILE= ${WRKSRC}/LICENSE + +GH_ACCOUNT= kdeforche + +NO_OPTIONS_SORT= yes +OPTIONS_DEFINE= \ + DOCS \ + EXAMPLES \ + TESTS \ + RESOURCES \ + CMAKE_MODULE \ + CPP11 \ + HARU \ + PANGO \ + EXT \ + QT4 \ + LIBWTTEST \ + OPENGL +OPTIONS_DEFAULT= \ + DOCS \ + EXAMPLES \ + TESTS \ + RESOURCES \ + CMAKE_MODULE \ + CPP11 \ + HARU \ + PANGO \ + OPENGL \ + LIBWTTEST +OPTIONS_GROUP= CONNECTOR DBO WSTRING + +DOCS_DESC= Build and/or install documentation +EXAMPLES_DESC= Build and install examples (binaries and source, implies SQLITE3 and WTHTTP) +TESTS_DESC= Build Wt tests +RESOURCES_DESC= Install resources directory +CMAKE_MODULE_DESC= Install FindWt.cmake in systemwide cmake dir (in addition to CMAKE_INSTALL_PREFIX/cmake) +CPP11_DESC= Compile Wt in C++11 mode (Clang or GCC 4.6+) +HARU_DESC= Enable Haru Free PDF Library, which is used to provide support for painting to PDF (WPdfImage) +PANGO_DESC= Enable Pango Library, which is used for improved font support (WPdfImage and WRasterImage) +EXT_DESC= Build Wt Ext library with JavaScript-only widgets (http://extjs.com/) DEPRECATED +QT4_DESC= Build Qt4 interworking library (libwtwithqt) +LIBWTTEST_DESC= Build Wt::Test for automated (integration/unit) tests +OPENGL_DESC= Build Wt with support for server-side opengl rendering + +OPTIONS_GROUP_CONNECTOR= FCGI WTHTTP +OPTIONS_DEFAULT += FCGI WTHTTP +CONNECTOR_DESC= Connector +FCGI_DESC= Build FastCGI connector +WTHTTP_DESC= Build Wt stand-alone httpd connector + +OPTIONS_GROUP_DBO= SQLITE3 POSTGRES FIREBIRD MYSQL +OPTIONS_DEFAULT += SQLITE3 +DBO_DESC= Wt::DBO +SQLITE3_DESC= Build Wt with SQLite 3 support +POSTGRES_DESC= Build Wt with PostgreSQL support +FIREBIRD_DESC= Build Wt with Firebird support +MYSQL_DESC= Build Wt with MariaDB or MySQL support + +OPTIONS_GROUP_WSTRING= NO_STD_LOCALE NO_STD_WSTRING +WSTRING_DESC= Wt::WString +NO_STD_LOCALE_DESC= Build Wt to run on a system without std::locale support +NO_STD_WSTRING_DESC= Build Wt to run on a system without std::wstring support + +EXAMPLES_IMPLIES= SQLITE3 WTHTTP + +USE_LDCONFIG= yes +USES= cmake:outsource pkgconfig ssl +USE_XORG+=x11 +MAKE_JOBS_SAFE= yes + +LIB_DEPENDS+= libpng.so:graphics/png \ + libboost_system.so:devel/boost-libs \ + libGraphicsMagick.so:graphics/GraphicsMagick + +CMAKE_ARGS+= -DCONFIGDIR:STRING=${LOCALBASE}/etc/wt \ + -DFCGI_PREFIX:STRING=${LOCALBASE} \ + -DFIREBIRD_PREFIX:STRING=${LOCALBASE} \ + -DGM_PREFIX:STRING=${LOCALBASE} \ + -DHARU_PREFIX:STRING=${LOCALBASE} \ + -DMYSQL_PREFIX:STRING=${LOCALBASE} \ + -DPNG_PREFIX:STRING=${LOCALBASE} \ + -DPOSTGRES_PREFIX:STRING=${LOCALBASE} \ + -DSQLITE3_PREFIX:STRING=${LOCALBASE} \ + -DSSL_PREFIX:STRING=/usr \ + -DZLIB_PREFIX:STRING=/usr \ + -DCONNECTOR_ISAPI:BOOL=OFF \ + -DWEBUSER:STRING=www \ + -DWEBGROUP:STRING=www \ + -DWT_WRASTERIMAGE_IMPLEMENTATION:STRING=GraphicsMagick \ + -DENABLE_SSL:BOOL=ON + +.include + +.if ${PORT_OPTIONS:MDOCS} +BUILD_DEPENDS+= asciidoc:textproc/asciidoc \ + doxygen:devel/doxygen +CMAKE_ARGS+= -DBUILD_DOCS:BOOL=ON +.else +CMAKE_ARGS+= -DBUILD_DOCS:BOOL=OFF +.endif + +.if ${PORT_OPTIONS:MEXAMPLES} +CMAKE_ARGS+= -DBUILD_EXAMPLES:BOOL=ON -DINSTALL_EXAMPLES:BOOL=ON +PLIST_SUB+= EXAMPLES="" +.if ${PORT_OPTIONS:MSQLITE3} \ + || ${PORT_OPTIONS:MPOSTGRES} \ + || ${PORT_OPTIONS:MFIREBIRD} \ + || ${PORT_OPTIONS:MMYSQL} +PLIST_SUB+= DBO_EXAMPLES="" +.if ${PORT_OPTIONS:MSQLITE3} +.else +PLIST_SUB+= DBO_SQLITE3_EXAMPLES="" +.endif +PLIST_SUB+= DBO_SQLITE3_EXAMPLES="@comment " +.else +PLIST_SUB+= DBO_EXAMPLES="@comment " +PLIST_SUB+= DBO_SQLITE3_EXAMPLES="@comment " +.endif +.if ${PORT_OPTIONS:MQT4} +PLIST_SUB+= QT4_EXAMPLES="" +.else +PLIST_SUB+= QT4_EXAMPLES="@comment " +.endif +.else +CMAKE_ARGS+= -DBUILD_EXAMPLES:BOOL=OFF -DINSTALL_EXAMPLES:BOOL=OFF +PLIST_SUB+= EXAMPLES="@comment " +PLIST_SUB+= DBO_EXAMPLES="@comment " +PLIST_SUB+= DBO_SQLITE3_EXAMPLES="@comment " +PLIST_SUB+= QT4_EXAMPLES="@comment " +.endif + +.if ${PORT_OPTIONS:MTESTS} +CMAKE_ARGS+= -DBUILD_TESTS:BOOL=ON +.else +CMAKE_ARGS+= -DBUILD_TESTS:BOOL=OFF +.endif + +.if ${PORT_OPTIONS:MRESOURCES} +CMAKE_ARGS+= -DINSTALL_RESOURCES:BOOL=ON +PLIST_SUB+= RESOURCES="" +.else +CMAKE_ARGS+= -DINSTALL_RESOURCES:BOOL=OFF +PLIST_SUB+= RESOURCES="@comment " +.endif + +.if ${PORT_OPTIONS:MCMAKE_MODULE} +CMAKE_ARGS+= -DINSTALL_FINDWT_CMAKE_FILE:BOOL=ON +PLIST_SUB+= CMAKE_MODULE="" +.else +CMAKE_ARGS+= -DINSTALL_FINDWT_CMAKE_FILE:BOOL=OFF +PLIST_SUB+= CMAKE_MODULE="@comment " +.endif + +.if ${PORT_OPTIONS:MCPP11} +USES+= compiler:c++11-lib +CMAKE_ARGS+= -DWT_CPP_11_MODE:STRING=-std=c++0x +.endif + +.if ${PORT_OPTIONS:MHARU} +LIB_DEPENDS+= libhpdf.so:print/libharu +CMAKE_ARGS+= -DENABLE_HARU:BOOL=ON +.else +CMAKE_ARGS+= -DENABLE_HARU:BOOL=OFF +.endif + +.if ${PORT_OPTIONS:MPANGO} +USE_GNOME+= pango +CMAKE_ARGS+= -DENABLE_PANGO:BOOL=ON +.else +CMAKE_ARGS+= -DENABLE_PANGO:BOOL=OFF +.endif + +.if ${PORT_OPTIONS:MEXT} +CMAKE_ARGS+= -DENABLE_EXT:BOOL=ON +PLIST_SUB+= EXT="" +.else +CMAKE_ARGS+= -DENABLE_EXT:BOOL=OFF +PLIST_SUB+= EXT="@comment " +.endif + +.if ${PORT_OPTIONS:MQT4} +USE_QT4= corelib moc_build +CMAKE_ARGS+= -DENABLE_QT4:BOOL=ON +.else +CMAKE_ARGS+= -DENABLE_QT4:BOOL=OFF +.endif + +.if ${PORT_OPTIONS:MLIBWTTEST} +CMAKE_ARGS+= -DENABLE_LIBWTTEST:BOOL=ON +PLIST_SUB+= LIBWTTEST="" +.else +CMAKE_ARGS+= -DENABLE_LIBWTTEST:BOOL=OFF +PLIST_SUB+= LIBWTTEST="@comment " +.endif + +.if ${PORT_OPTIONS:MOPENGL} +USE_GL= gl glew +CMAKE_ARGS+= -DENABLE_OPENGL:BOOL=ON +.else +CMAKE_ARGS+= -DENABLE_OPENGL:BOOL=OFF +.endif + +.if ${PORT_OPTIONS:MFCGI} +LIB_DEPENDS+= libfcgi.so:www/fcgi +LIB_DEPENDS+= libfcgi++.so:www/fcgi +CMAKE_ARGS+= -DCONNECTOR_FCGI:BOOL=ON +PLIST_SUB+= FCGI="" +.else +CMAKE_ARGS+= -DCONNECTOR_FCGI:BOOL=OFF +PLIST_SUB+= FCGI="@comment " +.endif + +.if ${PORT_OPTIONS:MWTHTTP} +CMAKE_ARGS+= -DCONNECTOR_HTTP:BOOL=ON +PLIST_SUB+= WTHTTP="" +.else +CMAKE_ARGS+= -DCONNECTOR_HTTP:BOOL=OFF +PLIST_SUB+= WTHTTP="@comment " +.endif + +.if ${PORT_OPTIONS:MSQLITE3} \ + || ${PORT_OPTIONS:MPOSTGRES} \ + || ${PORT_OPTIONS:MFIREBIRD} \ + || ${PORT_OPTIONS:MMYSQL} +CMAKE_ARGS+= -DENABLE_LIBWTDBO:BOOL=ON +PLIST_SUB+= DBO="" +.else +CMAKE_ARGS+= -DENABLE_LIBWTDBO:BOOL=OFF +PLIST_SUB+= DBO="@comment " +.endif + +.if ${PORT_OPTIONS:MSQLITE3} +USES+= sqlite:3 +CMAKE_ARGS+= -DENABLE_SQLITE:BOOL=ON +PLIST_SUB+= SQLITE3="" +.else +CMAKE_ARGS+= -DENABLE_SQLITE:BOOL=OFF +PLIST_SUB+= SQLITE3="@comment " +.endif + +.if ${PORT_OPTIONS:MPOSTGRES} +USE_PGSQL= yes +CMAKE_ARGS+= -DENABLE_POSTGRES:BOOL=ON +PLIST_SUB+= POSTGRES="" +.else +CMAKE_ARGS+= -DENABLE_POSTGRES:BOOL=OFF +PLIST_SUB+= POSTGRES="@comment " +.endif + +.if ${PORT_OPTIONS:MFIREBIRD} +USE_FIREBIRD= yes +CMAKE_ARGS+= -DENABLE_FIREBIRD:BOOL=ON +PLIST_SUB+= FIREBIRD="" +.else +CMAKE_ARGS+= -DENABLE_FIREBIRD:BOOL=OFF +PLIST_SUB+= FIREBIRD="@comment " +.endif + +.if ${PORT_OPTIONS:MMYSQL} +USE_MYSQL= yes +CMAKE_ARGS+= -DENABLE_MYSQL:BOOL=ON +PLIST_SUB+= MYSQL="" +.else +CMAKE_ARGS+= -DENABLE_MYSQL:BOOL=OFF +PLIST_SUB+= MYSQL="@comment " +.endif + +.if ${PORT_OPTIONS:MNO_STD_LOCALE} +CMAKE_ARGS+= -DWT_NO_STD_LOCALE:BOOL=ON +.else +CMAKE_ARGS+= -DWT_NO_STD_LOCALE:BOOL=OFF +.endif + +.if ${PORT_OPTIONS:MNO_STD_WSTRING} +CMAKE_ARGS+= -DWT_NO_STD_WSTRING:BOOL=ON +.else +CMAKE_ARGS+= -DWT_NO_STD_WSTRING:BOOL=OFF +.endif + +post-stage: + @${RM} -f ${STAGEDIR}${ETCDIR}/wt_config.xml + @${MKDIR} ${STAGEDIR}${ETCDIR} + @${CP} -p ${BUILD_WRKSRC}/wt_config.xml \ + ${STAGEDIR}${ETCDIR}/wt_config.xml.sample + +.include Added: head/www/wt/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/wt/distinfo Wed Aug 17 21:19:42 2016 (r420373) @@ -0,0 +1,3 @@ +TIMESTAMP = 1471468688 +SHA256 (wt-3.3.6.tar.gz) = 8f82576076deb1d72cfb8ff42cf7ffb3553a45da32123b2a3cf36e66040678ab +SIZE (wt-3.3.6.tar.gz) = 7952106 Added: head/www/wt/files/patch-CMakeLists.txt ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/wt/files/patch-CMakeLists.txt Wed Aug 17 21:19:42 2016 (r420373) @@ -0,0 +1,85 @@ +--- CMakeLists.txt.orig 2016-01-01 10:26:34 UTC ++++ CMakeLists.txt +@@ -6,6 +6,8 @@ IF(COMMAND CMAKE_POLICY) + CMAKE_POLICY(SET CMP0002 OLD) + CMAKE_POLICY(SET CMP0003 OLD) + CMAKE_POLICY(SET CMP0005 OLD) ++ CMAKE_POLICY(SET CMP0037 OLD) ++ CMAKE_POLICY(SET CMP0046 OLD) + ENDIF(COMMAND CMAKE_POLICY) + + PROJECT(WT) +@@ -340,7 +342,11 @@ INCLUDE(cmake/WtFindPng.txt) + INCLUDE(cmake/WtFindSsl.txt) + INCLUDE(cmake/WtFindMysql.txt) + INCLUDE(cmake/WtFindPostgresql.txt) +-INCLUDE(cmake/WtFindAsciidoc.txt) ++ ++IF (BUILD_DOCS) ++ INCLUDE(cmake/WtFindAsciidoc.txt) ++ENDIF (BUILD_DOCS) ++ + INCLUDE(cmake/WtFindHaru.txt) + INCLUDE(cmake/WtFindGm.txt) + INCLUDE(cmake/WtFindGL.txt) +@@ -462,7 +468,9 @@ ELSE (${WT_WRASTERIMAGE_IMPLEMENTATION} + MESSAGE("** Disabled WRasterimage support. Set WT_WRASTERIMAGE_IMPLEMENTATION to GraphicsMagick or skia.") + ENDIF (${WT_WRASTERIMAGE_IMPLEMENTATION} STREQUAL "GraphicsMagick") + +-FIND_PACKAGE(Doxygen) ++IF (BUILD_DOCS) ++ FIND_PACKAGE(Doxygen) ++ENDIF (BUILD_DOCS) + + # Boost is used nearly everywhere, so we can put these here + INCLUDE_DIRECTORIES(${BOOST_INCLUDE_DIRS}) +@@ -498,27 +506,29 @@ ENDIF(DEBUG) + + ADD_CUSTOM_TARGET(doc) + +-IF (ASCIIDOC_FOUND) +- MACRO (ASCIIDOC_FILE target infile outfile) +- ADD_CUSTOM_TARGET(${target} +- ${ASCIIDOC_EXECUTABLE} -a toc -a numbered -a icons -a theme=emweb -a pygments -a linkcss -o ${outfile} ${infile} +- COMMENT "Asciidoc ${infile}") +- ADD_DEPENDENCIES(doc ${target}) +- ENDMACRO (ASCIIDOC_FILE) +-ENDIF (ASCIIDOC_FOUND) ++IF (BUILD_DOCS) ++ IF (ASCIIDOC_FOUND) ++ MACRO (ASCIIDOC_FILE target infile outfile) ++ ADD_CUSTOM_TARGET(${target} ++ ${ASCIIDOC_EXECUTABLE} -a toc -a numbered -a icons -a theme=emweb -a pygments -a linkcss -o ${outfile} ${infile} ++ COMMENT "Asciidoc ${infile}") ++ ADD_DEPENDENCIES(doc ${target}) ++ ENDMACRO (ASCIIDOC_FILE) ++ ENDIF (ASCIIDOC_FOUND) + +-IF (DOXYGEN_FOUND) +- ADD_CUSTOM_TARGET(doxygen +- ${DOXYGEN_EXECUTABLE} +- WORKING_DIRECTORY ${PROJECT_SOURCE_DIR} +- COMMENT "Doxygen ...") +- ADD_DEPENDENCIES(doc doxygen) +- ADD_CUSTOM_TARGET(doxygen-examples +- ${DOXYGEN_EXECUTABLE} +- WORKING_DIRECTORY ${PROJECT_SOURCE_DIR}/examples +- COMMENT "Doxygen for examples ...") +- ADD_DEPENDENCIES(doc doxygen-examples) +-ENDIF (DOXYGEN_FOUND) ++ IF (DOXYGEN_FOUND) ++ ADD_CUSTOM_TARGET(doxygen ++ ${DOXYGEN_EXECUTABLE} ++ WORKING_DIRECTORY ${PROJECT_SOURCE_DIR} ++ COMMENT "Doxygen ...") ++ ADD_DEPENDENCIES(doc doxygen) ++ ADD_CUSTOM_TARGET(doxygen-examples ++ ${DOXYGEN_EXECUTABLE} ++ WORKING_DIRECTORY ${PROJECT_SOURCE_DIR}/examples ++ COMMENT "Doxygen for examples ...") ++ ADD_DEPENDENCIES(doc doxygen-examples) ++ ENDIF (DOXYGEN_FOUND) ++ENDIF (BUILD_DOCS) + + # we enable rpath support for APPLE, this probably goes against policy + # linux distributions? Added: head/www/wt/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/wt/pkg-descr Wed Aug 17 21:19:42 2016 (r420373) @@ -0,0 +1,23 @@ +Wt (pronounced as witty) is a C++ library for developing web applications. + +The API is widget-centric and uses well-tested patterns of desktop GUI +development tailored to the web. To the developer, it offers abstraction of +many web-specific implementation details, including client-server protocols +(HTTP, Ajax, WebSockets), and frees the developer from tedious JavaScript +manipulations of HTML and dealing with cross-browser issues. Instead, with Wt, +you can focus on actual functionality with a rich set of feature-complete +widgets. Unlike old-school page-based frameworks or current-day single-page +JavaScript "frameworks", Wt allows you to create stateful applications that are +at the same time highly interactive (using WebSockets and Ajax for everything) +but still support plain HTML browsers or web crawlers using automatic graceful +degradation or progressive enhancement. Things that are natural and simple +with Wt would require an impractical amount of development effort otherwise: +switching widgets using animations, while retaining clean URLs and browser +navigation functions, or having a persistent chat widget open throughout the +entire application, that even works in legacy browsers like Microsoft Internet +Explorer 6. + +The library comes with an application server that acts as a stand-alone +Http(s)/WebSocket server or integrates through FastCGI with other web servers. + +WWW: http://www.webtoolkit.eu/wt Added: head/www/wt/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/wt/pkg-plist Wed Aug 17 21:19:42 2016 (r420373) @@ -0,0 +1,1558 @@ +@postunexec cmp -s %D/%%ETCDIR%%/wt_config.xml.sample %D/%%ETCDIR%%/wt_config.xml && rm -f %D/%%ETCDIR%%/wt_config.xml || true +%%ETCDIR%%/wt_config.xml.sample +@postexec if [ ! -f %D/%%ETCDIR%%/wt_config.xml ]; then cp -p %D/%%ETCDIR%%/wt_config.xml.sample %D/%%ETCDIR%%/wt_config.xml; fi +include/Wt/Auth/AbstractPasswordService +include/Wt/Auth/AbstractUserDatabase +include/Wt/Auth/AuthModel +include/Wt/Auth/AuthService +include/Wt/Auth/AuthWidget +%%DBO%%include/Wt/Auth/Dbo/AuthInfo +%%DBO%%include/Wt/Auth/Dbo/UserDatabase +include/Wt/Auth/FacebookService +include/Wt/Auth/FormBaseModel +include/Wt/Auth/GoogleService +include/Wt/Auth/HashFunction +include/Wt/Auth/Identity +include/Wt/Auth/Login +include/Wt/Auth/LostPasswordWidget +include/Wt/Auth/OAuthService +include/Wt/Auth/PasswordHash +include/Wt/Auth/PasswordPromptDialog +include/Wt/Auth/PasswordService +include/Wt/Auth/PasswordStrengthValidator +include/Wt/Auth/PasswordVerifier +include/Wt/Auth/RegistrationModel +include/Wt/Auth/RegistrationWidget +include/Wt/Auth/Token +include/Wt/Auth/UpdatePasswordWidget +include/Wt/Auth/User +include/Wt/Chart/WAbstractChart +include/Wt/Chart/WAbstractChartImplementation +include/Wt/Chart/WAbstractChartModel +include/Wt/Chart/WAbstractColorMap +include/Wt/Chart/WAbstractDataSeries3D +include/Wt/Chart/WAbstractGridData +include/Wt/Chart/WAxis +include/Wt/Chart/WAxisSliderWidget +include/Wt/Chart/WCartesian3DChart +include/Wt/Chart/WCartesianChart +include/Wt/Chart/WChart2DImplementation +include/Wt/Chart/WChart3DImplementation +include/Wt/Chart/WChartGlobal +include/Wt/Chart/WChartPalette +include/Wt/Chart/WDataSeries +include/Wt/Chart/WEquidistantGridData +include/Wt/Chart/WGridData +include/Wt/Chart/WLegend +include/Wt/Chart/WLegend3D +include/Wt/Chart/WPieChart +include/Wt/Chart/WScatterData +include/Wt/Chart/WSelection +include/Wt/Chart/WStandardChartProxyModel +include/Wt/Chart/WStandardColorMap +include/Wt/Chart/WStandardPalette +%%DBO%%include/Wt/Dbo/Call +%%DBO%%include/Wt/Dbo/Call_impl.h +%%DBO%%include/Wt/Dbo/DbAction +%%DBO%%include/Wt/Dbo/DbAction_impl.h +%%DBO%%include/Wt/Dbo/Dbo +%%DBO%%include/Wt/Dbo/EscapeOStream.h +%%DBO%%include/Wt/Dbo/Exception +%%DBO%%include/Wt/Dbo/Field +%%DBO%%include/Wt/Dbo/Field_impl.h +%%DBO%%include/Wt/Dbo/FixedSqlConnectionPool +%%DBO%%include/Wt/Dbo/Impl +%%DBO%%include/Wt/Dbo/Json +%%DBO%%include/Wt/Dbo/Query +%%DBO%%include/Wt/Dbo/QueryColumn +%%DBO%%include/Wt/Dbo/QueryModel +%%DBO%%include/Wt/Dbo/QueryModel_impl.h +%%DBO%%include/Wt/Dbo/Query_impl.h +%%DBO%%include/Wt/Dbo/Session +%%DBO%%include/Wt/Dbo/Session_impl.h +%%DBO%%include/Wt/Dbo/SqlConnection +%%DBO%%include/Wt/Dbo/SqlConnectionPool +%%DBO%%include/Wt/Dbo/SqlStatement +%%DBO%%include/Wt/Dbo/SqlTraits +%%DBO%%include/Wt/Dbo/SqlTraits_impl.h +%%DBO%%include/Wt/Dbo/StdSqlTraits +%%DBO%%include/Wt/Dbo/StringStream.h +%%DBO%%include/Wt/Dbo/Transaction +%%DBO%%include/Wt/Dbo/Types +%%DBO%%include/Wt/Dbo/WDboDllDefs.h +%%DBO%%include/Wt/Dbo/WtSqlTraits +%%FIREBIRD%%include/Wt/Dbo/backend/Firebird +%%MYSQL%%include/Wt/Dbo/backend/MySQL +%%POSTGRES%%include/Wt/Dbo/backend/Postgres +%%SQLITE3%%include/Wt/Dbo/backend/Sqlite3 +%%FIREBIRD%%include/Wt/Dbo/backend/WDboFirebirdDllDefs.h +%%MYSQL%%include/Wt/Dbo/backend/WDboMySQLDllDefs.h +%%POSTGRES%%include/Wt/Dbo/backend/WDboPostgresDllDefs.h +%%SQLITE3%%include/Wt/Dbo/backend/WDboSqlite3DllDefs.h +%%DBO%%include/Wt/Dbo/collection +%%DBO%%include/Wt/Dbo/collection_impl.h +%%DBO%%include/Wt/Dbo/ptr +%%DBO%%include/Wt/Dbo/ptr_impl.h +%%DBO%%include/Wt/Dbo/ptr_tuple +%%DBO%%include/Wt/Dbo/weak_ptr +%%DBO%%include/Wt/Dbo/weak_ptr_impl.h +include/Wt/DomElement.h +include/Wt/EscapeOStream.h +%%EXT%%include/Wt/Ext/AbstractButton +%%EXT%%include/Wt/Ext/AbstractToggleButton +%%EXT%%include/Wt/Ext/Button +%%EXT%%include/Wt/Ext/CMakeLists.txt +%%EXT%%include/Wt/Ext/Calendar +%%EXT%%include/Wt/Ext/CheckBox +%%EXT%%include/Wt/Ext/ComboBox +%%EXT%%include/Wt/Ext/Component +%%EXT%%include/Wt/Ext/Container +%%EXT%%include/Wt/Ext/DataStore +%%EXT%%include/Wt/Ext/DateField +%%EXT%%include/Wt/Ext/Dialog +%%EXT%%include/Wt/Ext/ExtDllDefs.h +%%EXT%%include/Wt/Ext/FormField +%%EXT%%include/Wt/Ext/LineEdit +%%EXT%%include/Wt/Ext/Menu +%%EXT%%include/Wt/Ext/MenuItem +%%EXT%%include/Wt/Ext/MessageBox +%%EXT%%include/Wt/Ext/NumberField +%%EXT%%include/Wt/Ext/PagingToolBar +%%EXT%%include/Wt/Ext/Panel +%%EXT%%include/Wt/Ext/ProgressDialog +%%EXT%%include/Wt/Ext/RadioButton +%%EXT%%include/Wt/Ext/Splitter +%%EXT%%include/Wt/Ext/SplitterHandle +%%EXT%%include/Wt/Ext/TabWidget +%%EXT%%include/Wt/Ext/TableView +%%EXT%%include/Wt/Ext/TextEdit +%%EXT%%include/Wt/Ext/ToolBar +%%EXT%%include/Wt/Ext/ToolTipConfig +%%EXT%%include/Wt/Ext/WExtGlobal +%%EXT%%include/Wt/Ext/Widget +include/Wt/Http/Client +include/Wt/Http/Message +include/Wt/Http/Method +include/Wt/Http/Request +include/Wt/Http/Response +include/Wt/Http/ResponseContinuation +include/Wt/Http/WtClient +include/Wt/Json/Array +include/Wt/Json/Object +include/Wt/Json/Parser +include/Wt/Json/Serializer +include/Wt/Json/Value +include/Wt/Mail/Client +include/Wt/Mail/Mailbox +include/Wt/Mail/Message +include/Wt/Payment/Address +include/Wt/Payment/Customer +include/Wt/Payment/Money +include/Wt/Payment/Order +include/Wt/Payment/OrderItem +include/Wt/Payment/PayPal +include/Wt/Payment/Result +include/Wt/Render/WPdfRenderer +include/Wt/Render/WTextRenderer +%%LIBWTTEST%%include/Wt/Test/WTestEnvironment +include/Wt/Utils +include/Wt/WAbstractArea +include/Wt/WAbstractGLImplementation +include/Wt/WAbstractItemDelegate +include/Wt/WAbstractItemModel +include/Wt/WAbstractItemView +include/Wt/WAbstractListModel +include/Wt/WAbstractMedia +include/Wt/WAbstractProxyModel +include/Wt/WAbstractSpinBox +include/Wt/WAbstractTableModel +include/Wt/WAbstractToggleButton +include/Wt/WAccordionLayout +include/Wt/WAggregateProxyModel +include/Wt/WAnchor +include/Wt/WAnimation +include/Wt/WApplication +include/Wt/WAudio +include/Wt/WBatchEditProxyModel +include/Wt/WBoostAny +include/Wt/WBootstrapTheme +include/Wt/WBorder +include/Wt/WBorderLayout +include/Wt/WBoxLayout +include/Wt/WBreak +include/Wt/WBrush +include/Wt/WButtonGroup +include/Wt/WCalendar +include/Wt/WCanvasPaintDevice +include/Wt/WCheckBox +include/Wt/WCircleArea +include/Wt/WClientGLWidget +include/Wt/WColor +include/Wt/WCombinedLocalizedStrings +include/Wt/WComboBox +include/Wt/WCompositeWidget +include/Wt/WConfig.h +include/Wt/WContainerWidget +include/Wt/WCssDecorationStyle +include/Wt/WCssStyleSheet +include/Wt/WCssTheme +include/Wt/WDate +include/Wt/WDateEdit +include/Wt/WDatePicker +include/Wt/WDateTime +include/Wt/WDateValidator +include/Wt/WDefaultLayout +include/Wt/WDefaultLoadingIndicator +include/Wt/WDialog +include/Wt/WDllDefs.h +include/Wt/WDoubleSpinBox +include/Wt/WDoubleValidator +include/Wt/WEnvironment +include/Wt/WEvent +include/Wt/WException +include/Wt/WFileResource +include/Wt/WFileUpload +include/Wt/WFitLayout +include/Wt/WFlags +include/Wt/WFlashObject +include/Wt/WFont +include/Wt/WFontMetrics +include/Wt/WFormModel +include/Wt/WFormWidget +include/Wt/WGLWidget +include/Wt/WGenericMatrix +include/Wt/WGlobal +include/Wt/WGoogleMap +include/Wt/WGradient +include/Wt/WGridLayout +include/Wt/WGroupBox +include/Wt/WHBoxLayout +include/Wt/WHTML5Audio +include/Wt/WHTML5Video +include/Wt/WIOService +include/Wt/WIcon +include/Wt/WIconPair +include/Wt/WIdentityProxyModel +include/Wt/WImage +include/Wt/WInPlaceEdit +include/Wt/WIntValidator +include/Wt/WInteractWidget +include/Wt/WItemDelegate +include/Wt/WItemSelectionModel +include/Wt/WJavaScript +include/Wt/WJavaScriptExposableObject +include/Wt/WJavaScriptHandle +include/Wt/WJavaScriptObjectStorage +include/Wt/WJavaScriptPreamble +include/Wt/WJavaScriptSlot +include/Wt/WLabel +include/Wt/WLayout +include/Wt/WLayoutItem +include/Wt/WLayoutItemImpl +include/Wt/WLength +include/Wt/WLengthValidator +include/Wt/WLineEdit +include/Wt/WLineF +include/Wt/WLink +include/Wt/WLoadingIndicator +include/Wt/WLocalDateTime +include/Wt/WLocale +include/Wt/WLocalizedStrings +include/Wt/WLogger +include/Wt/WMatrix4x4 +include/Wt/WMeasurePaintDevice +include/Wt/WMediaPlayer +include/Wt/WMemoryResource +include/Wt/WMenu +include/Wt/WMenuItem +include/Wt/WMessageBox +include/Wt/WMessageResourceBundle +include/Wt/WMessageResources +include/Wt/WModelIndex +include/Wt/WNavigationBar +include/Wt/WObject +include/Wt/WOverlayLoadingIndicator +include/Wt/WPaintDevice +include/Wt/WPaintedWidget +include/Wt/WPainter +include/Wt/WPainterPath +include/Wt/WPanel +include/Wt/WPdfImage +include/Wt/WPen +include/Wt/WPoint +include/Wt/WPointF +include/Wt/WPolygonArea +include/Wt/WPopupMenu +include/Wt/WPopupMenuItem +include/Wt/WPopupWidget +include/Wt/WProgressBar +include/Wt/WPushButton +include/Wt/WRadioButton +include/Wt/WRandom +include/Wt/WRasterImage +include/Wt/WReadOnlyProxyModel +include/Wt/WRectArea +include/Wt/WRectF +include/Wt/WRegExp +include/Wt/WRegExpValidator +include/Wt/WResource +include/Wt/WScrollArea +include/Wt/WScrollBar +include/Wt/WSelectionBox +include/Wt/WServer +include/Wt/WServerGLWidget +include/Wt/WShadow +include/Wt/WSignal +include/Wt/WSignalMapper +include/Wt/WSlider +include/Wt/WSocketNotifier +include/Wt/WSortFilterProxyModel +include/Wt/WSound +include/Wt/WSpinBox +include/Wt/WSplitButton +include/Wt/WSslCertificate +include/Wt/WSslInfo +include/Wt/WStackedWidget +include/Wt/WStandardItem +include/Wt/WStandardItemModel +include/Wt/WStatelessSlot +include/Wt/WStreamResource +include/Wt/WString +include/Wt/WStringListModel +include/Wt/WStringStream +include/Wt/WStringUtil +include/Wt/WSubMenuItem +include/Wt/WSuggestionPopup +include/Wt/WSvgImage +include/Wt/WTabWidget +include/Wt/WTable +include/Wt/WTableCell +include/Wt/WTableColumn +include/Wt/WTableRow +include/Wt/WTableView +include/Wt/WTemplate +include/Wt/WTemplateFormView +include/Wt/WText +include/Wt/WTextArea +include/Wt/WTextEdit +include/Wt/WTheme +include/Wt/WTime +include/Wt/WTimeEdit +include/Wt/WTimePicker +include/Wt/WTimeValidator +include/Wt/WTimer +include/Wt/WTimerWidget +include/Wt/WToolBar +include/Wt/WTransform +include/Wt/WTree +include/Wt/WTreeNode +include/Wt/WTreeTable +include/Wt/WTreeTableNode +include/Wt/WTreeView +include/Wt/WVBoxLayout +include/Wt/WValidationStatus +include/Wt/WValidator +include/Wt/WVector3 +include/Wt/WVector4 +include/Wt/WVectorImage +include/Wt/WVideo +include/Wt/WViewWidget +include/Wt/WVirtualImage +include/Wt/WVmlImage +include/Wt/WWebWidget +include/Wt/WWidget +include/Wt/WWidgetItem +%%EXAMPLES%%lib/Wt/examples/CMakeLists.txt +%%EXAMPLES%%lib/Wt/examples/Doxyfile +%%EXAMPLES%%lib/Wt/examples/README.md +%%EXAMPLES%%lib/Wt/examples/blog/BlogRSSFeed.C +%%EXAMPLES%%lib/Wt/examples/blog/BlogRSSFeed.h +%%EXAMPLES%%lib/Wt/examples/blog/CMakeLists.txt +%%EXAMPLES%%lib/Wt/examples/blog/README.md +%%EXAMPLES%%lib/Wt/examples/blog/asciidoc/asciidoc.C +%%EXAMPLES%%lib/Wt/examples/blog/asciidoc/asciidoc.h +%%EXAMPLES%%lib/Wt/examples/blog/blog +%%EXAMPLES%%lib/Wt/examples/blog/blog.C +%%EXAMPLES%%lib/Wt/examples/blog/blog.wt +%%EXAMPLES%%lib/Wt/examples/blog/blog.xml +%%EXAMPLES%%lib/Wt/examples/blog/css/asciidoc.css +%%EXAMPLES%%lib/Wt/examples/blog/css/blog.css +%%EXAMPLES%%lib/Wt/examples/blog/css/blogexample.css +%%EXAMPLES%%lib/Wt/examples/blog/css/comment.png +%%EXAMPLES%%lib/Wt/examples/blog/css/comment_edit.png +%%EXAMPLES%%lib/Wt/examples/blog/css/oauth-google.png +%%EXAMPLES%%lib/Wt/examples/blog/css/rss.png +%%EXAMPLES%%lib/Wt/examples/blog/index.html +%%EXAMPLES%%lib/Wt/examples/blog/model/BlogSession.C +%%EXAMPLES%%lib/Wt/examples/blog/model/BlogSession.h +%%EXAMPLES%%lib/Wt/examples/blog/model/BlogUserDatabase.C +%%EXAMPLES%%lib/Wt/examples/blog/model/BlogUserDatabase.h +%%EXAMPLES%%lib/Wt/examples/blog/model/Comment.C +%%EXAMPLES%%lib/Wt/examples/blog/model/Comment.h +%%EXAMPLES%%lib/Wt/examples/blog/model/Post.C +%%EXAMPLES%%lib/Wt/examples/blog/model/Post.h +%%EXAMPLES%%lib/Wt/examples/blog/model/Tag.C +%%EXAMPLES%%lib/Wt/examples/blog/model/Tag.h +%%EXAMPLES%%lib/Wt/examples/blog/model/Token.C +%%EXAMPLES%%lib/Wt/examples/blog/model/Token.h +%%EXAMPLES%%lib/Wt/examples/blog/model/User.C +%%EXAMPLES%%lib/Wt/examples/blog/model/User.h +%%EXAMPLES%%lib/Wt/examples/blog/model/update-sqlite3-3.1.12.sql +%%EXAMPLES%%lib/Wt/examples/blog/view/BlogLoginWidget.C +%%EXAMPLES%%lib/Wt/examples/blog/view/BlogLoginWidget.h +%%EXAMPLES%%lib/Wt/examples/blog/view/BlogView.C +%%EXAMPLES%%lib/Wt/examples/blog/view/BlogView.h +%%EXAMPLES%%lib/Wt/examples/blog/view/CommentView.C +%%EXAMPLES%%lib/Wt/examples/blog/view/CommentView.h +%%EXAMPLES%%lib/Wt/examples/blog/view/EditUsers.C +%%EXAMPLES%%lib/Wt/examples/blog/view/EditUsers.h +%%EXAMPLES%%lib/Wt/examples/blog/view/PostView.C +%%EXAMPLES%%lib/Wt/examples/blog/view/PostView.h +%%EXAMPLES%%lib/Wt/examples/chart3D/CMakeLists.txt +%%EXAMPLES%%lib/Wt/examples/chart3D/CategoryExample.C +%%EXAMPLES%%lib/Wt/examples/chart3D/CategoryExample.h +%%EXAMPLES%%lib/Wt/examples/chart3D/ColorMapTest.h +%%EXAMPLES%%lib/Wt/examples/chart3D/CsvUtil.C +%%EXAMPLES%%lib/Wt/examples/chart3D/CsvUtil.h +%%EXAMPLES%%lib/Wt/examples/chart3D/DataSettings.C +%%EXAMPLES%%lib/Wt/examples/chart3D/DataSettings.h +%%EXAMPLES%%lib/Wt/examples/chart3D/Models.C +%%EXAMPLES%%lib/Wt/examples/chart3D/Models.h +%%EXAMPLES%%lib/Wt/examples/chart3D/NumericalExample.C +%%EXAMPLES%%lib/Wt/examples/chart3D/NumericalExample.h +%%EXAMPLES%%lib/Wt/examples/chart3D/Tabs.C +%%EXAMPLES%%lib/Wt/examples/chart3D/Tabs.h +%%EXAMPLES%%lib/Wt/examples/chart3D/chart3D +%%EXAMPLES%%lib/Wt/examples/chart3D/chart3D.C +%%EXAMPLES%%lib/Wt/examples/chart3D/chart3D.wt +%%EXAMPLES%%lib/Wt/examples/chart3D/configTemplates.xml +%%EXAMPLES%%lib/Wt/examples/chart3D/cross.png +%%EXAMPLES%%lib/Wt/examples/chart3D/diamond.png +%%EXAMPLES%%lib/Wt/examples/chart3D/hor_plane.csv +%%EXAMPLES%%lib/Wt/examples/chart3D/isotope_decay.csv +%%EXAMPLES%%lib/Wt/examples/charts/CMakeLists.txt +%%EXAMPLES%%lib/Wt/examples/charts/ChartConfig.C +%%EXAMPLES%%lib/Wt/examples/charts/ChartConfig.h +%%EXAMPLES%%lib/Wt/examples/charts/ChartsApplication.C +%%EXAMPLES%%lib/Wt/examples/charts/ChartsExample.C +%%EXAMPLES%%lib/Wt/examples/charts/ChartsExample.h +%%EXAMPLES%%lib/Wt/examples/charts/CsvUtil.C +%%EXAMPLES%%lib/Wt/examples/charts/CsvUtil.h +%%EXAMPLES%%lib/Wt/examples/charts/PanelList.C +%%EXAMPLES%%lib/Wt/examples/charts/PanelList.h +%%EXAMPLES%%lib/Wt/examples/charts/README.md +%%EXAMPLES%%lib/Wt/examples/charts/category.csv +%%EXAMPLES%%lib/Wt/examples/charts/charts +%%EXAMPLES%%lib/Wt/examples/charts/charts.css +%%EXAMPLES%%lib/Wt/examples/charts/charts.wt +%%EXAMPLES%%lib/Wt/examples/charts/charts.xml +%%EXAMPLES%%lib/Wt/examples/charts/timeseries.csv +%%EXAMPLES%%lib/Wt/examples/codeview/CMakeLists.txt +%%EXAMPLES%%lib/Wt/examples/codeview/CodeSession.C +%%EXAMPLES%%lib/Wt/examples/codeview/CodeSession.h +%%EXAMPLES%%lib/Wt/examples/codeview/CoderApplication.C +%%EXAMPLES%%lib/Wt/examples/codeview/CoderApplication.h +%%EXAMPLES%%lib/Wt/examples/codeview/CoderWidget.C +%%EXAMPLES%%lib/Wt/examples/codeview/CoderWidget.h +%%EXAMPLES%%lib/Wt/examples/codeview/ObserverWidget.C +%%EXAMPLES%%lib/Wt/examples/codeview/ObserverWidget.h +%%EXAMPLES%%lib/Wt/examples/codeview/README.md +%%EXAMPLES%%lib/Wt/examples/codeview/coder.css +%%EXAMPLES%%lib/Wt/examples/codeview/codingview +%%EXAMPLES%%lib/Wt/examples/codeview/codingview.wt +%%EXAMPLES%%lib/Wt/examples/codeview/prettify/prettify.css +%%EXAMPLES%%lib/Wt/examples/codeview/prettify/prettify.js +%%EXAMPLES%%lib/Wt/examples/codeview/prettify/prettify.min.js +%%EXAMPLES%%lib/Wt/examples/composer/AddresseeEdit.C +%%EXAMPLES%%lib/Wt/examples/composer/AddresseeEdit.h +%%EXAMPLES%%lib/Wt/examples/composer/Attachment.h +%%EXAMPLES%%lib/Wt/examples/composer/AttachmentEdit.C +%%EXAMPLES%%lib/Wt/examples/composer/AttachmentEdit.h +%%EXAMPLES%%lib/Wt/examples/composer/CMakeLists.txt +%%EXAMPLES%%lib/Wt/examples/composer/ComposeExample.C +%%EXAMPLES%%lib/Wt/examples/composer/ComposeExample.h +%%EXAMPLES%%lib/Wt/examples/composer/Composer.C +%%EXAMPLES%%lib/Wt/examples/composer/Composer.h +%%EXAMPLES%%lib/Wt/examples/composer/Contact.h +%%EXAMPLES%%lib/Wt/examples/composer/ContactSuggestions.C +%%EXAMPLES%%lib/Wt/examples/composer/ContactSuggestions.h +%%EXAMPLES%%lib/Wt/examples/composer/Label.C +%%EXAMPLES%%lib/Wt/examples/composer/Label.h +%%EXAMPLES%%lib/Wt/examples/composer/Option.C +%%EXAMPLES%%lib/Wt/examples/composer/Option.h +%%EXAMPLES%%lib/Wt/examples/composer/OptionList.C +%%EXAMPLES%%lib/Wt/examples/composer/OptionList.h +%%EXAMPLES%%lib/Wt/examples/composer/composer +%%EXAMPLES%%lib/Wt/examples/composer/composer.css +%%EXAMPLES%%lib/Wt/examples/composer/composer.wt +%%EXAMPLES%%lib/Wt/examples/composer/composer.xml +%%EXAMPLES%%lib/Wt/examples/composer/icons/paperclip.png +%%EXAMPLES%%lib/Wt/examples/dialog/CMakeLists.txt +%%EXAMPLES%%lib/Wt/examples/dialog/DialogExample.C +%%EXAMPLES%%lib/Wt/examples/dialog/DialogExample.h +%%EXAMPLES%%lib/Wt/examples/dialog/README.md +%%EXAMPLES%%lib/Wt/examples/dialog/dialog +%%EXAMPLES%%lib/Wt/examples/dialog/dialog.wt +%%EXAMPLES%%lib/Wt/examples/dragdrop/CMakeLists.txt +%%EXAMPLES%%lib/Wt/examples/dragdrop/Character.C +%%EXAMPLES%%lib/Wt/examples/dragdrop/Character.h +%%EXAMPLES%%lib/Wt/examples/dragdrop/DragApplication.C +%%EXAMPLES%%lib/Wt/examples/dragdrop/DragExample.C +%%EXAMPLES%%lib/Wt/examples/dragdrop/DragExample.h +%%EXAMPLES%%lib/Wt/examples/dragdrop/README.md +%%EXAMPLES%%lib/Wt/examples/dragdrop/dragdrop +%%EXAMPLES%%lib/Wt/examples/dragdrop/dragdrop.css +%%EXAMPLES%%lib/Wt/examples/dragdrop/dragdrop.wt +%%EXAMPLES%%lib/Wt/examples/dragdrop/icons/blue-pill-small.png +%%EXAMPLES%%lib/Wt/examples/dragdrop/icons/blue-pill.jpg +%%EXAMPLES%%lib/Wt/examples/dragdrop/icons/red-pill-small.png +%%EXAMPLES%%lib/Wt/examples/dragdrop/icons/red-pill.jpg +%%EXAMPLES%%lib/Wt/examples/feature/CMakeLists.txt +%%EXAMPLES%%lib/Wt/examples/feature/README.md +%%EXAMPLES%%lib/Wt/examples/feature/auth1/Auth1.C +%%EXAMPLES%%lib/Wt/examples/feature/auth1/CMakeLists.txt +%%EXAMPLES%%lib/Wt/examples/feature/auth1/README.md +%%EXAMPLES%%lib/Wt/examples/feature/auth1/auth1 +%%EXAMPLES%%lib/Wt/examples/feature/auth1/auth1.wt +%%EXAMPLES%%lib/Wt/examples/feature/auth1/css/oauth-facebook.png +%%EXAMPLES%%lib/Wt/examples/feature/auth1/css/oauth-google.png +%%EXAMPLES%%lib/Wt/examples/feature/auth1/css/style.css +%%EXAMPLES%%lib/Wt/examples/feature/auth1/model/Session.C +%%EXAMPLES%%lib/Wt/examples/feature/auth1/model/Session.h +%%EXAMPLES%%lib/Wt/examples/feature/auth1/model/User.C +%%EXAMPLES%%lib/Wt/examples/feature/auth1/model/User.h +%%EXAMPLES%%lib/Wt/examples/feature/auth1/wt_config.xml +%%EXAMPLES%%lib/Wt/examples/feature/auth2/Auth2.C +%%EXAMPLES%%lib/Wt/examples/feature/auth2/AuthWidget.C +%%EXAMPLES%%lib/Wt/examples/feature/auth2/AuthWidget.h +%%EXAMPLES%%lib/Wt/examples/feature/auth2/CMakeLists.txt +%%EXAMPLES%%lib/Wt/examples/feature/auth2/README.md +%%EXAMPLES%%lib/Wt/examples/feature/auth2/RegistrationView.C +%%EXAMPLES%%lib/Wt/examples/feature/auth2/RegistrationView.h +%%EXAMPLES%%lib/Wt/examples/feature/auth2/auth2 +%%EXAMPLES%%lib/Wt/examples/feature/auth2/auth2.wt +%%EXAMPLES%%lib/Wt/examples/feature/auth2/css/oauth-facebook.png +%%EXAMPLES%%lib/Wt/examples/feature/auth2/css/oauth-google.png +%%EXAMPLES%%lib/Wt/examples/feature/auth2/css/style.css +%%EXAMPLES%%lib/Wt/examples/feature/auth2/model/Session.C +%%EXAMPLES%%lib/Wt/examples/feature/auth2/model/Session.h +%%EXAMPLES%%lib/Wt/examples/feature/auth2/model/User.C +%%EXAMPLES%%lib/Wt/examples/feature/auth2/model/User.h +%%EXAMPLES%%lib/Wt/examples/feature/auth2/model/UserDetailsModel.C +%%EXAMPLES%%lib/Wt/examples/feature/auth2/model/UserDetailsModel.h +%%EXAMPLES%%lib/Wt/examples/feature/auth2/strings.xml +%%EXAMPLES%%lib/Wt/examples/feature/auth2/templates.xml +%%EXAMPLES%%lib/Wt/examples/feature/auth2/wt_config.xml +%%EXAMPLES%%lib/Wt/examples/feature/broadcast/BroadCast.C +%%EXAMPLES%%lib/Wt/examples/feature/broadcast/CMakeLists.txt +%%EXAMPLES%%lib/Wt/examples/feature/broadcast/README.md +%%EXAMPLES%%lib/Wt/examples/feature/broadcast/broadcast +%%EXAMPLES%%lib/Wt/examples/feature/broadcast/broadcast.wt +%%EXAMPLES%%lib/Wt/examples/feature/client-ssl-auth/CMakeLists.txt +%%EXAMPLES%%lib/Wt/examples/feature/client-ssl-auth/README.md +%%EXAMPLES%%lib/Wt/examples/feature/client-ssl-auth/SslClientAuth.C +%%EXAMPLES%%lib/Wt/examples/feature/client-ssl-auth/client-ssl-auth +%%EXAMPLES%%lib/Wt/examples/feature/client-ssl-auth/client-ssl-auth.wt +%%EXAMPLES%%lib/Wt/examples/feature/client-ssl-auth/css/style.css +%%EXAMPLES%%lib/Wt/examples/feature/client-ssl-auth/model/Session.C +%%EXAMPLES%%lib/Wt/examples/feature/client-ssl-auth/model/Session.h +%%EXAMPLES%%lib/Wt/examples/feature/client-ssl-auth/model/User.C +%%EXAMPLES%%lib/Wt/examples/feature/client-ssl-auth/model/User.h +%%EXAMPLES%%lib/Wt/examples/feature/dbo/CMakeLists.txt +%%EXAMPLES%%lib/Wt/examples/feature/dbo/README.md +%%DBO_SQLITE3_EXAMPLES%%lib/Wt/examples/feature/dbo/dbo-tutorial1 +%%DBO_SQLITE3_EXAMPLES%%lib/Wt/examples/feature/dbo/dbo-tutorial2 +%%DBO_EXAMPLES%%lib/Wt/examples/feature/dbo/dbo-tutorial3 *** DIFF OUTPUT TRUNCATED AT 1000 LINES ***