This commit is contained in:
Kyle Maxwell 2008-12-31 14:21:01 -08:00
parent b47b1c4c33
commit 9691541aa6
2 changed files with 7 additions and 2 deletions

6
TODO
View File

@ -13,12 +13,14 @@
# - functions inside magic groups?!?!
# - shortcut functions possible (need c hash table)
# - fix position()
- regexp tests
# - regexp tests
# - define a bunch of shortcut functions
- rescope function
- join function?!?!
- memory leaks
- debugging options
- check linux build
- python
- define a bunch of shortcut functions
- fix not()/set-difference
- complain if empty / runtime no-match errors
- CSS equations

View File

@ -562,6 +562,9 @@ char* xpath_alias(char* key) {
void init_xpath_alias() {
alias_hash = xmlHashCreate(100);
xmlHashAddEntry(alias_hash, "html", "dex:html-document");
xmlHashAddEntry(alias_hash, "match", "regexp:match");
xmlHashAddEntry(alias_hash, "replace", "regexp:replace");
xmlHashAddEntry(alias_hash, "test", "regexp:test");
}
char* myparse(char* string){