Skip to content

Commit

Permalink
improves
Browse files Browse the repository at this point in the history
  • Loading branch information
anru committed Dec 27, 2010
1 parent 37847d0 commit d5d0cce
Show file tree
Hide file tree
Showing 21 changed files with 1,077 additions and 4 deletions.
9 changes: 9 additions & 0 deletions rsted.fcgi
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
#!/usr/bin/python
import os
from flup.server.fcgi import WSGIServer
from application import app

socket_path = app.config.get('SOCKET', os.path.join(app.config.root_path, 'rsted.fcgi'))

WSGIServer(app, bindAddress=socket_path).run()

3 changes: 1 addition & 2 deletions settings.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@

# configuration
DEBUG = True

RST2HRML_CMD = 'rst2html'
RST2HRML_CMD = 'rst2html'
167 changes: 167 additions & 0 deletions static/scripts/jquery-1.4.4.min.js

Large diffs are not rendered by default.

490 changes: 490 additions & 0 deletions static/scripts/jquery-ui-1.8.7.custom.min.js

Large diffs are not rendered by default.

80 changes: 80 additions & 0 deletions static/scripts/jquery.layout.min-1.2.0.js

Large diffs are not rendered by default.

Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
323 changes: 323 additions & 0 deletions static/style/ui-lightness/jquery-ui-1.8.7.custom.css

Large diffs are not rendered by default.

9 changes: 7 additions & 2 deletions templates/base.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,12 @@
<title>{% block title %}Online reStructuredText editor{% endblock %}</title>
<link rel="stylesheet" href="{{ MEDIA_URL }}style/base.css" type="text/css" />
<link rel="stylesheet" href="{{ MEDIA_URL }}style/site.css" type="text/css" />
<script type="text/javascript" src="http://code.jquery.com/jquery-latest.min.js"></script>
<script type="text/javascript" src="{{ MEDIA_URL }}scripts/jquery-1.4.4.min.js"></script>
<script type="text/javascript" src="{{ MEDIA_URL }}scripts/jquery-ui-1.8.7.custom.min.js"></script>
<script type="text/javascript" src="{{ MEDIA_URL }}scripts/jquery.layout.min-1.2.0.js"></script>
<script type="text/javascript">

</script>
{% endblock %}
</head>
<body>
Expand All @@ -18,7 +23,7 @@ <h1>
</div>
<div id="navigation">
{% block main_nav %}
<ul>
<ul class="menu">
<li><a href="{{ url_for('index') }}">Editor</a></li>
<li class="ext_link"><a href="http://docutils.sourceforge.net/docs/user/rst/quickref.html">Quick reStructuredText reference</a></li>
<li><a href="{{ url_for('about') }}">About</a></li>
Expand Down

0 comments on commit d5d0cce

Please sign in to comment.