Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Patch Tab Page #27

Open
wants to merge 22 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
.DS_Store
.DS_Store
dist/
1,197 changes: 0 additions & 1,197 deletions CHANGELOG

This file was deleted.

20 changes: 0 additions & 20 deletions MIT-LICENSE

This file was deleted.

59 changes: 0 additions & 59 deletions README.rdoc

This file was deleted.

11 changes: 11 additions & 0 deletions README.textile
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
h2. Scriptaculous Documentation on GitHub Pages

Since the new GitHub wikis do not support inline JavaScript, script.aculo.us is moving its documentation to "GitHub Pages":http://pages.github.com/ as the old GitHub wiki is being phased out. This makes collaboration on documentation the same workflow as collaboration the script.aculo.us source code.

h3. Contributing to the documentation

All documentation is under the @gh-pages@ branch. To edit the documentation, fork "the script.aculo.us project":http://wiki.github.com/madrobby/scriptaculous/ and edit the documentation under the @gh-pages@ branch in your fork. When you are finished editing your documentation, please send a pull request from your repository explaining the changes you wish to pull. The primary project collaborators will be notified.

h3. Getting started with GitHub Pages

New documentation can be written in Textile or HTML. For more on what GitHub pages supports, "visit the GitHub pages overview":http://pages.github.com/ and read about pages. For more on contributing to script.aculo.us, "read the Contribute page":http://madrobby.github.com/scriptaculous/contribute/ to learn how you can help.
107 changes: 0 additions & 107 deletions Rakefile

This file was deleted.

3 changes: 3 additions & 0 deletions _config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
permalink: /:title
auto: true
server: true
53 changes: 53 additions & 0 deletions _layouts/default.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
<!DOCTYPE html>
<html>
<head>
<title>{{ page.title }} &mdash; Scriptaculous Documentation</title>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<link rel="stylesheet" href="/scriptaculous/css/docs.css" media="screen" />
<link href="http://github.com/madrobby/scriptaculous/commits/master.atom" rel="alternate" title="Recent Commits to scriptaculous:master" type="application/atom+xml" />
<meta name="description" content="script.aculo.us is an open-source JavaScript framework for visual effects and interface behaviours." />
</head>
<body>
<div id="header">
<div id="internal">
<h2 id="logo" onclick="location.href='/scriptaculous/'"><a href="/scriptaculous/">script.aculo.us</a></h2>
<ul id="navbar">
<li><a href="http://script.aculo.us/">Scriptaculous Home</a></li>
<li><a href="/scriptaculous/">Documentation Home</a></li>
<li><a href="/scriptaculous/contribute">Contribute</a></li>
</ul>
</div>
</div>

<div id="content">
<h1 id="page-title">{{ page.title }}</h1>
<div id="wiki">
{{ content }}
</div>

<div id="sidebar">
<h3>Pages</h3>
<ul id="nav">
{% for post in site.posts reversed %}
{% if page.title == post.title %}
<li>{{ page.title }}</li>
{% else %}
<li><a href="/scriptaculous{{ post.url }}/" class="{{ cat }}">{{ post.title }}</a></li>
{% endif %}
{% endfor %}
</ul>

<a href='https://developer.mozilla.org/en/JavaScript/Reference' title='JavaScript documentation, JavaScript reference, JS docs, JS reference, JS API, Javascript API, JavaScript' style="color:#fff;text-decoration:none"><img src='http://static.jsconf.us/promotejshs.png' height='150' width='180' alt='JavaScript JS Documentation'/><br/>JavaScript documentation, JavaScript API</a>
</div>
<div id="footer">
<p>script.aculo.us was created by <a href="http://mir.aculo.us/">Thomas Fuchs</a>,
and is extended and improved by open-source contributors.
script.aculo.us is released under the <a href="http://madrobby.github.com/scriptaculous/license/">MIT license</a>.</p>
</div>
</div>

<script src="http://static.getclicky.com/js" type="text/javascript"></script>
<script type="text/javascript">clicky.init(66350389);</script>
<noscript><p><img alt="Clicky" width="1" height="1" src="http://in.getclicky.com/66350389ns.gif" /></p></noscript>
</body>
</html>
Loading