diff --git a/www/wt/Makefile b/www/wt/Makefile index e5625547df30..3d5eaab7708f 100644 --- a/www/wt/Makefile +++ b/www/wt/Makefile @@ -1,158 +1,170 @@ PORTNAME= wt -DISTVERSION= 4.11.4 -PORTREVISION= 1 +DISTVERSION= 4.12.1 CATEGORIES= www MAINTAINER= info@babaei.net COMMENT= Widget-centric C++ library for developing web applications WWW= https://www.webtoolkit.eu/wt LICENSE= GPLv2 LICENSE_FILE= ${WRKSRC}/LICENSE LIB_DEPENDS= libboost_thread.so:devel/boost-libs \ libGraphicsMagick.so:graphics/GraphicsMagick \ libpng.so:graphics/png TEST_DEPENDS= roboto-fonts-ttf>=0:x11-fonts/roboto-fonts-ttf -USES= cmake:testing compiler:c++14-lang cpe pkgconfig ssl +USES= cmake:testing compiler:c++20-lang cpe pkgconfig ssl CPE_VENDOR= emweb USE_GITHUB= yes GH_ACCOUNT= emweb USE_LDCONFIG= yes USE_XORG= x11 CMAKE_ARGS= -DCONFIGDIR:STRING=${ETCDIR} \ -DDESTDIR:STRING=${STAGEDIR} \ -DDOCUMENTATION_DESTINATION:STRING=${DOCSDIR} \ -DEXAMPLES_DESTINATION:STRING=${EXAMPLESDIR_REL} \ -DGM_PREFIX:STRING=${LOCALBASE} \ -DWEBGROUP:STRING=${WWWGRP} \ -DWEBUSER:STRING=${WWWOWN} \ - -DWT_WRASTERIMAGE_IMPLEMENTATION:STRING=GraphicsMagick + -DWT_WRASTERIMAGE_IMPLEMENTATION:STRING=GraphicsMagick \ + -DWT_CPP20_DATE_TZ_IMPLEMENTATION=date \ + -DCMAKE_CXX_STANDARD=20 CMAKE_OFF= BUILD_EXAMPLES ENABLE_MYSQLSERVER ENABLE_QT4 ENABLE_QT5 \ ENABLE_QT6 CMAKE_TESTING_ON= BUILD_TESTS EXTRACT_AFTER_ARGS= --exclude .gitignore \ --exclude ${PORTNAME}-${DISTVERSION}/.vscode \ --exclude ${PORTNAME}-${DISTVERSION}/fuzz \ --exclude ${PORTNAME}-${DISTVERSION}/jenkins \ --exclude ${PORTNAME}-${DISTVERSION}/migrate \ --exclude ${PORTNAME}-${DISTVERSION}/selenium \ --exclude ${PORTNAME}-${DISTVERSION}/target \ --no-same-owner --no-same-permissions PLIST_SUB= VERSION=${DISTVERSION} PORTEXAMPLES= * OPTIONS_DEFINE= DEBUG EXAMPLES HARU LIBWTTEST OPENGL PANGO \ RESOURCES SAML THEMES UNWIND OPTIONS_DEFAULT= EXAMPLES FASTCGI HARU LIBWTTEST MYSQL \ - OPENGL PANGO PGSQL RESOURCES SAML SQLITE3 \ - THEMES WTHTTP -OPTIONS_GROUP= CONNECTOR DBO WSTRING + OPENGL PANGO PGSQL RESOURCES SAML \ + STDANY STDFS \ + SQLITE3 THEMES WTHTTP +OPTIONS_GROUP= CONNECTOR DBO WTCPPIMPL OPTIONS_GROUP_CONNECTOR= FASTCGI WTHTTP OPTIONS_GROUP_DBO= FIREBIRD MYSQL PGSQL SQLITE3 -NO_OPTIONS_SORT= yes +OPTIONS_GROUP_WTCPPIMPL= STDANY STDFS +NO_OPTIONS_SORT= yes OPTIONS_SUB= yes CONNECTOR_DESC= Connector DBO_DESC= Wt::DBO EXAMPLES_DESC= Install examples (implies SQLITE3 and WTHTTP) FASTCGI_DESC= Build FastCGI connector FIREBIRD_DESC= Build Wt with FirebirdSQL support HARU_DESC= Enable Haru Free PDF Library LIBWTTEST_DESC= Build Wt::Test for automated (integration/unit) tests MYSQL_DESC= Build Wt with MariaDB or MySQL support PGSQL_DESC= Build Wt with PostgreSQL support RESOURCES_DESC= Install resources directory SAML_DESC= Build built-in SAML service provider for Wt::Auth SQLITE3_DESC= Build Wt with SQLite 3 support +STDANY_DESC= Use std::any instead of bundled thelink2012::any +STDFS_DESC= Use std::filesystem instead of boost::filesystem THEMES_DESC= Install the source files for Wt's themes UNWIND_DESC= Build Wt with stacktrace support using libunwind WTHTTP_DESC= Build Wt stand-alone httpd connector +WTCPPIMPL_DESC= Wt C++ Features Implementations EXAMPLES_IMPLIES= SQLITE3 WTHTTP EXAMPLES_CMAKE_BOOL= BUILD_EXAMPLES INSTALL_EXAMPLES FASTCGI_LIB_DEPENDS= libfcgi++.so:www/fcgi \ libfcgi.so:www/fcgi FASTCGI_CMAKE_BOOL= CONNECTOR_FCGI FASTCGI_CMAKE_ON= -DFCGI_PREFIX:STRING=${LOCALBASE} FIREBIRD_USES= firebird FIREBIRD_CMAKE_BOOL= ENABLE_FIREBIRD HARU_LIB_DEPENDS= libhpdf.so:print/libharu HARU_CMAKE_BOOL= ENABLE_HARU HARU_CMAKE_ON= -DHARU_PREFIX:STRING=${LOCALBASE} LIBWTTEST_CMAKE_BOOL= ENABLE_LIBWTTEST MYSQL_USES= mysql MYSQL_CMAKE_BOOL= ENABLE_MYSQL MYSQL_CMAKE_ON= -DENABLE_LIBWTDBO:BOOL=ON \ -DMYSQL_PREFIX:STRING=${LOCALBASE} OPENGL_USES= gl xorg OPENGL_USE= GL=opengl,glew XORG=x11 OPENGL_CMAKE_BOOL= ENABLE_OPENGL PANGO_LIB_DEPENDS= libfontconfig.so:x11-fonts/fontconfig PANGO_USES= gnome PANGO_USE= GNOME=pango PANGO_CMAKE_BOOL= ENABLE_PANGO PGSQL_USES= pgsql PGSQL_CMAKE_BOOL= ENABLE_POSTGRES PGSQL_CMAKE_ON= -DENABLE_LIBWTDBO:BOOL=ON \ -DPOSTGRES_PREFIX:STRING=${LOCALBASE} RESOURCES_CMAKE_BOOL= INSTALL_RESOURCES SAML_LIB_DEPENDS= liblog4shib.so:devel/log4shib \ libsaml.so:security/opensaml \ libxerces-c.so:textproc/xerces-c3 \ libxml-security-c.so:security/apache-xml-security-c \ libxmltooling.so:devel/xmltooling SAML_CMAKE_BOOL= ENABLE_SAML SQLITE3_USES= sqlite:3 SQLITE3_CMAKE_BOOL= ENABLE_SQLITE SQLITE3_CMAKE_ON= -DENABLE_LIBWTDBO:BOOL=ON +STDANY_CMAKE_ON= -DWT_CPP17_ANY_IMPLEMENTATION=std +STDANY_CMAKE_OFF= -DWT_CPP17_ANY_IMPLEMENTATION=thelink2012 + +STDFS_CMAKE_ON= -DWT_CPP17_FILESYSTEM_IMPLEMENTATION=std +STDFS_CMAKE_OFF= -DWT_CPP17_FILESYSTEM_IMPLEMENTATION=boost + THEMES_CMAKE_BOOL= INSTALL_THEMES UNWIND_LIB_DEPENDS= libunwind.so:devel/libunwind UNWIND_CMAKE_BOOL= ENABLE_UNWIND WTHTTP_CMAKE_BOOL= CONNECTOR_HTTP .include .if defined(WITH_DEBUG) PLIST_SUB+= DEBUG_LIBS_POSTFIX="d" CMAKE_ON+= DEBUG .else PLIST_SUB+= DEBUG_LIBS_POSTFIX="" .endif .if ${PORT_OPTIONS:MMYSQL} || ${PORT_OPTIONS:MPGSQL} || ${PORT_OPTIONS:MSQLITE3} PLIST_SUB+= DBO="" .else PLIST_SUB+= DBO="@comment " .endif post-install: @${MKDIR} ${STAGEDIR}${ETCDIR} ${INSTALL_DATA} ${BUILD_WRKSRC}/wt_config.xml \ ${STAGEDIR}${ETCDIR}/wt_config.xml.sample do-test: @cd ${WRKSRC}/test && \ ${BUILD_WRKSRC}/test/test.wt && \ ${BUILD_WRKSRC}/test/test.sqlite3 && \ ${BUILD_WRKSRC}/test/test.http .include diff --git a/www/wt/distinfo b/www/wt/distinfo index f63c215d2b0f..bf4cc4f0f8d7 100644 --- a/www/wt/distinfo +++ b/www/wt/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1753078030 -SHA256 (emweb-wt-4.11.4_GH0.tar.gz) = b42b9818e4c8ab8af835b0c88bda5c4f71ccfb38fd8baf90648064b0544eb564 -SIZE (emweb-wt-4.11.4_GH0.tar.gz) = 10616646 +TIMESTAMP = 1764641650 +SHA256 (emweb-wt-4.12.1_GH0.tar.gz) = 672c1704f87f76e7d16ca6e1127a345bf223d0bfa1187bf5a86f6965cf349f0c +SIZE (emweb-wt-4.12.1_GH0.tar.gz) = 10925011 diff --git a/www/wt/pkg-plist b/www/wt/pkg-plist index cdb08afb829c..62a748c8df4c 100644 --- a/www/wt/pkg-plist +++ b/www/wt/pkg-plist @@ -1,832 +1,839 @@ @sample %%ETCDIR%%/wt_config.xml.sample @dir /var/run/wt include/Wt/AsioWrapper/asio.hpp include/Wt/AsioWrapper/io_service.hpp include/Wt/AsioWrapper/namespace.hpp include/Wt/AsioWrapper/ssl.hpp include/Wt/AsioWrapper/steady_timer.hpp include/Wt/AsioWrapper/strand.hpp include/Wt/AsioWrapper/system_error.hpp include/Wt/Auth/AbstractPasswordService.h include/Wt/Auth/AbstractUserDatabase.h include/Wt/Auth/AuthModel.h include/Wt/Auth/AuthService.h include/Wt/Auth/AuthThrottle.h include/Wt/Auth/AuthUtils.h include/Wt/Auth/AuthWidget.h %%DBO%%include/Wt/Auth/Dbo/AuthInfo.h %%DBO%%include/Wt/Auth/Dbo/UserDatabase.h include/Wt/Auth/FacebookService.h include/Wt/Auth/FormBaseModel.h include/Wt/Auth/GoogleService.h include/Wt/Auth/HashFunction.h include/Wt/Auth/Identity.h include/Wt/Auth/IssuedToken.h include/Wt/Auth/Login.h include/Wt/Auth/LostPasswordWidget.h include/Wt/Auth/Mfa/AbstractMfaProcess.h include/Wt/Auth/Mfa/Totp.h include/Wt/Auth/Mfa/TotpProcess.h include/Wt/Auth/Mfa/TotpQrCode.h include/Wt/Auth/OAuthAuthorizationEndpointProcess.h include/Wt/Auth/OAuthClient.h include/Wt/Auth/OAuthService.h include/Wt/Auth/OAuthTokenEndpoint.h include/Wt/Auth/OAuthWidget.h include/Wt/Auth/OidcService.h include/Wt/Auth/OidcUserInfoEndpoint.h include/Wt/Auth/PasswordHash.h include/Wt/Auth/PasswordPromptDialog.h include/Wt/Auth/PasswordService.h include/Wt/Auth/PasswordStrengthValidator.h include/Wt/Auth/PasswordVerifier.h include/Wt/Auth/RegistrationModel.h include/Wt/Auth/RegistrationWidget.h include/Wt/Auth/ResendEmailVerificationWidget.h %%SAML%%include/Wt/Auth/Saml/Assertion.h %%SAML%%include/Wt/Auth/Saml/Process.h %%SAML%%include/Wt/Auth/Saml/ProcessImpl.h %%SAML%%include/Wt/Auth/Saml/Service.h %%SAML%%include/Wt/Auth/Saml/ServiceImpl.h %%SAML%%include/Wt/Auth/Saml/Widget.h include/Wt/Auth/Token.h include/Wt/Auth/UpdatePasswordWidget.h include/Wt/Auth/User.h include/Wt/Auth/WAuthGlobal.h include/Wt/Chart/WAbstractChart.h include/Wt/Chart/WAbstractChartImplementation.h include/Wt/Chart/WAbstractChartModel.h include/Wt/Chart/WAbstractColorMap.h include/Wt/Chart/WAbstractDataSeries3D.h include/Wt/Chart/WAbstractGridData.h include/Wt/Chart/WAxis.h include/Wt/Chart/WAxisSliderWidget.h include/Wt/Chart/WCartesian3DChart.h include/Wt/Chart/WCartesianChart.h include/Wt/Chart/WChart2DImplementation.h include/Wt/Chart/WChart3DImplementation.h include/Wt/Chart/WChartGlobal.h include/Wt/Chart/WChartPalette.h include/Wt/Chart/WDataSeries.h include/Wt/Chart/WEquidistantGridData.h include/Wt/Chart/WGridData.h include/Wt/Chart/WLegend.h include/Wt/Chart/WLegend3D.h include/Wt/Chart/WPieChart.h include/Wt/Chart/WScatterData.h include/Wt/Chart/WSelection.h include/Wt/Chart/WStandardChartProxyModel.h include/Wt/Chart/WStandardColorMap.h include/Wt/Chart/WStandardPalette.h include/Wt/Core/observable.hpp include/Wt/Core/observable_impl.hpp include/Wt/Core/observing_ptr.hpp include/Wt/Core/observing_ptr_impl.hpp include/Wt/Date/date.h include/Wt/Date/include/date/chrono_io.h include/Wt/Date/include/date/date.h include/Wt/Date/include/date/ios.h include/Wt/Date/include/date/islamic.h include/Wt/Date/include/date/iso_week.h include/Wt/Date/include/date/julian.h include/Wt/Date/include/date/ptz.h include/Wt/Date/include/date/solar_hijri.h include/Wt/Date/include/date/tz.h include/Wt/Date/include/date/tz_private.h include/Wt/Date/tz.h %%DBO%%include/Wt/Dbo/Call.h %%DBO%%include/Wt/Dbo/Call_impl.h %%DBO%%include/Wt/Dbo/DbAction.h %%DBO%%include/Wt/Dbo/DbAction_impl.h %%DBO%%include/Wt/Dbo/Dbo.h %%DBO%%include/Wt/Dbo/EscapeOStream.h %%DBO%%include/Wt/Dbo/Exception.h %%DBO%%include/Wt/Dbo/Field.h %%DBO%%include/Wt/Dbo/Field_impl.h %%DBO%%include/Wt/Dbo/FixedSqlConnectionPool.h %%DBO%%include/Wt/Dbo/Impl.h %%DBO%%include/Wt/Dbo/Json.h %%DBO%%include/Wt/Dbo/Logger.h %%DBO%%include/Wt/Dbo/Query.h %%DBO%%include/Wt/Dbo/QueryColumn.h %%DBO%%include/Wt/Dbo/QueryModel.h %%DBO%%include/Wt/Dbo/QueryModel_impl.h %%DBO%%include/Wt/Dbo/Query_impl.h %%DBO%%include/Wt/Dbo/Session.h %%DBO%%include/Wt/Dbo/Session_impl.h %%DBO%%include/Wt/Dbo/SqlConnection.h %%DBO%%include/Wt/Dbo/SqlConnectionPool.h %%DBO%%include/Wt/Dbo/SqlStatement.h %%DBO%%include/Wt/Dbo/SqlTraits.h %%DBO%%include/Wt/Dbo/SqlTraits_impl.h %%DBO%%include/Wt/Dbo/StdSqlTraits.h %%DBO%%include/Wt/Dbo/StringStream.h %%DBO%%include/Wt/Dbo/Transaction.h %%DBO%%include/Wt/Dbo/Types.h %%DBO%%include/Wt/Dbo/WDboDllDefs.h %%DBO%%include/Wt/Dbo/WtJsonSqlTraits.h %%DBO%%include/Wt/Dbo/WtSqlTraits.h %%FIREBIRD%%include/Wt/Dbo/backend/Firebird.h %%MYSQL%%include/Wt/Dbo/backend/MySQL.h %%PGSQL%%include/Wt/Dbo/backend/Postgres.h %%SQLITE3%%include/Wt/Dbo/backend/Sqlite3.h %%FIREBIRD%%include/Wt/Dbo/backend/WDboFirebirdDllDefs.h %%MYSQL%%include/Wt/Dbo/backend/WDboMySQLDllDefs.h %%PGSQL%%include/Wt/Dbo/backend/WDboPostgresDllDefs.h %%SQLITE3%%include/Wt/Dbo/backend/WDboSqlite3DllDefs.h %%DBO%%include/Wt/Dbo/collection.h %%DBO%%include/Wt/Dbo/collection_impl.h %%DBO%%include/Wt/Dbo/ptr.h %%DBO%%include/Wt/Dbo/ptr_impl.h %%DBO%%include/Wt/Dbo/ptr_tuple.h %%DBO%%include/Wt/Dbo/weak_ptr.h %%DBO%%include/Wt/Dbo/weak_ptr_impl.h include/Wt/DomElement.h include/Wt/EscapeOStream.h %%DBO%%include/Wt/Form/Dbo/Actions.h %%DBO%%include/Wt/Form/Dbo/FieldOptions.h %%DBO%%include/Wt/Form/Dbo/FormModel.h %%DBO%%include/Wt/Form/Dbo/FormModelBase.h %%DBO%%include/Wt/Form/Dbo/FormView.h include/Wt/Form/WAbstractFormDelegate.h include/Wt/Form/WFormDelegate.h include/Wt/Http/Client.h include/Wt/Http/Cookie.h include/Wt/Http/Message.h include/Wt/Http/Method.h include/Wt/Http/Request.h include/Wt/Http/Response.h include/Wt/Http/ResponseContinuation.h include/Wt/Http/WtClient.h include/Wt/Json/Array.h include/Wt/Json/Object.h include/Wt/Json/Parser.h include/Wt/Json/Serializer.h include/Wt/Json/Value.h include/Wt/Mail/Client.h include/Wt/Mail/Mailbox.h include/Wt/Mail/Message.h include/Wt/Payment/Address.h include/Wt/Payment/Customer.h include/Wt/Payment/Money.h include/Wt/Payment/Order.h include/Wt/Payment/OrderItem.h include/Wt/Payment/PayPal.h include/Wt/Payment/Result.h include/Wt/Render/WPdfRenderer.h include/Wt/Render/WTextRenderer.h include/Wt/Signals/signals.hpp %%LIBWTTEST%%include/Wt/Test/WTestEnvironment.h include/Wt/Utils.h include/Wt/WAbstractArea.h +include/Wt/WAbstractDataInfo.h include/Wt/WAbstractGLImplementation.h include/Wt/WAbstractItemDelegate.h include/Wt/WAbstractItemModel.h include/Wt/WAbstractItemView.h include/Wt/WAbstractListModel.h include/Wt/WAbstractMedia.h include/Wt/WAbstractProxyModel.h include/Wt/WAbstractSpinBox.h include/Wt/WAbstractTableModel.h include/Wt/WAbstractToggleButton.h include/Wt/WAggregateProxyModel.h include/Wt/WAnchor.h include/Wt/WAnimation.h include/Wt/WAny.h include/Wt/WApplication.h include/Wt/WAudio.h include/Wt/WBatchEditProxyModel.h include/Wt/WBootstrap2Theme.h include/Wt/WBootstrap3Theme.h include/Wt/WBootstrap5Theme.h include/Wt/WBootstrapTheme.h include/Wt/WBorder.h include/Wt/WBorderLayout.h include/Wt/WBoxLayout.h include/Wt/WBreak.h include/Wt/WBrush.h include/Wt/WButtonGroup.h include/Wt/WCalendar.h include/Wt/WCanvasPaintDevice.h include/Wt/WCheckBox.h include/Wt/WCircleArea.h include/Wt/WClientGLWidget.h include/Wt/WColor.h include/Wt/WColorPicker.h include/Wt/WCombinedLocalizedStrings.h include/Wt/WComboBox.h include/Wt/WCompositeWidget.h include/Wt/WConfig.h include/Wt/WContainerWidget.h include/Wt/WCssDecorationStyle.h include/Wt/WCssStyleSheet.h include/Wt/WCssTheme.h +include/Wt/WDataInfo.h include/Wt/WDate.h include/Wt/WDateEdit.h include/Wt/WDatePicker.h include/Wt/WDateTime.h include/Wt/WDateValidator.h include/Wt/WDefaultLoadingIndicator.h include/Wt/WDialog.h include/Wt/WDllDefs.h +include/Wt/WDocRootDataInfo.h include/Wt/WDoubleSpinBox.h include/Wt/WDoubleValidator.h include/Wt/WEmailEdit.h include/Wt/WEmailValidator.h include/Wt/WEnvironment.h include/Wt/WEvent.h include/Wt/WException.h include/Wt/WFileDropWidget.h include/Wt/WFileResource.h include/Wt/WFileUpload.h include/Wt/WFitLayout.h include/Wt/WFlags.h include/Wt/WFlashObject.h include/Wt/WFont.h include/Wt/WFontMetrics.h include/Wt/WFormModel.h include/Wt/WFormWidget.h include/Wt/WGLWidget.h include/Wt/WGenericMatrix.h include/Wt/WGlobal.h include/Wt/WGoogleMap.h include/Wt/WGradient.h include/Wt/WGridLayout.h include/Wt/WGroupBox.h include/Wt/WHBoxLayout.h include/Wt/WIOService.h include/Wt/WIcon.h include/Wt/WIconPair.h include/Wt/WIdentityProxyModel.h include/Wt/WImage.h include/Wt/WInPlaceEdit.h include/Wt/WIntValidator.h include/Wt/WInteractWidget.h include/Wt/WItemDelegate.h include/Wt/WItemSelectionModel.h include/Wt/WJavaScript.h include/Wt/WJavaScriptExposableObject.h include/Wt/WJavaScriptHandle.h include/Wt/WJavaScriptObjectStorage.h include/Wt/WJavaScriptPreamble.h include/Wt/WJavaScriptSlot.h include/Wt/WLabel.h include/Wt/WLayout.h include/Wt/WLayoutImpl.h include/Wt/WLayoutItem.h include/Wt/WLayoutItemImpl.h include/Wt/WLeafletMap.h include/Wt/WLength.h include/Wt/WLengthValidator.h include/Wt/WLineEdit.h include/Wt/WLineF.h include/Wt/WLink.h include/Wt/WLinkedCssStyleSheet.h include/Wt/WLoadingIndicator.h include/Wt/WLocalDateTime.h include/Wt/WLocale.h include/Wt/WLocalizedStrings.h include/Wt/WLogSink.h include/Wt/WLogger.h include/Wt/WMatrix4x4.h include/Wt/WMeasurePaintDevice.h include/Wt/WMediaPlayer.h include/Wt/WMemoryResource.h include/Wt/WMenu.h include/Wt/WMenuItem.h include/Wt/WMessageBox.h include/Wt/WMessageResourceBundle.h include/Wt/WMessageResources.h include/Wt/WModelIndex.h include/Wt/WNavigationBar.h include/Wt/WObject.h include/Wt/WOverlayLoadingIndicator.h include/Wt/WPaintDevice.h include/Wt/WPaintedWidget.h include/Wt/WPainter.h include/Wt/WPainterPath.h include/Wt/WPanel.h +include/Wt/WPasswordEdit.h +include/Wt/WPasswordValidator.h include/Wt/WPdfImage.h include/Wt/WPen.h include/Wt/WPoint.h include/Wt/WPointF.h include/Wt/WPolygonArea.h include/Wt/WPopupMenu.h include/Wt/WPopupMenuItem.h include/Wt/WPopupWidget.h include/Wt/WProgressBar.h include/Wt/WPushButton.h include/Wt/WQrCode.h include/Wt/WRadioButton.h include/Wt/WRandom.h include/Wt/WRasterImage.h include/Wt/WReadOnlyProxyModel.h include/Wt/WRectArea.h include/Wt/WRectF.h include/Wt/WRegExpValidator.h include/Wt/WResource.h include/Wt/WSelectionBox.h include/Wt/WServer.h include/Wt/WServerGLWidget.h include/Wt/WShadow.h include/Wt/WSignal.h include/Wt/WSlider.h include/Wt/WSocketNotifier.h include/Wt/WSortFilterProxyModel.h include/Wt/WSound.h include/Wt/WSpinBox.h include/Wt/WSplitButton.h include/Wt/WSslCertificate.h include/Wt/WSslInfo.h +include/Wt/WStackedValidator.h include/Wt/WStackedWidget.h include/Wt/WStandardItem.h include/Wt/WStandardItemModel.h include/Wt/WStatelessSlot.h include/Wt/WStreamResource.h include/Wt/WString.h include/Wt/WStringListModel.h include/Wt/WStringStream.h include/Wt/WStringUtil.h include/Wt/WSubMenuItem.h include/Wt/WSuggestionPopup.h include/Wt/WSvgImage.h include/Wt/WTabWidget.h include/Wt/WTable.h include/Wt/WTableCell.h include/Wt/WTableColumn.h include/Wt/WTableRow.h include/Wt/WTableView.h include/Wt/WTemplate.h include/Wt/WTemplateFormView.h include/Wt/WText.h include/Wt/WTextArea.h include/Wt/WTextEdit.h include/Wt/WTheme.h include/Wt/WTime.h include/Wt/WTimeEdit.h include/Wt/WTimePicker.h include/Wt/WTimeValidator.h include/Wt/WTimer.h include/Wt/WTimerWidget.h include/Wt/WToolBar.h include/Wt/WTransform.h include/Wt/WTree.h include/Wt/WTreeNode.h include/Wt/WTreeTable.h include/Wt/WTreeTableNode.h include/Wt/WTreeView.h include/Wt/WVBoxLayout.h include/Wt/WValidator.h include/Wt/WVector3.h include/Wt/WVector4.h include/Wt/WVectorImage.h include/Wt/WVideo.h include/Wt/WViewWidget.h include/Wt/WVirtualImage.h include/Wt/WVmlImage.h include/Wt/WWebSocketConnection.h include/Wt/WWebSocketResource.h include/Wt/WWebWidget.h include/Wt/WWidget.h include/Wt/WWidgetItem.h include/Wt/WWidgetItemImpl.h include/Wt/cpp17/any.hpp include/Wt/cpp17/any/LICENSE_1_0.txt include/Wt/cpp17/any/README.md include/Wt/cpp17/any/any.hpp +include/Wt/cpp17/filesystem.hpp include/Wt/cpp20/date.hpp include/Wt/cpp20/tz.hpp include/thirdparty/qrcodegen/QrCode.hpp lib/cmake/wt/wt-config-version.cmake lib/cmake/wt/wt-config.cmake %%DBO%%lib/cmake/wt/wt-target-dbo-%%CMAKE_BUILD_TYPE%%.cmake %%DBO%%lib/cmake/wt/wt-target-dbo.cmake %%FIREBIRD%%lib/cmake/wt/wt-target-dbofirebird-%%CMAKE_BUILD_TYPE%%.cmake %%FIREBIRD%%lib/cmake/wt/wt-target-dbofirebird.cmake %%MYSQL%%lib/cmake/wt/wt-target-dbomysql-%%CMAKE_BUILD_TYPE%%.cmake %%MYSQL%%lib/cmake/wt/wt-target-dbomysql.cmake %%PGSQL%%lib/cmake/wt/wt-target-dbopostgres-%%CMAKE_BUILD_TYPE%%.cmake %%PGSQL%%lib/cmake/wt/wt-target-dbopostgres.cmake %%SQLITE3%%lib/cmake/wt/wt-target-dbosqlite3-%%CMAKE_BUILD_TYPE%%.cmake %%SQLITE3%%lib/cmake/wt/wt-target-dbosqlite3.cmake %%FASTCGI%%lib/cmake/wt/wt-target-fcgi-%%CMAKE_BUILD_TYPE%%.cmake %%FASTCGI%%lib/cmake/wt/wt-target-fcgi.cmake %%WTHTTP%%lib/cmake/wt/wt-target-http-%%CMAKE_BUILD_TYPE%%.cmake %%WTHTTP%%lib/cmake/wt/wt-target-http.cmake %%LIBWTTEST%%lib/cmake/wt/wt-target-test-%%CMAKE_BUILD_TYPE%%.cmake %%LIBWTTEST%%lib/cmake/wt/wt-target-test.cmake lib/cmake/wt/wt-target-wt-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/wt/wt-target-wt.cmake lib/libwt%%DEBUG_LIBS_POSTFIX%%.so lib/libwt%%DEBUG_LIBS_POSTFIX%%.so.%%VERSION%% %%DBO%%lib/libwtdbo%%DEBUG_LIBS_POSTFIX%%.so %%DBO%%lib/libwtdbo%%DEBUG_LIBS_POSTFIX%%.so.%%VERSION%% %%FIREBIRD%%lib/libwtdbofirebird%%DEBUG_LIBS_POSTFIX%%.so %%FIREBIRD%%lib/libwtdbofirebird%%DEBUG_LIBS_POSTFIX%%.so.%%VERSION%% %%MYSQL%%lib/libwtdbomysql%%DEBUG_LIBS_POSTFIX%%.so %%MYSQL%%lib/libwtdbomysql%%DEBUG_LIBS_POSTFIX%%.so.%%VERSION%% %%PGSQL%%lib/libwtdbopostgres%%DEBUG_LIBS_POSTFIX%%.so %%PGSQL%%lib/libwtdbopostgres%%DEBUG_LIBS_POSTFIX%%.so.%%VERSION%% %%SQLITE3%%lib/libwtdbosqlite3%%DEBUG_LIBS_POSTFIX%%.so %%SQLITE3%%lib/libwtdbosqlite3%%DEBUG_LIBS_POSTFIX%%.so.%%VERSION%% %%FASTCGI%%lib/libwtfcgi%%DEBUG_LIBS_POSTFIX%%.so %%FASTCGI%%lib/libwtfcgi%%DEBUG_LIBS_POSTFIX%%.so.%%VERSION%% %%WTHTTP%%lib/libwthttp%%DEBUG_LIBS_POSTFIX%%.so %%WTHTTP%%lib/libwthttp%%DEBUG_LIBS_POSTFIX%%.so.%%VERSION%% %%LIBWTTEST%%lib/libwttest%%DEBUG_LIBS_POSTFIX%%.so %%LIBWTTEST%%lib/libwttest%%DEBUG_LIBS_POSTFIX%%.so.%%VERSION%% %%RESOURCES%%share/Wt/resources/ajax-loading.gif %%RESOURCES%%share/Wt/resources/collapse-rtl.gif %%RESOURCES%%share/Wt/resources/collapse.gif %%RESOURCES%%share/Wt/resources/date.gif %%RESOURCES%%share/Wt/resources/expand-rtl.gif %%RESOURCES%%share/Wt/resources/expand.gif %%RESOURCES%%share/Wt/resources/font-awesome/LICENSE.txt %%RESOURCES%%share/Wt/resources/font-awesome/css/font-awesome.css %%RESOURCES%%share/Wt/resources/font-awesome/css/font-awesome.min.css %%RESOURCES%%share/Wt/resources/font-awesome/fonts/FontAwesome.otf %%RESOURCES%%share/Wt/resources/font-awesome/fonts/fontawesome-webfont.eot %%RESOURCES%%share/Wt/resources/font-awesome/fonts/fontawesome-webfont.svg %%RESOURCES%%share/Wt/resources/font-awesome/fonts/fontawesome-webfont.ttf %%RESOURCES%%share/Wt/resources/font-awesome/fonts/fontawesome-webfont.woff %%RESOURCES%%share/Wt/resources/font-awesome/fonts/fontawesome-webfont.woff2 %%RESOURCES%%share/Wt/resources/form.css %%RESOURCES%%share/Wt/resources/html4_default.css %%RESOURCES%%share/Wt/resources/icon_clock.gif %%RESOURCES%%share/Wt/resources/items-not-ok.gif %%RESOURCES%%share/Wt/resources/items-ok.gif %%RESOURCES%%share/Wt/resources/items.gif %%RESOURCES%%share/Wt/resources/jPlayer/jquery.jplayer.js %%RESOURCES%%share/Wt/resources/jPlayer/jquery.jplayer.min.js %%RESOURCES%%share/Wt/resources/jPlayer/jquery.jplayer.swf %%RESOURCES%%share/Wt/resources/jPlayer/jquery.min.js %%RESOURCES%%share/Wt/resources/jPlayer/skin/jplayer.blue.monday.css %%RESOURCES%%share/Wt/resources/jPlayer/skin/jplayer.blue.monday.jpg %%RESOURCES%%share/Wt/resources/jPlayer/skin/jplayer.blue.monday.seeking.gif %%RESOURCES%%share/Wt/resources/jPlayer/skin/jplayer.blue.monday.video.play.png %%RESOURCES%%share/Wt/resources/line-last-rtl.gif %%RESOURCES%%share/Wt/resources/line-last.gif %%RESOURCES%%share/Wt/resources/line-middle-rtl.gif %%RESOURCES%%share/Wt/resources/line-middle.gif %%RESOURCES%%share/Wt/resources/line-trunk.gif %%RESOURCES%%share/Wt/resources/loading.png %%RESOURCES%%share/Wt/resources/minus.gif %%RESOURCES%%share/Wt/resources/moz-transitions.css %%RESOURCES%%share/Wt/resources/plus.gif %%RESOURCES%%share/Wt/resources/resizable.png %%RESOURCES%%share/Wt/resources/right-arrow.gif %%RESOURCES%%share/Wt/resources/tab_b.gif %%RESOURCES%%share/Wt/resources/tab_l.gif %%RESOURCES%%share/Wt/resources/tab_r.gif %%RESOURCES%%share/Wt/resources/themes/bootstrap/2/bootstrap-responsive.css %%RESOURCES%%share/Wt/resources/themes/bootstrap/2/bootstrap-responsive.min.css %%RESOURCES%%share/Wt/resources/themes/bootstrap/2/bootstrap.css %%RESOURCES%%share/Wt/resources/themes/bootstrap/2/bootstrap.min.css %%RESOURCES%%share/Wt/resources/themes/bootstrap/2/date-edit-button.png %%RESOURCES%%share/Wt/resources/themes/bootstrap/2/date-edit-button.svg %%RESOURCES%%share/Wt/resources/themes/bootstrap/2/nav-minus-rtl.gif %%RESOURCES%%share/Wt/resources/themes/bootstrap/2/nav-minus.gif %%RESOURCES%%share/Wt/resources/themes/bootstrap/2/nav-plus-rtl.gif %%RESOURCES%%share/Wt/resources/themes/bootstrap/2/nav-plus.gif %%RESOURCES%%share/Wt/resources/themes/bootstrap/2/spin-buttons.png %%RESOURCES%%share/Wt/resources/themes/bootstrap/2/spin-buttons.svg %%RESOURCES%%share/Wt/resources/themes/bootstrap/2/stripes/generate.sh %%RESOURCES%%share/Wt/resources/themes/bootstrap/2/stripes/stripe-10px.gif %%RESOURCES%%share/Wt/resources/themes/bootstrap/2/stripes/stripe-11px.gif %%RESOURCES%%share/Wt/resources/themes/bootstrap/2/stripes/stripe-12px.gif %%RESOURCES%%share/Wt/resources/themes/bootstrap/2/stripes/stripe-13px.gif %%RESOURCES%%share/Wt/resources/themes/bootstrap/2/stripes/stripe-14px.gif %%RESOURCES%%share/Wt/resources/themes/bootstrap/2/stripes/stripe-15px.gif %%RESOURCES%%share/Wt/resources/themes/bootstrap/2/stripes/stripe-16px.gif %%RESOURCES%%share/Wt/resources/themes/bootstrap/2/stripes/stripe-17px.gif %%RESOURCES%%share/Wt/resources/themes/bootstrap/2/stripes/stripe-18px.gif %%RESOURCES%%share/Wt/resources/themes/bootstrap/2/stripes/stripe-19px.gif %%RESOURCES%%share/Wt/resources/themes/bootstrap/2/stripes/stripe-20px.gif %%RESOURCES%%share/Wt/resources/themes/bootstrap/2/stripes/stripe-21px.gif %%RESOURCES%%share/Wt/resources/themes/bootstrap/2/stripes/stripe-22px.gif %%RESOURCES%%share/Wt/resources/themes/bootstrap/2/stripes/stripe-23px.gif %%RESOURCES%%share/Wt/resources/themes/bootstrap/2/stripes/stripe-24px.gif %%RESOURCES%%share/Wt/resources/themes/bootstrap/2/stripes/stripe-25px.gif %%RESOURCES%%share/Wt/resources/themes/bootstrap/2/stripes/stripe-26px.gif %%RESOURCES%%share/Wt/resources/themes/bootstrap/2/stripes/stripe-27px.gif %%RESOURCES%%share/Wt/resources/themes/bootstrap/2/stripes/stripe-28px.gif %%RESOURCES%%share/Wt/resources/themes/bootstrap/2/stripes/stripe-29px.gif %%RESOURCES%%share/Wt/resources/themes/bootstrap/2/stripes/stripe-30px.gif %%RESOURCES%%share/Wt/resources/themes/bootstrap/2/stripes/stripe-31px.gif %%RESOURCES%%share/Wt/resources/themes/bootstrap/2/stripes/stripe-32px.gif %%RESOURCES%%share/Wt/resources/themes/bootstrap/2/stripes/stripe-33px.gif %%RESOURCES%%share/Wt/resources/themes/bootstrap/2/stripes/stripe-34px.gif %%RESOURCES%%share/Wt/resources/themes/bootstrap/2/stripes/stripe-35px.gif %%RESOURCES%%share/Wt/resources/themes/bootstrap/2/stripes/stripe-36px.gif %%RESOURCES%%share/Wt/resources/themes/bootstrap/2/stripes/stripe-37px.gif %%RESOURCES%%share/Wt/resources/themes/bootstrap/2/stripes/stripe-38px.gif %%RESOURCES%%share/Wt/resources/themes/bootstrap/2/stripes/stripe-39px.gif %%RESOURCES%%share/Wt/resources/themes/bootstrap/2/stripes/stripe-40px.gif %%RESOURCES%%share/Wt/resources/themes/bootstrap/2/suggest-dropdown.png %%RESOURCES%%share/Wt/resources/themes/bootstrap/2/suggest-dropdown.svg %%RESOURCES%%share/Wt/resources/themes/bootstrap/2/time-edit-button.png %%RESOURCES%%share/Wt/resources/themes/bootstrap/2/wt.css %%RESOURCES%%share/Wt/resources/themes/bootstrap/2/wt.less %%RESOURCES%%share/Wt/resources/themes/bootstrap/3/bootstrap-theme.css %%RESOURCES%%share/Wt/resources/themes/bootstrap/3/bootstrap-theme.css.map %%RESOURCES%%share/Wt/resources/themes/bootstrap/3/bootstrap-theme.min.css %%RESOURCES%%share/Wt/resources/themes/bootstrap/3/bootstrap-theme.min.css.map %%RESOURCES%%share/Wt/resources/themes/bootstrap/3/bootstrap.css %%RESOURCES%%share/Wt/resources/themes/bootstrap/3/bootstrap.css.map %%RESOURCES%%share/Wt/resources/themes/bootstrap/3/bootstrap.min.css %%RESOURCES%%share/Wt/resources/themes/bootstrap/3/bootstrap.min.css.map %%RESOURCES%%share/Wt/resources/themes/bootstrap/3/date-edit-button.png %%RESOURCES%%share/Wt/resources/themes/bootstrap/3/date-edit-button.svg %%RESOURCES%%share/Wt/resources/themes/bootstrap/3/nav-minus-rtl.gif %%RESOURCES%%share/Wt/resources/themes/bootstrap/3/nav-minus.gif %%RESOURCES%%share/Wt/resources/themes/bootstrap/3/nav-plus-rtl.gif %%RESOURCES%%share/Wt/resources/themes/bootstrap/3/nav-plus.gif %%RESOURCES%%share/Wt/resources/themes/bootstrap/3/spin-buttons.png %%RESOURCES%%share/Wt/resources/themes/bootstrap/3/spin-buttons.svg %%RESOURCES%%share/Wt/resources/themes/bootstrap/3/stripes/generate.sh %%RESOURCES%%share/Wt/resources/themes/bootstrap/3/stripes/stripe-10px.gif %%RESOURCES%%share/Wt/resources/themes/bootstrap/3/stripes/stripe-11px.gif %%RESOURCES%%share/Wt/resources/themes/bootstrap/3/stripes/stripe-12px.gif %%RESOURCES%%share/Wt/resources/themes/bootstrap/3/stripes/stripe-13px.gif %%RESOURCES%%share/Wt/resources/themes/bootstrap/3/stripes/stripe-14px.gif %%RESOURCES%%share/Wt/resources/themes/bootstrap/3/stripes/stripe-15px.gif %%RESOURCES%%share/Wt/resources/themes/bootstrap/3/stripes/stripe-16px.gif %%RESOURCES%%share/Wt/resources/themes/bootstrap/3/stripes/stripe-17px.gif %%RESOURCES%%share/Wt/resources/themes/bootstrap/3/stripes/stripe-18px.gif %%RESOURCES%%share/Wt/resources/themes/bootstrap/3/stripes/stripe-19px.gif %%RESOURCES%%share/Wt/resources/themes/bootstrap/3/stripes/stripe-20px.gif %%RESOURCES%%share/Wt/resources/themes/bootstrap/3/stripes/stripe-21px.gif %%RESOURCES%%share/Wt/resources/themes/bootstrap/3/stripes/stripe-22px.gif %%RESOURCES%%share/Wt/resources/themes/bootstrap/3/stripes/stripe-23px.gif %%RESOURCES%%share/Wt/resources/themes/bootstrap/3/stripes/stripe-24px.gif %%RESOURCES%%share/Wt/resources/themes/bootstrap/3/stripes/stripe-25px.gif %%RESOURCES%%share/Wt/resources/themes/bootstrap/3/stripes/stripe-26px.gif %%RESOURCES%%share/Wt/resources/themes/bootstrap/3/stripes/stripe-27px.gif %%RESOURCES%%share/Wt/resources/themes/bootstrap/3/stripes/stripe-28px.gif %%RESOURCES%%share/Wt/resources/themes/bootstrap/3/stripes/stripe-29px.gif %%RESOURCES%%share/Wt/resources/themes/bootstrap/3/stripes/stripe-30px.gif %%RESOURCES%%share/Wt/resources/themes/bootstrap/3/stripes/stripe-31px.gif %%RESOURCES%%share/Wt/resources/themes/bootstrap/3/stripes/stripe-32px.gif %%RESOURCES%%share/Wt/resources/themes/bootstrap/3/stripes/stripe-33px.gif %%RESOURCES%%share/Wt/resources/themes/bootstrap/3/stripes/stripe-34px.gif %%RESOURCES%%share/Wt/resources/themes/bootstrap/3/stripes/stripe-35px.gif %%RESOURCES%%share/Wt/resources/themes/bootstrap/3/stripes/stripe-36px.gif %%RESOURCES%%share/Wt/resources/themes/bootstrap/3/stripes/stripe-37px.gif %%RESOURCES%%share/Wt/resources/themes/bootstrap/3/stripes/stripe-38px.gif %%RESOURCES%%share/Wt/resources/themes/bootstrap/3/stripes/stripe-39px.gif %%RESOURCES%%share/Wt/resources/themes/bootstrap/3/stripes/stripe-40px.gif %%RESOURCES%%share/Wt/resources/themes/bootstrap/3/suggest-dropdown.png %%RESOURCES%%share/Wt/resources/themes/bootstrap/3/suggest-dropdown.svg %%RESOURCES%%share/Wt/resources/themes/bootstrap/3/time-edit-button.png %%RESOURCES%%share/Wt/resources/themes/bootstrap/3/wt.css %%RESOURCES%%share/Wt/resources/themes/bootstrap/3/wt.less %%RESOURCES%%share/Wt/resources/themes/bootstrap/5/bootstrap.bundle.min.js %%RESOURCES%%share/Wt/resources/themes/bootstrap/5/bootstrap.bundle.min.js.map %%RESOURCES%%share/Wt/resources/themes/bootstrap/5/calendar-date.svg %%RESOURCES%%share/Wt/resources/themes/bootstrap/5/main.css %%RESOURCES%%share/Wt/resources/themes/bootstrap/5/main.css.map %%RESOURCES%%share/Wt/resources/themes/bootstrap/5/nav-minus-rtl.gif %%RESOURCES%%share/Wt/resources/themes/bootstrap/5/nav-minus.gif %%RESOURCES%%share/Wt/resources/themes/bootstrap/5/nav-plus-rtl.gif %%RESOURCES%%share/Wt/resources/themes/bootstrap/5/nav-plus.gif %%RESOURCES%%share/Wt/resources/themes/bootstrap/img/glyphicons-halflings-white.png %%RESOURCES%%share/Wt/resources/themes/bootstrap/img/glyphicons-halflings.png %%RESOURCES%%share/Wt/resources/themes/bootstrap/sort-arrow-down.gif %%RESOURCES%%share/Wt/resources/themes/bootstrap/sort-arrow-none.gif %%RESOURCES%%share/Wt/resources/themes/bootstrap/sort-arrow-up.gif %%RESOURCES%%share/Wt/resources/themes/bootstrap/splitter-h.png %%RESOURCES%%share/Wt/resources/themes/bootstrap/splitter-v.png %%RESOURCES%%share/Wt/resources/themes/default/closeicons-dialog.png %%RESOURCES%%share/Wt/resources/themes/default/closeicons-mi.png %%RESOURCES%%share/Wt/resources/themes/default/closeicons-tab.png %%RESOURCES%%share/Wt/resources/themes/default/dropdown.png %%RESOURCES%%share/Wt/resources/themes/default/nav-minus-rtl.gif %%RESOURCES%%share/Wt/resources/themes/default/nav-minus.gif %%RESOURCES%%share/Wt/resources/themes/default/nav-plus-rtl.gif %%RESOURCES%%share/Wt/resources/themes/default/nav-plus.gif %%RESOURCES%%share/Wt/resources/themes/default/no-stripes/generate.sh %%RESOURCES%%share/Wt/resources/themes/default/no-stripes/no-stripe-10px.gif %%RESOURCES%%share/Wt/resources/themes/default/no-stripes/no-stripe-11px.gif %%RESOURCES%%share/Wt/resources/themes/default/no-stripes/no-stripe-12px.gif %%RESOURCES%%share/Wt/resources/themes/default/no-stripes/no-stripe-13px.gif %%RESOURCES%%share/Wt/resources/themes/default/no-stripes/no-stripe-14px.gif %%RESOURCES%%share/Wt/resources/themes/default/no-stripes/no-stripe-15px.gif %%RESOURCES%%share/Wt/resources/themes/default/no-stripes/no-stripe-16px.gif %%RESOURCES%%share/Wt/resources/themes/default/no-stripes/no-stripe-17px.gif %%RESOURCES%%share/Wt/resources/themes/default/no-stripes/no-stripe-18px.gif %%RESOURCES%%share/Wt/resources/themes/default/no-stripes/no-stripe-19px.gif %%RESOURCES%%share/Wt/resources/themes/default/no-stripes/no-stripe-20px.gif %%RESOURCES%%share/Wt/resources/themes/default/no-stripes/no-stripe-21px.gif %%RESOURCES%%share/Wt/resources/themes/default/no-stripes/no-stripe-22px.gif %%RESOURCES%%share/Wt/resources/themes/default/no-stripes/no-stripe-23px.gif %%RESOURCES%%share/Wt/resources/themes/default/no-stripes/no-stripe-24px.gif %%RESOURCES%%share/Wt/resources/themes/default/no-stripes/no-stripe-25px.gif %%RESOURCES%%share/Wt/resources/themes/default/no-stripes/no-stripe-26px.gif %%RESOURCES%%share/Wt/resources/themes/default/no-stripes/no-stripe-27px.gif %%RESOURCES%%share/Wt/resources/themes/default/no-stripes/no-stripe-28px.gif %%RESOURCES%%share/Wt/resources/themes/default/no-stripes/no-stripe-29px.gif %%RESOURCES%%share/Wt/resources/themes/default/no-stripes/no-stripe-30px.gif %%RESOURCES%%share/Wt/resources/themes/default/no-stripes/no-stripe-31px.gif %%RESOURCES%%share/Wt/resources/themes/default/no-stripes/no-stripe-32px.gif %%RESOURCES%%share/Wt/resources/themes/default/no-stripes/no-stripe-33px.gif %%RESOURCES%%share/Wt/resources/themes/default/no-stripes/no-stripe-34px.gif %%RESOURCES%%share/Wt/resources/themes/default/no-stripes/no-stripe-35px.gif %%RESOURCES%%share/Wt/resources/themes/default/no-stripes/no-stripe-36px.gif %%RESOURCES%%share/Wt/resources/themes/default/no-stripes/no-stripe-37px.gif %%RESOURCES%%share/Wt/resources/themes/default/no-stripes/no-stripe-38px.gif %%RESOURCES%%share/Wt/resources/themes/default/no-stripes/no-stripe-39px.gif %%RESOURCES%%share/Wt/resources/themes/default/no-stripes/no-stripe-40px.gif %%RESOURCES%%share/Wt/resources/themes/default/slider-thumb-h-disabled.gif %%RESOURCES%%share/Wt/resources/themes/default/slider-thumb-h.gif %%RESOURCES%%share/Wt/resources/themes/default/slider-thumb-v-disabled.gif %%RESOURCES%%share/Wt/resources/themes/default/slider-thumb-v.gif %%RESOURCES%%share/Wt/resources/themes/default/sliderbg-h-disabled.png %%RESOURCES%%share/Wt/resources/themes/default/sliderbg-h.png %%RESOURCES%%share/Wt/resources/themes/default/sliderbg-v-disabled.png %%RESOURCES%%share/Wt/resources/themes/default/sliderbg-v.png %%RESOURCES%%share/Wt/resources/themes/default/sort-arrow-disabled.gif %%RESOURCES%%share/Wt/resources/themes/default/sort-arrow-down.gif %%RESOURCES%%share/Wt/resources/themes/default/sort-arrow-none.gif %%RESOURCES%%share/Wt/resources/themes/default/sort-arrow-up.gif %%RESOURCES%%share/Wt/resources/themes/default/spin-buttons-dn.png %%RESOURCES%%share/Wt/resources/themes/default/spin-buttons-up.png %%RESOURCES%%share/Wt/resources/themes/default/spin-buttons.png %%RESOURCES%%share/Wt/resources/themes/default/splitter-h.png %%RESOURCES%%share/Wt/resources/themes/default/splitter-v.png %%RESOURCES%%share/Wt/resources/themes/default/stripes/generate.sh %%RESOURCES%%share/Wt/resources/themes/default/stripes/stripe-10px.gif %%RESOURCES%%share/Wt/resources/themes/default/stripes/stripe-11px.gif %%RESOURCES%%share/Wt/resources/themes/default/stripes/stripe-12px.gif %%RESOURCES%%share/Wt/resources/themes/default/stripes/stripe-13px.gif %%RESOURCES%%share/Wt/resources/themes/default/stripes/stripe-14px.gif %%RESOURCES%%share/Wt/resources/themes/default/stripes/stripe-15px.gif %%RESOURCES%%share/Wt/resources/themes/default/stripes/stripe-16px.gif %%RESOURCES%%share/Wt/resources/themes/default/stripes/stripe-17px.gif %%RESOURCES%%share/Wt/resources/themes/default/stripes/stripe-18px.gif %%RESOURCES%%share/Wt/resources/themes/default/stripes/stripe-19px.gif %%RESOURCES%%share/Wt/resources/themes/default/stripes/stripe-20px.gif %%RESOURCES%%share/Wt/resources/themes/default/stripes/stripe-21px.gif %%RESOURCES%%share/Wt/resources/themes/default/stripes/stripe-22px.gif %%RESOURCES%%share/Wt/resources/themes/default/stripes/stripe-23px.gif %%RESOURCES%%share/Wt/resources/themes/default/stripes/stripe-24px.gif %%RESOURCES%%share/Wt/resources/themes/default/stripes/stripe-25px.gif %%RESOURCES%%share/Wt/resources/themes/default/stripes/stripe-26px.gif %%RESOURCES%%share/Wt/resources/themes/default/stripes/stripe-27px.gif %%RESOURCES%%share/Wt/resources/themes/default/stripes/stripe-28px.gif %%RESOURCES%%share/Wt/resources/themes/default/stripes/stripe-29px.gif %%RESOURCES%%share/Wt/resources/themes/default/stripes/stripe-30px.gif %%RESOURCES%%share/Wt/resources/themes/default/stripes/stripe-31px.gif %%RESOURCES%%share/Wt/resources/themes/default/stripes/stripe-32px.gif %%RESOURCES%%share/Wt/resources/themes/default/stripes/stripe-33px.gif %%RESOURCES%%share/Wt/resources/themes/default/stripes/stripe-34px.gif %%RESOURCES%%share/Wt/resources/themes/default/stripes/stripe-35px.gif %%RESOURCES%%share/Wt/resources/themes/default/stripes/stripe-36px.gif %%RESOURCES%%share/Wt/resources/themes/default/stripes/stripe-37px.gif %%RESOURCES%%share/Wt/resources/themes/default/stripes/stripe-38px.gif %%RESOURCES%%share/Wt/resources/themes/default/stripes/stripe-39px.gif %%RESOURCES%%share/Wt/resources/themes/default/stripes/stripe-40px.gif %%RESOURCES%%share/Wt/resources/themes/default/wt.css %%RESOURCES%%share/Wt/resources/themes/default/wt_ie.css %%RESOURCES%%share/Wt/resources/themes/default/wt_ie6.css %%RESOURCES%%share/Wt/resources/themes/polished/closeicons-dialog.png %%RESOURCES%%share/Wt/resources/themes/polished/closeicons-mi.png %%RESOURCES%%share/Wt/resources/themes/polished/closeicons-tab.png %%RESOURCES%%share/Wt/resources/themes/polished/dropdown.png %%RESOURCES%%share/Wt/resources/themes/polished/dropshadow.png %%RESOURCES%%share/Wt/resources/themes/polished/gradient.png %%RESOURCES%%share/Wt/resources/themes/polished/nav-minus-rtl.gif %%RESOURCES%%share/Wt/resources/themes/polished/nav-minus-rtl.png %%RESOURCES%%share/Wt/resources/themes/polished/nav-minus.gif %%RESOURCES%%share/Wt/resources/themes/polished/nav-minus.png %%RESOURCES%%share/Wt/resources/themes/polished/nav-plus-rtl.gif %%RESOURCES%%share/Wt/resources/themes/polished/nav-plus-rtl.png %%RESOURCES%%share/Wt/resources/themes/polished/nav-plus.gif %%RESOURCES%%share/Wt/resources/themes/polished/nav-plus.png %%RESOURCES%%share/Wt/resources/themes/polished/no-stripes/generate.sh %%RESOURCES%%share/Wt/resources/themes/polished/no-stripes/no-stripe-10px.gif %%RESOURCES%%share/Wt/resources/themes/polished/no-stripes/no-stripe-11px.gif %%RESOURCES%%share/Wt/resources/themes/polished/no-stripes/no-stripe-12px.gif %%RESOURCES%%share/Wt/resources/themes/polished/no-stripes/no-stripe-13px.gif %%RESOURCES%%share/Wt/resources/themes/polished/no-stripes/no-stripe-14px.gif %%RESOURCES%%share/Wt/resources/themes/polished/no-stripes/no-stripe-15px.gif %%RESOURCES%%share/Wt/resources/themes/polished/no-stripes/no-stripe-16px.gif %%RESOURCES%%share/Wt/resources/themes/polished/no-stripes/no-stripe-17px.gif %%RESOURCES%%share/Wt/resources/themes/polished/no-stripes/no-stripe-18px.gif %%RESOURCES%%share/Wt/resources/themes/polished/no-stripes/no-stripe-19px.gif %%RESOURCES%%share/Wt/resources/themes/polished/no-stripes/no-stripe-20px.gif %%RESOURCES%%share/Wt/resources/themes/polished/no-stripes/no-stripe-21px.gif %%RESOURCES%%share/Wt/resources/themes/polished/no-stripes/no-stripe-22px.gif %%RESOURCES%%share/Wt/resources/themes/polished/no-stripes/no-stripe-23px.gif %%RESOURCES%%share/Wt/resources/themes/polished/no-stripes/no-stripe-24px.gif %%RESOURCES%%share/Wt/resources/themes/polished/no-stripes/no-stripe-25px.gif %%RESOURCES%%share/Wt/resources/themes/polished/no-stripes/no-stripe-26px.gif %%RESOURCES%%share/Wt/resources/themes/polished/no-stripes/no-stripe-27px.gif %%RESOURCES%%share/Wt/resources/themes/polished/no-stripes/no-stripe-28px.gif %%RESOURCES%%share/Wt/resources/themes/polished/no-stripes/no-stripe-29px.gif %%RESOURCES%%share/Wt/resources/themes/polished/no-stripes/no-stripe-30px.gif %%RESOURCES%%share/Wt/resources/themes/polished/no-stripes/no-stripe-31px.gif %%RESOURCES%%share/Wt/resources/themes/polished/no-stripes/no-stripe-32px.gif %%RESOURCES%%share/Wt/resources/themes/polished/no-stripes/no-stripe-33px.gif %%RESOURCES%%share/Wt/resources/themes/polished/no-stripes/no-stripe-34px.gif %%RESOURCES%%share/Wt/resources/themes/polished/no-stripes/no-stripe-35px.gif %%RESOURCES%%share/Wt/resources/themes/polished/no-stripes/no-stripe-36px.gif %%RESOURCES%%share/Wt/resources/themes/polished/no-stripes/no-stripe-37px.gif %%RESOURCES%%share/Wt/resources/themes/polished/no-stripes/no-stripe-38px.gif %%RESOURCES%%share/Wt/resources/themes/polished/no-stripes/no-stripe-39px.gif %%RESOURCES%%share/Wt/resources/themes/polished/no-stripes/no-stripe-40px.gif %%RESOURCES%%share/Wt/resources/themes/polished/slider-thumb-disabled.png %%RESOURCES%%share/Wt/resources/themes/polished/slider-thumb.png %%RESOURCES%%share/Wt/resources/themes/polished/sliderbg-h-disabled.png %%RESOURCES%%share/Wt/resources/themes/polished/sliderbg-h.png %%RESOURCES%%share/Wt/resources/themes/polished/sliderbg-he-disabled.png %%RESOURCES%%share/Wt/resources/themes/polished/sliderbg-he.png %%RESOURCES%%share/Wt/resources/themes/polished/sliderbg-hw-disabled.png %%RESOURCES%%share/Wt/resources/themes/polished/sliderbg-hw.png %%RESOURCES%%share/Wt/resources/themes/polished/sliderbg-v-disabled.png %%RESOURCES%%share/Wt/resources/themes/polished/sliderbg-v.png %%RESOURCES%%share/Wt/resources/themes/polished/sliderbg-ve-disabled.png %%RESOURCES%%share/Wt/resources/themes/polished/sliderbg-ve.png %%RESOURCES%%share/Wt/resources/themes/polished/sliderbg-vw-disabled.png %%RESOURCES%%share/Wt/resources/themes/polished/sliderbg-vw.png %%RESOURCES%%share/Wt/resources/themes/polished/sort-arrow-disabled.gif %%RESOURCES%%share/Wt/resources/themes/polished/sort-arrow-down.gif %%RESOURCES%%share/Wt/resources/themes/polished/sort-arrow-none.gif %%RESOURCES%%share/Wt/resources/themes/polished/sort-arrow-up.gif %%RESOURCES%%share/Wt/resources/themes/polished/splitter-h.png %%RESOURCES%%share/Wt/resources/themes/polished/splitter-v.png %%RESOURCES%%share/Wt/resources/themes/polished/stripes/generate.sh %%RESOURCES%%share/Wt/resources/themes/polished/stripes/stripe-10px.gif %%RESOURCES%%share/Wt/resources/themes/polished/stripes/stripe-11px.gif %%RESOURCES%%share/Wt/resources/themes/polished/stripes/stripe-12px.gif %%RESOURCES%%share/Wt/resources/themes/polished/stripes/stripe-13px.gif %%RESOURCES%%share/Wt/resources/themes/polished/stripes/stripe-14px.gif %%RESOURCES%%share/Wt/resources/themes/polished/stripes/stripe-15px.gif %%RESOURCES%%share/Wt/resources/themes/polished/stripes/stripe-16px.gif %%RESOURCES%%share/Wt/resources/themes/polished/stripes/stripe-17px.gif %%RESOURCES%%share/Wt/resources/themes/polished/stripes/stripe-18px.gif %%RESOURCES%%share/Wt/resources/themes/polished/stripes/stripe-19px.gif %%RESOURCES%%share/Wt/resources/themes/polished/stripes/stripe-20px.gif %%RESOURCES%%share/Wt/resources/themes/polished/stripes/stripe-21px.gif %%RESOURCES%%share/Wt/resources/themes/polished/stripes/stripe-22px.gif %%RESOURCES%%share/Wt/resources/themes/polished/stripes/stripe-23px.gif %%RESOURCES%%share/Wt/resources/themes/polished/stripes/stripe-24px.gif %%RESOURCES%%share/Wt/resources/themes/polished/stripes/stripe-25px.gif %%RESOURCES%%share/Wt/resources/themes/polished/stripes/stripe-26px.gif %%RESOURCES%%share/Wt/resources/themes/polished/stripes/stripe-27px.gif %%RESOURCES%%share/Wt/resources/themes/polished/stripes/stripe-28px.gif %%RESOURCES%%share/Wt/resources/themes/polished/stripes/stripe-29px.gif %%RESOURCES%%share/Wt/resources/themes/polished/stripes/stripe-30px.gif %%RESOURCES%%share/Wt/resources/themes/polished/stripes/stripe-31px.gif %%RESOURCES%%share/Wt/resources/themes/polished/stripes/stripe-32px.gif %%RESOURCES%%share/Wt/resources/themes/polished/stripes/stripe-33px.gif %%RESOURCES%%share/Wt/resources/themes/polished/stripes/stripe-34px.gif %%RESOURCES%%share/Wt/resources/themes/polished/stripes/stripe-35px.gif %%RESOURCES%%share/Wt/resources/themes/polished/stripes/stripe-36px.gif %%RESOURCES%%share/Wt/resources/themes/polished/stripes/stripe-37px.gif %%RESOURCES%%share/Wt/resources/themes/polished/stripes/stripe-38px.gif %%RESOURCES%%share/Wt/resources/themes/polished/stripes/stripe-39px.gif %%RESOURCES%%share/Wt/resources/themes/polished/stripes/stripe-40px.gif %%RESOURCES%%share/Wt/resources/themes/polished/suggest-dropdown.png %%RESOURCES%%share/Wt/resources/themes/polished/title-gradient.png %%RESOURCES%%share/Wt/resources/themes/polished/wt.css %%RESOURCES%%share/Wt/resources/themes/polished/wt_ie.css %%RESOURCES%%share/Wt/resources/themes/polished/wt_ie6.css %%RESOURCES%%share/Wt/resources/transitions.css %%RESOURCES%%share/Wt/resources/tv-line-last-rtl.gif %%RESOURCES%%share/Wt/resources/tv-line-last.gif %%RESOURCES%%share/Wt/resources/webkit-transitions.css %%THEMES%%share/Wt/themes/bootstrap/5/gulpfile.js %%THEMES%%share/Wt/themes/bootstrap/5/main.scss %%THEMES%%share/Wt/themes/bootstrap/5/package.yaml %%THEMES%%share/Wt/themes/bootstrap/5/pnpm-lock.yaml %%THEMES%%share/Wt/themes/bootstrap/5/wt/_index.scss %%THEMES%%share/Wt/themes/bootstrap/5/wt/_variables.scss %%THEMES%%share/Wt/themes/bootstrap/5/wt/widgets/_calendar.scss %%THEMES%%share/Wt/themes/bootstrap/5/wt/widgets/_date-edit.scss %%THEMES%%share/Wt/themes/bootstrap/5/wt/widgets/_date-picker.scss %%THEMES%%share/Wt/themes/bootstrap/5/wt/widgets/_dialog.scss %%THEMES%%share/Wt/themes/bootstrap/5/wt/widgets/_file-drop-widget.scss %%THEMES%%share/Wt/themes/bootstrap/5/wt/widgets/_google-map.scss %%THEMES%%share/Wt/themes/bootstrap/5/wt/widgets/_grid-layout.scss %%THEMES%%share/Wt/themes/bootstrap/5/wt/widgets/_icon.scss %%THEMES%%share/Wt/themes/bootstrap/5/wt/widgets/_index.scss %%THEMES%%share/Wt/themes/bootstrap/5/wt/widgets/_menu-item.scss %%THEMES%%share/Wt/themes/bootstrap/5/wt/widgets/_menu.scss %%THEMES%%share/Wt/themes/bootstrap/5/wt/widgets/_navigation-bar.scss %%THEMES%%share/Wt/themes/bootstrap/5/wt/widgets/_panel.scss %%THEMES%%share/Wt/themes/bootstrap/5/wt/widgets/_popup-menu.scss %%THEMES%%share/Wt/themes/bootstrap/5/wt/widgets/_progress-bar.scss %%THEMES%%share/Wt/themes/bootstrap/5/wt/widgets/_push-button.scss %%THEMES%%share/Wt/themes/bootstrap/5/wt/widgets/_slider.scss %%THEMES%%share/Wt/themes/bootstrap/5/wt/widgets/_spin-box.scss %%THEMES%%share/Wt/themes/bootstrap/5/wt/widgets/_stacked-widget.scss %%THEMES%%share/Wt/themes/bootstrap/5/wt/widgets/_suggestion-popup.scss %%THEMES%%share/Wt/themes/bootstrap/5/wt/widgets/_time-edit.scss %%THEMES%%share/Wt/themes/bootstrap/5/wt/widgets/_toolbar.scss %%THEMES%%share/Wt/themes/bootstrap/5/wt/widgets/_tree-table.scss %%THEMES%%share/Wt/themes/bootstrap/5/wt/widgets/_tree.scss %%THEMES%%share/Wt/themes/bootstrap/5/wt/widgets/item-views/_abstract-item-view.scss %%THEMES%%share/Wt/themes/bootstrap/5/wt/widgets/item-views/_index.scss %%THEMES%%share/Wt/themes/bootstrap/5/wt/widgets/item-views/_paging-bar.scss %%THEMES%%share/Wt/themes/bootstrap/5/wt/widgets/item-views/_table-view.scss %%THEMES%%share/Wt/themes/bootstrap/5/wt/widgets/item-views/_tree-view.scss