mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-02 01:20:54 +00:00
fb16dfecae
Commit b7f05445c0
has added WWW entries to port Makefiles based on
WWW: lines in pkg-descr files.
This commit removes the WWW: lines of moved-over URLs from these
pkg-descr files.
Approved by: portmgr (tcberner)
22 lines
1.4 KiB
Plaintext
22 lines
1.4 KiB
Plaintext
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.
|