Skip to content

Commit

Permalink
rename project to timeserieswidget
Browse files Browse the repository at this point in the history
  • Loading branch information
Dieterbe committed Feb 10, 2013
1 parent d87e8f7 commit 481342c
Show file tree
Hide file tree
Showing 11 changed files with 25 additions and 25 deletions.
12 changes: 6 additions & 6 deletions README.md
@@ -1,6 +1,6 @@
## graphite.js
## TimeSeriesWidget

Plugin to easily make graphs and update them on the fly using
Plugin to easily make time series graphs and update them on the fly using
[Graphite url api](http://readthedocs.org/docs/graphite/en/latest/url-api.html) on the background,
allowing you to easily add:

Expand All @@ -11,7 +11,7 @@ allowing you to easily add:
* PNG's rendered by Graphite

Goals:
* easy to use, elegant but powerful api.
* easy to use, elegant but powerful api, aimed to cover all your graphite/time series graphing needs.
* only abstract where it makes sense. Graphite, Flot, and Rickshaw api's are awesome and powerfull, expose them
* aim for some consistency in configuration across backends (to the extent possible and sane)
* provide all interactive features you would expect; so that all graphite dashboards can rely on the same
Expand Down Expand Up @@ -74,7 +74,7 @@ NA = not available (can't be done to my knowledge), WIP = work in progress (shou
<td>NA</td>
<td>WIP (<a href="https://github.com/flot/flot/pull/848">flot pull 848</a>,
<a href="https://github.com/flot/flot/issues/869">flot pull 869</a>,
<a href="https://github.com/Dieterbe/graphitejs/tree/flot-legend-toggle">branch flot-legend-toggle</a>)</td>
<a href="https://github.com/Dieterbe/timeserieswidget/tree/flot-legend-toggle">branch flot-legend-toggle</a>)</td>
<td>Y</td>
</tr>
<tr>
Expand All @@ -100,8 +100,8 @@ NA = not available (can't be done to my knowledge), WIP = work in progress (shou

**any web code that can generate graphite urls can use this library with minimal transition work**

![Screenshot](https://raw.github.com/Dieterbe/graphitejs/master/screenshots/flot-annotated-event.png)
![Screenshot](https://raw.github.com/Dieterbe/graphitejs/master/screenshots/compare-stacked.png)
![Screenshot](https://raw.github.com/Dieterbe/timeserieswidget/master/screenshots/flot-annotated-event.png)
![Screenshot](https://raw.github.com/Dieterbe/timeserieswidget/master/screenshots/compare-stacked.png)
## Notes for client-side graph rendering / troubleshooting

### Configuration of graphite server / If you don't seem to get any actual data
Expand Down
4 changes: 2 additions & 2 deletions examples/graph-flot-fancy-stacked.html
@@ -1,14 +1,14 @@
<html><head>
<script src="../flot/jquery.js"></script>
<script src="../jquery.graphite.js"></script>
<script src="../jquery.tswidget.js"></script>
<script src="../graphite_helpers.js"></script>
<script src="../flot/jquery.flot.js"></script>
<script src="../flot/jquery.flot.selection.js"></script>
<script src="../flot/jquery.flot.time.js"></script>
<script src="../flot/jquery.flot.stack.js"></script>
<script src="../jquery.flot.axislabels.js"></script>
<script src="graph_defs_flot.js"></script>
<link type="text/css" rel="stylesheet" href="../graphitejs.css">
<link type="text/css" rel="stylesheet" href="../tswidget.css">
</head>
<body>
<div class="chart_container flot" id="chart_container_flot">
Expand Down
4 changes: 2 additions & 2 deletions examples/graph-flot-simple-line.html
@@ -1,14 +1,14 @@
<html><head>
<script src="../flot/jquery.js"></script>
<script src="../jquery.graphite.js"></script>
<script src="../jquery.tswidget.js"></script>
<script src="../graphite_helpers.js"></script>
<script src="../flot/jquery.flot.js"></script>
<script src="../flot/jquery.flot.selection.js"></script>
<script src="../flot/jquery.flot.time.js"></script>
<script src="../flot/jquery.flot.stack.js"></script>
<script src="../jquery.flot.axislabels.js"></script>
<script src="graph_defs_flot.js"></script>
<link type="text/css" rel="stylesheet" href="../graphitejs.css">
<link type="text/css" rel="stylesheet" href="../tswidget.css">
</head>
<body>
<div class="chart_container flot" id="chart_container_flot">
Expand Down
4 changes: 2 additions & 2 deletions examples/graph-png-fancy-stacked.html
@@ -1,9 +1,9 @@
<html>
<head>
<script src="../jquery.min.js"></script>
<script src="../jquery.graphite.js"></script>
<script src="../jquery.tswidget.js"></script>
<script src="graph_defs_png.js"></script>
<link type="text/css" rel="stylesheet" href="../graphitejs.css">
<link type="text/css" rel="stylesheet" href="../tswidget.css">
</head>
<body>
<img id="graph_png_fancy_stacked"/>
Expand Down
4 changes: 2 additions & 2 deletions examples/graph-png-simple-line.html
@@ -1,9 +1,9 @@
<html>
<head>
<script src="../jquery.min.js"></script>
<script src="../jquery.graphite.js"></script>
<script src="../jquery.tswidget.js"></script>
<script src="graph_defs_png.js"></script>
<link type="text/css" rel="stylesheet" href="../graphitejs.css">
<link type="text/css" rel="stylesheet" href="../tswidget.css">
</head>
<body>
<img id="graph_png_simple_line"/>
Expand Down
4 changes: 2 additions & 2 deletions examples/graph-png.html
@@ -1,9 +1,9 @@
<html>
<head>
<script src="../jquery.min.js"></script>
<script src="../jquery.graphite.js"></script>
<script src="../jquery.tswidget.js"></script>
<script src="graph_defs_png.js"></script>
<link type="text/css" rel="stylesheet" href="../graphitejs.css">
<link type="text/css" rel="stylesheet" href="../tswidget.css">
</head>
<body>
<img id="graph_png_simple_line"/>
Expand Down
4 changes: 2 additions & 2 deletions examples/graph-rickshaw-fancy-stacked.html
Expand Up @@ -2,14 +2,14 @@
<head>
<script src="../jquery.min.js"></script>
<script src="../jquery-ui.min.js"></script>
<script src="../jquery.graphite.js"></script>
<script src="../jquery.tswidget.js"></script>
<script src="../graphite_helpers.js"></script>
<script src="../rickshaw/vendor/d3.min.js"></script>
<script src="../rickshaw/vendor/d3.layout.min.js"></script>
<script src="../rickshaw/rickshaw.js"></script>
<script src="graph_defs_rickshaw.js"></script>
<link type="text/css" rel="stylesheet" href="../rickshaw/rickshaw.css">
<link type="text/css" rel="stylesheet" href="../graphitejs.css">
<link type="text/css" rel="stylesheet" href="../tswidget.css">
</head>
<body>
<div class="chart_container rickshaw" id="chart_container_rickshaw">
Expand Down
4 changes: 2 additions & 2 deletions examples/graph-rickshaw-simple-line.html
Expand Up @@ -2,14 +2,14 @@
<head>
<script src="../jquery.min.js"></script>
<script src="../jquery-ui.min.js"></script>
<script src="../jquery.graphite.js"></script>
<script src="../jquery.tswidget.js"></script>
<script src="../graphite_helpers.js"></script>
<script src="../rickshaw/vendor/d3.min.js"></script>
<script src="../rickshaw/vendor/d3.layout.min.js"></script>
<script src="../rickshaw/rickshaw.js"></script>
<script src="graph_defs_rickshaw.js"></script>
<link type="text/css" rel="stylesheet" href="../rickshaw/rickshaw.css">
<link type="text/css" rel="stylesheet" href="../graphitejs.css">
<link type="text/css" rel="stylesheet" href="../tswidget.css">
</head>
<body>
<div class="chart_container rickshaw" id="chart_container_rickshaw">
Expand Down
4 changes: 2 additions & 2 deletions examples/graph-rickshaw.html
Expand Up @@ -2,14 +2,14 @@
<head>
<script src="../jquery.min.js"></script>
<script src="../jquery-ui.min.js"></script>
<script src="../jquery.graphite.js"></script>
<script src="../jquery.tswidget.js"></script>
<script src="../graphite_helpers.js"></script>
<script src="../rickshaw/vendor/d3.min.js"></script>
<script src="../rickshaw/vendor/d3.layout.min.js"></script>
<script src="../rickshaw/rickshaw.js"></script>
<script src="graph_defs_rickshaw.js"></script>
<link type="text/css" rel="stylesheet" href="../rickshaw/rickshaw.css">
<link type="text/css" rel="stylesheet" href="../graphitejs.css">
<link type="text/css" rel="stylesheet" href="../tswidget.css">
</head>
<body>
<div class="chart_container rickshaw" id="chart_container_rickshaw">
Expand Down
6 changes: 3 additions & 3 deletions jquery.graphite.js → jquery.tswidget.js
Expand Up @@ -77,7 +77,7 @@ function find_definition (target_graphite, options) {
var default_graphite_options = {
'fgcolor' : '#ffffff'
}
var default_graphitejs_options = {
var default_tswidget_options = {
'events_color': '#ccff66',
'events_text_color': '#5C991F'
}
Expand Down Expand Up @@ -128,7 +128,7 @@ function find_definition (target_graphite, options) {
// plot ($(..), [d], ..)
$.fn.graphiteRick = function (options, on_error) {
options = options || {};
var settings = $.extend({}, default_graphite_options, default_graphitejs_options, $.fn.graphite.defaults, options);
var settings = $.extend({}, default_graphite_options, default_tswidget_options, $.fn.graphite.defaults, options);

return this.each(function () {
$this = $(this);
Expand All @@ -139,7 +139,7 @@ function find_definition (target_graphite, options) {

$.fn.graphiteFlot = function (options, on_error) {
options = options || {};
var settings = $.extend({}, default_graphite_options, default_graphitejs_options, $.fn.graphite.defaults, options);
var settings = $.extend({}, default_graphite_options, default_tswidget_options, $.fn.graphite.defaults, options);

return this.each(function () {
$this = $(this);
Expand Down
File renamed without changes.

0 comments on commit 481342c

Please sign in to comment.