# This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # wt3 # wt3/distinfo # wt3/pkg-descr # wt3/pkg-message # wt3/Makefile # wt3/files # wt3/files/patch-examples_te-benchmark_benchmark.cpp # wt3/files/patch-CMakeLists.txt # wt3/pkg-plist # echo c - wt3 mkdir -p wt3 > /dev/null 2>&1 echo x - wt3/distinfo sed 's/^X//' >wt3/distinfo << '1dd1fdff0cb32d0f064b55d904a50b8a' XTIMESTAMP = 1564694523 XSHA256 (emweb-wt-3.4.0_GH0.tar.gz) = 4cc10f7354218152a56b39d60479eae8080e0607b5e436a9bbe3d5f84780d287 XSIZE (emweb-wt-3.4.0_GH0.tar.gz) = 8659808 1dd1fdff0cb32d0f064b55d904a50b8a echo x - wt3/pkg-descr sed 's/^X//' >wt3/pkg-descr << '63c26d9cae6a4f0b582ff3c2e9f7b042' XWt (pronounced as witty) is a C++ library for developing web applications. X XThe API is widget-centric and uses well-tested patterns of desktop GUI Xdevelopment tailored to the web. To the developer, it offers abstraction of Xmany web-specific implementation details, including client-server protocols X(HTTP, Ajax, WebSockets), and frees the developer from tedious JavaScript Xmanipulations of HTML and dealing with cross-browser issues. Instead, with Wt, Xyou can focus on actual functionality with a rich set of feature-complete Xwidgets. Unlike old-school page-based frameworks or current-day single-page XJavaScript "frameworks", Wt allows you to create stateful applications that are Xat the same time highly interactive (using WebSockets and Ajax for everything) Xbut still support plain HTML browsers or web crawlers using automatic graceful Xdegradation or progressive enhancement. Things that are natural and simple Xwith Wt would require an impractical amount of development effort otherwise: Xswitching widgets using animations, while retaining clean URLs and browser Xnavigation functions, or having a persistent chat widget open throughout the Xentire application, that even works in legacy browsers like Microsoft Internet XExplorer 6. X XThe library comes with an application server that acts as a stand-alone XHttp(s)/WebSocket server or integrates through FastCGI with other web servers. X XWWW: http://www.webtoolkit.eu/wt 63c26d9cae6a4f0b582ff3c2e9f7b042 echo x - wt3/pkg-message sed 's/^X//' >wt3/pkg-message << 'f313aff17d15d4282f8e318439f26f75' X===================================================================== X XThe configuration file location for Wt 3.x has changed. wt_config.xml Xwill no longer resides in ${LOCALBASE}/etc/wt. X XThe new default configuration file location is: X X ${LOCALBASE}/etc/wt3/wt_config.xml X X===================================================================== f313aff17d15d4282f8e318439f26f75 echo x - wt3/Makefile sed 's/^X//' >wt3/Makefile << 'a35ddaf7b0a5a500b86da09d0dfec0c2' X# Created by: Mohammad S. Babaei X# $FreeBSD$ X XPORTNAME= wt3 XPORTVERSION= 3.4.0 XCATEGORIES= www X XMAINTAINER= info@babaei.net XCOMMENT= Widget-centric C++ library for developing web applications X XLICENSE= GPLv2 XLICENSE_FILE= ${WRKSRC}/LICENSE X XBROKEN_powerpc64= fails to link: libwthttp.so. undefined reference to boost::program_options::abstract_variables_map::operator X XLIB_DEPENDS= libpng.so:graphics/png \ X libboost_system.so:devel/boost-libs \ X libGraphicsMagick.so:graphics/GraphicsMagick X XUSES= cmake compiler:c++14-lang pkgconfig ssl XUSE_GITHUB= yes XGH_ACCOUNT= emweb XGH_PROJECT= wt XUSE_XORG= x11 XUSE_LDCONFIG= yes X XCMAKE_ARGS= -DCONFIGDIR:STRING=${LOCALBASE}/etc/${PORTNAME} \ X -DGM_PREFIX:STRING=${LOCALBASE} \ X -DEXAMPLES_DESTINATION:STRING=share/examples/${PORTNAME} \ X -DSSL_PREFIX:STRING=/usr \ X -DZLIB_PREFIX:STRING=/usr \ X -DCONNECTOR_ISAPI:BOOL=OFF \ X -DWEBUSER:STRING=www \ X -DWEBGROUP:STRING=www \ X -DWT_WRASTERIMAGE_IMPLEMENTATION:STRING=GraphicsMagick \ X -DENABLE_SSL:BOOL=ON X XOPTIONS_DEFINE= \ X EXAMPLES \ X TESTS \ X RESOURCES \ X CMAKE_MODULE \ X CPP11 \ X HARU \ X PANGO \ X OPENGL \ X EXT \ X LIBWTTEST \ X UNWIND XOPTIONS_DEFAULT= \ X TESTS \ X RESOURCES \ X CMAKE_MODULE \ X CPP11 \ X HARU \ X PANGO \ X OPENGL \ X LIBWTTEST XOPTIONS_GROUP= CONNECTOR DBO WSTRING XOPTIONS_SUB= yes XNO_OPTIONS_SORT= yes X XEXAMPLES_DESC= Install examples (implies SQLITE3 and WTHTTP) XTESTS_DESC= Build Wt tests XRESOURCES_DESC= Install resources directory XCMAKE_MODULE_DESC= Install FindWt.cmake in systemwide cmake dir XCPP11_DESC= Compile Wt in C++11 mode (Clang or GCC 4.6+) XHARU_DESC= Enable Haru Free PDF Library XEXT_DESC= Build Wt Ext library with JavaScript-only widgets XLIBWTTEST_DESC= Build Wt::Test for automated (integration/unit) tests XUNWIND_DESC= Build Wt with stacktrace support using libunwind X XOPTIONS_GROUP_CONNECTOR= FCGI WTHTTP XOPTIONS_DEFAULT+= FCGI WTHTTP XCONNECTOR_DESC= Connector XFCGI_DESC= Build FastCGI connector XWTHTTP_DESC= Build Wt stand-alone httpd connector X XOPTIONS_GROUP_DBO= SQLITE3 POSTGRES FIREBIRD MYSQL XOPTIONS_DEFAULT+= SQLITE3 XDBO_DESC= Wt::DBO XSQLITE3_DESC= Build Wt with SQLite 3 support XPOSTGRES_DESC= Build Wt with PostgreSQL support XFIREBIRD_DESC= Build Wt with Firebird support XMYSQL_DESC= Build Wt with MariaDB or MySQL support X XOPTIONS_GROUP_WSTRING= NO_STD_LOCALE NO_STD_WSTRING XWSTRING_DESC= Wt::WString XNO_STD_LOCALE_DESC= Build for a system without std::locale support XNO_STD_WSTRING_DESC= Build for a system without std::wstring support X XEXAMPLES_IMPLIES= SQLITE3 WTHTTP XEXAMPLES_CMAKE_BOOL= BUILD_EXAMPLES INSTALL_EXAMPLES X XCMAKE_MODULE_CMAKE_BOOL= INSTALL_FINDWT_CMAKE_FILE X XCPP11_CMAKE_ON= -DWT_CPP_11_MODE:STRING=-std=c++0x X XFCGI_CMAKE_BOOL= CONNECTOR_FCGI XFCGI_LIB_DEPENDS= libfcgi.so:www/fcgi \ X libfcgi++.so:www/fcgi XFCGI_CMAKE_ON= -DFCGI_PREFIX:STRING=${LOCALBASE} X XFIREBIRD_CMAKE_BOOL= ENABLE_FIREBIRD XFIREBIRD_USES= firebird XFIREBIRD_CMAKE_ON= -DFIREBIRD_PREFIX:STRING=${LOCALBASE} \ X -DENABLE_LIBWTDBO:BOOL=ON X XEXT_CMAKE_BOOL= ENABLE_EXT X XHARU_CMAKE_BOOL= ENABLE_HARU XHARU_LIB_DEPENDS= libhpdf.so:print/libharu XHARU_CMAKE_ON= -DHARU_PREFIX:STRING=${LOCALBASE} X XLIBWTTEST_CMAKE_BOOL= ENABLE_LIBWTTEST X XMYSQL_USES= mysql XMYSQL_CMAKE_BOOL= ENABLE_MYSQL XMYSQL_CMAKE_ON= -DMYSQL_PREFIX:STRING=${LOCALBASE} \ X -DENABLE_LIBWTDBO:BOOL=ON X XNO_STD_LOCALE_CMAKE_BOOL= WT_NO_STD_LOCALE X XNO_STD_WSTRING_CMAKE_BOOL= WT_NO_STD_WSTRING X XOPENGL_CMAKE_BOOL= ENABLE_OPENGL XOPENGL_USE= GL=gl,glew XOPENGL_USES= gl X XPANGO_CMAKE_BOOL= ENABLE_PANGO XPANGO_USE= GNOME=pango XPANGO_USES= gnome XPANGO_LIB_DEPENDS= libfontconfig.so:x11-fonts/fontconfig X XPOSTGRES_CMAKE_BOOL= ENABLE_POSTGRES XPOSTGRES_USES= pgsql XPOSTGRES_CMAKE_ON= -DPOSTGRES_PREFIX:STRING=${LOCALBASE} \ X -DENABLE_LIBWTDBO:BOOL=ON X XRESOURCES_CMAKE_BOOL= INSTALL_RESOURCES X XSQLITE3_CMAKE_BOOL= ENABLE_SQLITE XSQLITE3_USES= sqlite:3 XSQLITE3_CMAKE_ON= -DENABLE_LIBWTDBO:BOOL=ON X XTESTS_CMAKE_BOOL= BUILD_TESTS X XUNWIND_CMAKE_BOOL= ENABLE_UNWIND XUNWIND_LIB_DEPENDS= libunwind.so:devel/libunwind X XWTHTTP_CMAKE_BOOL= CONNECTOR_HTTP X XPORTEXAMPLES= * X X.include X X.if ${PORT_OPTIONS:MSQLITE3} || \ X ${PORT_OPTIONS:MPOSTGRES} || \ X ${PORT_OPTIONS:MFIREBIRD} || \ X ${PORT_OPTIONS:MMYSQL} XPLIST_SUB+= DBO="" X.else XPLIST_SUB+= DBO="@comment " X.endif X Xpost-install: X @${RM} ${STAGEDIR}${ETCDIR}/wt_config.xml X @${MKDIR} ${STAGEDIR}${ETCDIR} X ${INSTALL_DATA} ${BUILD_WRKSRC}/wt_config.xml \ X ${STAGEDIR}${ETCDIR}/wt_config.xml.sample X X.include a35ddaf7b0a5a500b86da09d0dfec0c2 echo c - wt3/files mkdir -p wt3/files > /dev/null 2>&1 echo x - wt3/files/patch-examples_te-benchmark_benchmark.cpp sed 's/^X//' >wt3/files/patch-examples_te-benchmark_benchmark.cpp << '36c1b03fcc92674f4806cc350099792f' X--- examples/te-benchmark/benchmark.cpp.orig 2017-08-16 16:07:38 UTC X+++ examples/te-benchmark/benchmark.cpp X@@ -23,6 +23,10 @@ X #include X #include X X+#ifndef WT_WIN32 X+extern char **environ; X+#endif // WT_WIN32 X+ X class MyMessage { X public: X std::string message; 36c1b03fcc92674f4806cc350099792f echo x - wt3/files/patch-CMakeLists.txt sed 's/^X//' >wt3/files/patch-CMakeLists.txt << '8e473a5d09dd370f670f20f12b35b042' X--- CMakeLists.txt.orig 2019-08-13 16:59:16 UTC X+++ CMakeLists.txt X@@ -98,10 +98,10 @@ OPTION(ENABLE_SQLITE "Build SQLite3 backend for Wt::Db X OPTION(ENABLE_POSTGRES "Build PostgreSQL backend for Wt::Dbo" ON) X OPTION(ENABLE_FIREBIRD "Build FirebirdSQL backend for Wt::Dbo" ON) X OPTION(ENABLE_MYSQL "Build mariadb/mysql backend for Wt::Dbo" ON) X-OPTION(ENABLE_MSSQLSERVER "Build Microsoft SQL Server backend for Wt::Dbo" ON) X-OPTION(ENABLE_QT4 "Build Qt4 interworking library (libwtwithqt" ON) X+OPTION(ENABLE_MSSQLSERVER "Build Microsoft SQL Server backend for Wt::Dbo" OFF) # Microsoft Windows only option X+OPTION(ENABLE_QT4 "Build Qt4 interworking library (libwtwithqt" OFF) # QT4 is no longer available in FreeBSD Ports X OPTION(ENABLE_LIBWTTEST "Build Wt::Test" ON) X-OPTION(ENABLE_LIBWTDBO "Build Wt::Dbo" ON) X+OPTION(ENABLE_LIBWTDBO "Build Wt::Dbo" OFF) # OFF is a more convenient default for FreeBSD options X OPTION(WT_NO_STD_LOCALE "Build Wt to run on a system without std::locale support" OFF) X OPTION(WT_NO_STD_WSTRING "Build Wt to run on a system without std::wstring support" OFF) X OPTION(ENABLE_OPENGL "Build Wt with support for server-side opengl rendering" ON) 8e473a5d09dd370f670f20f12b35b042 echo x - wt3/pkg-plist sed 's/^X//' >wt3/pkg-plist << '8887bd2f8399bad47d6400789c197ccf' X@postunexec cmp -s %D/%%ETCDIR%%/wt_config.xml.sample %D/%%ETCDIR%%/wt_config.xml && rm -f %D/%%ETCDIR%%/wt_config.xml || true X%%ETCDIR%%/wt_config.xml.sample X@postexec if [ ! -f %D/%%ETCDIR%%/wt_config.xml ]; then cp -p %D/%%ETCDIR%%/wt_config.xml.sample %D/%%ETCDIR%%/wt_config.xml; fi Xinclude/Wt/Auth/AbstractPasswordService Xinclude/Wt/Auth/AbstractUserDatabase Xinclude/Wt/Auth/AuthModel Xinclude/Wt/Auth/AuthService Xinclude/Wt/Auth/AuthWidget X%%DBO%%include/Wt/Auth/Dbo/AuthInfo X%%DBO%%include/Wt/Auth/Dbo/UserDatabase Xinclude/Wt/Auth/FacebookService Xinclude/Wt/Auth/FormBaseModel Xinclude/Wt/Auth/GoogleService Xinclude/Wt/Auth/HashFunction Xinclude/Wt/Auth/Identity Xinclude/Wt/Auth/IssuedToken Xinclude/Wt/Auth/Login Xinclude/Wt/Auth/LostPasswordWidget Xinclude/Wt/Auth/OAuthAuthorizationEndpointProcess Xinclude/Wt/Auth/OAuthClient Xinclude/Wt/Auth/OAuthService Xinclude/Wt/Auth/OAuthTokenEndpoint Xinclude/Wt/Auth/OidcService Xinclude/Wt/Auth/OidcUserInfoEndpoint Xinclude/Wt/Auth/PasswordHash Xinclude/Wt/Auth/PasswordPromptDialog Xinclude/Wt/Auth/PasswordService Xinclude/Wt/Auth/PasswordStrengthValidator Xinclude/Wt/Auth/PasswordVerifier Xinclude/Wt/Auth/RegistrationModel Xinclude/Wt/Auth/RegistrationWidget Xinclude/Wt/Auth/Token Xinclude/Wt/Auth/UpdatePasswordWidget Xinclude/Wt/Auth/User Xinclude/Wt/Auth/WAuthGlobal Xinclude/Wt/Chart/WAbstractChart Xinclude/Wt/Chart/WAbstractChartImplementation Xinclude/Wt/Chart/WAbstractChartModel Xinclude/Wt/Chart/WAbstractColorMap Xinclude/Wt/Chart/WAbstractDataSeries3D Xinclude/Wt/Chart/WAbstractGridData Xinclude/Wt/Chart/WAxis Xinclude/Wt/Chart/WAxisSliderWidget Xinclude/Wt/Chart/WCartesian3DChart Xinclude/Wt/Chart/WCartesianChart Xinclude/Wt/Chart/WChart2DImplementation Xinclude/Wt/Chart/WChart3DImplementation Xinclude/Wt/Chart/WChartGlobal Xinclude/Wt/Chart/WChartPalette Xinclude/Wt/Chart/WDataSeries Xinclude/Wt/Chart/WEquidistantGridData Xinclude/Wt/Chart/WGridData Xinclude/Wt/Chart/WLegend Xinclude/Wt/Chart/WLegend3D Xinclude/Wt/Chart/WPieChart Xinclude/Wt/Chart/WScatterData Xinclude/Wt/Chart/WSelection Xinclude/Wt/Chart/WStandardChartProxyModel Xinclude/Wt/Chart/WStandardColorMap Xinclude/Wt/Chart/WStandardPalette X%%DBO%%include/Wt/Dbo/Call X%%DBO%%include/Wt/Dbo/Call_impl.h X%%DBO%%include/Wt/Dbo/DbAction X%%DBO%%include/Wt/Dbo/DbAction_impl.h X%%DBO%%include/Wt/Dbo/Dbo X%%DBO%%include/Wt/Dbo/EscapeOStream.h X%%DBO%%include/Wt/Dbo/Exception X%%DBO%%include/Wt/Dbo/Field X%%DBO%%include/Wt/Dbo/Field_impl.h X%%DBO%%include/Wt/Dbo/FixedSqlConnectionPool X%%DBO%%include/Wt/Dbo/Impl X%%DBO%%include/Wt/Dbo/Json X%%DBO%%include/Wt/Dbo/Query X%%DBO%%include/Wt/Dbo/QueryColumn X%%DBO%%include/Wt/Dbo/QueryModel X%%DBO%%include/Wt/Dbo/QueryModel_impl.h X%%DBO%%include/Wt/Dbo/Query_impl.h X%%DBO%%include/Wt/Dbo/Session X%%DBO%%include/Wt/Dbo/Session_impl.h X%%DBO%%include/Wt/Dbo/SqlConnection X%%DBO%%include/Wt/Dbo/SqlConnectionPool X%%DBO%%include/Wt/Dbo/SqlStatement X%%DBO%%include/Wt/Dbo/SqlTraits X%%DBO%%include/Wt/Dbo/SqlTraits_impl.h X%%DBO%%include/Wt/Dbo/StdSqlTraits X%%DBO%%include/Wt/Dbo/StringStream.h X%%DBO%%include/Wt/Dbo/Transaction X%%DBO%%include/Wt/Dbo/Types X%%DBO%%include/Wt/Dbo/WDboDllDefs.h X%%DBO%%include/Wt/Dbo/WtSqlTraits X%%FIREBIRD%%include/Wt/Dbo/backend/Firebird X%%MYSQL%%include/Wt/Dbo/backend/MySQL X%%POSTGRES%%include/Wt/Dbo/backend/Postgres X%%SQLITE3%%include/Wt/Dbo/backend/Sqlite3 X%%FIREBIRD%%include/Wt/Dbo/backend/WDboFirebirdDllDefs.h X%%MYSQL%%include/Wt/Dbo/backend/WDboMySQLDllDefs.h X%%POSTGRES%%include/Wt/Dbo/backend/WDboPostgresDllDefs.h X%%SQLITE3%%include/Wt/Dbo/backend/WDboSqlite3DllDefs.h X%%DBO%%include/Wt/Dbo/collection X%%DBO%%include/Wt/Dbo/collection_impl.h X%%DBO%%include/Wt/Dbo/ptr X%%DBO%%include/Wt/Dbo/ptr_impl.h X%%DBO%%include/Wt/Dbo/ptr_tuple X%%DBO%%include/Wt/Dbo/weak_ptr X%%DBO%%include/Wt/Dbo/weak_ptr_impl.h Xinclude/Wt/DomElement.h Xinclude/Wt/EscapeOStream.h X%%EXT%%include/Wt/Ext/AbstractButton X%%EXT%%include/Wt/Ext/AbstractToggleButton X%%EXT%%include/Wt/Ext/Button X%%EXT%%include/Wt/Ext/CMakeLists.txt X%%EXT%%include/Wt/Ext/Calendar X%%EXT%%include/Wt/Ext/CheckBox X%%EXT%%include/Wt/Ext/ComboBox X%%EXT%%include/Wt/Ext/Component X%%EXT%%include/Wt/Ext/Container X%%EXT%%include/Wt/Ext/DataStore X%%EXT%%include/Wt/Ext/DateField X%%EXT%%include/Wt/Ext/Dialog X%%EXT%%include/Wt/Ext/ExtDllDefs.h X%%EXT%%include/Wt/Ext/FormField X%%EXT%%include/Wt/Ext/LineEdit X%%EXT%%include/Wt/Ext/Menu X%%EXT%%include/Wt/Ext/MenuItem X%%EXT%%include/Wt/Ext/MessageBox X%%EXT%%include/Wt/Ext/NumberField X%%EXT%%include/Wt/Ext/PagingToolBar X%%EXT%%include/Wt/Ext/Panel X%%EXT%%include/Wt/Ext/ProgressDialog X%%EXT%%include/Wt/Ext/RadioButton X%%EXT%%include/Wt/Ext/Splitter X%%EXT%%include/Wt/Ext/SplitterHandle X%%EXT%%include/Wt/Ext/TabWidget X%%EXT%%include/Wt/Ext/TableView X%%EXT%%include/Wt/Ext/TextEdit X%%EXT%%include/Wt/Ext/ToolBar X%%EXT%%include/Wt/Ext/ToolTipConfig X%%EXT%%include/Wt/Ext/WExtGlobal X%%EXT%%include/Wt/Ext/Widget Xinclude/Wt/Http/Client Xinclude/Wt/Http/Message Xinclude/Wt/Http/Method Xinclude/Wt/Http/Request Xinclude/Wt/Http/Response Xinclude/Wt/Http/ResponseContinuation Xinclude/Wt/Http/WtClient Xinclude/Wt/Json/Array Xinclude/Wt/Json/Object Xinclude/Wt/Json/Parser Xinclude/Wt/Json/Serializer Xinclude/Wt/Json/Value Xinclude/Wt/Mail/Client Xinclude/Wt/Mail/Mailbox Xinclude/Wt/Mail/Message Xinclude/Wt/Payment/Address Xinclude/Wt/Payment/Customer Xinclude/Wt/Payment/Money Xinclude/Wt/Payment/Order Xinclude/Wt/Payment/OrderItem Xinclude/Wt/Payment/PayPal Xinclude/Wt/Payment/Result Xinclude/Wt/Render/WPdfRenderer Xinclude/Wt/Render/WTextRenderer X%%LIBWTTEST%%include/Wt/Test/WTestEnvironment Xinclude/Wt/Utils Xinclude/Wt/WAbstractArea Xinclude/Wt/WAbstractGLImplementation Xinclude/Wt/WAbstractItemDelegate Xinclude/Wt/WAbstractItemModel Xinclude/Wt/WAbstractItemView Xinclude/Wt/WAbstractListModel Xinclude/Wt/WAbstractMedia Xinclude/Wt/WAbstractProxyModel Xinclude/Wt/WAbstractSpinBox Xinclude/Wt/WAbstractTableModel Xinclude/Wt/WAbstractToggleButton Xinclude/Wt/WAccordionLayout Xinclude/Wt/WAggregateProxyModel Xinclude/Wt/WAnchor Xinclude/Wt/WAnimation Xinclude/Wt/WApplication Xinclude/Wt/WAudio Xinclude/Wt/WBatchEditProxyModel Xinclude/Wt/WBoostAny Xinclude/Wt/WBootstrapTheme Xinclude/Wt/WBorder Xinclude/Wt/WBorderLayout Xinclude/Wt/WBoxLayout Xinclude/Wt/WBreak Xinclude/Wt/WBrush Xinclude/Wt/WButtonGroup Xinclude/Wt/WCalendar Xinclude/Wt/WCanvasPaintDevice Xinclude/Wt/WCheckBox Xinclude/Wt/WCircleArea Xinclude/Wt/WClientGLWidget Xinclude/Wt/WColor Xinclude/Wt/WCombinedLocalizedStrings Xinclude/Wt/WComboBox Xinclude/Wt/WCompositeWidget Xinclude/Wt/WConfig.h Xinclude/Wt/WContainerWidget Xinclude/Wt/WCssDecorationStyle Xinclude/Wt/WCssStyleSheet Xinclude/Wt/WCssTheme Xinclude/Wt/WDate Xinclude/Wt/WDateEdit Xinclude/Wt/WDatePicker Xinclude/Wt/WDateTime Xinclude/Wt/WDateValidator Xinclude/Wt/WDefaultLayout Xinclude/Wt/WDefaultLoadingIndicator Xinclude/Wt/WDialog Xinclude/Wt/WDllDefs.h Xinclude/Wt/WDoubleSpinBox Xinclude/Wt/WDoubleValidator Xinclude/Wt/WEnvironment Xinclude/Wt/WEvent Xinclude/Wt/WException Xinclude/Wt/WFileDropWidget Xinclude/Wt/WFileResource Xinclude/Wt/WFileUpload Xinclude/Wt/WFitLayout Xinclude/Wt/WFlags Xinclude/Wt/WFlashObject Xinclude/Wt/WFont Xinclude/Wt/WFontMetrics Xinclude/Wt/WFormModel Xinclude/Wt/WFormWidget Xinclude/Wt/WGLWidget Xinclude/Wt/WGenericMatrix Xinclude/Wt/WGlobal Xinclude/Wt/WGoogleMap Xinclude/Wt/WGradient Xinclude/Wt/WGridLayout Xinclude/Wt/WGroupBox Xinclude/Wt/WHBoxLayout Xinclude/Wt/WHTML5Audio Xinclude/Wt/WHTML5Video Xinclude/Wt/WIOService Xinclude/Wt/WIcon Xinclude/Wt/WIconPair Xinclude/Wt/WIdentityProxyModel Xinclude/Wt/WImage Xinclude/Wt/WInPlaceEdit Xinclude/Wt/WIntValidator Xinclude/Wt/WInteractWidget Xinclude/Wt/WItemDelegate Xinclude/Wt/WItemSelectionModel Xinclude/Wt/WJavaScript Xinclude/Wt/WJavaScriptExposableObject Xinclude/Wt/WJavaScriptHandle Xinclude/Wt/WJavaScriptObjectStorage Xinclude/Wt/WJavaScriptPreamble Xinclude/Wt/WJavaScriptSlot Xinclude/Wt/WLabel Xinclude/Wt/WLayout Xinclude/Wt/WLayoutItem Xinclude/Wt/WLayoutItemImpl Xinclude/Wt/WLeafletMap Xinclude/Wt/WLength Xinclude/Wt/WLengthValidator Xinclude/Wt/WLineEdit Xinclude/Wt/WLineF Xinclude/Wt/WLink Xinclude/Wt/WLoadingIndicator Xinclude/Wt/WLocalDateTime Xinclude/Wt/WLocale Xinclude/Wt/WLocalizedStrings Xinclude/Wt/WLogger Xinclude/Wt/WMatrix4x4 Xinclude/Wt/WMeasurePaintDevice Xinclude/Wt/WMediaPlayer Xinclude/Wt/WMemoryResource Xinclude/Wt/WMenu Xinclude/Wt/WMenuItem Xinclude/Wt/WMessageBox Xinclude/Wt/WMessageResourceBundle Xinclude/Wt/WMessageResources Xinclude/Wt/WModelIndex Xinclude/Wt/WNavigationBar Xinclude/Wt/WObject Xinclude/Wt/WOverlayLoadingIndicator Xinclude/Wt/WPaintDevice Xinclude/Wt/WPaintedWidget Xinclude/Wt/WPainter Xinclude/Wt/WPainterPath Xinclude/Wt/WPanel Xinclude/Wt/WPdfImage Xinclude/Wt/WPen Xinclude/Wt/WPoint Xinclude/Wt/WPointF Xinclude/Wt/WPolygonArea Xinclude/Wt/WPopupMenu Xinclude/Wt/WPopupMenuItem Xinclude/Wt/WPopupWidget Xinclude/Wt/WProgressBar Xinclude/Wt/WPushButton Xinclude/Wt/WRadioButton Xinclude/Wt/WRandom Xinclude/Wt/WRasterImage Xinclude/Wt/WReadOnlyProxyModel Xinclude/Wt/WRectArea Xinclude/Wt/WRectF Xinclude/Wt/WRegExp Xinclude/Wt/WRegExpValidator Xinclude/Wt/WResource Xinclude/Wt/WScrollArea Xinclude/Wt/WScrollBar Xinclude/Wt/WSelectionBox Xinclude/Wt/WServer Xinclude/Wt/WServerGLWidget Xinclude/Wt/WShadow Xinclude/Wt/WSignal Xinclude/Wt/WSignalMapper Xinclude/Wt/WSlider Xinclude/Wt/WSocketNotifier Xinclude/Wt/WSortFilterProxyModel Xinclude/Wt/WSound Xinclude/Wt/WSpinBox Xinclude/Wt/WSplitButton Xinclude/Wt/WSslCertificate Xinclude/Wt/WSslInfo Xinclude/Wt/WStackedWidget Xinclude/Wt/WStandardItem Xinclude/Wt/WStandardItemModel Xinclude/Wt/WStatelessSlot Xinclude/Wt/WStreamResource Xinclude/Wt/WString Xinclude/Wt/WStringListModel Xinclude/Wt/WStringStream Xinclude/Wt/WStringUtil Xinclude/Wt/WSubMenuItem Xinclude/Wt/WSuggestionPopup Xinclude/Wt/WSvgImage Xinclude/Wt/WTabWidget Xinclude/Wt/WTable Xinclude/Wt/WTableCell Xinclude/Wt/WTableColumn Xinclude/Wt/WTableRow Xinclude/Wt/WTableView Xinclude/Wt/WTemplate Xinclude/Wt/WTemplateFormView Xinclude/Wt/WText Xinclude/Wt/WTextArea Xinclude/Wt/WTextEdit Xinclude/Wt/WTheme Xinclude/Wt/WTime Xinclude/Wt/WTimeEdit Xinclude/Wt/WTimePicker Xinclude/Wt/WTimeValidator Xinclude/Wt/WTimer Xinclude/Wt/WTimerWidget Xinclude/Wt/WToolBar Xinclude/Wt/WTransform Xinclude/Wt/WTree Xinclude/Wt/WTreeNode Xinclude/Wt/WTreeTable Xinclude/Wt/WTreeTableNode Xinclude/Wt/WTreeView Xinclude/Wt/WVBoxLayout Xinclude/Wt/WValidationStatus Xinclude/Wt/WValidator Xinclude/Wt/WVector3 Xinclude/Wt/WVector4 Xinclude/Wt/WVectorImage Xinclude/Wt/WVideo Xinclude/Wt/WViewWidget Xinclude/Wt/WVirtualImage Xinclude/Wt/WVmlImage Xinclude/Wt/WWebWidget Xinclude/Wt/WWidget Xinclude/Wt/WWidgetItem Xlib/libwt.so Xlib/libwt.so.3.4.0 X%%DBO%%lib/libwtdbo.so X%%DBO%%lib/libwtdbo.so.3.4.0 X%%FIREBIRD%%lib/libwtdbofirebird.so X%%FIREBIRD%%lib/libwtdbofirebird.so.3.4.0 X%%MYSQL%%lib/libwtdbomysql.so X%%MYSQL%%lib/libwtdbomysql.so.3.4.0 X%%POSTGRES%%lib/libwtdbopostgres.so X%%POSTGRES%%lib/libwtdbopostgres.so.3.4.0 X%%SQLITE3%%lib/libwtdbosqlite3.so X%%SQLITE3%%lib/libwtdbosqlite3.so.3.4.0 X%%EXT%%lib/libwtext.so X%%EXT%%lib/libwtext.so.3.4.0 X%%FCGI%%lib/libwtfcgi.so X%%FCGI%%lib/libwtfcgi.so.3.4.0 X%%WTHTTP%%lib/libwthttp.so X%%WTHTTP%%lib/libwthttp.so.3.4.0 X%%LIBWTTEST%%lib/libwttest.so X%%LIBWTTEST%%lib/libwttest.so.3.4.0 X%%RESOURCES%%share/Wt/resources/ajax-loading.gif X%%RESOURCES%%share/Wt/resources/calendar_edit.png X%%RESOURCES%%share/Wt/resources/collapse-rtl.gif X%%RESOURCES%%share/Wt/resources/collapse.gif X%%RESOURCES%%share/Wt/resources/date.gif X%%RESOURCES%%share/Wt/resources/expand-rtl.gif X%%RESOURCES%%share/Wt/resources/expand.gif X%%RESOURCES%%share/Wt/resources/font-awesome/LICENSE.txt X%%RESOURCES%%share/Wt/resources/font-awesome/css/font-awesome.css X%%RESOURCES%%share/Wt/resources/font-awesome/css/font-awesome.min.css X%%RESOURCES%%share/Wt/resources/font-awesome/fonts/FontAwesome.otf X%%RESOURCES%%share/Wt/resources/font-awesome/fonts/fontawesome-webfont.eot X%%RESOURCES%%share/Wt/resources/font-awesome/fonts/fontawesome-webfont.svg X%%RESOURCES%%share/Wt/resources/font-awesome/fonts/fontawesome-webfont.ttf X%%RESOURCES%%share/Wt/resources/font-awesome/fonts/fontawesome-webfont.woff X%%RESOURCES%%share/Wt/resources/font-awesome/fonts/fontawesome-webfont.woff2 X%%RESOURCES%%share/Wt/resources/form.css X%%RESOURCES%%share/Wt/resources/html4_default.css X%%RESOURCES%%share/Wt/resources/icon_clock.gif X%%RESOURCES%%share/Wt/resources/items-not-ok.gif X%%RESOURCES%%share/Wt/resources/items-ok.gif X%%RESOURCES%%share/Wt/resources/items.gif X%%RESOURCES%%share/Wt/resources/jPlayer/jquery.jplayer.js X%%RESOURCES%%share/Wt/resources/jPlayer/jquery.jplayer.min.js X%%RESOURCES%%share/Wt/resources/jPlayer/jquery.jplayer.swf X%%RESOURCES%%share/Wt/resources/jPlayer/jquery.min.js X%%RESOURCES%%share/Wt/resources/jPlayer/skin/jplayer.blue.monday.css X%%RESOURCES%%share/Wt/resources/jPlayer/skin/jplayer.blue.monday.jpg X%%RESOURCES%%share/Wt/resources/jPlayer/skin/jplayer.blue.monday.seeking.gif X%%RESOURCES%%share/Wt/resources/jPlayer/skin/jplayer.blue.monday.video.play.png X%%RESOURCES%%share/Wt/resources/line-last-rtl.gif X%%RESOURCES%%share/Wt/resources/line-last.gif X%%RESOURCES%%share/Wt/resources/line-middle-rtl.gif X%%RESOURCES%%share/Wt/resources/line-middle.gif X%%RESOURCES%%share/Wt/resources/line-trunk.gif X%%RESOURCES%%share/Wt/resources/loading.png X%%RESOURCES%%share/Wt/resources/minus.gif X%%RESOURCES%%share/Wt/resources/moz-transitions.css X%%RESOURCES%%share/Wt/resources/plus.gif X%%RESOURCES%%share/Wt/resources/resizable.png X%%RESOURCES%%share/Wt/resources/right-arrow.gif X%%RESOURCES%%share/Wt/resources/tab_b.gif X%%RESOURCES%%share/Wt/resources/tab_l.gif X%%RESOURCES%%share/Wt/resources/tab_r.gif X%%RESOURCES%%share/Wt/resources/themes/bootstrap/2/bootstrap-responsive.css X%%RESOURCES%%share/Wt/resources/themes/bootstrap/2/bootstrap-responsive.min.css X%%RESOURCES%%share/Wt/resources/themes/bootstrap/2/bootstrap.css X%%RESOURCES%%share/Wt/resources/themes/bootstrap/2/bootstrap.min.css X%%RESOURCES%%share/Wt/resources/themes/bootstrap/2/date-edit-button.png X%%RESOURCES%%share/Wt/resources/themes/bootstrap/2/date-edit-button.svg X%%RESOURCES%%share/Wt/resources/themes/bootstrap/2/spin-buttons.png X%%RESOURCES%%share/Wt/resources/themes/bootstrap/2/spin-buttons.svg X%%RESOURCES%%share/Wt/resources/themes/bootstrap/2/suggest-dropdown.png X%%RESOURCES%%share/Wt/resources/themes/bootstrap/2/suggest-dropdown.svg X%%RESOURCES%%share/Wt/resources/themes/bootstrap/2/time-edit-button.png X%%RESOURCES%%share/Wt/resources/themes/bootstrap/2/wt.css X%%RESOURCES%%share/Wt/resources/themes/bootstrap/2/wt.less X%%RESOURCES%%share/Wt/resources/themes/bootstrap/3/bootstrap-theme.css X%%RESOURCES%%share/Wt/resources/themes/bootstrap/3/bootstrap-theme.css.map X%%RESOURCES%%share/Wt/resources/themes/bootstrap/3/bootstrap-theme.min.css X%%RESOURCES%%share/Wt/resources/themes/bootstrap/3/bootstrap-theme.min.css.map X%%RESOURCES%%share/Wt/resources/themes/bootstrap/3/bootstrap.css X%%RESOURCES%%share/Wt/resources/themes/bootstrap/3/bootstrap.css.map X%%RESOURCES%%share/Wt/resources/themes/bootstrap/3/bootstrap.min.css X%%RESOURCES%%share/Wt/resources/themes/bootstrap/3/bootstrap.min.css.map X%%RESOURCES%%share/Wt/resources/themes/bootstrap/3/date-edit-button.png X%%RESOURCES%%share/Wt/resources/themes/bootstrap/3/date-edit-button.svg X%%RESOURCES%%share/Wt/resources/themes/bootstrap/3/spin-buttons.png X%%RESOURCES%%share/Wt/resources/themes/bootstrap/3/spin-buttons.svg X%%RESOURCES%%share/Wt/resources/themes/bootstrap/3/suggest-dropdown.png X%%RESOURCES%%share/Wt/resources/themes/bootstrap/3/suggest-dropdown.svg X%%RESOURCES%%share/Wt/resources/themes/bootstrap/3/time-edit-button.png X%%RESOURCES%%share/Wt/resources/themes/bootstrap/3/wt.css X%%RESOURCES%%share/Wt/resources/themes/bootstrap/3/wt.less X%%RESOURCES%%share/Wt/resources/themes/bootstrap/img/glyphicons-halflings-white.png X%%RESOURCES%%share/Wt/resources/themes/bootstrap/img/glyphicons-halflings.png X%%RESOURCES%%share/Wt/resources/themes/bootstrap/nav-minus-rtl.gif X%%RESOURCES%%share/Wt/resources/themes/bootstrap/nav-minus.gif X%%RESOURCES%%share/Wt/resources/themes/bootstrap/nav-plus-rtl.gif X%%RESOURCES%%share/Wt/resources/themes/bootstrap/nav-plus.gif X%%RESOURCES%%share/Wt/resources/themes/bootstrap/sort-arrow-down.gif X%%RESOURCES%%share/Wt/resources/themes/bootstrap/sort-arrow-none.gif X%%RESOURCES%%share/Wt/resources/themes/bootstrap/sort-arrow-up.gif X%%RESOURCES%%share/Wt/resources/themes/bootstrap/splitter-h.png X%%RESOURCES%%share/Wt/resources/themes/bootstrap/splitter-v.png X%%RESOURCES%%share/Wt/resources/themes/bootstrap/stripes/generate.sh X%%RESOURCES%%share/Wt/resources/themes/bootstrap/stripes/stripe-10px.gif X%%RESOURCES%%share/Wt/resources/themes/bootstrap/stripes/stripe-11px.gif X%%RESOURCES%%share/Wt/resources/themes/bootstrap/stripes/stripe-12px.gif X%%RESOURCES%%share/Wt/resources/themes/bootstrap/stripes/stripe-13px.gif X%%RESOURCES%%share/Wt/resources/themes/bootstrap/stripes/stripe-14px.gif X%%RESOURCES%%share/Wt/resources/themes/bootstrap/stripes/stripe-15px.gif X%%RESOURCES%%share/Wt/resources/themes/bootstrap/stripes/stripe-16px.gif X%%RESOURCES%%share/Wt/resources/themes/bootstrap/stripes/stripe-17px.gif X%%RESOURCES%%share/Wt/resources/themes/bootstrap/stripes/stripe-18px.gif X%%RESOURCES%%share/Wt/resources/themes/bootstrap/stripes/stripe-19px.gif X%%RESOURCES%%share/Wt/resources/themes/bootstrap/stripes/stripe-20px.gif X%%RESOURCES%%share/Wt/resources/themes/bootstrap/stripes/stripe-21px.gif X%%RESOURCES%%share/Wt/resources/themes/bootstrap/stripes/stripe-22px.gif X%%RESOURCES%%share/Wt/resources/themes/bootstrap/stripes/stripe-23px.gif X%%RESOURCES%%share/Wt/resources/themes/bootstrap/stripes/stripe-24px.gif X%%RESOURCES%%share/Wt/resources/themes/bootstrap/stripes/stripe-25px.gif X%%RESOURCES%%share/Wt/resources/themes/bootstrap/stripes/stripe-26px.gif X%%RESOURCES%%share/Wt/resources/themes/bootstrap/stripes/stripe-27px.gif X%%RESOURCES%%share/Wt/resources/themes/bootstrap/stripes/stripe-28px.gif X%%RESOURCES%%share/Wt/resources/themes/bootstrap/stripes/stripe-29px.gif X%%RESOURCES%%share/Wt/resources/themes/bootstrap/stripes/stripe-30px.gif X%%RESOURCES%%share/Wt/resources/themes/bootstrap/stripes/stripe-31px.gif X%%RESOURCES%%share/Wt/resources/themes/bootstrap/stripes/stripe-32px.gif X%%RESOURCES%%share/Wt/resources/themes/bootstrap/stripes/stripe-33px.gif X%%RESOURCES%%share/Wt/resources/themes/bootstrap/stripes/stripe-34px.gif X%%RESOURCES%%share/Wt/resources/themes/bootstrap/stripes/stripe-35px.gif X%%RESOURCES%%share/Wt/resources/themes/bootstrap/stripes/stripe-36px.gif X%%RESOURCES%%share/Wt/resources/themes/bootstrap/stripes/stripe-37px.gif X%%RESOURCES%%share/Wt/resources/themes/bootstrap/stripes/stripe-38px.gif X%%RESOURCES%%share/Wt/resources/themes/bootstrap/stripes/stripe-39px.gif X%%RESOURCES%%share/Wt/resources/themes/bootstrap/stripes/stripe-40px.gif X%%RESOURCES%%share/Wt/resources/themes/default/closeicons-dialog.png X%%RESOURCES%%share/Wt/resources/themes/default/closeicons-mi.png X%%RESOURCES%%share/Wt/resources/themes/default/closeicons-tab.png X%%RESOURCES%%share/Wt/resources/themes/default/dropdown.png X%%RESOURCES%%share/Wt/resources/themes/default/nav-minus-rtl.gif X%%RESOURCES%%share/Wt/resources/themes/default/nav-minus.gif X%%RESOURCES%%share/Wt/resources/themes/default/nav-plus-rtl.gif X%%RESOURCES%%share/Wt/resources/themes/default/nav-plus.gif X%%RESOURCES%%share/Wt/resources/themes/default/no-stripes/generate.sh X%%RESOURCES%%share/Wt/resources/themes/default/no-stripes/no-stripe-10px.gif X%%RESOURCES%%share/Wt/resources/themes/default/no-stripes/no-stripe-11px.gif X%%RESOURCES%%share/Wt/resources/themes/default/no-stripes/no-stripe-12px.gif X%%RESOURCES%%share/Wt/resources/themes/default/no-stripes/no-stripe-13px.gif X%%RESOURCES%%share/Wt/resources/themes/default/no-stripes/no-stripe-14px.gif X%%RESOURCES%%share/Wt/resources/themes/default/no-stripes/no-stripe-15px.gif X%%RESOURCES%%share/Wt/resources/themes/default/no-stripes/no-stripe-16px.gif X%%RESOURCES%%share/Wt/resources/themes/default/no-stripes/no-stripe-17px.gif X%%RESOURCES%%share/Wt/resources/themes/default/no-stripes/no-stripe-18px.gif X%%RESOURCES%%share/Wt/resources/themes/default/no-stripes/no-stripe-19px.gif X%%RESOURCES%%share/Wt/resources/themes/default/no-stripes/no-stripe-20px.gif X%%RESOURCES%%share/Wt/resources/themes/default/no-stripes/no-stripe-21px.gif X%%RESOURCES%%share/Wt/resources/themes/default/no-stripes/no-stripe-22px.gif X%%RESOURCES%%share/Wt/resources/themes/default/no-stripes/no-stripe-23px.gif X%%RESOURCES%%share/Wt/resources/themes/default/no-stripes/no-stripe-24px.gif X%%RESOURCES%%share/Wt/resources/themes/default/no-stripes/no-stripe-25px.gif X%%RESOURCES%%share/Wt/resources/themes/default/no-stripes/no-stripe-26px.gif X%%RESOURCES%%share/Wt/resources/themes/default/no-stripes/no-stripe-27px.gif X%%RESOURCES%%share/Wt/resources/themes/default/no-stripes/no-stripe-28px.gif X%%RESOURCES%%share/Wt/resources/themes/default/no-stripes/no-stripe-29px.gif X%%RESOURCES%%share/Wt/resources/themes/default/no-stripes/no-stripe-30px.gif X%%RESOURCES%%share/Wt/resources/themes/default/no-stripes/no-stripe-31px.gif X%%RESOURCES%%share/Wt/resources/themes/default/no-stripes/no-stripe-32px.gif X%%RESOURCES%%share/Wt/resources/themes/default/no-stripes/no-stripe-33px.gif X%%RESOURCES%%share/Wt/resources/themes/default/no-stripes/no-stripe-34px.gif X%%RESOURCES%%share/Wt/resources/themes/default/no-stripes/no-stripe-35px.gif X%%RESOURCES%%share/Wt/resources/themes/default/no-stripes/no-stripe-36px.gif X%%RESOURCES%%share/Wt/resources/themes/default/no-stripes/no-stripe-37px.gif X%%RESOURCES%%share/Wt/resources/themes/default/no-stripes/no-stripe-38px.gif X%%RESOURCES%%share/Wt/resources/themes/default/no-stripes/no-stripe-39px.gif X%%RESOURCES%%share/Wt/resources/themes/default/no-stripes/no-stripe-40px.gif X%%RESOURCES%%share/Wt/resources/themes/default/slider-thumb-h-disabled.gif X%%RESOURCES%%share/Wt/resources/themes/default/slider-thumb-h.gif X%%RESOURCES%%share/Wt/resources/themes/default/slider-thumb-v-disabled.gif X%%RESOURCES%%share/Wt/resources/themes/default/slider-thumb-v.gif X%%RESOURCES%%share/Wt/resources/themes/default/sliderbg-h-disabled.png X%%RESOURCES%%share/Wt/resources/themes/default/sliderbg-h.png X%%RESOURCES%%share/Wt/resources/themes/default/sliderbg-v-disabled.png X%%RESOURCES%%share/Wt/resources/themes/default/sliderbg-v.png X%%RESOURCES%%share/Wt/resources/themes/default/sort-arrow-disabled.gif X%%RESOURCES%%share/Wt/resources/themes/default/sort-arrow-down.gif X%%RESOURCES%%share/Wt/resources/themes/default/sort-arrow-none.gif X%%RESOURCES%%share/Wt/resources/themes/default/sort-arrow-up.gif X%%RESOURCES%%share/Wt/resources/themes/default/spin-buttons-dn.png X%%RESOURCES%%share/Wt/resources/themes/default/spin-buttons-up.png X%%RESOURCES%%share/Wt/resources/themes/default/spin-buttons.png X%%RESOURCES%%share/Wt/resources/themes/default/splitter-h.png X%%RESOURCES%%share/Wt/resources/themes/default/splitter-v.png X%%RESOURCES%%share/Wt/resources/themes/default/stripes/generate.sh X%%RESOURCES%%share/Wt/resources/themes/default/stripes/stripe-10px.gif X%%RESOURCES%%share/Wt/resources/themes/default/stripes/stripe-11px.gif X%%RESOURCES%%share/Wt/resources/themes/default/stripes/stripe-12px.gif X%%RESOURCES%%share/Wt/resources/themes/default/stripes/stripe-13px.gif X%%RESOURCES%%share/Wt/resources/themes/default/stripes/stripe-14px.gif X%%RESOURCES%%share/Wt/resources/themes/default/stripes/stripe-15px.gif X%%RESOURCES%%share/Wt/resources/themes/default/stripes/stripe-16px.gif X%%RESOURCES%%share/Wt/resources/themes/default/stripes/stripe-17px.gif X%%RESOURCES%%share/Wt/resources/themes/default/stripes/stripe-18px.gif X%%RESOURCES%%share/Wt/resources/themes/default/stripes/stripe-19px.gif X%%RESOURCES%%share/Wt/resources/themes/default/stripes/stripe-20px.gif X%%RESOURCES%%share/Wt/resources/themes/default/stripes/stripe-21px.gif X%%RESOURCES%%share/Wt/resources/themes/default/stripes/stripe-22px.gif X%%RESOURCES%%share/Wt/resources/themes/default/stripes/stripe-23px.gif X%%RESOURCES%%share/Wt/resources/themes/default/stripes/stripe-24px.gif X%%RESOURCES%%share/Wt/resources/themes/default/stripes/stripe-25px.gif X%%RESOURCES%%share/Wt/resources/themes/default/stripes/stripe-26px.gif X%%RESOURCES%%share/Wt/resources/themes/default/stripes/stripe-27px.gif X%%RESOURCES%%share/Wt/resources/themes/default/stripes/stripe-28px.gif X%%RESOURCES%%share/Wt/resources/themes/default/stripes/stripe-29px.gif X%%RESOURCES%%share/Wt/resources/themes/default/stripes/stripe-30px.gif X%%RESOURCES%%share/Wt/resources/themes/default/stripes/stripe-31px.gif X%%RESOURCES%%share/Wt/resources/themes/default/stripes/stripe-32px.gif X%%RESOURCES%%share/Wt/resources/themes/default/stripes/stripe-33px.gif X%%RESOURCES%%share/Wt/resources/themes/default/stripes/stripe-34px.gif X%%RESOURCES%%share/Wt/resources/themes/default/stripes/stripe-35px.gif X%%RESOURCES%%share/Wt/resources/themes/default/stripes/stripe-36px.gif X%%RESOURCES%%share/Wt/resources/themes/default/stripes/stripe-37px.gif X%%RESOURCES%%share/Wt/resources/themes/default/stripes/stripe-38px.gif X%%RESOURCES%%share/Wt/resources/themes/default/stripes/stripe-39px.gif X%%RESOURCES%%share/Wt/resources/themes/default/stripes/stripe-40px.gif X%%RESOURCES%%share/Wt/resources/themes/default/wt.css X%%RESOURCES%%share/Wt/resources/themes/default/wt_ie.css X%%RESOURCES%%share/Wt/resources/themes/default/wt_ie6.css X%%RESOURCES%%share/Wt/resources/themes/polished/closeicons-dialog.png X%%RESOURCES%%share/Wt/resources/themes/polished/closeicons-mi.png X%%RESOURCES%%share/Wt/resources/themes/polished/closeicons-tab.png X%%RESOURCES%%share/Wt/resources/themes/polished/dropdown.png X%%RESOURCES%%share/Wt/resources/themes/polished/dropshadow.png X%%RESOURCES%%share/Wt/resources/themes/polished/gradient.png X%%RESOURCES%%share/Wt/resources/themes/polished/nav-minus-rtl.gif X%%RESOURCES%%share/Wt/resources/themes/polished/nav-minus-rtl.png X%%RESOURCES%%share/Wt/resources/themes/polished/nav-minus.gif X%%RESOURCES%%share/Wt/resources/themes/polished/nav-minus.png X%%RESOURCES%%share/Wt/resources/themes/polished/nav-plus-rtl.gif X%%RESOURCES%%share/Wt/resources/themes/polished/nav-plus-rtl.png X%%RESOURCES%%share/Wt/resources/themes/polished/nav-plus.gif X%%RESOURCES%%share/Wt/resources/themes/polished/nav-plus.png X%%RESOURCES%%share/Wt/resources/themes/polished/no-stripes/generate.sh X%%RESOURCES%%share/Wt/resources/themes/polished/no-stripes/no-stripe-10px.gif X%%RESOURCES%%share/Wt/resources/themes/polished/no-stripes/no-stripe-11px.gif X%%RESOURCES%%share/Wt/resources/themes/polished/no-stripes/no-stripe-12px.gif X%%RESOURCES%%share/Wt/resources/themes/polished/no-stripes/no-stripe-13px.gif X%%RESOURCES%%share/Wt/resources/themes/polished/no-stripes/no-stripe-14px.gif X%%RESOURCES%%share/Wt/resources/themes/polished/no-stripes/no-stripe-15px.gif X%%RESOURCES%%share/Wt/resources/themes/polished/no-stripes/no-stripe-16px.gif X%%RESOURCES%%share/Wt/resources/themes/polished/no-stripes/no-stripe-17px.gif X%%RESOURCES%%share/Wt/resources/themes/polished/no-stripes/no-stripe-18px.gif X%%RESOURCES%%share/Wt/resources/themes/polished/no-stripes/no-stripe-19px.gif X%%RESOURCES%%share/Wt/resources/themes/polished/no-stripes/no-stripe-20px.gif X%%RESOURCES%%share/Wt/resources/themes/polished/no-stripes/no-stripe-21px.gif X%%RESOURCES%%share/Wt/resources/themes/polished/no-stripes/no-stripe-22px.gif X%%RESOURCES%%share/Wt/resources/themes/polished/no-stripes/no-stripe-23px.gif X%%RESOURCES%%share/Wt/resources/themes/polished/no-stripes/no-stripe-24px.gif X%%RESOURCES%%share/Wt/resources/themes/polished/no-stripes/no-stripe-25px.gif X%%RESOURCES%%share/Wt/resources/themes/polished/no-stripes/no-stripe-26px.gif X%%RESOURCES%%share/Wt/resources/themes/polished/no-stripes/no-stripe-27px.gif X%%RESOURCES%%share/Wt/resources/themes/polished/no-stripes/no-stripe-28px.gif X%%RESOURCES%%share/Wt/resources/themes/polished/no-stripes/no-stripe-29px.gif X%%RESOURCES%%share/Wt/resources/themes/polished/no-stripes/no-stripe-30px.gif X%%RESOURCES%%share/Wt/resources/themes/polished/no-stripes/no-stripe-31px.gif X%%RESOURCES%%share/Wt/resources/themes/polished/no-stripes/no-stripe-32px.gif X%%RESOURCES%%share/Wt/resources/themes/polished/no-stripes/no-stripe-33px.gif X%%RESOURCES%%share/Wt/resources/themes/polished/no-stripes/no-stripe-34px.gif X%%RESOURCES%%share/Wt/resources/themes/polished/no-stripes/no-stripe-35px.gif X%%RESOURCES%%share/Wt/resources/themes/polished/no-stripes/no-stripe-36px.gif X%%RESOURCES%%share/Wt/resources/themes/polished/no-stripes/no-stripe-37px.gif X%%RESOURCES%%share/Wt/resources/themes/polished/no-stripes/no-stripe-38px.gif X%%RESOURCES%%share/Wt/resources/themes/polished/no-stripes/no-stripe-39px.gif X%%RESOURCES%%share/Wt/resources/themes/polished/no-stripes/no-stripe-40px.gif X%%RESOURCES%%share/Wt/resources/themes/polished/slider-thumb-disabled.png X%%RESOURCES%%share/Wt/resources/themes/polished/slider-thumb.png X%%RESOURCES%%share/Wt/resources/themes/polished/sliderbg-h-disabled.png X%%RESOURCES%%share/Wt/resources/themes/polished/sliderbg-h.png X%%RESOURCES%%share/Wt/resources/themes/polished/sliderbg-he-disabled.png X%%RESOURCES%%share/Wt/resources/themes/polished/sliderbg-he.png X%%RESOURCES%%share/Wt/resources/themes/polished/sliderbg-hw-disabled.png X%%RESOURCES%%share/Wt/resources/themes/polished/sliderbg-hw.png X%%RESOURCES%%share/Wt/resources/themes/polished/sliderbg-v-disabled.png X%%RESOURCES%%share/Wt/resources/themes/polished/sliderbg-v.png X%%RESOURCES%%share/Wt/resources/themes/polished/sliderbg-ve-disabled.png X%%RESOURCES%%share/Wt/resources/themes/polished/sliderbg-ve.png X%%RESOURCES%%share/Wt/resources/themes/polished/sliderbg-vw-disabled.png X%%RESOURCES%%share/Wt/resources/themes/polished/sliderbg-vw.png X%%RESOURCES%%share/Wt/resources/themes/polished/sort-arrow-disabled.gif X%%RESOURCES%%share/Wt/resources/themes/polished/sort-arrow-down.gif X%%RESOURCES%%share/Wt/resources/themes/polished/sort-arrow-none.gif X%%RESOURCES%%share/Wt/resources/themes/polished/sort-arrow-up.gif X%%RESOURCES%%share/Wt/resources/themes/polished/splitter-h.png X%%RESOURCES%%share/Wt/resources/themes/polished/splitter-v.png X%%RESOURCES%%share/Wt/resources/themes/polished/stripes/generate.sh X%%RESOURCES%%share/Wt/resources/themes/polished/stripes/stripe-10px.gif X%%RESOURCES%%share/Wt/resources/themes/polished/stripes/stripe-11px.gif X%%RESOURCES%%share/Wt/resources/themes/polished/stripes/stripe-12px.gif X%%RESOURCES%%share/Wt/resources/themes/polished/stripes/stripe-13px.gif X%%RESOURCES%%share/Wt/resources/themes/polished/stripes/stripe-14px.gif X%%RESOURCES%%share/Wt/resources/themes/polished/stripes/stripe-15px.gif X%%RESOURCES%%share/Wt/resources/themes/polished/stripes/stripe-16px.gif X%%RESOURCES%%share/Wt/resources/themes/polished/stripes/stripe-17px.gif X%%RESOURCES%%share/Wt/resources/themes/polished/stripes/stripe-18px.gif X%%RESOURCES%%share/Wt/resources/themes/polished/stripes/stripe-19px.gif X%%RESOURCES%%share/Wt/resources/themes/polished/stripes/stripe-20px.gif X%%RESOURCES%%share/Wt/resources/themes/polished/stripes/stripe-21px.gif X%%RESOURCES%%share/Wt/resources/themes/polished/stripes/stripe-22px.gif X%%RESOURCES%%share/Wt/resources/themes/polished/stripes/stripe-23px.gif X%%RESOURCES%%share/Wt/resources/themes/polished/stripes/stripe-24px.gif X%%RESOURCES%%share/Wt/resources/themes/polished/stripes/stripe-25px.gif X%%RESOURCES%%share/Wt/resources/themes/polished/stripes/stripe-26px.gif X%%RESOURCES%%share/Wt/resources/themes/polished/stripes/stripe-27px.gif X%%RESOURCES%%share/Wt/resources/themes/polished/stripes/stripe-28px.gif X%%RESOURCES%%share/Wt/resources/themes/polished/stripes/stripe-29px.gif X%%RESOURCES%%share/Wt/resources/themes/polished/stripes/stripe-30px.gif X%%RESOURCES%%share/Wt/resources/themes/polished/stripes/stripe-31px.gif X%%RESOURCES%%share/Wt/resources/themes/polished/stripes/stripe-32px.gif X%%RESOURCES%%share/Wt/resources/themes/polished/stripes/stripe-33px.gif X%%RESOURCES%%share/Wt/resources/themes/polished/stripes/stripe-34px.gif X%%RESOURCES%%share/Wt/resources/themes/polished/stripes/stripe-35px.gif X%%RESOURCES%%share/Wt/resources/themes/polished/stripes/stripe-36px.gif X%%RESOURCES%%share/Wt/resources/themes/polished/stripes/stripe-37px.gif X%%RESOURCES%%share/Wt/resources/themes/polished/stripes/stripe-38px.gif X%%RESOURCES%%share/Wt/resources/themes/polished/stripes/stripe-39px.gif X%%RESOURCES%%share/Wt/resources/themes/polished/stripes/stripe-40px.gif X%%RESOURCES%%share/Wt/resources/themes/polished/suggest-dropdown.png X%%RESOURCES%%share/Wt/resources/themes/polished/title-gradient.png X%%RESOURCES%%share/Wt/resources/themes/polished/wt.css X%%RESOURCES%%share/Wt/resources/themes/polished/wt_ie.css X%%RESOURCES%%share/Wt/resources/themes/polished/wt_ie6.css X%%RESOURCES%%share/Wt/resources/transitions.css X%%RESOURCES%%share/Wt/resources/tv-line-last-rtl.gif X%%RESOURCES%%share/Wt/resources/tv-line-last.gif X%%RESOURCES%%share/Wt/resources/webkit-transitions.css Xshare/cmake/Modules/FindWt.cmake 8887bd2f8399bad47d6400789c197ccf exit