-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathREADME
More file actions
88 lines (60 loc) · 2.58 KB
/
README
File metadata and controls
88 lines (60 loc) · 2.58 KB
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
About dbPager Server
The dbPager Server project provides the dbPager Language - the programming
language based on XML. The language is simple and understood well; it has
facilities to access and process external data quite easy, so it is an ideal
language for middle level logic implementation in multitier software complexes,
such as web servers.
The software implementations of the dbPager Language are:
- dbpager, the console language interpretator
- dbp_cgi, the interpretator as a CGI extension of the web server
- mod_dbp, the interpretator as an Apache extension module
- dbp_isapi, the interpretator as an ISAPI module (Microsoft IIS extension)
- dbpagerd, the application server
The sofware can be extended with plugins (dbPager modules). There are
out-of-the-box dbPager modules:
- dbp_odbc, the ODBC interaface to databases
- dbp_xml, provides XML features
- dbp_xslt, the XSL transformation feature
Visit the web site at http://dbpager.com for more information, downloads
and community support resources.
Refer to INSTALL file to obtain installation instructions and doc directory
for software documentation and examples.
Installing
Debian 8
Add my gpg key:
wget -qO - http://dbpager.com/dbpager.gpg | sudo apt-key add -
Add dbpager repository to /etc/apt/sources.list
deb https://dbpager.com/debian jessie main
Update apt cache and install packages:
apt-get update && apt-get install dbpager dbpagerd
Downloading and building dbPager Server
To build dbPager Server from repository you should have the following
developer tools installed:
- git
- autopoint
- libtoolize
- aclocal
- automake
- autoconf
- autoheader
- xgettext
- xsltproc
You will needed some of libraries installed (developer packages):
- libxml-2.0-dev
- libxslt-dev
- libpcre-dev
- libapr1-dev
- apache2-threaded-dev
Also you will needed the dbPager Classes Library, available from
https://github.com/wolfsoft/libdcl.
To download latest dbPager Server sources, execute the following command:
git clone https://github.com/wolfsoft/dbpager.git
The dbPager Server sources will downloaded into the dbpager directory. Next,
you should run the autogen.sh script in the dbpager directory - it creates
all necessary infrastructure to build the dbPager Server with developer
tools mentioned above.
After building the infrastructure complete, you should configure the
dbPager Server sources by running 'configure' script. The configure script
has various options, run it with --help parameter for details.
Finally, build the configured sources with 'make' command.
More information about building the sources can be found in the INSTALL file.