├── .gitignore ├── .settings └── org.eclipse.php.core.prefs ├── CustomFunctions ├── XMLAttribute.fmfn ├── XMLFindNode.fmfn ├── XMLNode.fmfn ├── XMLNodeAttribute.fmfn ├── XMLValue.fmfn └── XMLXPath.fmfn ├── Examples.md ├── LICENSE └── README.md /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | .project 3 | .DS_Store 4 | -------------------------------------------------------------------------------- /.settings/org.eclipse.php.core.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | include_path= 3 | -------------------------------------------------------------------------------- /CustomFunctions/XMLAttribute.fmfn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matatirosolutions/fm-xml-cf/HEAD/CustomFunctions/XMLAttribute.fmfn -------------------------------------------------------------------------------- /CustomFunctions/XMLFindNode.fmfn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matatirosolutions/fm-xml-cf/HEAD/CustomFunctions/XMLFindNode.fmfn -------------------------------------------------------------------------------- /CustomFunctions/XMLNode.fmfn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matatirosolutions/fm-xml-cf/HEAD/CustomFunctions/XMLNode.fmfn -------------------------------------------------------------------------------- /CustomFunctions/XMLNodeAttribute.fmfn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matatirosolutions/fm-xml-cf/HEAD/CustomFunctions/XMLNodeAttribute.fmfn -------------------------------------------------------------------------------- /CustomFunctions/XMLValue.fmfn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matatirosolutions/fm-xml-cf/HEAD/CustomFunctions/XMLValue.fmfn -------------------------------------------------------------------------------- /CustomFunctions/XMLXPath.fmfn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matatirosolutions/fm-xml-cf/HEAD/CustomFunctions/XMLXPath.fmfn -------------------------------------------------------------------------------- /Examples.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matatirosolutions/fm-xml-cf/HEAD/Examples.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matatirosolutions/fm-xml-cf/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matatirosolutions/fm-xml-cf/HEAD/README.md --------------------------------------------------------------------------------