summaryrefslogtreecommitdiffstats
path: root/laugeas.c
Commit message (Collapse)AuthorAgeFilesLines
* 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-141-0/+104