├── .gitignore ├── .gitmodules ├── README.textile ├── app.js ├── attachments ├── images │ ├── ajax-loader.gif │ ├── ajax-loader2.gif │ ├── arrowdown.gif │ ├── arrowleft.gif │ ├── arrowright.gif │ ├── arrowup.gif │ ├── bl.gif │ ├── bl.png │ ├── br.gif │ ├── br.png │ ├── css3buttons_backgrounds.png │ ├── darrowdown.gif │ ├── darrowleft.gif │ ├── darrowright.gif │ ├── darrowup.gif │ ├── deletelabel.png │ ├── itunes.png │ ├── loading-bar.gif │ ├── pbar-ani.gif │ ├── rarrowdown.gif │ ├── rarrowleft.gif │ ├── rarrowright.gif │ ├── rarrowup.gif │ ├── tl.gif │ ├── tl.png │ ├── tr.gif │ ├── tr.png │ ├── wait.gif │ └── x.png ├── pages │ └── monocles.html ├── script │ ├── lib │ │ ├── jquery-1.6.2.min.js │ │ ├── jquery.bgiframe.min.js │ │ ├── jquery.cluetip.js │ │ ├── jquery.couch.app.js │ │ ├── jquery.couch2.js │ │ ├── jquery.fileupload-ui.js │ │ ├── jquery.fileupload.js │ │ ├── jquery.hoverIntent.js │ │ ├── jquery.infieldlabel.js │ │ ├── jquery.masonry.min.js │ │ ├── jquery.mustache.js │ │ ├── jquery.timeago.js │ │ ├── md5.js │ │ ├── microevent.js │ │ ├── sammy-0.6.3.min.js │ │ └── underscore.js │ ├── monocles.js │ ├── site.js │ └── util.js └── style │ ├── blueprint-screen.css │ ├── brandongrotesque_light │ ├── Brandon_light-webfont.eot │ ├── Brandon_light-webfont.svg │ ├── Brandon_light-webfont.ttf │ ├── Brandon_light-webfont.woff │ ├── Extras │ │ ├── Brandon_light-webfont.svgz │ │ └── alt_base64_stylesheet.css │ ├── demo.html │ └── stylesheet.css │ ├── css3buttons.css │ ├── jquery.cluetip.css │ ├── jquery.fileupload-ui.css │ ├── monocles.css │ └── ui.css ├── common ├── atom.js ├── base64.js ├── crypto.js ├── md5.js ├── mustache.js ├── rfc3339.js ├── sax.js ├── underscore.js ├── uri-template.js ├── validate.js ├── webfinger-buzz.js ├── webfinger-client.js ├── xml2js.js ├── xrd.js └── xrd_gen.js ├── processors ├── README.md ├── imageresize.js └── mimetypes.js └── templates ├── feed.atom ├── lrdd.xml ├── profile.html └── xrd.xml /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | .couchapprc 3 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-mapper/monocles/HEAD/.gitmodules -------------------------------------------------------------------------------- /README.textile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-mapper/monocles/HEAD/README.textile -------------------------------------------------------------------------------- /app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-mapper/monocles/HEAD/app.js -------------------------------------------------------------------------------- /attachments/images/ajax-loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-mapper/monocles/HEAD/attachments/images/ajax-loader.gif -------------------------------------------------------------------------------- /attachments/images/ajax-loader2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-mapper/monocles/HEAD/attachments/images/ajax-loader2.gif -------------------------------------------------------------------------------- /attachments/images/arrowdown.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-mapper/monocles/HEAD/attachments/images/arrowdown.gif -------------------------------------------------------------------------------- /attachments/images/arrowleft.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-mapper/monocles/HEAD/attachments/images/arrowleft.gif -------------------------------------------------------------------------------- /attachments/images/arrowright.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-mapper/monocles/HEAD/attachments/images/arrowright.gif -------------------------------------------------------------------------------- /attachments/images/arrowup.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-mapper/monocles/HEAD/attachments/images/arrowup.gif -------------------------------------------------------------------------------- /attachments/images/bl.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-mapper/monocles/HEAD/attachments/images/bl.gif -------------------------------------------------------------------------------- /attachments/images/bl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-mapper/monocles/HEAD/attachments/images/bl.png -------------------------------------------------------------------------------- /attachments/images/br.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-mapper/monocles/HEAD/attachments/images/br.gif -------------------------------------------------------------------------------- /attachments/images/br.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-mapper/monocles/HEAD/attachments/images/br.png -------------------------------------------------------------------------------- /attachments/images/css3buttons_backgrounds.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-mapper/monocles/HEAD/attachments/images/css3buttons_backgrounds.png -------------------------------------------------------------------------------- /attachments/images/darrowdown.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-mapper/monocles/HEAD/attachments/images/darrowdown.gif -------------------------------------------------------------------------------- /attachments/images/darrowleft.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-mapper/monocles/HEAD/attachments/images/darrowleft.gif -------------------------------------------------------------------------------- /attachments/images/darrowright.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-mapper/monocles/HEAD/attachments/images/darrowright.gif -------------------------------------------------------------------------------- /attachments/images/darrowup.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-mapper/monocles/HEAD/attachments/images/darrowup.gif -------------------------------------------------------------------------------- /attachments/images/deletelabel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-mapper/monocles/HEAD/attachments/images/deletelabel.png -------------------------------------------------------------------------------- /attachments/images/itunes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-mapper/monocles/HEAD/attachments/images/itunes.png -------------------------------------------------------------------------------- /attachments/images/loading-bar.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-mapper/monocles/HEAD/attachments/images/loading-bar.gif -------------------------------------------------------------------------------- /attachments/images/pbar-ani.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-mapper/monocles/HEAD/attachments/images/pbar-ani.gif -------------------------------------------------------------------------------- /attachments/images/rarrowdown.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-mapper/monocles/HEAD/attachments/images/rarrowdown.gif -------------------------------------------------------------------------------- /attachments/images/rarrowleft.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-mapper/monocles/HEAD/attachments/images/rarrowleft.gif -------------------------------------------------------------------------------- /attachments/images/rarrowright.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-mapper/monocles/HEAD/attachments/images/rarrowright.gif -------------------------------------------------------------------------------- /attachments/images/rarrowup.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-mapper/monocles/HEAD/attachments/images/rarrowup.gif -------------------------------------------------------------------------------- /attachments/images/tl.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-mapper/monocles/HEAD/attachments/images/tl.gif -------------------------------------------------------------------------------- /attachments/images/tl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-mapper/monocles/HEAD/attachments/images/tl.png -------------------------------------------------------------------------------- /attachments/images/tr.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-mapper/monocles/HEAD/attachments/images/tr.gif -------------------------------------------------------------------------------- /attachments/images/tr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-mapper/monocles/HEAD/attachments/images/tr.png -------------------------------------------------------------------------------- /attachments/images/wait.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-mapper/monocles/HEAD/attachments/images/wait.gif -------------------------------------------------------------------------------- /attachments/images/x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-mapper/monocles/HEAD/attachments/images/x.png -------------------------------------------------------------------------------- /attachments/pages/monocles.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-mapper/monocles/HEAD/attachments/pages/monocles.html -------------------------------------------------------------------------------- /attachments/script/lib/jquery-1.6.2.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-mapper/monocles/HEAD/attachments/script/lib/jquery-1.6.2.min.js -------------------------------------------------------------------------------- /attachments/script/lib/jquery.bgiframe.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-mapper/monocles/HEAD/attachments/script/lib/jquery.bgiframe.min.js -------------------------------------------------------------------------------- /attachments/script/lib/jquery.cluetip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-mapper/monocles/HEAD/attachments/script/lib/jquery.cluetip.js -------------------------------------------------------------------------------- /attachments/script/lib/jquery.couch.app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-mapper/monocles/HEAD/attachments/script/lib/jquery.couch.app.js -------------------------------------------------------------------------------- /attachments/script/lib/jquery.couch2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-mapper/monocles/HEAD/attachments/script/lib/jquery.couch2.js -------------------------------------------------------------------------------- /attachments/script/lib/jquery.fileupload-ui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-mapper/monocles/HEAD/attachments/script/lib/jquery.fileupload-ui.js -------------------------------------------------------------------------------- /attachments/script/lib/jquery.fileupload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-mapper/monocles/HEAD/attachments/script/lib/jquery.fileupload.js -------------------------------------------------------------------------------- /attachments/script/lib/jquery.hoverIntent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-mapper/monocles/HEAD/attachments/script/lib/jquery.hoverIntent.js -------------------------------------------------------------------------------- /attachments/script/lib/jquery.infieldlabel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-mapper/monocles/HEAD/attachments/script/lib/jquery.infieldlabel.js -------------------------------------------------------------------------------- /attachments/script/lib/jquery.masonry.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-mapper/monocles/HEAD/attachments/script/lib/jquery.masonry.min.js -------------------------------------------------------------------------------- /attachments/script/lib/jquery.mustache.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-mapper/monocles/HEAD/attachments/script/lib/jquery.mustache.js -------------------------------------------------------------------------------- /attachments/script/lib/jquery.timeago.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-mapper/monocles/HEAD/attachments/script/lib/jquery.timeago.js -------------------------------------------------------------------------------- /attachments/script/lib/md5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-mapper/monocles/HEAD/attachments/script/lib/md5.js -------------------------------------------------------------------------------- /attachments/script/lib/microevent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-mapper/monocles/HEAD/attachments/script/lib/microevent.js -------------------------------------------------------------------------------- /attachments/script/lib/sammy-0.6.3.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-mapper/monocles/HEAD/attachments/script/lib/sammy-0.6.3.min.js -------------------------------------------------------------------------------- /attachments/script/lib/underscore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-mapper/monocles/HEAD/attachments/script/lib/underscore.js -------------------------------------------------------------------------------- /attachments/script/monocles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-mapper/monocles/HEAD/attachments/script/monocles.js -------------------------------------------------------------------------------- /attachments/script/site.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-mapper/monocles/HEAD/attachments/script/site.js -------------------------------------------------------------------------------- /attachments/script/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-mapper/monocles/HEAD/attachments/script/util.js -------------------------------------------------------------------------------- /attachments/style/blueprint-screen.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-mapper/monocles/HEAD/attachments/style/blueprint-screen.css -------------------------------------------------------------------------------- /attachments/style/brandongrotesque_light/Brandon_light-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-mapper/monocles/HEAD/attachments/style/brandongrotesque_light/Brandon_light-webfont.eot -------------------------------------------------------------------------------- /attachments/style/brandongrotesque_light/Brandon_light-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-mapper/monocles/HEAD/attachments/style/brandongrotesque_light/Brandon_light-webfont.svg -------------------------------------------------------------------------------- /attachments/style/brandongrotesque_light/Brandon_light-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-mapper/monocles/HEAD/attachments/style/brandongrotesque_light/Brandon_light-webfont.ttf -------------------------------------------------------------------------------- /attachments/style/brandongrotesque_light/Brandon_light-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-mapper/monocles/HEAD/attachments/style/brandongrotesque_light/Brandon_light-webfont.woff -------------------------------------------------------------------------------- /attachments/style/brandongrotesque_light/Extras/Brandon_light-webfont.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-mapper/monocles/HEAD/attachments/style/brandongrotesque_light/Extras/Brandon_light-webfont.svgz -------------------------------------------------------------------------------- /attachments/style/brandongrotesque_light/Extras/alt_base64_stylesheet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-mapper/monocles/HEAD/attachments/style/brandongrotesque_light/Extras/alt_base64_stylesheet.css -------------------------------------------------------------------------------- /attachments/style/brandongrotesque_light/demo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-mapper/monocles/HEAD/attachments/style/brandongrotesque_light/demo.html -------------------------------------------------------------------------------- /attachments/style/brandongrotesque_light/stylesheet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-mapper/monocles/HEAD/attachments/style/brandongrotesque_light/stylesheet.css -------------------------------------------------------------------------------- /attachments/style/css3buttons.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-mapper/monocles/HEAD/attachments/style/css3buttons.css -------------------------------------------------------------------------------- /attachments/style/jquery.cluetip.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-mapper/monocles/HEAD/attachments/style/jquery.cluetip.css -------------------------------------------------------------------------------- /attachments/style/jquery.fileupload-ui.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-mapper/monocles/HEAD/attachments/style/jquery.fileupload-ui.css -------------------------------------------------------------------------------- /attachments/style/monocles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-mapper/monocles/HEAD/attachments/style/monocles.css -------------------------------------------------------------------------------- /attachments/style/ui.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-mapper/monocles/HEAD/attachments/style/ui.css -------------------------------------------------------------------------------- /common/atom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-mapper/monocles/HEAD/common/atom.js -------------------------------------------------------------------------------- /common/base64.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-mapper/monocles/HEAD/common/base64.js -------------------------------------------------------------------------------- /common/crypto.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-mapper/monocles/HEAD/common/crypto.js -------------------------------------------------------------------------------- /common/md5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-mapper/monocles/HEAD/common/md5.js -------------------------------------------------------------------------------- /common/mustache.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-mapper/monocles/HEAD/common/mustache.js -------------------------------------------------------------------------------- /common/rfc3339.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-mapper/monocles/HEAD/common/rfc3339.js -------------------------------------------------------------------------------- /common/sax.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-mapper/monocles/HEAD/common/sax.js -------------------------------------------------------------------------------- /common/underscore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-mapper/monocles/HEAD/common/underscore.js -------------------------------------------------------------------------------- /common/uri-template.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-mapper/monocles/HEAD/common/uri-template.js -------------------------------------------------------------------------------- /common/validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-mapper/monocles/HEAD/common/validate.js -------------------------------------------------------------------------------- /common/webfinger-buzz.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-mapper/monocles/HEAD/common/webfinger-buzz.js -------------------------------------------------------------------------------- /common/webfinger-client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-mapper/monocles/HEAD/common/webfinger-client.js -------------------------------------------------------------------------------- /common/xml2js.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-mapper/monocles/HEAD/common/xml2js.js -------------------------------------------------------------------------------- /common/xrd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-mapper/monocles/HEAD/common/xrd.js -------------------------------------------------------------------------------- /common/xrd_gen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-mapper/monocles/HEAD/common/xrd_gen.js -------------------------------------------------------------------------------- /processors/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-mapper/monocles/HEAD/processors/README.md -------------------------------------------------------------------------------- /processors/imageresize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-mapper/monocles/HEAD/processors/imageresize.js -------------------------------------------------------------------------------- /processors/mimetypes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-mapper/monocles/HEAD/processors/mimetypes.js -------------------------------------------------------------------------------- /templates/feed.atom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-mapper/monocles/HEAD/templates/feed.atom -------------------------------------------------------------------------------- /templates/lrdd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-mapper/monocles/HEAD/templates/lrdd.xml -------------------------------------------------------------------------------- /templates/profile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-mapper/monocles/HEAD/templates/profile.html -------------------------------------------------------------------------------- /templates/xrd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-mapper/monocles/HEAD/templates/xrd.xml --------------------------------------------------------------------------------