Skip to content

Commit 63b662d

Browse files
author
Sebastiano Merlino
committed
Created documentation subsection
1 parent a3e0923 commit 63b662d

File tree

7 files changed

+11095
-2
lines changed

7 files changed

+11095
-2
lines changed

Makefile.am

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@ LIBTOOL_DEPS = @LIBTOOL_DEPS@
2424
AUTOMAKE_OPTIONS = foreign 1.4
2525
ACLOCAL_AMFLAGS = -I m4
2626

27-
SUBDIRS = src test
28-
DIST_SUBDIRS = src test
27+
SUBDIRS = src test doc
28+
DIST_SUBDIRS = src test doc
2929
EXTRA_DIST = libhttpserver.pc.in debian/changelog.in debian/control.in debian/copyright.in debian/rules.in debian/libhttpserver-dev.install.in debian/libhttpserver.install.in redhat/libhttpserver.SPEC.in $(DX_CONFIG)
3030

3131
MOSTLYCLEANFILES = $(DX_CLEANFILES) redhat/SOURCES/*

configure.ac

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -147,6 +147,7 @@ AC_SUBST(EXT_LIBS)
147147
AC_OUTPUT(
148148
libhttpserver.pc
149149
Makefile
150+
doc/Makefile
150151
src/Makefile
151152
test/Makefile
152153
debian/changelog

doc/Makefile.am

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
man_MANS = libhttpserver.3
2+
EXTRA_DIST = $(man_MANS)
3+
4+
DISTCLEANFILES = \
5+
libhttpserver.cps \
6+
libhttpserver.dvi \
7+
libhttpserver-tutorial.cps \
8+
libhttpserver-tutorial.dvi
9+
info_TEXINFOS = \
10+
libhttpserver.texi
11+
httpserver_TEXINFOS = \
12+
fdl-1.3.texi \
13+
lgpl.texi

doc/fdl-1.3.texi

Lines changed: 506 additions & 0 deletions
Large diffs are not rendered by default.

doc/lgpl.texi

Lines changed: 561 additions & 0 deletions
Large diffs are not rendered by default.

doc/libhttpserver.3

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
.TH LIBHTTPSERVER "3" "02 Mar 2013 "libhttpserver"
2+
.SH "NAME"
3+
libhttpserver \- C++ library for creating an embedded Rest HTTP server (and more)
4+
.SH "SYNOPSIS"
5+
6+
\fB#include <httpserver.hpp>
7+
8+
.SH "DESCRIPTION"
9+
.P
10+
libhttpserver is an api made with the intent to allow to easily realize Rest based webservers.
11+
.P
12+
The details of the API are described in a detailed documentation and in doxygen generated code reference.
13+
.P
14+
.SH "SEE ALSO"
15+
\fBcurl\fP(1), \fBlibcurl\fP(3), \fBlibmicrohttpd\fP(3)
16+
17+
.SH "LEGAL NOTICE"
18+
libhttpserver is released under the LGPL Version 2.1 or higher. For details on the license please read the appendix in the manual.
19+
20+
.SH "FILES"
21+
.TP
22+
httpserver.hpp
23+
libhttpserver include file
24+
.TP
25+
libhttpserver.so
26+
libhttpserver library
27+
28+
.SH "REPORTING BUGS"
29+
Report bugs by using github issue tracker <https://github.com/etr/libhttpserver/issues>.
30+
31+
.SH "AUTHORS"
32+
GNU libhttpserver is designed and realized by Sebastiano Merlino <electrictwister2000@gmail.com>.
33+
34+
.SH "AVAILABILITY"
35+
You can obtain the latest version from https://github.com/etr/libhttpserver .

0 commit comments

Comments
 (0)