• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

docs/reference/libepc/H19-Jun-2017-1,6981,420

examples/H03-May-2022-2,0911,582

libepc/H03-May-2022-9,8775,616

libepc-ui/H19-Jun-2017-1,199723

m4/H19-Jun-2017-9,3778,470

po/H19-Jun-2017-4,8243,901

tests/H03-May-2022-2,3241,490

AUTHORSH A D19-Jun-201743 21

COPYINGH A D19-Jun-201725.9 KiB511422

ChangeLogH A D19-Jun-201774.9 KiB2,1061,399

INSTALLH A D19-Jun-201715.4 KiB371289

Makefile.amH A D19-Jun-20179.1 KiB267211

Makefile.inH A D03-May-2022179.8 KiB2,7852,495

NEWSH A D19-Jun-20176.9 KiB240186

READMEH A D19-Jun-20172.2 KiB8156

aclocal.m4H A D19-Jun-201774.5 KiB2,1601,956

compileH A D19-Jun-20177.2 KiB348258

config.guessH A D19-Jun-201742.9 KiB1,4631,270

config.h.inH A D19-Jun-20172.4 KiB8758

config.subH A D19-Jun-201735.5 KiB1,8261,688

configureH A D19-Jun-2017522.5 KiB17,73914,866

configure.acH A D19-Jun-20173.9 KiB11095

depcompH A D19-Jun-201723 KiB792502

install-shH A D19-Jun-201714.8 KiB509329

libepc-1.0.pc.inH A D19-Jun-2017347 1210

libepc-ui-1.0.pc.inH A D19-Jun-2017311 1310

ltmain.shH A D19-Jun-2017316.8 KiB11,1577,986

missingH A D19-Jun-20176.7 KiB216143

test-driverH A D19-Jun-20174.5 KiB14987

README

1Publish and Consume Library
2Copyright (C) 2007, 2008  Openismus GmbH
3
4ABSTRACT
5========
6
7The Easy Publish and Consume library provides an easy method to:
8
9    * publish data per HTTPS
10    * announce that information via DNS-SD
11    * find that information
12    * and finally consume it
13
14You can use this library as key/value store published to the network,
15using encryption, authentication and service discovery.
16
17REQUIREMENTS
18============
19
20The libepc library depends on:
21
22    * avahi-client >= 0.6
23    * avahi-glib   >= 0.6
24    * glib         >= 2.12
25    * gmodule-2.0  >= 2.0
26    * gobject      >= 2.4
27    * gnutls       >= 1.4
28    * libsoup      >= 2.2
29    * libuuid      >= 0.36 [1]
30
31Additionally libepc-ui uses:
32
33    * gtk+         >= 2.10
34
35And finally the examples need:
36
37    * avahi-ui     >= 0.6
38
39
40  [1] NOTICE: Currently Debian, Ubuntu and derivates have the development
41      files of libuuid in the "uuid-dev" package instead of "libuuid-dev",
42      which would be the expected package name (IMHO). Well, but surprisingly
43      there are no naming conventions for development packages, as I was told
44      on #debian-devel.
45
46SOURCE CODE
47===========
48
49    * Examples:   http://svn.gnome.org/viewvc/libepc/trunk/examples/
50    * Tarballs:   http://ftp.gnome.org/pub/gnome/sources/libepc/
51    * Subversion: http://svn.gnome.org/svn/libepc/trunk/
52
53BUG REPORTS
54===========
55
56    * http://bugzilla.gnome.org/enter_bug.cgi?product=libepc
57
58PROJECTS USING THE LIBRARY
59==========================
60
61 * Glom - http://www.glom.org/
62   Database designer and user interface
63
64LICENSE
65=======
66
67This library is free software; you can redistribute it and/or
68modify it under the terms of the GNU Lesser General Public
69License as published by the Free Software Foundation; either
70version 2.1 of the License, or (at your option) any later version.
71
72This library is distributed in the hope that it will be useful,
73but WITHOUT ANY WARRANTY; without even the implied warranty of
74MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
75Lesser General Public License for more details.
76
77You should have received a copy of the GNU Lesser General Public
78License along with this library; if not, write to the Free Software
79Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
80
81