Skip to content

Commit

Permalink
Fix things to work with newest version of express
Browse files Browse the repository at this point in the history
  • Loading branch information
mnutt committed Sep 3, 2010
1 parent 12b7316 commit 330aa8c
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 9 deletions.
2 changes: 1 addition & 1 deletion deps/express
8 changes: 5 additions & 3 deletions monitor.js
@@ -1,11 +1,13 @@
require.paths.unshift(__dirname + '/lib');
require.paths.unshift(__dirname);
require.paths.unshift(__dirname + '/deps/express/lib')
require.paths.unshift(__dirname + '/deps/express/support')
require.paths.unshift(__dirname + '/deps');
require.paths.unshift(__dirname + '/deps/express/support');
require.paths.unshift(__dirname + '/deps/express/support/connect/lib');
require.paths.unshift(__dirname + '/deps/node-mongodb-native/lib');

var sys = require('sys'),
fs = require('fs'),
mongo = require('deps/node-mongodb-native/lib/mongodb'),
mongo = require('mongodb'),
svc = require('service_json'),
weekly = require('weekly');

Expand Down
6 changes: 3 additions & 3 deletions public/css/main.css
Expand Up @@ -112,7 +112,7 @@ div.hummingbird_graph div.axis_right {


#login div.logo {
background: url(/public/images/logo.png) top left no-repeat;
background: url(/images/logo.png) top left no-repeat;
width: 300px;
height: 324px;
margin: auto;
Expand Down Expand Up @@ -158,6 +158,6 @@ div.hummingbird_graph div.axis_right {

@font-face {
font-family: 'TitilliumText14L800wt';
src: url('/public/fonts/TitilliumText800wt.eot');
src: local('TitilliumText14L'), local('TitilliumText14L-800wt'), url('/public/fonts/TitilliumText800wt.woff') format('woff'), url('/public/fonts/TitilliumText800wt.ttf') format('truetype'), url('/public/fonts/TitilliumText800wt.svg#TitilliumText14L-800wt') format('svg');
src: url('/fonts/TitilliumText800wt.eot');
src: local('TitilliumText14L'), local('TitilliumText14L-800wt'), url('/fonts/TitilliumText800wt.woff') format('woff'), url('/fonts/TitilliumText800wt.ttf') format('truetype'), url('/fonts/TitilliumText800wt.svg#TitilliumText14L-800wt') format('svg');
}
4 changes: 2 additions & 2 deletions views/layout.ejs
Expand Up @@ -14,8 +14,8 @@

<title><%= app.set('name') %></title>

<link rel="stylesheet" media="all" href="/public/css/main.css" />
<link rel="stylesheet" media="all" href="/public/css/weekly.css" />
<link rel="stylesheet" media="all" href="/css/main.css" />
<link rel="stylesheet" media="all" href="/css/weekly.css" />
</head>

<body>
Expand Down

0 comments on commit 330aa8c

Please sign in to comment.