Changes between Version 18 and Version 19 of LibYAML
- Timestamp:
- 12/27/08 18:31:41 (4 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
LibYAML
v18 v19 1 1 = LibYAML = 2 2 3 '''LibYAML is a YAML 1.1 parser and emitter written in C. It's in an early stage of development.'''3 '''LibYAML is a YAML 1.1 parser and emitter written in C.''' 4 4 5 5 [[PageOutline]] … … 8 8 == Download and Installation == 9 9 10 The current release of LibYAML: '''0.1. 1 (2007-05-31)'''.11 12 Download the source package: http://pyyaml.org/download/libyaml/yaml-0.1. 1.tar.gz.10 The current release of LibYAML: '''0.1.2 (2008-12-28)'''. 11 12 Download the source package: http://pyyaml.org/download/libyaml/yaml-0.1.2.tar.gz. 13 13 14 14 To build and install LibYAML, run … … 20 20 21 21 You may check out the latest development code of LibYAML from the Subversion repository 22 http://svn.pyyaml.org/libyaml/ trunk:23 24 {{{ 25 $ svn checkout http://svn.pyyaml.org/libyaml/ trunk libyaml-trunk22 http://svn.pyyaml.org/libyaml/branches/stable: 23 24 {{{ 25 $ svn checkout http://svn.pyyaml.org/libyaml/branches/stable libyaml-stable 26 26 }}} 27 27 … … 53 53 === Scope === 54 54 55 LibYAML covers ''presenting'' and ''parsing'' [http://yaml.org/spec/ cvs/current.html#id859458 processes].55 LibYAML covers ''presenting'' and ''parsing'' [http://yaml.org/spec/1.1/#id859458 processes]. 56 56 Thus LibYAML defines the following two processors: 57 57 … … 155 155 156 156 Note: the API may change drastically. You may also check the header file: 157 http://pyyaml.org/browser/libyaml/ trunk/include/yaml.h.157 http://pyyaml.org/browser/libyaml/branches/stable/include/yaml.h. 158 158 159 159 ==== Parser API Synopsis ==== … … 291 291 === Examples === 292 292 293 You may check the examples 294 [http://pyyaml.org/browser/libyaml/trunk/tests/example-reformatter.c example-reformatter] 295 and [http://pyyaml.org/browser/libyaml/trunk/tests/example-deconstructor.c example-deconstructor] 293 You may check 294 [http://pyyaml.org/browser/libyaml/branches/stable/tests/ tests and examples] 296 295 in the source distribution. 297 296 … … 304 303 305 304 This project is developed for [http://www.python.org/psf/ Python Software Foundation] 306 as a part of [http://code.google.com/s ummerofcode.htmlGoogle Summer of Code]305 as a part of [http://code.google.com/soc/2006/psf/appinfo.html?csaid=75A3CBE3EC4B3DB2 Google Summer of Code] 307 306 under the mentorship of [http://clarkevans.com/ Clark Evans].
