Skip to content
This repository is currently being migrated. It's locked while the migration is in progress.

Commit

Permalink
removing misleading docs, fixing charset and licences
Browse files Browse the repository at this point in the history
  • Loading branch information
karolk committed Aug 19, 2012
1 parent 6a46e09 commit d0ea63b
Show file tree
Hide file tree
Showing 13 changed files with 26 additions and 56 deletions.
4 changes: 2 additions & 2 deletions g.bar.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*!
* g.Raphael 0.5 - Charting library, based on Raphaël
* g.Raphael 0.51 - Charting library, based on Raphaël
*
* Copyright (c) 2009 Dmitry Baranovskiy (http://g.raphaeljs.com)
* Copyright (c) 2009-2012 Dmitry Baranovskiy (http://g.raphaeljs.com)
* Licensed under the MIT (http://www.opensource.org/licenses/mit-license.php) license.
*/
(function () {
Expand Down
4 changes: 2 additions & 2 deletions g.dot.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*!
* g.Raphael 0.5 - Charting library, based on Raphaël
* g.Raphael 0.51 - Charting library, based on Raphaël
*
* Copyright (c) 2009 Dmitry Baranovskiy (http://g.raphaeljs.com)
* Copyright (c) 2009-2012 Dmitry Baranovskiy (http://g.raphaeljs.com)
* Licensed under the MIT (http://www.opensource.org/licenses/mit-license.php) license.
*/

Expand Down
4 changes: 2 additions & 2 deletions g.line.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*!
* g.Raphael 0.5 - Charting library, based on Raphaël
* g.Raphael 0.51 - Charting library, based on Raphaël
*
* Copyright (c) 2009 Dmitry Baranovskiy (http://g.raphaeljs.com)
* Copyright (c) 2009-2012 Dmitry Baranovskiy (http://g.raphaeljs.com)
* Licensed under the MIT (http://www.opensource.org/licenses/mit-license.php) license.
*/

Expand Down
4 changes: 2 additions & 2 deletions g.pie.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*!
* g.Raphael 0.5 - Charting library, based on Raphaël
* g.Raphael 0.51 - Charting library, based on Raphaël
*
* Copyright (c) 2009 Dmitry Baranovskiy (http://g.raphaeljs.com)
* Copyright (c) 2009-2012 Dmitry Baranovskiy (http://g.raphaeljs.com)
* Licensed under the MIT (http://www.opensource.org/licenses/mit-license.php) license.
*/

Expand Down
34 changes: 2 additions & 32 deletions g.raphael.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*!
* g.Raphael 0.5 - Charting library, based on Raphaël
* g.Raphael 0.51 - Charting library, based on Raphaël
*
* Copyright (c) 2009 Dmitry Baranovskiy (http://g.raphaeljs.com)
* Copyright (c) 2009-2012 Dmitry Baranovskiy (http://g.raphaeljs.com)
* Licensed under the MIT (http://www.opensource.org/licenses/mit-license.php) license.
*/

Expand All @@ -22,11 +22,6 @@
- y (number) y coordinate of the popup's tail [default: Element's `y` or `cy`]
**
= (object) path element of the popup
> Usage
| paper.circle(50, 50, 5).attr({
| stroke: "#fff",
| fill: "0-#c9de96-#8ab66b:44-#398235"
| }).popup();
\*/
Raphael.el.popup = function (dir, size, x, y) {
var paper = this.paper || this[0].paper,
Expand Down Expand Up @@ -133,11 +128,6 @@ Raphael.el.popup = function (dir, size, x, y) {
- y (number) y coordinate of the center of the tag loop [default: Element's `x` or `cx`]
**
= (object) path element of the tag
> Usage
| paper.circle(50, 50, 15).attr({
| stroke: "#fff",
| fill: "0-#c9de96-#8ab66b:44-#398235"
| }).tag(60);
\*/
Raphael.el.tag = function (angle, r, x, y) {
var d = 3,
Expand Down Expand Up @@ -223,11 +213,6 @@ Raphael.el.tag = function (angle, r, x, y) {
- y (number) y coordinate of the drop's point [default: Element's `x` or `cx`]
**
= (object) path element of the drop
> Usage
| paper.circle(50, 50, 8).attr({
| stroke: "#fff",
| fill: "0-#c9de96-#8ab66b:44-#398235"
| }).drop(60);
\*/
Raphael.el.drop = function (angle, x, y) {
var bb = this.getBBox(),
Expand Down Expand Up @@ -279,11 +264,6 @@ Raphael.el.drop = function (angle, x, y) {
- y (number) y coordinate of the flag's point [default: Element's `x` or `cx`]
**
= (object) path element of the flag
> Usage
| paper.circle(50, 50, 10).attr({
| stroke: "#fff",
| fill: "0-#c9de96-#8ab66b:44-#398235"
| }).flag(60);
\*/
Raphael.el.flag = function (angle, x, y) {
var d = 3,
Expand Down Expand Up @@ -344,11 +324,6 @@ Raphael.el.flag = function (angle, x, y) {
* Puts the context Element in a 'label' tooltip. Can also be used on sets.
**
= (object) path element of the label.
> Usage
| paper.circle(50, 50, 10).attr({
| stroke: "#fff",
| fill: "0-#c9de96-#8ab66b:44-#398235"
| }).label();
\*/
Raphael.el.label = function () {
var bb = this.getBBox(),
Expand All @@ -373,11 +348,6 @@ Raphael.el.label = function () {
- y (number) y coordinate of the blob's tail [default: Element's `x` or `cx`]
**
= (object) path element of the blob
> Usage
| paper.circle(50, 50, 8).attr({
| stroke: "#fff",
| fill: "0-#c9de96-#8ab66b:44-#398235"
| }).blob(60);
\*/
Raphael.el.blob = function (angle, x, y) {
var bb = this.getBBox(),
Expand Down
4 changes: 2 additions & 2 deletions test/barchart.html
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>g·Raphaël Static Bar Charts</title>
<link rel="stylesheet" href="css/demo.css" type="text/css" media="screen" charset="utf-8">
<link rel="stylesheet" href="css/demo-print.css" type="text/css" media="print" charset="utf-8">
Expand Down
4 changes: 2 additions & 2 deletions test/barchart2.html
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>gRaphaël Dynamic Bar Chart</title>
<link rel="stylesheet" href="css/demo.css" type="text/css" media="screen" charset="utf-8">
<link rel="stylesheet" href="css/demo-print.css" type="text/css" media="print" charset="utf-8">
Expand Down
4 changes: 2 additions & 2 deletions test/brightness.html
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Raphael Tooltips</title>
<script src="../raphael-min.js" type="text/javascript"></script>
<script src="../g.raphael.js" type="text/javascript"></script>
Expand Down
4 changes: 2 additions & 2 deletions test/dotchart.html
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>gRaphaël Dot Chart</title>
<link rel="stylesheet" href="css/demo.css" type="text/css" media="screen" charset="utf-8">
<link rel="stylesheet" href="css/demo-print.css" type="text/css" media="print" charset="utf-8">
Expand Down
4 changes: 2 additions & 2 deletions test/linechart.html
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>gRaphaël Line Charts</title>
<link rel="stylesheet" href="css/demo.css" type="text/css" media="screen" charset="utf-8">
<link rel="stylesheet" href="css/demo-print.css" type="text/css" media="print" charset="utf-8">
Expand Down
4 changes: 2 additions & 2 deletions test/piechart.html
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>gRaphaël Static Pie Chart</title>
<link rel="stylesheet" href="css/demo.css" type="text/css" media="screen" charset="utf-8">
<link rel="stylesheet" href="css/demo-print.css" type="text/css" media="print" charset="utf-8">
Expand Down
4 changes: 2 additions & 2 deletions test/piechart2.html
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>g·Raphaël Dynamic Pie Chart</title>
<link rel="stylesheet" href="css/demo.css" type="text/css" media="screen" charset="utf-8">
<link rel="stylesheet" href="css/demo-print.css" type="text/css" media="print" charset="utf-8">
Expand Down
4 changes: 2 additions & 2 deletions test/tooltips.html
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Raphael Tooltips</title>
<script src="../raphael-min.js" type="text/javascript"></script>
<script src="../g.raphael.js" type="text/javascript"></script>
Expand Down

0 comments on commit d0ea63b

Please sign in to comment.