Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | implement error* functionsv0.1 | Natanael Copa | 2010-10-15 | 1 | -0/+32 |
| | | | | | | | | Implement the following: error() error_message() error_minor_message() error_detalils() | ||||
* | implement match() and matches() | Natanael Copa | 2010-10-15 | 1 | -0/+33 |
| | |||||
* | implement defnode() | Natanael Copa | 2010-10-15 | 1 | -0/+10 |
| | |||||
* | implement defvar() | Natanael Copa | 2010-10-15 | 1 | -7/+16 |
| | |||||
* | implement mv() | Natanael Copa | 2010-10-15 | 1 | -0/+9 |
| | |||||
* | implement insert() | Natanael Copa | 2010-10-15 | 1 | -0/+10 |
| | |||||
* | implement setm() | Natanael Copa | 2010-10-15 | 1 | -0/+10 |
| | |||||
* | implement rm() | Natanael Copa | 2010-10-15 | 1 | -0/+8 |
| | |||||
* | implement load() | Natanael Copa | 2010-10-15 | 1 | -0/+7 |
| | |||||
* | implement save() | Natanael Copa | 2010-10-15 | 1 | -0/+6 |
| | |||||
* | implement set() | Natanael Copa | 2010-10-15 | 1 | -0/+12 |
| | |||||
* | simplify aug_checkarg | Natanael Copa | 2010-10-15 | 1 | -30/+31 |
| | | | | return augeas* rather than augeas** | ||||
* | print supports file handle arg. error handling | Natanael Copa | 2010-10-15 | 1 | -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 cleanup | Natanael Copa | 2010-10-15 | 1 | -13/+11 |
| | | | | support close() | ||||
* | support passing options to init | Natanael Copa | 2010-10-15 | 1 | -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 commit | Natanael Copa | 2010-10-14 | 1 | -0/+104 |