├── .gitignore ├── .travis.yml ├── LICENSE ├── Makefile ├── README.md ├── erlang.mk ├── misc ├── pal-authenticate.png └── pal-authenticate.xml ├── rebar.config └── src ├── pal.app.src ├── pal.erl ├── pal_authentication.erl ├── pal_http.erl └── pal_workflow.erl /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manifest/pal/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manifest/pal/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manifest/pal/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manifest/pal/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manifest/pal/HEAD/README.md -------------------------------------------------------------------------------- /erlang.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manifest/pal/HEAD/erlang.mk -------------------------------------------------------------------------------- /misc/pal-authenticate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manifest/pal/HEAD/misc/pal-authenticate.png -------------------------------------------------------------------------------- /misc/pal-authenticate.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manifest/pal/HEAD/misc/pal-authenticate.xml -------------------------------------------------------------------------------- /rebar.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manifest/pal/HEAD/rebar.config -------------------------------------------------------------------------------- /src/pal.app.src: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manifest/pal/HEAD/src/pal.app.src -------------------------------------------------------------------------------- /src/pal.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manifest/pal/HEAD/src/pal.erl -------------------------------------------------------------------------------- /src/pal_authentication.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manifest/pal/HEAD/src/pal_authentication.erl -------------------------------------------------------------------------------- /src/pal_http.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manifest/pal/HEAD/src/pal_http.erl -------------------------------------------------------------------------------- /src/pal_workflow.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manifest/pal/HEAD/src/pal_workflow.erl --------------------------------------------------------------------------------