Skip to content

Commit

Permalink
I have OCD. *go wash his hands, again*
Browse files Browse the repository at this point in the history
  • Loading branch information
romac committed Nov 8, 2011
1 parent 78a4013 commit e20766f
Show file tree
Hide file tree
Showing 78 changed files with 16 additions and 16 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
*.swp
.DS_Store
javascripts/*.js
frontend/js/*.js
backend/*.js
data/
4 changes: 2 additions & 2 deletions backend/populate.coffee
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ User.remove {}, ->
email: "bigsylvain@gmail.com"
joindate: Date.now()
posts: 0
avatar: "/stylesheets/avatar1.png"
avatar: "/css/avatar1.png"
slogan: "Pardieu, c'est un inculte!"
sha1: sha1("sylvain")
}).save()
Expand All @@ -44,7 +44,7 @@ User.remove {}, ->
email: "amos@official.fm"
joindate: Date.now()
posts: 0
avatar: "/stylesheets/avatar2.png"
avatar: "/css/avatar2.png"
slogan: "Montjoie! Saint-Denis!"
sha1: sha1("bluesky")
}).save()
Expand Down
2 changes: 1 addition & 1 deletion backend/server.coffee
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ app.register('.html', {
compile: (str, options) -> (locals) -> return str
});

app.use(express.static(__dirname + '/../'))
app.use(express.static(__dirname + '/../frontend/'))
app.use(express.bodyParser());

app.get '/', (req, res) ->
Expand Down
File renamed without changes.
File renamed without changes
File renamed without changes
File renamed without changes.
File renamed without changes
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
24 changes: 12 additions & 12 deletions views/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,14 @@
<head>
<meta charset="utf-8"/>
<title>Agora</title>
<link rel="stylesheet" href="stylesheets/agora.css"/>
<link rel="stylesheet" href="stylesheets/buttons.css"/>
<link rel="stylesheet" href="css/agora.css"/>
<link rel="stylesheet" href="css/buttons.css"/>
</head>
<body>
<div id="container">
<div id="sidebar">
<h1>
<a href="#/"><img alt="Agora" src="stylesheets/logo-nmag.png" /></a>
<a href="#/"><img alt="Agora" src="css/logo-nmag.png" /></a>
</h1>
<div class="user-info">
<a href="#/u">
Expand All @@ -22,14 +22,14 @@ <h1>
</div>
<div id="main"></div>
</div>
<script src="javascripts/libs/jquery-1.7.min.js"></script>
<script src="javascripts/libs/showdown.js"></script>
<script src="javascripts/libs/keymaster.min.js"></script>
<script src="javascripts/libs/sammy/sammy.js"></script>
<script src="javascripts/libs/sammy/plugins/sammy.template.js"></script>
<script src="javascripts/libs/sammy/plugins/sammy.mustache.js"></script>
<script src="javascripts/libs/sammy/plugins/sammy.json.js"></script>
<script src="javascripts/libs/sammy/plugins/sammy.storage.js"></script>
<script src="javascripts/agora.js"></script>
<script src="js/libs/jquery-1.7.min.js"></script>
<script src="js/libs/showdown.js"></script>
<script src="js/libs/keymaster.min.js"></script>
<script src="js/libs/sammy/sammy.js"></script>
<script src="js/libs/sammy/plugins/sammy.template.js"></script>
<script src="js/libs/sammy/plugins/sammy.mustache.js"></script>
<script src="js/libs/sammy/plugins/sammy.json.js"></script>
<script src="js/libs/sammy/plugins/sammy.storage.js"></script>
<script src="js/agora.js"></script>
</body>
</html>

0 comments on commit e20766f

Please sign in to comment.