Skip to content
This repository has been archived by the owner on Apr 5, 2019. It is now read-only.

Commit

Permalink
Updated Aristo jQuery UI and removed any links to /static/ Also moved…
Browse files Browse the repository at this point in the history
… widgets to their own folder
  • Loading branch information
kyleconroy committed Jul 20, 2010
1 parent d9cb516 commit ce26d91
Show file tree
Hide file tree
Showing 10 changed files with 2,732 additions and 2,715 deletions.
7 changes: 5 additions & 2 deletions app.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,14 +16,17 @@ handlers:
# script: runner.py
# login: required

- url: /static
static_dir: static
- url: /css
static_dir: static/css

- url: /images
static_dir: static/images

- url: /js
static_dir: static/js

- url: /widget
static_dir: static/widget

- url: /favicon\.ico
static_files: static/favicon.ico
Expand Down
2 changes: 1 addition & 1 deletion models.py
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ class Status(db.Model):
name -- string: The friendly name of this status
slug -- stirng: The identifier for the status
description -- string: The state this status represents
image -- string: Image in /static/images/status
image -- string: Image in /images/status
severity -- int: The serverity of this status
"""
Expand Down
Binary file modified static/css/images/progress_bar.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified static/css/images/ui-bg_glass_100_fdf5ce_1x400.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
123 changes: 59 additions & 64 deletions static/css/jqueryui.css
100644 → 100755

Large diffs are not rendered by default.

5 changes: 2 additions & 3 deletions static/js/stashboard.js → static/widget/statusalert.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// StashBoard :{
stashboard = {};

stashboard.host = "http://status.twilio.com";
stashboard.host = "http://stashboard.appspot.com";

stashboard.start = function(){
var previous = document.getElementById("stashboardJavascript");
Expand Down Expand Up @@ -101,8 +101,7 @@ stashboard.callback = function(data){
}


//setTimeout(stashboard.start, 4000);

setTimeout(stashboard.start, 6000);

};

Expand Down
Loading

0 comments on commit ce26d91

Please sign in to comment.