├── .gitignore ├── .mailmap ├── .travis.yml ├── CHANGES ├── CONTRIBUTING.md ├── LICENSE ├── Makefile.PL ├── README.mkdn ├── bin └── statocles ├── cpanfile ├── dist.ini ├── index.html ├── lib ├── Statocles.pm └── Statocles │ ├── App.pm │ ├── App │ ├── Basic.pm │ ├── Blog.pm │ ├── Perldoc.pm │ ├── Plain.pm │ └── Static.pm │ ├── Base.pm │ ├── Command.pm │ ├── Command │ ├── apps.pm │ ├── build.pm │ ├── bundle.pm │ ├── create.pm │ ├── daemon.pm │ ├── deploy.pm │ └── status.pm │ ├── Deploy.pm │ ├── Deploy │ ├── File.pm │ └── Git.pm │ ├── Document.pm │ ├── Event.pm │ ├── File.pm │ ├── Help.pod │ ├── Help │ ├── Config.pod │ ├── Content.pod │ ├── Deploy.pod │ ├── Develop.pod │ ├── Error.pod │ ├── Policy.pod │ ├── Setup.pod │ ├── Theme.pod │ └── Upgrading.pod │ ├── Image.pm │ ├── Link.pm │ ├── Link │ └── Tree.pm │ ├── Page.pm │ ├── Page │ ├── Document.pm │ ├── File.pm │ ├── List.pm │ ├── ListItem.pm │ └── Plain.pm │ ├── Person.pm │ ├── Plugin.pm │ ├── Plugin │ ├── Diagram │ │ └── Mermaid.pm │ ├── HTMLLint.pm │ ├── Highlight.pm │ └── LinkCheck.pm │ ├── Role │ └── PageAttrs.pm │ ├── Site.pm │ ├── Store.pm │ ├── Store │ └── File.pm │ ├── Template.pm │ ├── Test.pm │ ├── Theme.pm │ ├── Types.pm │ └── Util.pm ├── share ├── create │ ├── blog │ │ └── post.markdown │ ├── page │ │ └── index.markdown │ ├── script.yml │ └── site.yml ├── theme │ ├── bootstrap │ │ ├── blog │ │ │ ├── index.atom.ep │ │ │ ├── index.html.ep │ │ │ ├── index.rss.ep │ │ │ └── post.html.ep │ │ ├── css │ │ │ └── statocles-bootstrap.css │ │ ├── layout │ │ │ ├── blank.html.ep │ │ │ ├── default.html.ep │ │ │ └── full-width.html.ep │ │ ├── perldoc │ │ │ ├── pod.html.ep │ │ │ └── source.html.ep │ │ ├── plugin │ │ │ └── highlight │ │ │ │ ├── default.css │ │ │ │ ├── solarized-dark.css │ │ │ │ └── solarized-light.css │ │ └── site │ │ │ ├── footer.html.ep │ │ │ ├── head_after.html.ep │ │ │ ├── header_after.html.ep │ │ │ ├── navbar_extra.html.ep │ │ │ ├── robots.txt.ep │ │ │ ├── sidebar_before.html.ep │ │ │ ├── sitemap.xml.ep │ │ │ └── style.html │ └── default │ │ ├── blog │ │ ├── index.atom.ep │ │ ├── index.html.ep │ │ ├── index.rss.ep │ │ └── post.html.ep │ │ ├── css │ │ ├── normalize.css │ │ ├── skeleton.css │ │ └── statocles-default.css │ │ ├── layout │ │ ├── blank.html.ep │ │ ├── default.html.ep │ │ └── full-width.html.ep │ │ ├── perldoc │ │ ├── pod.html.ep │ │ └── source.html.ep │ │ ├── plugin │ │ └── highlight │ │ │ ├── default.css │ │ │ ├── solarized-dark.css │ │ │ └── solarized-light.css │ │ └── site │ │ ├── footer.html.ep │ │ ├── head_after.html.ep │ │ ├── header_after.html.ep │ │ ├── navbar_extra.html.ep │ │ ├── robots.txt.ep │ │ ├── sidebar_before.html.ep │ │ ├── sitemap.xml.ep │ │ └── style.html └── zsh │ └── _statocles ├── site.yml ├── site ├── blog │ ├── 2014 │ │ └── 12 │ │ │ ├── 14 │ │ │ └── release-v0.028.markdown │ │ │ ├── 22 │ │ │ └── release-v0.029.markdown │ │ │ ├── 23 │ │ │ └── release-v0.030.markdown │ │ │ ├── 25 │ │ │ └── release-v0.031.markdown │ │ │ ├── 07 │ │ │ └── statocles-initial-public-(alpha)-release.markdown │ │ │ └── 08 │ │ │ └── release-v0.027.markdown │ ├── 2015 │ │ ├── 11 │ │ │ ├── 11 │ │ │ │ └── release-v0-058 │ │ │ │ │ └── index.markdown │ │ │ ├── 12 │ │ │ │ └── release-v0-059 │ │ │ │ │ └── index.markdown │ │ │ ├── 23 │ │ │ │ └── release-v0-060 │ │ │ │ │ └── index.markdown │ │ │ └── 05 │ │ │ │ ├── release-v0-056 │ │ │ │ └── index.markdown │ │ │ │ └── release-v0-057 │ │ │ │ └── index.markdown │ │ ├── 12 │ │ │ └── 13 │ │ │ │ └── release-v0-061 │ │ │ │ └── index.markdown │ │ ├── 01 │ │ │ ├── 11 │ │ │ │ └── release-v0.033.markdown │ │ │ ├── 25 │ │ │ │ └── release-v0.034.markdown │ │ │ └── 04 │ │ │ │ └── release-v0.032.markdown │ │ ├── 02 │ │ │ ├── 11 │ │ │ │ └── release-v0.036.markdown │ │ │ ├── 12 │ │ │ │ └── release-v0.037.markdown │ │ │ ├── 14 │ │ │ │ └── release-v0.038.markdown │ │ │ ├── 22 │ │ │ │ └── statocles-beta-(release-v0.039) │ │ │ │ │ └── index.markdown │ │ │ └── 08 │ │ │ │ └── release-v0.035.markdown │ │ ├── 03 │ │ │ ├── 16 │ │ │ │ └── release-v0.042 │ │ │ │ │ └── index.markdown │ │ │ ├── 24 │ │ │ │ └── release-v0.043 │ │ │ │ │ └── index.markdown │ │ │ ├── 02 │ │ │ │ └── release-v0.040 │ │ │ │ │ └── index.markdown │ │ │ └── 08 │ │ │ │ └── release-v0.041 │ │ │ │ └── index.markdown │ │ ├── 04 │ │ │ ├── 16 │ │ │ │ └── release-v0-045 │ │ │ │ │ └── index.markdown │ │ │ └── 06 │ │ │ │ └── release-v0.044 │ │ │ │ └── index.markdown │ │ ├── 05 │ │ │ └── 24 │ │ │ │ └── release-v0-046 │ │ │ │ └── index.markdown │ │ ├── 06 │ │ │ ├── 22 │ │ │ │ └── release-v0-048 │ │ │ │ │ └── index.markdown │ │ │ ├── 23 │ │ │ │ └── release-v0-049 │ │ │ │ │ └── index.markdown │ │ │ ├── 28 │ │ │ │ └── release-v0-050 │ │ │ │ │ └── index.markdown │ │ │ └── 03 │ │ │ │ └── release-v0-047 │ │ │ │ └── index.markdown │ │ ├── 07 │ │ │ ├── 13 │ │ │ │ └── release-v0-052 │ │ │ │ │ └── index.markdown │ │ │ ├── 20 │ │ │ │ └── release-v0-053 │ │ │ │ │ └── index.markdown │ │ │ └── 06 │ │ │ │ └── release-v0-051 │ │ │ │ └── index.markdown │ │ ├── 08 │ │ │ └── 11 │ │ │ │ └── release-v0-054 │ │ │ │ └── index.markdown │ │ └── 09 │ │ │ └── 22 │ │ │ └── release-v0-055 │ │ │ └── index.markdown │ ├── 2016 │ │ ├── 10 │ │ │ ├── 12 │ │ │ │ └── release-v0-078 │ │ │ │ │ └── index.markdown │ │ │ ├── 14 │ │ │ │ └── release-v0-079 │ │ │ │ │ └── index.markdown │ │ │ ├── 20 │ │ │ │ └── release-v0-080 │ │ │ │ │ └── index.markdown │ │ │ └── 27 │ │ │ │ └── release-v0-081 │ │ │ │ └── index.markdown │ │ ├── 01 │ │ │ ├── 01 │ │ │ │ └── release-v0-062 │ │ │ │ │ └── index.markdown │ │ │ ├── 03 │ │ │ │ └── release-v0-063 │ │ │ │ │ └── index.markdown │ │ │ ├── 04 │ │ │ │ └── release-v0-064 │ │ │ │ │ └── index.markdown │ │ │ ├── 06 │ │ │ │ └── release-v0-065 │ │ │ │ │ └── index.markdown │ │ │ └── 09 │ │ │ │ └── release-v0-066 │ │ │ │ └── index.markdown │ │ ├── 02 │ │ │ ├── 10 │ │ │ │ └── release-v0-068 │ │ │ │ │ └── index.markdown │ │ │ ├── 13 │ │ │ │ └── release-v0-069 │ │ │ │ │ └── index.markdown │ │ │ ├── 21 │ │ │ │ └── release-v0-070 │ │ │ │ │ └── index.markdown │ │ │ ├── 28 │ │ │ │ └── release-v0-071 │ │ │ │ │ └── index.markdown │ │ │ └── 07 │ │ │ │ └── release-v0-067 │ │ │ │ └── index.markdown │ │ ├── 03 │ │ │ ├── 25 │ │ │ │ └── release-v0-074 │ │ │ │ │ └── index.markdown │ │ │ ├── 04 │ │ │ │ └── release-v0-072 │ │ │ │ │ └── index.markdown │ │ │ └── 07 │ │ │ │ └── release-v0-073 │ │ │ │ └── index.markdown │ │ └── 05 │ │ │ ├── 22 │ │ │ └── release-v0-075 │ │ │ │ └── index.markdown │ │ │ └── 27 │ │ │ └── release-v0-076 │ │ │ └── index.markdown │ ├── 2017 │ │ ├── 11 │ │ │ └── 28 │ │ │ │ └── release-v0-087 │ │ │ │ └── index.markdown │ │ ├── 01 │ │ │ └── 31 │ │ │ │ └── release-v0-083 │ │ │ │ └── index.markdown │ │ ├── 08 │ │ │ └── 09 │ │ │ │ └── release-v0-084 │ │ │ │ └── index.markdown │ │ └── 09 │ │ │ ├── 13 │ │ │ └── release-v0-086 │ │ │ │ └── index.markdown │ │ │ └── 08 │ │ │ └── release-v0-085 │ │ │ └── index.markdown │ └── 2018 │ │ └── 03 │ │ ├── 19 │ │ └── release-v0-088 │ │ │ └── index.markdown │ │ ├── 25 │ │ └── release-v0-089 │ │ │ └── index.markdown │ │ ├── 26 │ │ └── release-v0-090 │ │ │ └── index.markdown │ │ ├── 27 │ │ └── release-v0-091 │ │ │ └── index.markdown │ │ ├── 29 │ │ └── release-v0-092 │ │ │ └── index.markdown │ │ └── 30 │ │ └── release-v0-093 │ │ └── index.markdown ├── docs │ ├── config │ │ └── index.markdown │ ├── content │ │ └── index.markdown │ ├── develop │ │ └── index.markdown │ ├── index.markdown │ ├── install │ │ └── index.markdown │ └── theme │ │ └── index.markdown ├── gallery │ ├── chicagopm-inner.jpg │ ├── chicagopm-main.jpg │ ├── index.markdown │ └── indiepalate.jpg ├── index.markdown ├── release-blog.pl └── theme │ ├── blog │ ├── index.atom.ep │ ├── index.html.ep │ ├── index.rss.ep │ └── post.html.ep │ ├── css │ ├── normalize.css │ ├── skeleton.css │ └── statocles-default.css │ ├── images │ └── column.png │ ├── layout │ ├── default.html.ep │ └── full-width.html.ep │ ├── perldoc │ ├── pod.html.ep │ └── source.html.ep │ ├── plugin │ └── highlight │ │ ├── default.css │ │ ├── solarized-dark.css │ │ └── solarized-light.css │ └── site │ ├── footer.html.ep │ ├── head_after.html.ep │ ├── header_after.html.ep │ ├── navbar_extra.html.ep │ ├── robots.txt.ep │ ├── sidebar_before.html.ep │ ├── sitemap.xml.ep │ └── style.html ├── t ├── app │ ├── blog │ │ ├── command.t │ │ ├── constructor.t │ │ ├── pages.t │ │ ├── post_date.t │ │ ├── recent_posts.t │ │ └── slugs.t │ ├── events.t │ ├── perldoc │ │ ├── constructor.t │ │ ├── highlight.t │ │ └── pages.t │ ├── template.t │ └── url.t ├── command │ ├── apps.t │ ├── build.t │ ├── bundle.t │ ├── create.t │ ├── daemon.t │ ├── deploy.t │ ├── error.t │ ├── help_and_version.t │ └── mojo_app.t ├── deploy │ ├── file.t │ └── git.t ├── deprecated.t ├── document.t ├── image.t ├── lib │ ├── My │ │ └── Test.pm │ ├── TestApp.pm │ ├── TestDeploy.pm │ ├── TestDocument.pm │ └── TestStore.pm ├── link.t ├── link │ └── tree.t ├── page │ ├── basename.t │ ├── content_sections.t │ ├── document.t │ ├── file.t │ ├── images.t │ ├── links.t │ ├── list.t │ ├── list_item.t │ ├── plain.t │ └── type.t ├── person.t ├── plugin.t ├── plugin │ ├── highlight.t │ ├── html_lint.t │ ├── link_check.t │ └── mermaid.t ├── share │ ├── app │ │ ├── basic-diagrams │ │ │ ├── gantt.md │ │ │ └── index.md │ │ └── perldoc │ │ │ ├── bin-weaver │ │ │ ├── command.pl │ │ │ └── shellcmd │ │ │ ├── bin │ │ │ ├── command.pl │ │ │ └── shellcmd │ │ │ ├── lib-weaver │ │ │ ├── External.pm │ │ │ ├── My.pm │ │ │ └── My │ │ │ │ └── Internal.pm │ │ │ ├── lib │ │ │ ├── External.pm │ │ │ ├── Highlight.pm │ │ │ ├── My.pm │ │ │ └── My │ │ │ │ └── Internal.pm │ │ │ └── weaver.ini │ ├── bin │ │ └── editor.pl │ ├── config │ │ ├── bad_char.yml │ │ ├── bad_indent.yml │ │ ├── bad_ref.yml │ │ └── missing_arg.yml │ ├── create │ │ ├── basic_blog_in.txt │ │ ├── basic_blog_out.txt │ │ ├── none_in.txt │ │ ├── none_out.txt │ │ ├── project_file_in.txt │ │ ├── project_file_out.txt │ │ ├── project_file_with_base_in.txt │ │ ├── project_file_with_base_out.txt │ │ ├── project_file_with_https_base_in.txt │ │ └── project_file_with_https_base_out.txt │ ├── deploy │ │ ├── doc.markdown │ │ ├── foo │ │ │ └── index.html │ │ └── index.html │ ├── store │ │ ├── docs │ │ │ ├── date.markdown │ │ │ ├── datetime.markdown │ │ │ ├── ext │ │ │ │ └── short.md │ │ │ ├── image.png │ │ │ ├── json-oneline.markdown │ │ │ ├── json.markdown │ │ │ ├── links │ │ │ │ └── alternate_single.markdown │ │ │ ├── no-frontmatter.markdown │ │ │ ├── path.markdown │ │ │ ├── person.markdown │ │ │ ├── required.markdown │ │ │ ├── tags │ │ │ │ ├── array.markdown │ │ │ │ ├── comma.markdown │ │ │ │ └── single.markdown │ │ │ ├── template │ │ │ │ ├── basic.markdown │ │ │ │ └── leading-slash.markdown │ │ │ ├── text.txt │ │ │ ├── utf8-json.md │ │ │ └── utf8-yml.md │ │ ├── error │ │ │ ├── bad-dates │ │ │ │ └── bad-date.markdown │ │ │ ├── bad-json │ │ │ │ └── bad.markdown │ │ │ ├── bad-links │ │ │ │ └── links.markdown │ │ │ ├── bad-yaml │ │ │ │ └── bad.markdown │ │ │ ├── missing-end-json │ │ │ │ └── missing.markdown │ │ │ └── missing-end-mark │ │ │ │ └── missing.markdown │ │ └── write │ │ │ ├── doc.markdown │ │ │ └── doc_obj.markdown │ ├── theme │ │ ├── blog │ │ │ ├── index.atom.ep │ │ │ ├── index.html.ep │ │ │ ├── index.rss.ep │ │ │ └── post.html.ep │ │ ├── css │ │ │ └── normalize.css │ │ ├── custom │ │ │ ├── blog │ │ │ │ └── index.html.ep │ │ │ ├── layout.html.ep │ │ │ └── robots.txt.ep │ │ ├── document │ │ │ └── recipe.html.ep │ │ ├── include │ │ │ ├── in_both.markdown.ep │ │ │ ├── test.html.ep │ │ │ └── test.markdown.ep │ │ ├── layout │ │ │ ├── default.html.ep │ │ │ └── logo.html.ep │ │ ├── perldoc │ │ │ ├── pod.html.ep │ │ │ └── source.html.ep │ │ └── site │ │ │ ├── include │ │ │ └── extra.html.ep │ │ │ ├── robots.txt.ep │ │ │ └── sitemap.xml.ep │ ├── theme_include │ │ └── include │ │ │ ├── in_both.markdown.ep │ │ │ └── in_include_store.markdown.ep │ └── tmpl │ │ ├── comment.html.ep │ │ ├── error.html.ep │ │ ├── include_empty.html.ep │ │ ├── include_theme_file.html.ep │ │ ├── include_with_empty.html.ep │ │ ├── include_with_html.html.ep │ │ ├── include_with_template.html.ep │ │ ├── include_with_template_args.html.ep │ │ ├── included_html.html │ │ ├── included_template.html.ep │ │ ├── markdown.html.ep │ │ └── page.html.ep ├── site.t ├── statocles.t ├── store.t ├── template │ ├── basic.t │ ├── content.t │ ├── include.t │ └── markdown.t ├── theme │ ├── check.t │ ├── helper.t │ ├── pages.t │ └── template.t ├── types.t └── util.t ├── weaver.ini └── xt └── git ├── build.sh └── test.t /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/.gitignore -------------------------------------------------------------------------------- /.mailmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/.mailmap -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/CHANGES -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile.PL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/Makefile.PL -------------------------------------------------------------------------------- /README.mkdn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/README.mkdn -------------------------------------------------------------------------------- /bin/statocles: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/bin/statocles -------------------------------------------------------------------------------- /cpanfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/cpanfile -------------------------------------------------------------------------------- /dist.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/dist.ini -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/index.html -------------------------------------------------------------------------------- /lib/Statocles.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/lib/Statocles.pm -------------------------------------------------------------------------------- /lib/Statocles/App.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/lib/Statocles/App.pm -------------------------------------------------------------------------------- /lib/Statocles/App/Basic.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/lib/Statocles/App/Basic.pm -------------------------------------------------------------------------------- /lib/Statocles/App/Blog.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/lib/Statocles/App/Blog.pm -------------------------------------------------------------------------------- /lib/Statocles/App/Perldoc.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/lib/Statocles/App/Perldoc.pm -------------------------------------------------------------------------------- /lib/Statocles/App/Plain.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/lib/Statocles/App/Plain.pm -------------------------------------------------------------------------------- /lib/Statocles/App/Static.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/lib/Statocles/App/Static.pm -------------------------------------------------------------------------------- /lib/Statocles/Base.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/lib/Statocles/Base.pm -------------------------------------------------------------------------------- /lib/Statocles/Command.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/lib/Statocles/Command.pm -------------------------------------------------------------------------------- /lib/Statocles/Command/apps.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/lib/Statocles/Command/apps.pm -------------------------------------------------------------------------------- /lib/Statocles/Command/build.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/lib/Statocles/Command/build.pm -------------------------------------------------------------------------------- /lib/Statocles/Command/bundle.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/lib/Statocles/Command/bundle.pm -------------------------------------------------------------------------------- /lib/Statocles/Command/create.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/lib/Statocles/Command/create.pm -------------------------------------------------------------------------------- /lib/Statocles/Command/daemon.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/lib/Statocles/Command/daemon.pm -------------------------------------------------------------------------------- /lib/Statocles/Command/deploy.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/lib/Statocles/Command/deploy.pm -------------------------------------------------------------------------------- /lib/Statocles/Command/status.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/lib/Statocles/Command/status.pm -------------------------------------------------------------------------------- /lib/Statocles/Deploy.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/lib/Statocles/Deploy.pm -------------------------------------------------------------------------------- /lib/Statocles/Deploy/File.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/lib/Statocles/Deploy/File.pm -------------------------------------------------------------------------------- /lib/Statocles/Deploy/Git.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/lib/Statocles/Deploy/Git.pm -------------------------------------------------------------------------------- /lib/Statocles/Document.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/lib/Statocles/Document.pm -------------------------------------------------------------------------------- /lib/Statocles/Event.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/lib/Statocles/Event.pm -------------------------------------------------------------------------------- /lib/Statocles/File.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/lib/Statocles/File.pm -------------------------------------------------------------------------------- /lib/Statocles/Help.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/lib/Statocles/Help.pod -------------------------------------------------------------------------------- /lib/Statocles/Help/Config.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/lib/Statocles/Help/Config.pod -------------------------------------------------------------------------------- /lib/Statocles/Help/Content.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/lib/Statocles/Help/Content.pod -------------------------------------------------------------------------------- /lib/Statocles/Help/Deploy.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/lib/Statocles/Help/Deploy.pod -------------------------------------------------------------------------------- /lib/Statocles/Help/Develop.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/lib/Statocles/Help/Develop.pod -------------------------------------------------------------------------------- /lib/Statocles/Help/Error.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/lib/Statocles/Help/Error.pod -------------------------------------------------------------------------------- /lib/Statocles/Help/Policy.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/lib/Statocles/Help/Policy.pod -------------------------------------------------------------------------------- /lib/Statocles/Help/Setup.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/lib/Statocles/Help/Setup.pod -------------------------------------------------------------------------------- /lib/Statocles/Help/Theme.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/lib/Statocles/Help/Theme.pod -------------------------------------------------------------------------------- /lib/Statocles/Help/Upgrading.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/lib/Statocles/Help/Upgrading.pod -------------------------------------------------------------------------------- /lib/Statocles/Image.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/lib/Statocles/Image.pm -------------------------------------------------------------------------------- /lib/Statocles/Link.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/lib/Statocles/Link.pm -------------------------------------------------------------------------------- /lib/Statocles/Link/Tree.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/lib/Statocles/Link/Tree.pm -------------------------------------------------------------------------------- /lib/Statocles/Page.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/lib/Statocles/Page.pm -------------------------------------------------------------------------------- /lib/Statocles/Page/Document.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/lib/Statocles/Page/Document.pm -------------------------------------------------------------------------------- /lib/Statocles/Page/File.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/lib/Statocles/Page/File.pm -------------------------------------------------------------------------------- /lib/Statocles/Page/List.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/lib/Statocles/Page/List.pm -------------------------------------------------------------------------------- /lib/Statocles/Page/ListItem.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/lib/Statocles/Page/ListItem.pm -------------------------------------------------------------------------------- /lib/Statocles/Page/Plain.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/lib/Statocles/Page/Plain.pm -------------------------------------------------------------------------------- /lib/Statocles/Person.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/lib/Statocles/Person.pm -------------------------------------------------------------------------------- /lib/Statocles/Plugin.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/lib/Statocles/Plugin.pm -------------------------------------------------------------------------------- /lib/Statocles/Plugin/Diagram/Mermaid.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/lib/Statocles/Plugin/Diagram/Mermaid.pm -------------------------------------------------------------------------------- /lib/Statocles/Plugin/HTMLLint.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/lib/Statocles/Plugin/HTMLLint.pm -------------------------------------------------------------------------------- /lib/Statocles/Plugin/Highlight.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/lib/Statocles/Plugin/Highlight.pm -------------------------------------------------------------------------------- /lib/Statocles/Plugin/LinkCheck.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/lib/Statocles/Plugin/LinkCheck.pm -------------------------------------------------------------------------------- /lib/Statocles/Role/PageAttrs.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/lib/Statocles/Role/PageAttrs.pm -------------------------------------------------------------------------------- /lib/Statocles/Site.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/lib/Statocles/Site.pm -------------------------------------------------------------------------------- /lib/Statocles/Store.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/lib/Statocles/Store.pm -------------------------------------------------------------------------------- /lib/Statocles/Store/File.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/lib/Statocles/Store/File.pm -------------------------------------------------------------------------------- /lib/Statocles/Template.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/lib/Statocles/Template.pm -------------------------------------------------------------------------------- /lib/Statocles/Test.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/lib/Statocles/Test.pm -------------------------------------------------------------------------------- /lib/Statocles/Theme.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/lib/Statocles/Theme.pm -------------------------------------------------------------------------------- /lib/Statocles/Types.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/lib/Statocles/Types.pm -------------------------------------------------------------------------------- /lib/Statocles/Util.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/lib/Statocles/Util.pm -------------------------------------------------------------------------------- /share/create/blog/post.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/share/create/blog/post.markdown -------------------------------------------------------------------------------- /share/create/page/index.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/share/create/page/index.markdown -------------------------------------------------------------------------------- /share/create/script.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/share/create/script.yml -------------------------------------------------------------------------------- /share/create/site.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/share/create/site.yml -------------------------------------------------------------------------------- /share/theme/bootstrap/blog/index.atom.ep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/share/theme/bootstrap/blog/index.atom.ep -------------------------------------------------------------------------------- /share/theme/bootstrap/blog/index.html.ep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/share/theme/bootstrap/blog/index.html.ep -------------------------------------------------------------------------------- /share/theme/bootstrap/blog/index.rss.ep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/share/theme/bootstrap/blog/index.rss.ep -------------------------------------------------------------------------------- /share/theme/bootstrap/blog/post.html.ep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/share/theme/bootstrap/blog/post.html.ep -------------------------------------------------------------------------------- /share/theme/bootstrap/css/statocles-bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/share/theme/bootstrap/css/statocles-bootstrap.css -------------------------------------------------------------------------------- /share/theme/bootstrap/layout/blank.html.ep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/share/theme/bootstrap/layout/blank.html.ep -------------------------------------------------------------------------------- /share/theme/bootstrap/layout/default.html.ep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/share/theme/bootstrap/layout/default.html.ep -------------------------------------------------------------------------------- /share/theme/bootstrap/layout/full-width.html.ep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/share/theme/bootstrap/layout/full-width.html.ep -------------------------------------------------------------------------------- /share/theme/bootstrap/perldoc/pod.html.ep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/share/theme/bootstrap/perldoc/pod.html.ep -------------------------------------------------------------------------------- /share/theme/bootstrap/perldoc/source.html.ep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/share/theme/bootstrap/perldoc/source.html.ep -------------------------------------------------------------------------------- /share/theme/bootstrap/plugin/highlight/default.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/share/theme/bootstrap/plugin/highlight/default.css -------------------------------------------------------------------------------- /share/theme/bootstrap/plugin/highlight/solarized-dark.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/share/theme/bootstrap/plugin/highlight/solarized-dark.css -------------------------------------------------------------------------------- /share/theme/bootstrap/plugin/highlight/solarized-light.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/share/theme/bootstrap/plugin/highlight/solarized-light.css -------------------------------------------------------------------------------- /share/theme/bootstrap/site/footer.html.ep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /share/theme/bootstrap/site/head_after.html.ep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /share/theme/bootstrap/site/header_after.html.ep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /share/theme/bootstrap/site/navbar_extra.html.ep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /share/theme/bootstrap/site/robots.txt.ep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/share/theme/bootstrap/site/robots.txt.ep -------------------------------------------------------------------------------- /share/theme/bootstrap/site/sidebar_before.html.ep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /share/theme/bootstrap/site/sitemap.xml.ep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/share/theme/bootstrap/site/sitemap.xml.ep -------------------------------------------------------------------------------- /share/theme/bootstrap/site/style.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/share/theme/bootstrap/site/style.html -------------------------------------------------------------------------------- /share/theme/default/blog/index.atom.ep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/share/theme/default/blog/index.atom.ep -------------------------------------------------------------------------------- /share/theme/default/blog/index.html.ep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/share/theme/default/blog/index.html.ep -------------------------------------------------------------------------------- /share/theme/default/blog/index.rss.ep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/share/theme/default/blog/index.rss.ep -------------------------------------------------------------------------------- /share/theme/default/blog/post.html.ep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/share/theme/default/blog/post.html.ep -------------------------------------------------------------------------------- /share/theme/default/css/normalize.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/share/theme/default/css/normalize.css -------------------------------------------------------------------------------- /share/theme/default/css/skeleton.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/share/theme/default/css/skeleton.css -------------------------------------------------------------------------------- /share/theme/default/css/statocles-default.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/share/theme/default/css/statocles-default.css -------------------------------------------------------------------------------- /share/theme/default/layout/blank.html.ep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/share/theme/default/layout/blank.html.ep -------------------------------------------------------------------------------- /share/theme/default/layout/default.html.ep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/share/theme/default/layout/default.html.ep -------------------------------------------------------------------------------- /share/theme/default/layout/full-width.html.ep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/share/theme/default/layout/full-width.html.ep -------------------------------------------------------------------------------- /share/theme/default/perldoc/pod.html.ep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/share/theme/default/perldoc/pod.html.ep -------------------------------------------------------------------------------- /share/theme/default/perldoc/source.html.ep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/share/theme/default/perldoc/source.html.ep -------------------------------------------------------------------------------- /share/theme/default/plugin/highlight/default.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/share/theme/default/plugin/highlight/default.css -------------------------------------------------------------------------------- /share/theme/default/plugin/highlight/solarized-dark.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/share/theme/default/plugin/highlight/solarized-dark.css -------------------------------------------------------------------------------- /share/theme/default/plugin/highlight/solarized-light.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/share/theme/default/plugin/highlight/solarized-light.css -------------------------------------------------------------------------------- /share/theme/default/site/footer.html.ep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /share/theme/default/site/head_after.html.ep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /share/theme/default/site/header_after.html.ep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /share/theme/default/site/navbar_extra.html.ep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /share/theme/default/site/robots.txt.ep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/share/theme/default/site/robots.txt.ep -------------------------------------------------------------------------------- /share/theme/default/site/sidebar_before.html.ep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /share/theme/default/site/sitemap.xml.ep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/share/theme/default/site/sitemap.xml.ep -------------------------------------------------------------------------------- /share/theme/default/site/style.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/share/theme/default/site/style.html -------------------------------------------------------------------------------- /share/zsh/_statocles: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/share/zsh/_statocles -------------------------------------------------------------------------------- /site.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/site.yml -------------------------------------------------------------------------------- /site/blog/2014/12/07/statocles-initial-public-(alpha)-release.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/site/blog/2014/12/07/statocles-initial-public-(alpha)-release.markdown -------------------------------------------------------------------------------- /site/blog/2014/12/08/release-v0.027.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/site/blog/2014/12/08/release-v0.027.markdown -------------------------------------------------------------------------------- /site/blog/2014/12/14/release-v0.028.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/site/blog/2014/12/14/release-v0.028.markdown -------------------------------------------------------------------------------- /site/blog/2014/12/22/release-v0.029.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/site/blog/2014/12/22/release-v0.029.markdown -------------------------------------------------------------------------------- /site/blog/2014/12/23/release-v0.030.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/site/blog/2014/12/23/release-v0.030.markdown -------------------------------------------------------------------------------- /site/blog/2014/12/25/release-v0.031.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/site/blog/2014/12/25/release-v0.031.markdown -------------------------------------------------------------------------------- /site/blog/2015/01/04/release-v0.032.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/site/blog/2015/01/04/release-v0.032.markdown -------------------------------------------------------------------------------- /site/blog/2015/01/11/release-v0.033.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/site/blog/2015/01/11/release-v0.033.markdown -------------------------------------------------------------------------------- /site/blog/2015/01/25/release-v0.034.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/site/blog/2015/01/25/release-v0.034.markdown -------------------------------------------------------------------------------- /site/blog/2015/02/08/release-v0.035.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/site/blog/2015/02/08/release-v0.035.markdown -------------------------------------------------------------------------------- /site/blog/2015/02/11/release-v0.036.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/site/blog/2015/02/11/release-v0.036.markdown -------------------------------------------------------------------------------- /site/blog/2015/02/12/release-v0.037.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/site/blog/2015/02/12/release-v0.037.markdown -------------------------------------------------------------------------------- /site/blog/2015/02/14/release-v0.038.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/site/blog/2015/02/14/release-v0.038.markdown -------------------------------------------------------------------------------- /site/blog/2015/02/22/statocles-beta-(release-v0.039)/index.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/site/blog/2015/02/22/statocles-beta-(release-v0.039)/index.markdown -------------------------------------------------------------------------------- /site/blog/2015/03/02/release-v0.040/index.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/site/blog/2015/03/02/release-v0.040/index.markdown -------------------------------------------------------------------------------- /site/blog/2015/03/08/release-v0.041/index.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/site/blog/2015/03/08/release-v0.041/index.markdown -------------------------------------------------------------------------------- /site/blog/2015/03/16/release-v0.042/index.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/site/blog/2015/03/16/release-v0.042/index.markdown -------------------------------------------------------------------------------- /site/blog/2015/03/24/release-v0.043/index.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/site/blog/2015/03/24/release-v0.043/index.markdown -------------------------------------------------------------------------------- /site/blog/2015/04/06/release-v0.044/index.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/site/blog/2015/04/06/release-v0.044/index.markdown -------------------------------------------------------------------------------- /site/blog/2015/04/16/release-v0-045/index.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/site/blog/2015/04/16/release-v0-045/index.markdown -------------------------------------------------------------------------------- /site/blog/2015/05/24/release-v0-046/index.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/site/blog/2015/05/24/release-v0-046/index.markdown -------------------------------------------------------------------------------- /site/blog/2015/06/03/release-v0-047/index.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/site/blog/2015/06/03/release-v0-047/index.markdown -------------------------------------------------------------------------------- /site/blog/2015/06/22/release-v0-048/index.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/site/blog/2015/06/22/release-v0-048/index.markdown -------------------------------------------------------------------------------- /site/blog/2015/06/23/release-v0-049/index.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/site/blog/2015/06/23/release-v0-049/index.markdown -------------------------------------------------------------------------------- /site/blog/2015/06/28/release-v0-050/index.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/site/blog/2015/06/28/release-v0-050/index.markdown -------------------------------------------------------------------------------- /site/blog/2015/07/06/release-v0-051/index.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/site/blog/2015/07/06/release-v0-051/index.markdown -------------------------------------------------------------------------------- /site/blog/2015/07/13/release-v0-052/index.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/site/blog/2015/07/13/release-v0-052/index.markdown -------------------------------------------------------------------------------- /site/blog/2015/07/20/release-v0-053/index.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/site/blog/2015/07/20/release-v0-053/index.markdown -------------------------------------------------------------------------------- /site/blog/2015/08/11/release-v0-054/index.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/site/blog/2015/08/11/release-v0-054/index.markdown -------------------------------------------------------------------------------- /site/blog/2015/09/22/release-v0-055/index.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/site/blog/2015/09/22/release-v0-055/index.markdown -------------------------------------------------------------------------------- /site/blog/2015/11/05/release-v0-056/index.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/site/blog/2015/11/05/release-v0-056/index.markdown -------------------------------------------------------------------------------- /site/blog/2015/11/05/release-v0-057/index.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/site/blog/2015/11/05/release-v0-057/index.markdown -------------------------------------------------------------------------------- /site/blog/2015/11/11/release-v0-058/index.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/site/blog/2015/11/11/release-v0-058/index.markdown -------------------------------------------------------------------------------- /site/blog/2015/11/12/release-v0-059/index.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/site/blog/2015/11/12/release-v0-059/index.markdown -------------------------------------------------------------------------------- /site/blog/2015/11/23/release-v0-060/index.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/site/blog/2015/11/23/release-v0-060/index.markdown -------------------------------------------------------------------------------- /site/blog/2015/12/13/release-v0-061/index.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/site/blog/2015/12/13/release-v0-061/index.markdown -------------------------------------------------------------------------------- /site/blog/2016/01/01/release-v0-062/index.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/site/blog/2016/01/01/release-v0-062/index.markdown -------------------------------------------------------------------------------- /site/blog/2016/01/03/release-v0-063/index.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/site/blog/2016/01/03/release-v0-063/index.markdown -------------------------------------------------------------------------------- /site/blog/2016/01/04/release-v0-064/index.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/site/blog/2016/01/04/release-v0-064/index.markdown -------------------------------------------------------------------------------- /site/blog/2016/01/06/release-v0-065/index.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/site/blog/2016/01/06/release-v0-065/index.markdown -------------------------------------------------------------------------------- /site/blog/2016/01/09/release-v0-066/index.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/site/blog/2016/01/09/release-v0-066/index.markdown -------------------------------------------------------------------------------- /site/blog/2016/02/07/release-v0-067/index.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/site/blog/2016/02/07/release-v0-067/index.markdown -------------------------------------------------------------------------------- /site/blog/2016/02/10/release-v0-068/index.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/site/blog/2016/02/10/release-v0-068/index.markdown -------------------------------------------------------------------------------- /site/blog/2016/02/13/release-v0-069/index.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/site/blog/2016/02/13/release-v0-069/index.markdown -------------------------------------------------------------------------------- /site/blog/2016/02/21/release-v0-070/index.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/site/blog/2016/02/21/release-v0-070/index.markdown -------------------------------------------------------------------------------- /site/blog/2016/02/28/release-v0-071/index.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/site/blog/2016/02/28/release-v0-071/index.markdown -------------------------------------------------------------------------------- /site/blog/2016/03/04/release-v0-072/index.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/site/blog/2016/03/04/release-v0-072/index.markdown -------------------------------------------------------------------------------- /site/blog/2016/03/07/release-v0-073/index.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/site/blog/2016/03/07/release-v0-073/index.markdown -------------------------------------------------------------------------------- /site/blog/2016/03/25/release-v0-074/index.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/site/blog/2016/03/25/release-v0-074/index.markdown -------------------------------------------------------------------------------- /site/blog/2016/05/22/release-v0-075/index.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/site/blog/2016/05/22/release-v0-075/index.markdown -------------------------------------------------------------------------------- /site/blog/2016/05/27/release-v0-076/index.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/site/blog/2016/05/27/release-v0-076/index.markdown -------------------------------------------------------------------------------- /site/blog/2016/10/12/release-v0-078/index.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/site/blog/2016/10/12/release-v0-078/index.markdown -------------------------------------------------------------------------------- /site/blog/2016/10/14/release-v0-079/index.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/site/blog/2016/10/14/release-v0-079/index.markdown -------------------------------------------------------------------------------- /site/blog/2016/10/20/release-v0-080/index.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/site/blog/2016/10/20/release-v0-080/index.markdown -------------------------------------------------------------------------------- /site/blog/2016/10/27/release-v0-081/index.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/site/blog/2016/10/27/release-v0-081/index.markdown -------------------------------------------------------------------------------- /site/blog/2017/01/31/release-v0-083/index.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/site/blog/2017/01/31/release-v0-083/index.markdown -------------------------------------------------------------------------------- /site/blog/2017/08/09/release-v0-084/index.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/site/blog/2017/08/09/release-v0-084/index.markdown -------------------------------------------------------------------------------- /site/blog/2017/09/08/release-v0-085/index.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/site/blog/2017/09/08/release-v0-085/index.markdown -------------------------------------------------------------------------------- /site/blog/2017/09/13/release-v0-086/index.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/site/blog/2017/09/13/release-v0-086/index.markdown -------------------------------------------------------------------------------- /site/blog/2017/11/28/release-v0-087/index.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/site/blog/2017/11/28/release-v0-087/index.markdown -------------------------------------------------------------------------------- /site/blog/2018/03/19/release-v0-088/index.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/site/blog/2018/03/19/release-v0-088/index.markdown -------------------------------------------------------------------------------- /site/blog/2018/03/25/release-v0-089/index.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/site/blog/2018/03/25/release-v0-089/index.markdown -------------------------------------------------------------------------------- /site/blog/2018/03/26/release-v0-090/index.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/site/blog/2018/03/26/release-v0-090/index.markdown -------------------------------------------------------------------------------- /site/blog/2018/03/27/release-v0-091/index.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/site/blog/2018/03/27/release-v0-091/index.markdown -------------------------------------------------------------------------------- /site/blog/2018/03/29/release-v0-092/index.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/site/blog/2018/03/29/release-v0-092/index.markdown -------------------------------------------------------------------------------- /site/blog/2018/03/30/release-v0-093/index.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/site/blog/2018/03/30/release-v0-093/index.markdown -------------------------------------------------------------------------------- /site/docs/config/index.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/site/docs/config/index.markdown -------------------------------------------------------------------------------- /site/docs/content/index.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/site/docs/content/index.markdown -------------------------------------------------------------------------------- /site/docs/develop/index.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/site/docs/develop/index.markdown -------------------------------------------------------------------------------- /site/docs/index.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/site/docs/index.markdown -------------------------------------------------------------------------------- /site/docs/install/index.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/site/docs/install/index.markdown -------------------------------------------------------------------------------- /site/docs/theme/index.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/site/docs/theme/index.markdown -------------------------------------------------------------------------------- /site/gallery/chicagopm-inner.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/site/gallery/chicagopm-inner.jpg -------------------------------------------------------------------------------- /site/gallery/chicagopm-main.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/site/gallery/chicagopm-main.jpg -------------------------------------------------------------------------------- /site/gallery/index.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/site/gallery/index.markdown -------------------------------------------------------------------------------- /site/gallery/indiepalate.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/site/gallery/indiepalate.jpg -------------------------------------------------------------------------------- /site/index.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/site/index.markdown -------------------------------------------------------------------------------- /site/release-blog.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/site/release-blog.pl -------------------------------------------------------------------------------- /site/theme/blog/index.atom.ep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/site/theme/blog/index.atom.ep -------------------------------------------------------------------------------- /site/theme/blog/index.html.ep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/site/theme/blog/index.html.ep -------------------------------------------------------------------------------- /site/theme/blog/index.rss.ep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/site/theme/blog/index.rss.ep -------------------------------------------------------------------------------- /site/theme/blog/post.html.ep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/site/theme/blog/post.html.ep -------------------------------------------------------------------------------- /site/theme/css/normalize.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/site/theme/css/normalize.css -------------------------------------------------------------------------------- /site/theme/css/skeleton.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/site/theme/css/skeleton.css -------------------------------------------------------------------------------- /site/theme/css/statocles-default.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/site/theme/css/statocles-default.css -------------------------------------------------------------------------------- /site/theme/images/column.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/site/theme/images/column.png -------------------------------------------------------------------------------- /site/theme/layout/default.html.ep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/site/theme/layout/default.html.ep -------------------------------------------------------------------------------- /site/theme/layout/full-width.html.ep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/site/theme/layout/full-width.html.ep -------------------------------------------------------------------------------- /site/theme/perldoc/pod.html.ep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/site/theme/perldoc/pod.html.ep -------------------------------------------------------------------------------- /site/theme/perldoc/source.html.ep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/site/theme/perldoc/source.html.ep -------------------------------------------------------------------------------- /site/theme/plugin/highlight/default.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/site/theme/plugin/highlight/default.css -------------------------------------------------------------------------------- /site/theme/plugin/highlight/solarized-dark.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/site/theme/plugin/highlight/solarized-dark.css -------------------------------------------------------------------------------- /site/theme/plugin/highlight/solarized-light.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/site/theme/plugin/highlight/solarized-light.css -------------------------------------------------------------------------------- /site/theme/site/footer.html.ep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/site/theme/site/footer.html.ep -------------------------------------------------------------------------------- /site/theme/site/head_after.html.ep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/site/theme/site/head_after.html.ep -------------------------------------------------------------------------------- /site/theme/site/header_after.html.ep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /site/theme/site/navbar_extra.html.ep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /site/theme/site/robots.txt.ep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/site/theme/site/robots.txt.ep -------------------------------------------------------------------------------- /site/theme/site/sidebar_before.html.ep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /site/theme/site/sitemap.xml.ep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/site/theme/site/sitemap.xml.ep -------------------------------------------------------------------------------- /site/theme/site/style.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/site/theme/site/style.html -------------------------------------------------------------------------------- /t/app/blog/command.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/t/app/blog/command.t -------------------------------------------------------------------------------- /t/app/blog/constructor.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/t/app/blog/constructor.t -------------------------------------------------------------------------------- /t/app/blog/pages.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/t/app/blog/pages.t -------------------------------------------------------------------------------- /t/app/blog/post_date.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/t/app/blog/post_date.t -------------------------------------------------------------------------------- /t/app/blog/recent_posts.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/t/app/blog/recent_posts.t -------------------------------------------------------------------------------- /t/app/blog/slugs.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/t/app/blog/slugs.t -------------------------------------------------------------------------------- /t/app/events.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/t/app/events.t -------------------------------------------------------------------------------- /t/app/perldoc/constructor.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/t/app/perldoc/constructor.t -------------------------------------------------------------------------------- /t/app/perldoc/highlight.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/t/app/perldoc/highlight.t -------------------------------------------------------------------------------- /t/app/perldoc/pages.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/t/app/perldoc/pages.t -------------------------------------------------------------------------------- /t/app/template.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/t/app/template.t -------------------------------------------------------------------------------- /t/app/url.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/t/app/url.t -------------------------------------------------------------------------------- /t/command/apps.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/t/command/apps.t -------------------------------------------------------------------------------- /t/command/build.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/t/command/build.t -------------------------------------------------------------------------------- /t/command/bundle.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/t/command/bundle.t -------------------------------------------------------------------------------- /t/command/create.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/t/command/create.t -------------------------------------------------------------------------------- /t/command/daemon.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/t/command/daemon.t -------------------------------------------------------------------------------- /t/command/deploy.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/t/command/deploy.t -------------------------------------------------------------------------------- /t/command/error.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/t/command/error.t -------------------------------------------------------------------------------- /t/command/help_and_version.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/t/command/help_and_version.t -------------------------------------------------------------------------------- /t/command/mojo_app.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/t/command/mojo_app.t -------------------------------------------------------------------------------- /t/deploy/file.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/t/deploy/file.t -------------------------------------------------------------------------------- /t/deploy/git.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/t/deploy/git.t -------------------------------------------------------------------------------- /t/deprecated.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/t/deprecated.t -------------------------------------------------------------------------------- /t/document.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/t/document.t -------------------------------------------------------------------------------- /t/image.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/t/image.t -------------------------------------------------------------------------------- /t/lib/My/Test.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/t/lib/My/Test.pm -------------------------------------------------------------------------------- /t/lib/TestApp.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/t/lib/TestApp.pm -------------------------------------------------------------------------------- /t/lib/TestDeploy.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/t/lib/TestDeploy.pm -------------------------------------------------------------------------------- /t/lib/TestDocument.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/t/lib/TestDocument.pm -------------------------------------------------------------------------------- /t/lib/TestStore.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/t/lib/TestStore.pm -------------------------------------------------------------------------------- /t/link.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/t/link.t -------------------------------------------------------------------------------- /t/link/tree.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/t/link/tree.t -------------------------------------------------------------------------------- /t/page/basename.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/t/page/basename.t -------------------------------------------------------------------------------- /t/page/content_sections.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/t/page/content_sections.t -------------------------------------------------------------------------------- /t/page/document.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/t/page/document.t -------------------------------------------------------------------------------- /t/page/file.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/t/page/file.t -------------------------------------------------------------------------------- /t/page/images.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/t/page/images.t -------------------------------------------------------------------------------- /t/page/links.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/t/page/links.t -------------------------------------------------------------------------------- /t/page/list.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/t/page/list.t -------------------------------------------------------------------------------- /t/page/list_item.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/t/page/list_item.t -------------------------------------------------------------------------------- /t/page/plain.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/t/page/plain.t -------------------------------------------------------------------------------- /t/page/type.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/t/page/type.t -------------------------------------------------------------------------------- /t/person.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/t/person.t -------------------------------------------------------------------------------- /t/plugin.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/t/plugin.t -------------------------------------------------------------------------------- /t/plugin/highlight.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/t/plugin/highlight.t -------------------------------------------------------------------------------- /t/plugin/html_lint.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/t/plugin/html_lint.t -------------------------------------------------------------------------------- /t/plugin/link_check.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/t/plugin/link_check.t -------------------------------------------------------------------------------- /t/plugin/mermaid.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/t/plugin/mermaid.t -------------------------------------------------------------------------------- /t/share/app/basic-diagrams/gantt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/t/share/app/basic-diagrams/gantt.md -------------------------------------------------------------------------------- /t/share/app/basic-diagrams/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/t/share/app/basic-diagrams/index.md -------------------------------------------------------------------------------- /t/share/app/perldoc/bin-weaver/command.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/t/share/app/perldoc/bin-weaver/command.pl -------------------------------------------------------------------------------- /t/share/app/perldoc/bin-weaver/shellcmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/t/share/app/perldoc/bin-weaver/shellcmd -------------------------------------------------------------------------------- /t/share/app/perldoc/bin/command.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/t/share/app/perldoc/bin/command.pl -------------------------------------------------------------------------------- /t/share/app/perldoc/bin/shellcmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/t/share/app/perldoc/bin/shellcmd -------------------------------------------------------------------------------- /t/share/app/perldoc/lib-weaver/External.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/t/share/app/perldoc/lib-weaver/External.pm -------------------------------------------------------------------------------- /t/share/app/perldoc/lib-weaver/My.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/t/share/app/perldoc/lib-weaver/My.pm -------------------------------------------------------------------------------- /t/share/app/perldoc/lib-weaver/My/Internal.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/t/share/app/perldoc/lib-weaver/My/Internal.pm -------------------------------------------------------------------------------- /t/share/app/perldoc/lib/External.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/t/share/app/perldoc/lib/External.pm -------------------------------------------------------------------------------- /t/share/app/perldoc/lib/Highlight.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/t/share/app/perldoc/lib/Highlight.pm -------------------------------------------------------------------------------- /t/share/app/perldoc/lib/My.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/t/share/app/perldoc/lib/My.pm -------------------------------------------------------------------------------- /t/share/app/perldoc/lib/My/Internal.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/t/share/app/perldoc/lib/My/Internal.pm -------------------------------------------------------------------------------- /t/share/app/perldoc/weaver.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/t/share/app/perldoc/weaver.ini -------------------------------------------------------------------------------- /t/share/bin/editor.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/t/share/bin/editor.pl -------------------------------------------------------------------------------- /t/share/config/bad_char.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/t/share/config/bad_char.yml -------------------------------------------------------------------------------- /t/share/config/bad_indent.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/t/share/config/bad_indent.yml -------------------------------------------------------------------------------- /t/share/config/bad_ref.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/t/share/config/bad_ref.yml -------------------------------------------------------------------------------- /t/share/config/missing_arg.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/t/share/config/missing_arg.yml -------------------------------------------------------------------------------- /t/share/create/basic_blog_in.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/t/share/create/basic_blog_in.txt -------------------------------------------------------------------------------- /t/share/create/basic_blog_out.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/t/share/create/basic_blog_out.txt -------------------------------------------------------------------------------- /t/share/create/none_in.txt: -------------------------------------------------------------------------------- 1 | 0 2 | n 3 | 0 4 | -------------------------------------------------------------------------------- /t/share/create/none_out.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/t/share/create/none_out.txt -------------------------------------------------------------------------------- /t/share/create/project_file_in.txt: -------------------------------------------------------------------------------- 1 | 2 2 | n 3 | 2 4 | . 5 | -------------------------------------------------------------------------------- /t/share/create/project_file_out.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/t/share/create/project_file_out.txt -------------------------------------------------------------------------------- /t/share/create/project_file_with_base_in.txt: -------------------------------------------------------------------------------- 1 | 2 2 | n 3 | example.com 4 | 2 5 | . 6 | -------------------------------------------------------------------------------- /t/share/create/project_file_with_base_out.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/t/share/create/project_file_with_base_out.txt -------------------------------------------------------------------------------- /t/share/create/project_file_with_https_base_in.txt: -------------------------------------------------------------------------------- 1 | 2 2 | n 3 | https://example.com 4 | 2 5 | . 6 | -------------------------------------------------------------------------------- /t/share/create/project_file_with_https_base_out.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/t/share/create/project_file_with_https_base_out.txt -------------------------------------------------------------------------------- /t/share/deploy/doc.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/t/share/deploy/doc.markdown -------------------------------------------------------------------------------- /t/share/deploy/foo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/t/share/deploy/foo/index.html -------------------------------------------------------------------------------- /t/share/deploy/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/t/share/deploy/index.html -------------------------------------------------------------------------------- /t/share/store/docs/date.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/t/share/store/docs/date.markdown -------------------------------------------------------------------------------- /t/share/store/docs/datetime.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/t/share/store/docs/datetime.markdown -------------------------------------------------------------------------------- /t/share/store/docs/ext/short.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/t/share/store/docs/ext/short.md -------------------------------------------------------------------------------- /t/share/store/docs/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/t/share/store/docs/image.png -------------------------------------------------------------------------------- /t/share/store/docs/json-oneline.markdown: -------------------------------------------------------------------------------- 1 | { "title": "JSON Document" } 2 | No optional things in here, at all! 3 | -------------------------------------------------------------------------------- /t/share/store/docs/json.markdown: -------------------------------------------------------------------------------- 1 | { 2 | "title": "JSON Document" 3 | } 4 | No optional things in here, at all! 5 | -------------------------------------------------------------------------------- /t/share/store/docs/links/alternate_single.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/t/share/store/docs/links/alternate_single.markdown -------------------------------------------------------------------------------- /t/share/store/docs/no-frontmatter.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/t/share/store/docs/no-frontmatter.markdown -------------------------------------------------------------------------------- /t/share/store/docs/path.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/t/share/store/docs/path.markdown -------------------------------------------------------------------------------- /t/share/store/docs/person.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/t/share/store/docs/person.markdown -------------------------------------------------------------------------------- /t/share/store/docs/required.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/t/share/store/docs/required.markdown -------------------------------------------------------------------------------- /t/share/store/docs/tags/array.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/t/share/store/docs/tags/array.markdown -------------------------------------------------------------------------------- /t/share/store/docs/tags/comma.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/t/share/store/docs/tags/comma.markdown -------------------------------------------------------------------------------- /t/share/store/docs/tags/single.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/t/share/store/docs/tags/single.markdown -------------------------------------------------------------------------------- /t/share/store/docs/template/basic.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/t/share/store/docs/template/basic.markdown -------------------------------------------------------------------------------- /t/share/store/docs/template/leading-slash.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/t/share/store/docs/template/leading-slash.markdown -------------------------------------------------------------------------------- /t/share/store/docs/text.txt: -------------------------------------------------------------------------------- 1 | ☃ This is some plain text 2 | -------------------------------------------------------------------------------- /t/share/store/docs/utf8-json.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/t/share/store/docs/utf8-json.md -------------------------------------------------------------------------------- /t/share/store/docs/utf8-yml.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/t/share/store/docs/utf8-yml.md -------------------------------------------------------------------------------- /t/share/store/error/bad-dates/bad-date.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/t/share/store/error/bad-dates/bad-date.markdown -------------------------------------------------------------------------------- /t/share/store/error/bad-json/bad.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/t/share/store/error/bad-json/bad.markdown -------------------------------------------------------------------------------- /t/share/store/error/bad-links/links.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/t/share/store/error/bad-links/links.markdown -------------------------------------------------------------------------------- /t/share/store/error/bad-yaml/bad.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/t/share/store/error/bad-yaml/bad.markdown -------------------------------------------------------------------------------- /t/share/store/error/missing-end-json/missing.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/t/share/store/error/missing-end-json/missing.markdown -------------------------------------------------------------------------------- /t/share/store/error/missing-end-mark/missing.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/t/share/store/error/missing-end-mark/missing.markdown -------------------------------------------------------------------------------- /t/share/store/write/doc.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/t/share/store/write/doc.markdown -------------------------------------------------------------------------------- /t/share/store/write/doc_obj.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/t/share/store/write/doc_obj.markdown -------------------------------------------------------------------------------- /t/share/theme/blog/index.atom.ep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/t/share/theme/blog/index.atom.ep -------------------------------------------------------------------------------- /t/share/theme/blog/index.html.ep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/t/share/theme/blog/index.html.ep -------------------------------------------------------------------------------- /t/share/theme/blog/index.rss.ep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/t/share/theme/blog/index.rss.ep -------------------------------------------------------------------------------- /t/share/theme/blog/post.html.ep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/t/share/theme/blog/post.html.ep -------------------------------------------------------------------------------- /t/share/theme/css/normalize.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/t/share/theme/css/normalize.css -------------------------------------------------------------------------------- /t/share/theme/custom/blog/index.html.ep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /t/share/theme/custom/layout.html.ep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /t/share/theme/custom/robots.txt.ep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/t/share/theme/custom/robots.txt.ep -------------------------------------------------------------------------------- /t/share/theme/document/recipe.html.ep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/t/share/theme/document/recipe.html.ep -------------------------------------------------------------------------------- /t/share/theme/include/in_both.markdown.ep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preaction/Statocles/HEAD/t/share/theme/include/in_both.markdown.ep -------------------------------------------------------------------------------- /t/share/theme/include/test.html.ep: -------------------------------------------------------------------------------- 1 | # <%= $title %> 2 | -------------------------------------------------------------------------------- /t/share/theme/include/test.markdown.ep: -------------------------------------------------------------------------------- 1 |