summaryrefslogtreecommitdiff
path: root/site
diff options
context:
space:
mode:
authorGregory Brown <gregory.t.brown@gmail.com>2009-02-02 11:59:04 -0500
committerGregory Brown <gregory.t.brown@gmail.com>2009-02-02 11:59:04 -0500
commit6ff9ffe5fabf766183db9ed1d548b70e21f02eb6 (patch)
tree19a69d22f4c15a7ec1dfb69988f2fa51365b08fe /site
parent37cd9cff1783911ab51afd90ba6588ce12c58b57 (diff)
downloadhighline-6ff9ffe5fabf766183db9ed1d548b70e21f02eb6.tar.gz
restructuring
Diffstat (limited to 'site')
-rw-r--r--site/.cvsignore1
-rw-r--r--site/highline.css65
-rw-r--r--site/images/logo.pngbin0 -> 140679 bytes
-rw-r--r--site/index.html60
4 files changed, 126 insertions, 0 deletions
diff --git a/site/.cvsignore b/site/.cvsignore
new file mode 100644
index 0000000..e43b0f9
--- /dev/null
+++ b/site/.cvsignore
@@ -0,0 +1 @@
+.DS_Store
diff --git a/site/highline.css b/site/highline.css
new file mode 100644
index 0000000..8ccc62a
--- /dev/null
+++ b/site/highline.css
@@ -0,0 +1,65 @@
+body {
+ margin: 0;
+ padding: 0;
+ text-align: center;
+ background: #abc;
+ font: 13px Trebuchet MS, Lucida Sans Unicode, Arial, sans-serif;
+}
+
+#container {
+ margin: 0 auto;
+ margin-top: 10px;
+ position: relative;
+ width: 785px;
+ background: #fff repeat;
+ padding-top: 20px;
+}
+
+#container #header {
+ padding-top: 20px;
+ height: 141px;
+ width: 785px;
+ background: url(images/logo.png) center no-repeat;
+}
+
+#container #content {
+ text-align: left;
+ margin-left: 230px;
+ width: 500px;
+}
+
+#container #sidebar {
+ text-align: left;
+ position: absolute;
+ top: 181px;
+ left: 0;
+ width: 170px;
+ margin-right: 25px;
+}
+
+#container #footer {
+ font: 9px Arial;
+ padding: 4px;
+ border-top: 1px solid;
+ color: #aaa;
+}
+
+ul {
+ list-style: none;
+}
+
+li {
+ border-bottom: 1px solid #e8e8e8;
+ padding-top: 10px;
+}
+
+a {
+ text-decoration: none;
+ color: #15528a;
+}
+
+pre {
+ padding: 5px;
+ padding-left: 20px;
+ font: 11px Courier;
+}
diff --git a/site/images/logo.png b/site/images/logo.png
new file mode 100644
index 0000000..1323a59
--- /dev/null
+++ b/site/images/logo.png
Binary files differ
diff --git a/site/index.html b/site/index.html
new file mode 100644
index 0000000..72e6254
--- /dev/null
+++ b/site/index.html
@@ -0,0 +1,60 @@
+<html>
+ <head>
+ <title> HighLine </title>
+ <style type="text/css"> @import url(highline.css); </style>
+ </head>
+ <body>
+ <div id="container">
+ <div id="header"></div>
+ <div id="content">
+ <h2>HighLine is about&#8230;</h2>
+
+
+ <h3>Saving time.</h3>
+
+
+ <p>Command line interfaces are meant to be easy. So why shouldn&#8217;t building
+them be easy, too? HighLine provides a solid toolset to help you get
+the job done cleanly so you can focus on the real task at hand,
+<em>your task.</em></p>
+
+
+ <h3>Clean and intuitive design.</h3>
+
+
+ <p>Want to get a taste for how HighLine is used? Take a look at this simple
+example, which asks a user for a zip code, automatically does validation,
+and returns the result:</p>
+
+
+ <pre><code>zip = ask("Zip? ") { |q| q.validate = /\A\d{5}(?:-?\d{4})?\Z/ }</code></pre>
+
+
+ <h3>Hassle-free Installation.</h3>
+
+
+ <p>Installation is easy via RubyGems. Simply enter the command:</p>
+
+
+ <pre><code>sudo gem install highline</code></pre>
+
+
+ <p>and you&#8217;ll be on your way! Of course, manual installation is an option,
+too.</p>
+ </div>
+ <div id="sidebar">
+ <ul>
+ <li><a href="http://rubyforge.org/projects/highline">Project Page</a></li>
+ <li><a href="http://highline.rubyforge.org/doc">Documentation</a></li>
+ <li><a href="http://rubyforge.org/frs/?group_id=683">Download Source</a></li>
+ <li><a href="http://rubyforge.org/viewvc/?root=highline">
+ <span class="caps">SVN</span> Browser</a></li>
+ <li><a href="mailto:james@grayproductions.net">Contact</a></li>
+ </ul>
+ </div>
+ <div id="footer">
+ Created by James Edward Gray II and Gregory Brown
+ </div>
+ </div>
+ </body>
+</html>