1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143
|
Source: libaws
Priority: optional
Section: libs
Maintainer: Ludovic Brenta <lbrenta@debian.org>
Uploaders: Nicolas Boulenguez <nicolas@debian.org>
Build-Depends:
debhelper-compat (= 13),
dh-ada-library (>= 7.2),
dh-sequence-ada-library,
# This line is parsed by debian/rules to set GNAT_VERSION:
gnat, gnat-10,
gprbuild (>= 2021.0.0.0778b109-2),
# for ada2wsdl.gpr:
libasis2019.1-dev (>= 2019-4),
# for build_aws.gpr:
libgnutls28-dev,
# This line, if present, is parsed by debian/rules to set SSL.
libldap2-dev,
libtemplates-parser14-dev (>= 21),
libxmlada-dom10-dev (>= 21),
libxmlada-input10-dev (>= 21),
libxmlada-sax10-dev (>= 21),
libxmlada-schema10-dev (>= 21),
libxmlada-unicode10-dev (>= 21),
libz-dev,
pkg-config,
Build-Depends-Indep:
dh-sequence-sphinxdoc,
latexmk,
# sphinx >= 1.6 requires the latexmk driver.
python3-sphinx,
texinfo,
texlive-fonts-recommended,
texlive-latex-extra,
# sphinx-doc requires iftex.sty:
texlive-plain-generic,
Standards-Version: 4.5.1
Rules-Requires-Root: no
Vcs-Browser: https://salsa.debian.org/debian/libaws
Vcs-Git: https://salsa.debian.org/debian/libaws.git
Homepage: https://github.com/AdaCore/aws
Package: libaws20-dev
Section: libdevel
Architecture: any
Depends: ${misc:Depends}, ${ada:Depends},
Recommends: libaws-bin (= ${binary:Version})
Suggests: libaws-doc (= ${source:Version}),
libjs-scriptaculous,
libjs-prototype
Description: Ada Web Server development files
AWS is a complete framework to develop Web based applications. The
main part of the framework is the embedded Web server. This small yet
powerful Web server can be embedded into your application so your
application will be able to talk with a Web browser. Around this Web
server a lot of services have been developed.
.
- A Web parameters module. This module takes care of retrieving the
forms or URL parameters and to build an associative table for easy
access.
- A session server, this is a very important module to be able to
keep client's data from page to page.
- Support SOAP to develop Web Services.
- A tool to generate Web Services stubs/skeletons from a WSDL
document.
- A template parser, this module makes it possible to completely
separate the Web design from the code. No more scripting into your Web
page.
- Support for Secure Sockets (HTTPS/SSL), this is based on the GNU TLS
library.
- Support for large servers using dispatchers based on URI, request
methods.
- Support for virtual hosting (dispatchers based on the host name).
- Support for server push.
- A directory browser ready to be used in any application.
- A status page to get many information about the current AWS server.
- A log module. Log files keep information about all resources
requested to the server.
- Hotplug modules which can be loaded/unloaded dynamically to add
specific features to a server.
- A communication API to exchange data between applications using the
HTTP protocol.
- A configuration API to tune/change the server parameters without
recompilation.
- A client API to retrieve any Web page from a Web site.
- A Web Page service to build a simple static page server.
- Support for SMTP, LDAP and Jabber protocols.
Package: libaws-bin
Section: devel
Architecture: any
Depends: ${shlibs:Depends}, ${misc:Depends}
Description: Ada Web Server utilities
AWS is a complete framework to develop Web based applications. The
main part of the framework is the embedded Web server. This small yet
powerful Web server can be embedded into your application so your
application will be able to talk with a Web browser. Around this Web
server a lot of services have been developed.
.
This package contains utility programs to help develop web applications
with AWS:
.
awsres transforms any text or binary file into an Ada unit which you
can compile into your application, thereby making your application
completely independent of any external files (think: embedded)
.
ada2wsdl, an ASIS program, reads Ada unit specifications and creates
descriptions in the Web Service Description Language, so that you can
advertise your web service application to the world.
.
wsdl2aws does the opposite job: it creates an Ada unit (spec and
skeleton body) conforming to a specified description in WSDL.
Package: libaws6
Architecture: any
Depends: ${shlibs:Depends}, ${misc:Depends}
Multi-Arch: same
Description: Ada Web Server shared library
AWS is a complete framework to develop Web based applications. The
main part of the framework is the embedded Web server. This small yet
powerful Web server can be embedded into your application so your
application will be able to talk with a Web browser. Around this Web
server a lot of services have been developed.
.
This is the runtime library for the Ada Web Server.
Package: libaws-doc
Section: doc
Architecture: all
Multi-Arch: foreign
Depends: ${misc:Depends}, ${sphinxdoc:Depends}
Built-Using: ${sphinxdoc:Built-Using}
Suggests: gnat
Description: Ada Web Server documentation
AWS is a complete framework to develop Web based applications. The
main part of the framework is the embedded Web server. This small yet
powerful Web server can be embedded into your application so your
application will be able to talk with a Web browser. Around this Web
server a lot of services have been developed.
.
This package contains the documentation for the Ada Web Server in
info, ASCII and HTML formats, as well as demos and source code of
reusable web elements.
|