├── .gitignore ├── .gitmodules ├── .htaccess ├── Gruntfile.js ├── LICENSE ├── README.md ├── index.html ├── ldpframework.js ├── ldpstore.js ├── package.json ├── templates ├── todo.handlebars └── todolist.handlebars ├── todostyle.css └── webcomponents.html /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | npm-debug.log 3 | *~ 4 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Initiative/LDP-framework/HEAD/.gitmodules -------------------------------------------------------------------------------- /.htaccess: -------------------------------------------------------------------------------- 1 | Header set Access-Control-Allow-Origin "*" 2 | -------------------------------------------------------------------------------- /Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Initiative/LDP-framework/HEAD/Gruntfile.js -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Initiative/LDP-framework/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Initiative/LDP-framework/HEAD/README.md -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Initiative/LDP-framework/HEAD/index.html -------------------------------------------------------------------------------- /ldpframework.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Initiative/LDP-framework/HEAD/ldpframework.js -------------------------------------------------------------------------------- /ldpstore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Initiative/LDP-framework/HEAD/ldpstore.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Initiative/LDP-framework/HEAD/package.json -------------------------------------------------------------------------------- /templates/todo.handlebars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Initiative/LDP-framework/HEAD/templates/todo.handlebars -------------------------------------------------------------------------------- /templates/todolist.handlebars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Initiative/LDP-framework/HEAD/templates/todolist.handlebars -------------------------------------------------------------------------------- /todostyle.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Initiative/LDP-framework/HEAD/todostyle.css -------------------------------------------------------------------------------- /webcomponents.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Initiative/LDP-framework/HEAD/webcomponents.html --------------------------------------------------------------------------------