Browse Source

Happy new year

pull/98/head
Florian Mounier 11 years ago
parent
commit
ee11f880de
  1. 2
      README
  2. 2
      README.md
  3. 2
      demo/cabaret.py
  4. 2
      demo/cabaret/__init__.py
  5. 2
      demo/moulinrouge.py
  6. 2
      demo/moulinrouge/__init__.py
  7. 2
      demo/moulinrouge/data.py
  8. 2
      demo/moulinrouge/tests.py
  9. 2
      perf.py
  10. 2
      pygal/__init__.py
  11. 2
      pygal/_compat.py
  12. 2
      pygal/adapters.py
  13. 2
      pygal/colors.py
  14. 2
      pygal/config.py
  15. 4
      pygal/ghost.py
  16. 2
      pygal/graph/__init__.py
  17. 2
      pygal/graph/bar.py
  18. 2
      pygal/graph/base.py
  19. 2
      pygal/graph/box.py
  20. 2
      pygal/graph/datey.py
  21. 2
      pygal/graph/dot.py
  22. 2
      pygal/graph/funnel.py
  23. 2
      pygal/graph/gauge.py
  24. 2
      pygal/graph/graph.py
  25. 2
      pygal/graph/histogram.py
  26. 2
      pygal/graph/horizontal.py
  27. 2
      pygal/graph/horizontalbar.py
  28. 2
      pygal/graph/horizontalstackedbar.py
  29. 2
      pygal/graph/line.py
  30. 2
      pygal/graph/pie.py
  31. 2
      pygal/graph/pyramid.py
  32. 2
      pygal/graph/radar.py
  33. 2
      pygal/graph/stackedbar.py
  34. 2
      pygal/graph/stackedline.py
  35. 2
      pygal/graph/supranationalworldmap.py
  36. 2
      pygal/graph/verticalpyramid.py
  37. 2
      pygal/graph/worldmap.py
  38. 2
      pygal/graph/worldmap.svg
  39. 2
      pygal/graph/xy.py
  40. 2
      pygal/interpolate.py
  41. 2
      pygal/serie.py
  42. 2
      pygal/style.py
  43. 4
      pygal/svg.py
  44. 2
      pygal/test/__init__.py
  45. 2
      pygal/test/test_bar.py
  46. 2
      pygal/test/test_box.py
  47. 2
      pygal/test/test_config.py
  48. 2
      pygal/test/test_donut.py
  49. 2
      pygal/test/test_graph.py
  50. 2
      pygal/test/test_line.py
  51. 2
      pygal/test/test_sparktext.py
  52. 2
      pygal/test/test_stacked.py
  53. 2
      pygal/test/test_util.py
  54. 2
      pygal/test/utils.py
  55. 2
      pygal/util.py
  56. 2
      pygal/view.py
  57. 2
      pygal_gen.py
  58. 2
      setup.py

2
README

@ -45,7 +45,7 @@ You can also support the project:
## License
Copyright © 2012-2013 Kozea
Copyright © 2012-2014 Kozea
LGPLv3:
This program is free software: you can redistribute it and/or modify

2
README.md

@ -50,7 +50,7 @@ You can also support the project:
## License
Copyright © 2012-2013 Kozea
Copyright © 2012-2014 Kozea
LGPLv3:
This program is free software: you can redistribute it and/or modify

2
demo/cabaret.py

@ -3,7 +3,7 @@
# This file is part of pygal
#
# A python svg graph plotting library
# Copyright © 2012-2013 Kozea
# Copyright © 2012-2014 Kozea
#
# This library is free software: you can redistribute it and/or modify it under
# the terms of the GNU Lesser General Public License as published by the Free

2
demo/cabaret/__init__.py

@ -2,7 +2,7 @@
# This file is part of pygal
#
# A python svg graph plotting library
# Copyright © 2012-2013 Kozea
# Copyright © 2012-2014 Kozea
#
# This library is free software: you can redistribute it and/or modify it under
# the terms of the GNU Lesser General Public License as published by the Free

2
demo/moulinrouge.py

@ -3,7 +3,7 @@
# This file is part of pygal
#
# A python svg graph plotting library
# Copyright © 2012-2013 Kozea
# Copyright © 2012-2014 Kozea
#
# This library is free software: you can redistribute it and/or modify it under
# the terms of the GNU Lesser General Public License as published by the Free

2
demo/moulinrouge/__init__.py

@ -2,7 +2,7 @@
# This file is part of pygal
#
# A python svg graph plotting library
# Copyright © 2012-2013 Kozea
# Copyright © 2012-2014 Kozea
#
# This library is free software: you can redistribute it and/or modify it under
# the terms of the GNU Lesser General Public License as published by the Free

2
demo/moulinrouge/data.py

@ -2,7 +2,7 @@
# This file is part of pygal
#
# A python svg graph plotting library
# Copyright © 2012-2013 Kozea
# Copyright © 2012-2014 Kozea
#
# This library is free software: you can redistribute it and/or modify it under
# the terms of the GNU Lesser General Public License as published by the Free

2
demo/moulinrouge/tests.py

@ -320,7 +320,7 @@ def get_test_routes(app):
datey = DateY(show_dots=False)
datey.add('1', [
(datetime(2011, 12, 21), 10),
(datetime(2013, 4, 8), 12),
(datetime(2014, 4, 8), 12),
(datetime(2010, 2, 28), 2)
])
datey.add('2', [(12, 4), (219, 8), (928, 6)])

2
perf.py

@ -2,7 +2,7 @@
# This file is part of pygal
#
# A python svg graph plotting library
# Copyright © 2012-2013 Kozea
# Copyright © 2012-2014 Kozea
#
# This library is free software: you can redistribute it and/or modify it under
# the terms of the GNU Lesser General Public License as published by the Free

2
pygal/__init__.py

@ -2,7 +2,7 @@
# This file is part of pygal
#
# A python svg graph plotting library
# Copyright © 2012-2013 Kozea
# Copyright © 2012-2014 Kozea
#
# This library is free software: you can redistribute it and/or modify it under
# the terms of the GNU Lesser General Public License as published by the Free

2
pygal/_compat.py

@ -2,7 +2,7 @@
# This file is part of pygal
#
# A python svg graph plotting library
# Copyright © 2012-2013 Kozea
# Copyright © 2012-2014 Kozea
#
# This library is free software: you can redistribute it and/or modify it under
# the terms of the GNU Lesser General Public License as published by the Free

2
pygal/adapters.py

@ -2,7 +2,7 @@
# This file is part of pygal
#
# A python svg graph plotting library
# Copyright © 2012-2013 Kozea
# Copyright © 2012-2014 Kozea
#
# This library is free software: you can redistribute it and/or modify it under
# the terms of the GNU Lesser General Public License as published by the Free

2
pygal/colors.py

@ -2,7 +2,7 @@
# This file is part of pygal
#
# A python svg graph plotting library
# Copyright © 2012-2013 Kozea
# Copyright © 2012-2014 Kozea
#
# This library is free software: you can redistribute it and/or modify it under
# the terms of the GNU Lesser General Public License as published by the Free

2
pygal/config.py

@ -2,7 +2,7 @@
# This file is part of pygal
#
# A python svg graph plotting library
# Copyright © 2012-2013 Kozea
# Copyright © 2012-2014 Kozea
#
# This library is free software: you can redistribute it and/or modify it under
# the terms of the GNU Lesser General Public License as published by the Free

4
pygal/ghost.py

@ -2,7 +2,7 @@
# This file is part of pygal
#
# A python svg graph plotting library
# Copyright © 2012-2013 Kozea
# Copyright © 2012-2014 Kozea
#
# This library is free software: you can redistribute it and/or modify it under
# the terms of the GNU Lesser General Public License as published by the Free
@ -73,7 +73,7 @@ class Ghost(object):
def add_xml_filter(self, callback):
self.xml_filters.append(callback)
def make_series(self, series):
return prepare_values(series, self.config, self.cls)

2
pygal/graph/__init__.py

@ -2,7 +2,7 @@
# This file is part of pygal
#
# A python svg graph plotting library
# Copyright © 2012-2013 Kozea
# Copyright © 2012-2014 Kozea
#
# This library is free software: you can redistribute it and/or modify it under
# the terms of the GNU Lesser General Public License as published by the Free

2
pygal/graph/bar.py

@ -2,7 +2,7 @@
# This file is part of pygal
#
# A python svg graph plotting library
# Copyright © 2012-2013 Kozea
# Copyright © 2012-2014 Kozea
#
# This library is free software: you can redistribute it and/or modify it under
# the terms of the GNU Lesser General Public License as published by the Free

2
pygal/graph/base.py

@ -2,7 +2,7 @@
# This file is part of pygal
#
# A python svg graph plotting library
# Copyright © 2012-2013 Kozea
# Copyright © 2012-2014 Kozea
#
# This library is free software: you can redistribute it and/or modify it under
# the terms of the GNU Lesser General Public License as published by the Free

2
pygal/graph/box.py

@ -2,7 +2,7 @@
# This file is part of pygal
#
# A python svg graph plotting library
# Copyright © 2012-2013 Kozea
# Copyright © 2012-2014 Kozea
#
# This library is free software: you can redistribute it and/or modify it under
# the terms of the GNU Lesser General Public License as published by the Free

2
pygal/graph/datey.py

@ -26,7 +26,7 @@ import pygal
from datetime import datetime,timedelta
def jour(n) :
return datetime(year=2013,month=1,day=1)+timedelta(days=n)
return datetime(year=2014,month=1,day=1)+timedelta(days=n)
x=(1,20,35,54,345,898)
x=tuple(map(jour,x))

2
pygal/graph/dot.py

@ -2,7 +2,7 @@
# This file is part of pygal
#
# A python svg graph plotting library
# Copyright © 2012-2013 Kozea
# Copyright © 2012-2014 Kozea
#
# This library is free software: you can redistribute it and/or modify it under
# the terms of the GNU Lesser General Public License as published by the Free

2
pygal/graph/funnel.py

@ -2,7 +2,7 @@
# This file is part of pygal
#
# A python svg graph plotting library
# Copyright © 2012-2013 Kozea
# Copyright © 2012-2014 Kozea
#
# This library is free software: you can redistribute it and/or modify it under
# the terms of the GNU Lesser General Public License as published by the Free

2
pygal/graph/gauge.py

@ -2,7 +2,7 @@
# This file is part of pygal
#
# A python svg graph plotting library
# Copyright © 2012-2013 Kozea
# Copyright © 2012-2014 Kozea
#
# This library is free software: you can redistribute it and/or modify it under
# the terms of the GNU Lesser General Public License as published by the Free

2
pygal/graph/graph.py

@ -2,7 +2,7 @@
# This file is part of pygal
#
# A python svg graph plotting library
# Copyright © 2012-2013 Kozea
# Copyright © 2012-2014 Kozea
#
# This library is free software: you can redistribute it and/or modify it under
# the terms of the GNU Lesser General Public License as published by the Free

2
pygal/graph/histogram.py

@ -2,7 +2,7 @@
# This file is part of pygal
#
# A python svg graph plotting library
# Copyright © 2012-2013 Kozea
# Copyright © 2012-2014 Kozea
#
# This library is free software: you can redistribute it and/or modify it under
# the terms of the GNU Lesser General Public License as published by the Free

2
pygal/graph/horizontal.py

@ -2,7 +2,7 @@
# This file is part of pygal
#
# A python svg graph plotting library
# Copyright © 2012-2013 Kozea
# Copyright © 2012-2014 Kozea
#
# This library is free software: you can redistribute it and/or modify it under
# the terms of the GNU Lesser General Public License as published by the Free

2
pygal/graph/horizontalbar.py

@ -2,7 +2,7 @@
# This file is part of pygal
#
# A python svg graph plotting library
# Copyright © 2012-2013 Kozea
# Copyright © 2012-2014 Kozea
#
# This library is free software: you can redistribute it and/or modify it under
# the terms of the GNU Lesser General Public License as published by the Free

2
pygal/graph/horizontalstackedbar.py

@ -2,7 +2,7 @@
# This file is part of pygal
#
# A python svg graph plotting library
# Copyright © 2012-2013 Kozea
# Copyright © 2012-2014 Kozea
#
# This library is free software: you can redistribute it and/or modify it under
# the terms of the GNU Lesser General Public License as published by the Free

2
pygal/graph/line.py

@ -2,7 +2,7 @@
# This file is part of pygal
#
# A python svg graph plotting library
# Copyright © 2012-2013 Kozea
# Copyright © 2012-2014 Kozea
#
# This library is free software: you can redistribute it and/or modify it under
# the terms of the GNU Lesser General Public License as published by the Free

2
pygal/graph/pie.py

@ -2,7 +2,7 @@
# This file is part of pygal
#
# A python svg graph plotting library
# Copyright © 2012-2013 Kozea
# Copyright © 2012-2014 Kozea
#
# This library is free software: you can redistribute it and/or modify it under
# the terms of the GNU Lesser General Public License as published by the Free

2
pygal/graph/pyramid.py

@ -2,7 +2,7 @@
# This file is part of pygal
#
# A python svg graph plotting library
# Copyright © 2012-2013 Kozea
# Copyright © 2012-2014 Kozea
#
# This library is free software: you can redistribute it and/or modify it under
# the terms of the GNU Lesser General Public License as published by the Free

2
pygal/graph/radar.py

@ -2,7 +2,7 @@
# This file is part of pygal
#
# A python svg graph plotting library
# Copyright © 2012-2013 Kozea
# Copyright © 2012-2014 Kozea
#
# This library is free software: you can redistribute it and/or modify it under
# the terms of the GNU Lesser General Public License as published by the Free

2
pygal/graph/stackedbar.py

@ -2,7 +2,7 @@
# This file is part of pygal
#
# A python svg graph plotting library
# Copyright © 2012-2013 Kozea
# Copyright © 2012-2014 Kozea
#
# This library is free software: you can redistribute it and/or modify it under
# the terms of the GNU Lesser General Public License as published by the Free

2
pygal/graph/stackedline.py

@ -2,7 +2,7 @@
# This file is part of pygal
#
# A python svg graph plotting library
# Copyright © 2012-2013 Kozea
# Copyright © 2012-2014 Kozea
#
# This library is free software: you can redistribute it and/or modify it under
# the terms of the GNU Lesser General Public License as published by the Free

2
pygal/graph/supranationalworldmap.py

@ -2,7 +2,7 @@
# This file is part of pygal
#
# A python svg graph plotting library
# Copyright © 2012-2013 Kozea
# Copyright © 2012-2014 Kozea
#
# This library is free software: you can redistribute it and/or modify it under
# the terms of the GNU Lesser General Public License as published by the Free

2
pygal/graph/verticalpyramid.py

@ -2,7 +2,7 @@
# This file is part of pygal
#
# A python svg graph plotting library
# Copyright © 2012-2013 Kozea
# Copyright © 2012-2014 Kozea
#
# This library is free software: you can redistribute it and/or modify it under
# the terms of the GNU Lesser General Public License as published by the Free

2
pygal/graph/worldmap.py

@ -2,7 +2,7 @@
# This file is part of pygal
#
# A python svg graph plotting library
# Copyright © 2012-2013 Kozea
# Copyright © 2012-2014 Kozea
#
# This library is free software: you can redistribute it and/or modify it under
# the terms of the GNU Lesser General Public License as published by the Free

2
pygal/graph/worldmap.svg

@ -2384,7 +2384,7 @@
<path d="m2008.1 600.29c0.2 0.77 0.7 1.55 1.5 1.8-0.6-0.53-1.1-1.13-1.5-1.8"/>
<path d="m2009.7 499.63c0.3 0.12 0.5 0.07 0.8-0.14-0.3 0.05-0.5 0.09-0.8 0.14"/>
<path d="m2012.7 592.37c0.2 0.79-0.4 1.58 0.4 2.16 0.4-0.76 0.1-1.57-0.4-2.16"/>
<path d="m2013.9 593.66v0.72-0.72"/>
<path d="m2014.9 593.66v0.72-0.72"/>
<path d="m2030.6 575.3c0.1 0.34 0.3 0.56 0.7 0.65-0.3-0.21-0.5-0.43-0.7-0.65"/>
</g>
<g id="ye" class="country">

Before

Width:  |  Height:  |  Size: 752 KiB

After

Width:  |  Height:  |  Size: 752 KiB

2
pygal/graph/xy.py

@ -2,7 +2,7 @@
# This file is part of pygal
#
# A python svg graph plotting library
# Copyright © 2012-2013 Kozea
# Copyright © 2012-2014 Kozea
#
# This library is free software: you can redistribute it and/or modify it under
# the terms of the GNU Lesser General Public License as published by the Free

2
pygal/interpolate.py

@ -2,7 +2,7 @@
# This file is part of pygal
#
# A python svg graph plotting library
# Copyright © 2012-2013 Kozea
# Copyright © 2012-2014 Kozea
#
# This library is free software: you can redistribute it and/or modify it under
# the terms of the GNU Lesser General Public License as published by the Free

2
pygal/serie.py

@ -2,7 +2,7 @@
# This file is part of pygal
#
# A python svg graph plotting library
# Copyright © 2012-2013 Kozea
# Copyright © 2012-2014 Kozea
#
# This library is free software: you can redistribute it and/or modify it under
# the terms of the GNU Lesser General Public License as published by the Free

2
pygal/style.py

@ -2,7 +2,7 @@
# This file is part of pygal
#
# A python svg graph plotting library
# Copyright © 2012-2013 Kozea
# Copyright © 2012-2014 Kozea
#
# This library is free software: you can redistribute it and/or modify it under
# the terms of the GNU Lesser General Public License as published by the Free

4
pygal/svg.py

@ -2,7 +2,7 @@
# This file is part of pygal
#
# A python svg graph plotting library
# Copyright © 2012-2013 Kozea
# Copyright © 2012-2014 Kozea
#
# This library is free software: you can redistribute it and/or modify it under
# the terms of the GNU Lesser General Public License as published by the Free
@ -56,7 +56,7 @@ class Svg(object):
self.root.attrib['class'] = 'pygal-chart'
self.root.append(
etree.Comment(u(
'Generated with pygal %s ©Kozea 2011-2013 on %s' % (
'Generated with pygal %s ©Kozea 2011-2014 on %s' % (
__version__, date.today().isoformat()))))
self.root.append(etree.Comment(u('http://pygal.org')))
self.root.append(etree.Comment(u('http://github.com/Kozea/pygal')))

2
pygal/test/__init__.py

@ -2,7 +2,7 @@
# This file is part of pygal
#
# A python svg graph plotting library
# Copyright © 2012-2013 Kozea
# Copyright © 2012-2014 Kozea
#
# This library is free software: you can redistribute it and/or modify it under
# the terms of the GNU Lesser General Public License as published by the Free

2
pygal/test/test_bar.py

@ -2,7 +2,7 @@
# This file is part of pygal
#
# A python svg graph plotting library
# Copyright © 2012-2013 Kozea
# Copyright © 2012-2014 Kozea
#
# This library is free software: you can redistribute it and/or modify it under
# the terms of the GNU Lesser General Public License as published by the Free

2
pygal/test/test_box.py

@ -2,7 +2,7 @@
# This file is part of pygal
#
# A python svg graph plotting library
# Copyright © 2012-2013 Kozea
# Copyright © 2012-2014 Kozea
#
# This library is free software: you can redistribute it and/or modify it under
# the terms of the GNU Lesser General Public License as published by the Free

2
pygal/test/test_config.py

@ -2,7 +2,7 @@
# This file is part of pygal
#
# A python svg graph plotting library
# Copyright © 2012-2013 Kozea
# Copyright © 2012-2014 Kozea
#
# This library is free software: you can redistribute it and/or modify it under
# the terms of the GNU Lesser General Public License as published by the Free

2
pygal/test/test_donut.py

@ -2,7 +2,7 @@
# This file is part of pygal
#
# A python svg graph plotting library
# Copyright © 2012-2013 Kozea
# Copyright © 2012-2014 Kozea
#
# This library is free software: you can redistribute it and/or modify it under
# the terms of the GNU Lesser General Public License as published by the Free

2
pygal/test/test_graph.py

@ -2,7 +2,7 @@
# This file is part of pygal
#
# A python svg graph plotting library
# Copyright © 2012-2013 Kozea
# Copyright © 2012-2014 Kozea
#
# This library is free software: you can redistribute it and/or modify it under
# the terms of the GNU Lesser General Public License as published by the Free

2
pygal/test/test_line.py

@ -2,7 +2,7 @@
# This file is part of pygal
#
# A python svg graph plotting library
# Copyright © 2012-2013 Kozea
# Copyright © 2012-2014 Kozea
#
# This library is free software: you can redistribute it and/or modify it under
# the terms of the GNU Lesser General Public License as published by the Free

2
pygal/test/test_sparktext.py

@ -2,7 +2,7 @@
# This file is part of pygal
#
# A python svg graph plotting library
# Copyright © 2012-2013 Kozea
# Copyright © 2012-2014 Kozea
#
# This library is free software: you can redistribute it and/or modify it under
# the terms of the GNU Lesser General Public License as published by the Free

2
pygal/test/test_stacked.py

@ -2,7 +2,7 @@
# This file is part of pygal
#
# A python svg graph plotting library
# Copyright © 2012-2013 Kozea
# Copyright © 2012-2014 Kozea
#
# This library is free software: you can redistribute it and/or modify it under
# the terms of the GNU Lesser General Public License as published by the Free

2
pygal/test/test_util.py

@ -2,7 +2,7 @@
# This file is part of pygal
#
# A python svg graph plotting library
# Copyright © 2012-2013 Kozea
# Copyright © 2012-2014 Kozea
#
# This library is free software: you can redistribute it and/or modify it under
# the terms of the GNU Lesser General Public License as published by the Free

2
pygal/test/utils.py

@ -2,7 +2,7 @@
# This file is part of pygal
#
# A python svg graph plotting library
# Copyright © 2012-2013 Kozea
# Copyright © 2012-2014 Kozea
#
# This library is free software: you can redistribute it and/or modify it under
# the terms of the GNU Lesser General Public License as published by the Free

2
pygal/util.py

@ -2,7 +2,7 @@
# This file is part of pygal
#
# A python svg graph plotting library
# Copyright © 2012-2013 Kozea
# Copyright © 2012-2014 Kozea
#
# This library is free software: you can redistribute it and/or modify it under
# the terms of the GNU Lesser General Public License as published by the Free

2
pygal/view.py

@ -2,7 +2,7 @@
# This file is part of pygal
#
# A python svg graph plotting library
# Copyright © 2012-2013 Kozea
# Copyright © 2012-2014 Kozea
#
# This library is free software: you can redistribute it and/or modify it under
# the terms of the GNU Lesser General Public License as published by the Free

2
pygal_gen.py

@ -3,7 +3,7 @@
# This file is part of pygal
#
# A python svg graph plotting library
# Copyright © 2012-2013 Kozea
# Copyright © 2012-2014 Kozea
#
# This library is free software: you can redistribute it and/or modify it under
# the terms of the GNU Lesser General Public License as published by the Free

2
setup.py

@ -3,7 +3,7 @@
# This file is part of pygal
#
# A python svg graph plotting library
# Copyright © 2012-2013 Kozea
# Copyright © 2012-2014 Kozea
#
# This library is free software: you can redistribute it and/or modify it under
# the terms of the GNU Lesser General Public License as published by the Free

Loading…
Cancel
Save