libpsyc source code from git://git.psyc.eu/libpsyc
Go to file
tg(x) fe92dbd9f2 + 2011-05-28 20:38:53 +02:00
bench bench table fix 2011-05-28 20:23:54 +02:00
d fixed bug in D-binding: state.getRemainingBuffer 2011-05-17 00:27:20 +02:00
doc doc style fix 2011-04-27 00:17:19 +02:00
include + 2011-05-28 20:38:53 +02:00
lib make clean 2011-05-10 16:54:40 +02:00
src text: naming & doc fixes 2011-05-28 19:39:42 +02:00
test make bench 2011-05-24 22:59:49 +02:00
.gitignore bench: added test tools, updated results; added inline option for parse & render 2011-05-17 00:27:26 +02:00
Doxyfile doc: link to example code; testPsyc: moved interesting code to the top 2011-05-15 22:48:51 +02:00
LICENSE license header 2011-05-16 12:18:49 +02:00
Makefile bench: fixed packet errors 2011-05-18 22:08:30 +02:00
README where the lpc is 2011-05-16 01:39:26 +02:00

README

= libpsyc README file =

libpsyc implements various functions required to use PSYC. 

See http://about.psyc.eu/libpsyc for more information on the library.
See http://about.psyc.eu/Specification for more information
    on the new PSYC specification.
See http://about.psyc.eu for information on PSYC in general.

The plain C API located in the include/psyc directory along with the file psyc.h
is primarily intended to be used for binding with other languages and frameworks.

The LPC binding for psyced is distributed with psyclpc since it is spread
over several files (LPC has no simple approach to binding). Other bindings
are located directly in the root folder named according to the language or
framework. Currently there's only a binding for D.

== C API ==

The "plain C API" is a very low-level API intended to be used for bindings.
To access a certain module of the library, just include the according header
file from the psyc directory:

psyc.h        -- basic things for well-being
psyc/parse.h  -- parse psyc packets
psyc/render.h -- render psyc packets
psyc/text.h   -- text template functions 
psyc/packet.h -- structures for render.h and functions to initialize them
psyc/syntax.h -- definitions and constants related to parsing and rendering

== Directory Overview ==

doc     -- target folder for the documentation after generation (make doc)
include -- the core C API for the library
lib     -- target folder for the compiled library (make) 
src     -- the sourcecode of the library
test    -- test sourcecodes and test input files
d       -- the D binding 

== Compiling libpsyc ==

Type 

  make

and you are done.
Other possible targets include:

  make diet   -- compile with diet libc
  make test   -- compile and run the test
  make doc    -- generate the API documentation (will be put in the doc folder)
  make help   -- display the possible targets

== Requirements ==

libpsyc is currently known to compile under Linux and SunOS.

== Contributors And Contribution ==

The library is being developed by 

* tg     -- psyc://psyced.org/~tg 
* lynx   -- psyc://psyced.org/~lynx
* Marenz -- psyc://supraverse.net/~marenz

If you created new bindings, patches or anything other that you think should go
into the library, contact either anyone of us directly or just join the
developement room at 

   psyc://psyced.org/@welcome
   xmpp:*welcome@psyced.org
   irc://psyced.org/welcome

== Licence ==

-- To be discussed --

== Style Wars ==

This source code should follow the http://about.psyc.eu/Indent conventions.
    (if you have good reasons to use another style, discuss it on the
     wiki page so that it becomes the general style convention for all
     of us, not just for you).