From 4a3c481963b294f9026ddee091654caeae7d685f Mon Sep 17 00:00:00 2001 From: jason Date: Thu, 9 Aug 2012 09:18:48 -0600 Subject: updated the page. --- .gitignore | 1 + index.html | 72 ++++++++++++++++++++++------------------------ javascripts/lang-apollo.js | 2 ++ javascripts/lang-clj.js | 18 ++++++++++++ javascripts/lang-css.js | 2 ++ javascripts/lang-go.js | 1 + javascripts/lang-hs.js | 2 ++ javascripts/lang-lisp.js | 3 ++ javascripts/lang-lua.js | 2 ++ javascripts/lang-ml.js | 2 ++ javascripts/lang-n.js | 4 +++ javascripts/lang-proto.js | 1 + javascripts/lang-scala.js | 2 ++ javascripts/lang-sql.js | 2 ++ javascripts/lang-tex.js | 1 + javascripts/lang-vb.js | 2 ++ javascripts/lang-vhdl.js | 3 ++ javascripts/lang-wiki.js | 2 ++ javascripts/lang-xq.js | 3 ++ javascripts/lang-yaml.js | 2 ++ javascripts/prettify.js | 28 ++++++++++++++++++ stylesheets/prettify.css | 1 + stylesheets/stylesheet.css | 6 ++-- 23 files changed, 121 insertions(+), 41 deletions(-) create mode 100644 javascripts/lang-apollo.js create mode 100644 javascripts/lang-clj.js create mode 100644 javascripts/lang-css.js create mode 100644 javascripts/lang-go.js create mode 100644 javascripts/lang-hs.js create mode 100644 javascripts/lang-lisp.js create mode 100644 javascripts/lang-lua.js create mode 100644 javascripts/lang-ml.js create mode 100644 javascripts/lang-n.js create mode 100644 javascripts/lang-proto.js create mode 100644 javascripts/lang-scala.js create mode 100644 javascripts/lang-sql.js create mode 100644 javascripts/lang-tex.js create mode 100644 javascripts/lang-vb.js create mode 100644 javascripts/lang-vhdl.js create mode 100644 javascripts/lang-wiki.js create mode 100644 javascripts/lang-xq.js create mode 100644 javascripts/lang-yaml.js create mode 100644 javascripts/prettify.js create mode 100644 stylesheets/prettify.css diff --git a/.gitignore b/.gitignore index 485dee6..bc6cc30 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,2 @@ .idea +local_settings.py diff --git a/index.html b/index.html index 3475d58..0b7d4e6 100644 --- a/index.html +++ b/index.html @@ -1,60 +1,56 @@ - -
- + + - - - + + + + + +This automatic page generator is the easiest way to create beautiful pages for all of your projects. Author your page content here using GitHub Flavored Markdown, select a template crafted by a designer, and publish. After your page is generated, you can check out the new branch:
+$ cd your_repo_root/repo_name
-$ git fetch origin
-$ git checkout gh-pages
-
+ $ git clone git://github.com/antitech/warmachine.git
-If you're using the GitHub for Mac, simply sync your repository and you'll see the new branch.
+The philosophy behind warmachine is to get out of your way and let you code. A developer shouldn't be required to learn an oversized API just to print hello world on the screen. You know Python, so you know how to write warmachine plugins. All you have to do is write a method that listens for your trigger and go on about your day.
-We've crafted some handsome templates for you to use. Go ahead and continue to layouts to browse through them. You can easily go back to edit your page before publishing. After publishing your page, you can revisit the page generator and switch to another theme. Your Page content will be preserved if it remained markdown format.
+from wmd.actions import Action
-Rather Drive Stick?
+class HelloWorldAction(Action):
-If you prefer to not use the automatic generator, push a branch named gh-pages to your repository to create a page manually. In addition to supporting regular HTML content, GitHub Pages support Jekyll, a simple, blog aware static site generator written by our own Tom Preston-Werner. Jekyll makes it easy to create site-wide headers and footers without having to copy them across every page. It also offers intelligent blog support and other advanced templating features.
+ def recv_msg(self, irc, obj_data):
+ channel = obj_data.get_username()
+ args = obj_data.params.split(" ")
+ if "PRIVMSG" in obj_data.command and ":!helloworld" in args[1].lower():
+ irc.privmsg(channel, "Hello World!")
+
-You can @mention a GitHub username to generate a link to their profile. The resulting <a> element will link to the contributor's GitHub Profile. For example: In 2007, Chris Wanstrath (@defunkt), PJ Hyett (@pjhyett), and Tom Preston-Werner (@mojombo) founded GitHub.
Having trouble with Pages? Check out the documentation at http://help.github.com/pages or contact support@github.com and we’ll help you sort it out.
- -