summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* support for Lua 5.2HEADmasterNatanael Copa2013-06-192-5/+18
|
* ==== release 0.1.2 ====v0.1.2Natanael Copa2013-05-101-1/+1
|
* allow nil values with set and setmKaarle Ritvanen2013-05-081-2/+2
|
* Include Lua package CFLAGSKen Bannister2012-09-201-1/+2
| | | | | Must include Lua package CFLAGS on Debian since include files located in Lua-specific subdirectory.
* Fix whitespace damageNatanael Copa2012-09-201-3/+3
|
* Initial commit for lunadoc interface documentation.Ken Bannister2012-09-202-0/+64
|
* misc fixes for MakefileNatanael Copa2012-09-121-3/+15
| | | | | - Get lua version and install dir from pkg-config - Use cflags and libs from pkg-config
* Rework Paug_close() to work with raw augeas** rather than augeas*.Ken Bannister2012-09-111-4/+8
| | | | | | Was attempting to null the augeas*, but this was ineffective. Caused a segfault if manually closed the library because aug_close() would be called twice -- once for manual close, and once for __gc based close.
* ==== release 0.1.1 ====v0.1.1Natanael Copa2012-08-031-1/+1
|
* Add copyrightNatanael Copa2012-08-031-0/+24
| | | | Use MIT which is so much simpler than LGPL.
* implement error* functionsv0.1Natanael Copa2010-10-151-0/+32
| | | | | | | | Implement the following: error() error_message() error_minor_message() error_detalils()
* implement match() and matches()Natanael Copa2010-10-151-0/+33
|
* implement defnode()Natanael Copa2010-10-151-0/+10
|
* implement defvar()Natanael Copa2010-10-151-7/+16
|
* implement mv()Natanael Copa2010-10-151-0/+9
|
* implement insert()Natanael Copa2010-10-151-0/+10
|
* implement setm()Natanael Copa2010-10-151-0/+10
|
* implement rm()Natanael Copa2010-10-151-0/+8
|
* implement load()Natanael Copa2010-10-151-0/+7
|
* implement save()Natanael Copa2010-10-151-0/+6
|
* implement set()Natanael Copa2010-10-151-0/+12
|
* simplify aug_checkargNatanael Copa2010-10-151-30/+31
| | | | return augeas* rather than augeas**
* print supports file handle arg. error handlingNatanael Copa2010-10-151-4/+30
| | | | | | | | we can now do: a:print(expr, stderr) a:get(expr) will return either value or nil + error message
* check args before creating userdata and cleanupNatanael Copa2010-10-151-13/+11
| | | | support close()
* support passing options to initNatanael Copa2010-10-151-1/+61
| | | | | | | | | | | | | Either as: handle = augeas.init(root, loadpath, augeas.save_backup + augeas.no_load) or: flags = {} flags.root = "/path/to/root" flags.loadpath = "/path/to/lenses" flags.save_backup = true flags.no_load = true handle = augeas.init(flags)
* initial commitNatanael Copa2010-10-142-0/+136