From: Guillaume Pellerin Date: Wed, 1 Apr 2015 00:27:26 +0000 (+0200) Subject: add more logs X-Git-Tag: 1.6a^2~32 X-Git-Url: https://git.parisson.com/?a=commitdiff_plain;h=8bb84ee9863d942fabb5a93680c06af1e7163b8a;p=telemeta.git add more logs --- diff --git a/.gitmodules b/.gitmodules index 962e4700..419e956e 100644 --- a/.gitmodules +++ b/.gitmodules @@ -6,4 +6,4 @@ url = https://github.com/Parisson/Telemeta-locales.git [submodule "doc/blog/themes/pelican-bootstrap3"] path = doc/blog/themes/pelican-bootstrap3 - url = https://github.com/yomguy/pelican-bootstrap3.git + url = https://github.com/DandyDev/pelican-bootstrap3.git diff --git a/doc/blog/content/README.rst b/doc/blog/content/README.rst index 6a553af7..d4d771a8 100644 --- a/doc/blog/content/README.rst +++ b/doc/blog/content/README.rst @@ -7,16 +7,8 @@ Telemeta: open web audio platform with semantics :URL: :save_as: index.html -|version| |downloads| - -.. |version| image:: https://pypip.in/version/Telemeta/badge.png - :target: https://pypi.python.org/pypi/Telemeta/ - :alt: Version - -.. |downloads| image:: https://pypip.in/download/Telemeta/badge.png - :target: https://pypi.python.org/pypi/Telemeta/ - :alt: Downloads - +.. image:: /images/logo_telemeta_2.png + :alt: Telemeta logo Overview ========= diff --git a/doc/blog/content/TM-1.4.6.rst b/doc/blog/content/TM-1.4.6.rst new file mode 100644 index 00000000..0b6103a8 --- /dev/null +++ b/doc/blog/content/TM-1.4.6.rst @@ -0,0 +1,20 @@ +Telemeta 1.4.6 is out! +###################### + +:category: News +:date: 2014-11-24 12:44 + +Changelog: + +* Drastically improve collection zip packaqe streaming thanks to zipstream (check NEW dependencies) +* Compatible with TimeSide >= 0.5.2 +* Add URL field to item so that a external sound can be indexed and streamed +* Add TIMESIDE_AUTO_ZOOM in settings to auto toggle the player in zooming mode +* Add TIMESIDE_DEFAULT_GRAPHER_ID in settings to select the default grapher in the player +* Add minor migrations +* Fix marker display bug +* This is a transitional, minor release because 1.5 will be released soon. + +Download + +* http://pypi.python.org/packages/source/T/Telemeta/Telemeta-1.4.6.tar.gz diff --git a/doc/blog/content/TM-1.5.rst b/doc/blog/content/TM-1.5.rst new file mode 100644 index 00000000..38122fd1 --- /dev/null +++ b/doc/blog/content/TM-1.5.rst @@ -0,0 +1,20 @@ +Telemeta 1.5 is out! +#################### + +:category: News +:date: 2015-01-26 10:42 + +After months of hard work we are pleased to release a big update to Telemeta communities. It represents a huge milestone that makes Telemeta now compatible with more modern web technologies. + +Changelog: + +* Django 1.6.x compatibility +* TimeSide 0.7.x compatibility +* Huge refactoring of all forms, detail and edit views based on class based views +* Main styles (buttons, tabs) are now based Bootstrap 3 and JQuery 2.1 +* Update of models and views as needed by the CREM +* WARNING! Be careful to the new dependencies before updating + +Download + +* http://pypi.python.org/packages/source/T/Telemeta/Telemeta-1.4.6.tar.gz diff --git a/doc/blog/content/css/custom.css b/doc/blog/content/css/custom.css new file mode 100644 index 00000000..d92dc968 --- /dev/null +++ b/doc/blog/content/css/custom.css @@ -0,0 +1,16 @@ +body { + font-size: 16px; +} + +.navbar-default { +background-color: #6a0307; +border-color: #5a0307; +} + +blockquote { + font-size: 14px; +} + +a { + color: #6a0307; +} diff --git a/doc/blog/content/images/logo_telemeta_2.png b/doc/blog/content/images/logo_telemeta_2.png new file mode 100644 index 00000000..62cec470 Binary files /dev/null and b/doc/blog/content/images/logo_telemeta_2.png differ diff --git a/doc/blog/content/soundsoftware2014.rst b/doc/blog/content/soundsoftware2014.rst new file mode 100644 index 00000000..fff75255 --- /dev/null +++ b/doc/blog/content/soundsoftware2014.rst @@ -0,0 +1,9 @@ +Telemeta at QMUL +################ + +:category: News +:date: 2014-07-8 01:42 + +We presented TimeSide, the open web audio processing framework, at the Queen Mary University of London (ArtsOne Lecture Theatre) for the `third Workshop on Software and Data for Audio and Music Research `_. + +`Slides <​https://github.com/Parisson/Telemeta-doc/raw/master/Workshops/SoundSoftware_2014/TimeSide_SoundSoftware_2014_07.pdf>`_ diff --git a/doc/blog/pelicanconf.py b/doc/blog/pelicanconf.py index b3f0d60d..3348a843 100644 --- a/doc/blog/pelicanconf.py +++ b/doc/blog/pelicanconf.py @@ -3,11 +3,11 @@ from __future__ import unicode_literals AUTHOR = u'Parisson Sarl' -SITENAME = u'Telemeta.org' +SITENAME = u'Telemeta' #SITEURL = '' RELATIVE_URLS = True -PATH = 'content' +PATH = 'content/' THEME = 'themes/pelican-bootstrap3' BOOTSTRAP_THEME = 'united' @@ -29,7 +29,6 @@ TRANSLATION_FEED_ATOM = None AUTHOR_FEED_ATOM = None AUTHOR_FEED_RSS = None - # Blogroll LINKS = (('Pelican', 'http://getpelican.com/'), ('Python', 'http://python.org/'), @@ -49,4 +48,6 @@ SOCIAL = (('Twitter', 'https://twitter.com/telemeta/'), # PLUGIN_PATHS = ['plugins'] # PLUGINS = ['pin_to_top'] -CUSTOM_CSS = 'theme/css/custom.css' +STATIC_PATHS = ['images', 'css'] +CUSTOM_CSS = '/css/custom.css' +# SITELOGO = '/images/logo_telemeta_2.png' \ No newline at end of file diff --git a/doc/blog/themes/pelican-bootstrap3 b/doc/blog/themes/pelican-bootstrap3 index 597fa219..4fd53339 160000 --- a/doc/blog/themes/pelican-bootstrap3 +++ b/doc/blog/themes/pelican-bootstrap3 @@ -1 +1 @@ -Subproject commit 597fa21941413c1ad1a8160a8c7dbc183c65c9ad +Subproject commit 4fd533395a9c6f89cfed928bf2d05a80c37efb67