Alexandre Leraylet out
— New version of Oralsite, initial commit
Wednesday, 10th July 2013 - 16:11
Alexandre Leraytweeted
— Added jquery contextual, and defaults to Annotation
Saturday, 13th July 2013 - 11:56
Alexandre Leraylet the cat out of the bag
— Misc modifications, mainly marked.js and backbone
Thursday, 3rd October 2013 - 12:19
Alexandre Leraydisclosed
— Can Bower help to manage the js dependencies?
Thursday, 3rd October 2013 - 17:36
Eric Schrijverbabbled out
— Reflections of the experience of installing it on my side…
Thursday, 3rd October 2013 - 13:11
Eric Schrijversaid
— Merge branch 'master' of git.constantvzw.org:/osp.work.oralsite.www
Thursday, 3rd October 2013 - 13:12
Eric Schrijverbabbled
— Set up automatic redirects for / to /pages/ and from /pages/ to /pages/Index/
Thursday, 3rd October 2013 - 13:17
Alexandre Leraybabbled
— Merge branch 'master' of git.constantvzw.org:osp.work.oralsite.www
Thursday, 3rd October 2013 - 17:40
Eric Schrijverargued
— For now, the view can just be a simple direct-to-template:
We will populate it by calling the API
Tuesday, 8th October 2013 - 12:46
Eric Schrijvercomitted
— For now, not the contextual menu.
Tuesday, 8th October 2013 - 14:54
Eric Schrijververbalised
— The Backbone actually filters for the Annotations of just 1 page
(hardcoded for now)
Tuesday, 8th October 2013 - 16:47
Eric Schrijvertold
— Basic Error Handling
Tuesday, 8th October 2013 - 17:12
Eric Schrijvershouted
— Beginning of Permissions management (using Guardian)
( Run syncdb )
Tuesday, 8th October 2013 - 18:12
Eric Schrijvertweeted
— Basic page model
Wednesday, 9th October 2013 - 13:10
Eric Schrijverdeclared
— Handle permission errors
Tuesday, 15th October 2013 - 11:15
Eric Schrijververbalised
— Basic routing and handling of 404 pages
Initialisation of views moved to the router.
A 404 will show a message that a new page is being created.
At the moment, this does not create a new ‘default model’ (TODO)
Tuesday, 15th October 2013 - 15:19
Eric Schrijverinterpreted
— A model&view for the User
Tuesday, 15th October 2013 - 17:03
Eric Schrijvertweeted
— Authorization works
But you need to set it per element in the admin.
Test from the shell to then find the permissions:
from guardian.shortcuts import assign_perm, get_users_with_perms
from aawiki.models import Page
p = Page.objects.all()[1]
get_users_with_perms(p, attach_perms=True)
"""
{}
"""
p = Page.objects.all()[0]
get_users_with_perms(p, attach_perms=True)
"""
{<User: AnonymousUser>: [u'view_page'],
<User: osp>: [u'add_page', u'change_page', u'delete_page', u'view_page']}
"""
[i[0] for i in get_users_with_perms(p, attach_perms=True).iteritems() if 'change_page' in i[1]]
"""
[<User: osp>]
"""
Tuesday, 15th October 2013 - 17:46
Alexandre Leraystated
— Django guardian now in the requirements
Thursday, 17th October 2013 - 15:58
Eric Schrijvercomplained
— The page detects the user. If there is no user, it sends back AnonymousUser.
The User resource allows to view the info for this User, and not for the other ones.
Thursday, 17th October 2013 - 12:43
Alexandre Leraytalked
— Merge branch 'master' of git.constantvzw.org:osp.work.oralsite.www
Thursday, 17th October 2013 - 16:01
Alexandre Leraytattled
— Permissions to delete annotations
Tuesday, 22nd October 2013 - 15:38
Alexandre Leraysang
— Update backbone and jquery.contextual
Just wanted to update jquery.contextual as I fixed a bug in there but
backone came for free...
Tuesday, 22nd October 2013 - 16:37
Alexandre Leraylet loose
— Hotglue-like menu on the canvas and annotations
It is using a custom jquery plugin called "jquery.contextual" and
available on git.constantvzw.org.
We may change the plugin to let Backbone delegate the events itself...
Not sur yet.
Tuesday, 22nd October 2013 - 16:41
Eric Schrijversaid
— Provide granular page permissions as part of the Page resource, and display them.
In order to update them, we will have to create some custom API functionality,
because the standard Resource based model doesn’t apply cleanly.
A starting point would be Guardian’s UserObjectPermissionsForm and GroupObjectPermissionsForm,
cf: https://github.com/lukaszb/django-guardian/blob/master/guardian/forms.py#L102
Thursday, 17th October 2013 - 23:30
Eric Schrijversaid
— Automatically add necessary permissions when creating a page through the API
Also added a new permission, ‘administer_page’
Run syncdb to add to the DB.
Add pages manually as such:
var data = JSON.stringify({
"slug": "fu-ba-fu-ba-pege",
"name": "Fu ba Fu ba pege!"
});
$.ajax({
url: 'http://localhost:8000/pages/api/v1/page/',
type: 'POST',
contentType: 'application/json',
data: data,
dataType: 'json',
processData: false,
succes: function(data) { console.log(data); },
error: function(error) { console.log(error); }
})
Tuesday, 22nd October 2013 - 14:00
Alexandre Leraycomitted
— Merge remote-tracking branch 'origin/master'
Conflicts:
aawiki/static/aawiki/css/aa.wiki.css
Tuesday, 22nd October 2013 - 16:48
Eric Schrijverspilled the beans
— Show permissions only for logged in users
( In a way it is a shame we’re not using Tastypie for the permissions API
because now we are hardcoding authorisation instead of using the same
structures as we use for the Page, User and Annotation model )
Tuesday, 29th October 2013 - 11:43
Eric Schrijverconfessed
— Add an API hook for the current user ('/user/me/')
so that the UserView can be decoupled from the PageView
Tuesday, 29th October 2013 - 12:57
Eric Schrijverdivulged
— Create new page model on page load if page not existing
Started working on how to handle accents etcetera in the slug:
some of it works out of the box, but some headaches probably
ahead.
Utilities in a new separate file utils.js
Tuesday, 29th October 2013 - 17:53
Eric Schrijverlet on
— All server errors caught and displayed
Might want to show them for more then 5000 ms though :)
Wednesday, 30th October 2013 - 12:32
Eric Schrijverclaimed
— Allows for adding annotations to existing pages
Wednesday, 30th October 2013 - 12:41
Eric Schrijverunwrapped
— Oops! 2 pieces and parts I forgot…
The utils.js was supposed to be part of d384adfcc068babd44e2fa80b5686d3419c67d39
Wednesday, 30th October 2013 - 14:59
Eric Schrijverwhistled
— If the anonymous user can see it, you can see it too.
Wednesday, 30th October 2013 - 15:12
Eric Schrijverironized
— Create a new wiki page if one doesn’t exist for the uri
First a model is created, with name and slug based of the url visited.
Upon posting the model, The API returns the newly created object,
which also contains the appropriate permissions, created on the server-side.
Backbone automagically synchronises.
TODO: defer page creation to moment the first annotation is created (not easy)
Wednesday, 30th October 2013 - 21:12
Alexandre Leraylet the cat out of the bag
— Switching from Marked.js to Markdown-js: two implementations of markdown
in javascript with a different approach. While Marked.js was meant to be
super fast, Markdown-js was meant to be extensible. This is why we moved
to Markdown-js which favors custom dialects.
The uncompressed source file for our flavor of Markdown-js isn't
included as I haven't find yet a satisfying way to do so, but it is
available at <https://github.com/aleray/markdown-js/tree/aa>
Wednesday, 20th November 2013 - 16:07
Eric Schrijverdeclared
— Fix authorization for creating new pages
Thursday, 31st October 2013 - 09:49
Eric Schrijverstated
— The API knows it’s you.
Thursday, 31st October 2013 - 10:10
Eric Schrijveradmitted
— Only show permission editing interface when a user has administrator permissions for that page
Thursday, 31st October 2013 - 11:41
Alexandre Leraysaid
— Merge branch 'master' of git.constantvzw.org:osp.work.oralsite.www
Wednesday, 20th November 2013 - 16:11
Alexandre Lerayclaimed
— Tmp commit. Started implementing filters with django celery
Thursday, 21st November 2013 - 16:11
Alexandre Lerayemited
— A real filter for turning images into black and white, along with a
filter to cache HTTP resources. The view to trigger the filters has also
been simplified, and systematically calls the special filter named
"cached", to download locally the resources.
Filters are a mean to asynchronously alter HTTP resources (images,
videos, text files etc.) server side while preserving the link to the
source material.
It uses the excellent library "Celery", and more specifically its chain
function that provides some sort of pipelines to be created.
Thursday, 28th November 2013 - 23:30
Alexandre Leraytalked
— We don't need those (css) rules no more.
Thursday, 28th November 2013 - 23:51
Eric Schrijversang
— The basics for supporting changing permissions client-side are there
(they are not actually stored yet)
Wednesday, 20th November 2013 - 15:29
Eric Schrijverbrought out
— Merge branch 'master' of git.constantvzw.org:/osp.work.oralsite.www
Wednesday, 20th November 2013 - 16:14
Eric Schrijverinterpreted
— Implement client-side login and logout through the API
Thursday, 21st November 2013 - 16:47
Eric Schrijverlet out
— Broke up the JavaScript into little parts
Moved CreateBtnvar to AA.widgets.CreateBtn,
in utils.js for now.
Thursday, 21st November 2013 - 17:18
Eric Schrijverlet loose
— Rendering embedded resources.
1) A jQuery plugin stored in `aa.jQuery.renderResources.js` looks for links that are marked as `aa:embed`. For instance:
<a rel="aa:embed" href="http://media.boingboing.net/wp-content/themes/2012/sundries/logo_bounce2012.gif" data-filter="size:160|bw" />
2) It uses `aa.utils.path2mime` in `utils.js`. to figure out the mime-type of the linked resource:
image/gif
2) Constructs the URI for the local, cached representation:
http://localhost:8000/filters/cache/media.boingboing.net/wp-content/themes/2012/sundries/logo_bounce2012.gif..size:160..bw.gif
3) Find outs the template that is registered for the mimetype:
_.template('<img src="<%= uri %>" />')
4) Replaces the link with the newly rendered element:
<img src="http://localhost:8000/filters/cache/media.boingboing.net/wp-content/themes/2012/sundries/logo_bounce2012.gif..size:160..bw.gif" />
// also changed location markdown renderer
Friday, 22nd November 2013 - 12:13
Alexandre Leraylet on
— Merge branch 'master' of git.constantvzw.org:osp.work.oralsite.www
Thursday, 28th November 2013 - 23:51
Alexandre Lerayunwrapped
— There was some fully qualified URL to localhost:8000 in the javascript,
which were triggering errors on Sarma' server.
Thursday, 28th November 2013 - 23:52
Alexandre Leraydiscovered
— Celery, Pillow and Requests in the requirements
Wednesday, 4th December 2013 - 18:13
Eric Schrijvercomplained
— Less nervous dragging of annotations in interface
Thursday, 28th November 2013 - 18:31
Eric Schrijverpublished
— Merge branch 'master' of git.constantvzw.org:/osp.work.oralsite.www
Wednesday, 4th December 2013 - 12:17
Alexandre Lerayspilled the beans
— Merge branch 'master' of git.constantvzw.org:osp.work.oralsite.www
Wednesday, 4th December 2013 - 22:59
Alexandre Leraycomitted
— A cocktail of things like less, django compressor and fonts
Monday, 16th December 2013 - 15:48
Alexandre Leraytold
— A field introduction to the Page model so we can blab about it
Monday, 16th December 2013 - 15:57
Alexandre Leraydivulged
— Piwik stats, so next time the VG asks how popular we are we can give numbers!
Monday, 16th December 2013 - 16:00
Eric Schrijverwhispered
— First test for views: User View
Thursday, 5th December 2013 - 12:38
Eric Schrijverlet on
— Start of view test;
Also:
The user and page view can be removed. It does point, Backbone will remove the containing element.
Because we want to make sure where the element gets inserted, I have created container elements
user-meta-container and page-meta-container.
It is quite possible a more elegant way exists.
Thursday, 5th December 2013 - 13:07
Eric Schrijverdiscovered
— Summary AnnotationCollection View test
Thursday, 5th December 2013 - 14:24
Eric Schrijverclaimed
— FIX syntax error: don’t cache local uri’s (JavaScript why can’t you fail earlier, harder?)
Thursday, 5th December 2013 - 16:59
Eric Schrijversaid
— Another tiny error in that specific part of the code
Wednesday, 11th December 2013 - 10:06
Eric Schrijvertalked
— Add latest version of Markdown
Uncompressed, for error handling.
supports semantic embeds, yet no implicit timecodes yet
Wednesday, 11th December 2013 - 10:10
Eric Schrijveremited
— We need explicit endings in the timecode for now
Wednesday, 11th December 2013 - 16:14
Eric Schrijveruttered
— If an annotation has no about specified, it will be about="absolute/link/to/current/page"
TODO: add about to serverside model
Wednesday, 11th December 2013 - 17:33
Eric Schrijversaid
— Botching up aa.jquery.contextual
The fact that aa.jquery.contextual was catching all click events,
made it impossible to click links or start videos in the annotations.
I switched the context menus to double-clicks, and patched aa.jquery
.contextual to pass on events.
BTW—why doesn’t aa.jquery.contextual use the native dblclick event? (line 75 onwards)
There are glitches--
I haven’t made any changes upstream yet ’cause I’m not sure to have found the right approach
Thursday, 12th December 2013 - 17:14
Eric Schrijvertold
— Implement a relationship between time-based drivers and annotations
In views.js, MultiplexView, a view is defined that allows to register drivers:
a driver is a uri for which the Multiplex attempts to find a suitable Popcorn
instance. If the uri is the current page, it will be a basePlayer (abstract),
if it is an audio or video element it will be a standard Popcorn instance, etc.
PopCorn is an abstraction over HTML5 video, that allows to extend time based
logic to other elements, and is able to trigger events related to points in
the element’s timeline.
In views.js, AnnotationView, registerDriver, the view attempts to register
the annotation’s `about=` uri as a driver in the MultiplexView (by default,
this is the page).
In views.js, AnnotationView, updateAnnotationEvents, it is defined that
the annotation body looks for annotation elements, and registers them with
the associated driver through the aa plugin, using the data-begin and data-end
properties.
The AnnotationView all listen to an `aa:newDrivers` event that is fired by the
AnnotationCollectionView once all annotations are rendered: this triggers
updateAnnotationEvents.
In plugins/aa.popcorn.js it is defined that a passed element gets triggered
with `start` and `end` events when it arrives at these points in the video..
In global-events.js, listeningAnnotations we determine what needs to happen
when these start and end events fire: for now, it adds the class `active`
to the annotation.
An example: http://localhost:8000/pages/tests/
The two annotations to the left are linked to the video.
Friday, 13th December 2013 - 18:24
Eric Schrijverrevealed
— Also capable of adding annotation-boxes as `about=` drivers.
An annotation-box can also be `about=` equivalent to itself,
when used for slide-shows etc. independent of main timeline.
Saturday, 14th December 2013 - 15:27
Alexandre Leraylet the cat out of the bag
— Merge branch 'master' of git.constantvzw.org:osp.work.oralsite.www
An error with Popcorn, Eric is gonna tell me how to fix it
Conflicts:
aawiki/static/aawiki/css/aa.wiki.css
aawiki/static/aawiki/js/views.js
aawiki/templates/aawiki/page_detail.html
Monday, 16th December 2013 - 16:15
Alexandre Leraycomitted
— Popcorn, where where you? Fixes the previous commit
Monday, 16th December 2013 - 16:34
Alexandre Lerayuttered
— Less.js, where where you too?
Monday, 16th December 2013 - 16:34
Alexandre Leraytattled
— Some typographic refinement, using typogr: a library that fixes some
common typographical mistakes. To be tested further as it seems like it
is not working as expected.
Tuesday, 24th December 2013 - 12:22
Alexandre Lerayunwrapped
— Some notes from last meeting and the begining of an install guide
Tuesday, 24th December 2013 - 12:28
Alexandre Lerayrevealed
— In the hope the can ease the process, a recipe to install the project
Friday, 10th January 2014 - 15:50
Alexandre Lerayrevealed
— Celery now supports Django out of the box, and proposes a new scheme to
integrate with Django. This is what this commit is about, following the
tutorial at
<http://docs.celeryproject.org/en/latest/django/first-steps-with-django.html>
We still keep the third party app django-celery as it may be usefull to
store the results.
Friday, 10th January 2014 - 23:12
Alexandre Leraybabbled out
— A functional pipeline mechanism. Given a URL and a list of tasks, the
system will cache the resource and apply all the filters. This happens
ne after the other. This happens in the background thanks to Celery so
it is not blocking the server.
A locking mechanism prevents two similar tasks to be launch at the same
time.
There is a view so the process can be started by visiting a url, and
followed using django celery tast-status view.
Wednesday, 15th January 2014 - 15:37
Eric Schrijversaid
— Re-initialise driver events when annotation markdown is edited
( annotation view needs to keep internal track of the events,
because the driver might have events from multiple annotations )
TODO: write test
Monday, 16th December 2013 - 16:55
Eric Schrijversaid
— A play button for annotation windows.
Yet not if the driver of the annotation is the page itself.
In this case, there will be general player controls
located elsewhere.
Tuesday, 31st December 2013 - 16:45
Eric Schrijversaid
— Merge branch 'master' of git.constantvzw.org:/osp.work.oralsite.www
Tuesday, 31st December 2013 - 16:46
Eric Schrijvertold
— Adjust tests to new CSS & to page meta info
Friday, 10th January 2014 - 14:44
Alexandre Lerayblabbed
— Merge branch 'master' of git.constantvzw.org:osp.work.oralsite.www
Wednesday, 15th January 2014 - 15:45
Alexandre Leraydeclared
— auto commit from django
Tuesday, 21st January 2014 - 11:39
Alexandre Leraydeclared
— auto commit from django
Tuesday, 21st January 2014 - 11:39
Alexandre Leraycomplained
— A few changes to the INSTALL instructions to set up django compressor
cache directory and launch Celery worker.
Tuesday, 21st January 2014 - 12:10
Eric Schrijvercomitted
— Markdown update
Friday, 10th January 2014 - 18:20
Eric Schrijversaid
— Add an about field on the page model
Wednesday, 15th January 2014 - 16:08
Eric Schrijversaid
— We added mediaelement.js and it seems to work together with popcorn.js
Now just to find out whether it’s actually working; i.e. if it launches
a flash replacement in Safari that allows us to play ogg files. For that
we need to find a computer running Safari.
Wednesday, 15th January 2014 - 16:12
Eric Schrijverlet loose
— Merge branch 'master' of git.constantvzw.org:/osp.work.oralsite.www
Wednesday, 15th January 2014 - 16:14
Alexandre Leraybabbled
— Merge branch 'master' of git.constantvzw.org:osp.work.oralsite.www
Tuesday, 21st January 2014 - 12:17
Alexandre Leraydisclosed
— auto commit from django
Tuesday, 21st January 2014 - 14:11
Alexandre Leraybabbled out
— auto commit from django
Tuesday, 21st January 2014 - 14:25
Alexandre Lerayunwrapped
— auto commit from django
Tuesday, 21st January 2014 - 14:27
Alexandre Leraylet the cat out of the bag
— auto commit from django
Tuesday, 21st January 2014 - 14:34
Alexandre Lerayexpressed
— auto commit from django
Tuesday, 21st January 2014 - 14:35
Alexandre Leraycomitted
— A few precisions in the INSTALL instructions. Thanks Gijs!
Thursday, 23rd January 2014 - 11:36
Alexandre Lerayunwrapped
— Versioning is coming. Youpi!
I was happy to find the "django-rcsfield" project. Why didn't I find it
before? It is really nice and simple to version model fields, and has
many different backends like git, svn, bazaar etc.
But in our case what we wanted was to version models (specifically the
Page model) and not fields. I had to makes changes to it and instead
of just importing the library I merged it with the aawiki app. This is
how it works:
when an instance of a model suclassing RCSModel is saved, it is
serialized to JSON using tastypie, and committed to the repository.
Using the model manager one can retrieve older revision of the model,
basically the same way it is done in the API exemple here:
<https://code.google.com/p/django-rcsfield/wiki/QuickStart>
The API has been modified so one can request for a specific revision of
a page, for instance:
http://localhost:8000/pages/api/v1/page/test/?rev=0f50eb8002
The resource returned from the server also has an extra field
"revisions" with the SHA1 of the commits featuring the resource, and the
annotations field is fully populated so we can just make one call the
Page API and retrieve a full document (a Page and its annotations). And
for that, I switched to backbone-relational to automatically create the
annotation collection.
Quick and dirty, more later.
Thursday, 23rd January 2014 - 12:14
Eric Schrijverrendered
— Ah so that’s why
Thursday, 16th January 2014 - 12:25
Eric Schrijveruttered
— Add python magic to requirements
Thursday, 16th January 2014 - 12:28
Eric Schrijverlet the cat out of the bag
— Change filter saving strategy: create an arborescence that maps to the url
Create a processed view, that serves static files, and if not found,
redirects to the process view.
Make the process view synchronous.
(Make it asynchronous again by passing a GET parameter async).
Make the process return a redirect to the resource.
(To make it return the info view, pass a GET parameter info)
Adapted a bit the front-end code, add an example of the pipeline
to the tests.
Tuesday, 21st January 2014 - 14:49
Eric Schrijvercomplained
— Account for filterless external images
Tuesday, 21st January 2014 - 17:21
Eric Schrijverlet out
— Only add an extra extension when there’s a filter. Now also client-side.
Thursday, 23rd January 2014 - 11:34
Alexandre Lerayemited
— Merge branch 'master' of git.constantvzw.org:osp.work.oralsite.www
Conflicts:
requirements.txt
Thursday, 23rd January 2014 - 12:33
Alexandre Lerayspoke
— Let's make the versioning a little bit less convoluted: in the previous
attempt, I was following Django RCSField's approach using a custom
queryset to retrieve the different revisions, ending up with a lot of
back and forth conversion between JSON, ORM and Tastypie bundles.
Instead, I use directly the git backend in the API, serving the JSON
straight from the repository if a revision query parameter is specified.
Sunday, 26th January 2014 - 15:56
Alexandre Lerayemited
— A commit button and a route to visit specific revisions
Sunday, 26th January 2014 - 17:31
Gijs de Heijargued
— Annotation text can now be selected. Cursor turns into 'move'-cursor on areas where you can drag the annotation.
Sunday, 26th January 2014 - 15:40
Gijs de Heijsaid
— Merge branch 'master' of git.constantvzw.org:osp.work.oralsite.www
Sunday, 26th January 2014 - 15:42
Alexandre Lerayironized
— Merge branch 'master' of git.constantvzw.org:osp.work.oralsite.www
Sunday, 26th January 2014 - 17:32
Alexandre Leraylet on
— don't store permissions et rev fields in the revisions
Sunday, 26th January 2014 - 18:33
Alexandre Lerayverbalized
— Fetches properly the various revisions.
Sunday, 26th January 2014 - 19:02
Alexandre Lerayuttered
— Grid and snapping on dragging/resizing annotations with ctrl pressed
Sunday, 26th January 2014 - 19:20
Alexandre Leraypublished
— Some visual refinements, especially the sidebar as a drawer
Tuesday, 28th January 2014 - 14:33
Eric Schrijveruttered
— Youtube player support [[ embed::www.youtube.com/watch?v=UEiRyxbA3c0 ]]
- created a special embed template for hosted content:
_.template('<div class="embed hosted" data-uri="<%= uri %>"></div>')
It’s triggered if a url looks like youtube, soundcloud or vimeo
Then, in the registerDriver stage, PopCorn.js is used to create a wrapper
TODO: Popcorn now uses Popcorn.youtube instead of Popcorn.smart
To fix this, we need to insert unique id´s in the embed wrappers,
because Popcorn.smart only supports id´s and not elements themselves.
- Removed MediaElement and its tests
MediaElement could not provide us with fallback to play ogv elsewhere
Sunday, 26th January 2014 - 11:33
Eric Schrijverspoke
— Merge branch 'master' of git.constantvzw.org:/osp.work.oralsite.www
Sunday, 26th January 2014 - 11:33
Eric Schrijverclaimed
— Merge branch 'master' of git.constantvzw.org:/osp.work.oralsite.www
Conflicts:
aawiki/static/aawiki/js/views.js
Tuesday, 28th January 2014 - 13:48
Alexandre Leraysaid
— Merge branch 'master' of git.constantvzw.org:osp.work.oralsite.www
Conflicts:
aawiki/static/aawiki/css/aa.wiki.less
Tuesday, 28th January 2014 - 14:36
Alexandre Lerayspoke
— Added default versioning settings
Tuesday, 28th January 2014 - 14:41
Eric Schrijverstated
— Subtle outline
+px values for header with line-heights specified
Tuesday, 28th January 2014 - 15:12
Eric Schrijvergave away
— Fix url error in less
Tuesday, 28th January 2014 - 15:20
Gijs de Heijrevealed
— Fixed bug where you could not edit the annotations any more.
Tuesday, 28th January 2014 - 15:29
Eric Schrijversaid
— Tests working again after the shift to in-page annotations
Tuesday, 28th January 2014 - 16:38
Gijs de Heijspoke
— Reimplemented the menu which appears at the cursor and next to the annotations.
Wednesday, 29th January 2014 - 00:12
Eric Schrijvercomitted
— frgt 2 rmve
Tuesday, 28th January 2014 - 16:47
Eric Schrijverironized
— Play and pause
Tuesday, 28th January 2014 - 17:06
Eric Schrijverargued
— Support Vimeo and Soundcloud
Some extra code to create uid’s for the embedded video’s: because of
the way Popcorn works, we need an id to be able to refer to the div:
we can’t just pass the element.
Tuesday, 28th January 2014 - 17:28
Eric Schrijveradmitted
— For now we only feature player controls for self-driven annotations, i.e. slideshows.
Tuesday, 28th January 2014 - 18:20
Eric Schrijverconfessed
— The player controls get their own template and renderMethod.
The latter is called each time all annotation events are registered.
We need that info for timing related display like the duration.
For slideshows, we derive the duration from the end-point of
the last event.
Tuesday, 28th January 2014 - 22:38
Eric Schrijverinterpreted
— Starting the different treatment of slideshows
Tuesday, 28th January 2014 - 23:07
Gijs de Heijlet out
— Merge branch 'master' of git.constantvzw.org:osp.work.oralsite.www
Conflicts:
aawiki/static/aawiki/js/views.js
Wednesday, 29th January 2014 - 00:14
Gijs de Heijsaid
— Now the contextual menu on the annotations moves along when dragging the annotation.
Wednesday, 29th January 2014 - 00:41
Eric Schrijverexposed
— Automatically play video or audio contained inside a timed annotation once its triggered
Should it stop once the annotation is over?
Wednesday, 29th January 2014 - 19:02
Eric Schrijverrevealed
— semicolons
Wednesday, 29th January 2014 - 19:04
Eric Schrijvercried
— Stop the slideshow just before the end of the last slide
Added some useful references to to the driver and the signalled time
to the start and end events.
Thursday, 30th January 2014 - 17:21
Alexandre Lerayemited
— Some care to deploy Olga
Wednesday, 29th January 2014 - 00:49
Alexandre Lerayblabbed
— Merge branch 'master' of git.constantvzw.org:osp.work.oralsite.www
Wednesday, 29th January 2014 - 00:50
Alexandre Lerayexpressed
— Merge branch 'master' of git.constantvzw.org:osp.work.oralsite.www
Thursday, 30th January 2014 - 17:13
Alexandre Lerayadmitted
— Bump markdown to include relative timecodes
Thursday, 30th January 2014 - 17:16
Eric Schrijveremited
— Merge branch 'master' of git.constantvzw.org:/osp.work.oralsite.www
Thursday, 30th January 2014 - 17:22
Eric Schrijveremited
— Work around Popcorn bug where 0 second events are not triggered
TODO: now it adds a class, it should actually trigger a Popcorn event
Thursday, 30th January 2014 - 17:51
Alexandre Leraydiscovered
— Try settings an empty revisions array on PageModel default to avoid
underscore template error
Thursday, 30th January 2014 - 17:34
Gijs de Heijlet out
— Fixed bug where the contextual menu for the canvas would not appear
at the cursor, but the top-left.
The contextual menu for the annotation now also sticks on rearran-
ging the annotations.
Thursday, 30th January 2014 - 17:33
Alexandre Lerayverbalised
— Merge branch 'master' of git.constantvzw.org:osp.work.oralsite.www
Thursday, 30th January 2014 - 17:35
Eric Schrijverlet on
— Merge branch 'master' of git.constantvzw.org:/osp.work.oralsite.www
Thursday, 30th January 2014 - 17:52
Gijs de Heijgave away
— Fixed the bug where annotations seemed to multiply.
Not the most elegant solution though, the annotation API now always
responds with data. There seems to be a bug in backbone-tastypie
but it would take more time to fix.
Friday, 31st January 2014 - 14:08
Alexandre Lerayemited
— Grid on all browsers + mixins
Friday, 31st January 2014 - 00:33
Gijs de Heijlet the cat out of the bag
— Merge branch 'master' of git.constantvzw.org:osp.work.oralsite.www
Friday, 31st January 2014 - 14:12
Alexandre Leraysaid
— The TODO list as spreadsheet
Friday, 7th February 2014 - 15:18
Eric Schrijverbrought out
— Basic implementation of next/previous, mainly useful for slideshows
Sunday, 9th February 2014 - 17:08
Eric Schrijversaid
— Use Django’s sites framework for a configurable site name.
Sunday, 9th February 2014 - 23:12
Eric Schrijververbalised
— The test page needs the new Site-meta name template too
Monday, 10th February 2014 - 11:39
Eric Schrijverlet loose
— Some preparations for live updated timecode display
Monday, 10th February 2014 - 15:50
Eric Schrijverdisclosed
— Reordering a bit the Annotation View
not that much clearer though
Monday, 10th February 2014 - 16:11
Eric Schrijververbalised
— Use Alex’s funky 8< syntax for the slideshow
in the tests
Monday, 10th February 2014 - 19:59
Eric Schrijverdeclared
— renderResources now creates options object from markdown + miniPlayer implementation
`[[ embed::http://example.com/sherry_turkle.ogv ]]{: class='small nocontrols' }` creates html `<a ... class="small nocontrols"></a>`
from which we create the options object `{"small": true, "nocontrols" : true}` that we pass to the renderResource function.
A first practical use is to pass the option small, which for sounds will create a new mini player.
Tuesday, 11th February 2014 - 12:54
Alexandre Leraysang
— typogrify.js does not work that well, so I comment it out for now.
Friday, 14th February 2014 - 16:21
Eric Schrijverlet the cat out of the bag
— Really simple menu items to set annotation about value, and set as slideshow
Friday, 14th February 2014 - 16:39
Alexandre Leraylet the cat out of the bag
— Merge branch 'master' of git.constantvzw.org:osp.work.oralsite.www
Friday, 14th February 2014 - 16:52
Alexandre Leraydisclosed
— Re-render an annotation when we set its about attribute
Friday, 14th February 2014 - 17:42
Alexandre Lerayshouted
— a minimal page loading progress bar
Friday, 14th February 2014 - 18:35
Alexandre Lerayblabbed
— Ctrl+Shift+(up|down|left|right) wikiwiki
Saturday, 15th February 2014 - 01:43
Alexandre Lerayinterpreted
— Temporary redirect to the original ressource when embedding, if no
filters are specified (there is a redirection loop in the view)
Saturday, 15th February 2014 - 13:31
Alexandre Lerayspoke
— Fixes a bug that would prevent drivers to be registered because the
annotation is not yet appended to the document
Saturday, 15th February 2014 - 16:14
Alexandre Lerayuttered
— Serve non-filtered embeds using their original URI
Saturday, 15th February 2014 - 16:19
Eric Schrijverlet the cat out of the bag
— Mime-type parsing now correctly handles media-fragments
Tuesday, 18th February 2014 - 18:23
Alexandre Leraylet out
— An image for the iceberg
Thursday, 27th February 2014 - 15:39
Alexandre Leraybabbled out
— Sorry for the pot-pourri... Many things in there, but mainly work on
the revision browser which works but would need better integration in
the interface.
This commit also include the switch from backbone-relational to
backbone-associations because it solves the issue of fetching multiple
times a model with different revisions (see
<https://github.com/PaulUithol/Backbone-relational/issues/186>).
Also the switch from Underscorejs to Lodash: a superset of underscore
with one useful extra feature to get the indexOf a map in a collection
I included font-awesome for the convenient player icons it offers but
frankly the aesthetic is tasteless and I'd better dig the hotglue-like
interface of contextual-menus.
Thursday, 13th March 2014 - 15:22
Eric Schrijverbrought out
— Don’t forgot to actually save the models when one sets the about value.
Wednesday, 19th February 2014 - 14:11
Eric Schrijveremited
— Make test for reading mime-type from uri with fragment identifier
Thursday, 20th February 2014 - 14:57
Eric Schrijververbalized
— Semicolons
Thursday, 20th February 2014 - 16:08
Eric Schrijverbabbled out
— whitespace
Wednesday, 26th February 2014 - 09:12
Eric Schrijvertold
— If there is but one annotation, an that annotation has a video inside, it is a media box.
Wednesday, 26th February 2014 - 10:29
Eric Schrijverblabbed out
— Basic timeline player. It only comes into effect when there are events registered to the page.
Wednesday, 26th February 2014 - 11:27
Eric Schrijversaid
— APPEND_SLASH to urls, this is the default
I had it set to False to debug some API problem
Wednesday, 26th February 2014 - 11:45
Eric Schrijverironized
— Fix bug where the player was not shown for slideshows outside of the test page
Wednesday, 26th February 2014 - 13:32
Alexandre Leraycried
— Merge branch 'master' of git.constantvzw.org:osp.work.oralsite.www
Conflicts:
aawiki/static/aawiki/css/aa.wiki.less
aawiki/static/aawiki/js/router.js
aawiki/static/aawiki/js/views.js
aawiki/templates/aawiki/partials/annotation-view.html
Thursday, 13th March 2014 - 15:49
Alexandre Leraybrought out
— Quickly fix the tests
Thursday, 13th March 2014 - 16:03
Alexandre Leraysang
— I modified the example settings to locate the GIT_REPO_PATH outside of
the project directory. Otherwise Git gets confused and the commits made
through oralsite wiki are done at the project level
Thursday, 20th March 2014 - 12:21
Alexandre Lerayemited
— In progress work on the revision list
Thursday, 20th March 2014 - 14:36
Eric Schrijververbalized
— Move controls outside of annotation content wrapper, less conflicts
Thursday, 20th March 2014 - 12:08
Eric Schrijverexposed
— I try to add font-awesome buttons, yet somehow the player controls dont work anymore
Thursday, 20th March 2014 - 11:51
Eric Schrijverspoke
— Merge branch 'font-awesome-player'
Conflicts:
aawiki/templates/aawiki/partials/annotation-player.html
Thursday, 20th March 2014 - 12:12
Eric Schrijverbabbled out
— Yes the player gives more appetite now
! all font Awesomed & all &
less glitching
Thursday, 20th March 2014 - 12:34
Eric Schrijverclaimed
— Clocks run
Thursday, 20th March 2014 - 13:41
Alexandre Leraygave away
— Merge branch 'master' of git.constantvzw.org:osp.work.oralsite.www
Thursday, 20th March 2014 - 14:37
Eric Schrijverironized
— Set the title.
Thursday, 20th March 2014 - 16:32
Alexandre Leraypublished
— Merge branch 'master' of git.constantvzw.org:osp.work.oralsite.www
Thursday, 10th April 2014 - 12:11
Alexandre Lerayadmitted
— A few things:
* Major an minor grid: really cool CSS trick based on
<http://lea.verou.me/css3patterns/#blueprint-grid>
* Automatically resize-to-fit the images, videos and audios using CSS max-width
* fix for wrong offset when moving a box outside the viewport, by downgrading to jquery-ui 1.10.2 (bug introduced in jquery-ui 1.10.3)
Wednesday, 23rd April 2014 - 15:03
Eric Schrijverbabbled out
— Make the wikified links `Sherry` go to `../Sherry` so that it works for /pages/Sherry
Tuesday, 22nd April 2014 - 16:18
Eric Schrijverargued
— Wikify the page name before saving
TODO: make the router redirect to the wikified version to avoid case conflicts
Tuesday, 22nd April 2014 - 17:03
Eric Schrijverunwrapped
— Always redirect to the wikified page-name (server side)
Tuesday, 22nd April 2014 - 18:10
Alexandre Leraydeclared
— Merge remote-tracking branch 'origin/master'
Wednesday, 23rd April 2014 - 15:11
Alexandre Lerayadmitted
— README bumped with current intro on Oralsite
Sunday, 27th April 2014 - 23:30
Alexandre Lerayblabbed
— Support for markdown Meta extension
Thursday, 1st May 2014 - 14:34
Alexandre Lerayinterpreted
— GUI + plain text: the best of both worlds
Thursday, 1st May 2014 - 15:54
Alexandre Leraybabbled
— Django south to the rescue to add a "style" field to the Annotation
model. We can already change the z-index of the annotations using markup
or with an extra buton in the contextual menu of annotations
Thursday, 1st May 2014 - 23:58
Alexandre Lerayironized
— Added a klass field to the Annotation model and a couple of related
features in the UI
Friday, 2nd May 2014 - 01:52
Eric Schrijvercried
— Minor precisions INSTALL.md
Thursday, 1st May 2014 - 17:40
Eric Schrijvertalked
— jQuery changed places, update location in tests too
Thursday, 1st May 2014 - 17:41
Eric Schrijverclaimed
— Tests page now has accessible scrollbars
+adding some more script tags not yet linked in the tests
Thursday, 1st May 2014 - 19:50
Eric Schrijverclaimed
— Handle monospace text and super long words
Thursday, 1st May 2014 - 20:15
Eric Schrijverblabbed out
— Can we cook without Celery?
Stabilising the filters (|bw and |thumb for now),
trying to have them run without background queue.
Thursday, 1st May 2014 - 23:22
Alexandre Leraybabbled out
— Merge branch 'master' of git.constantvzw.org:osp.work.oralsite.www
Friday, 2nd May 2014 - 01:53
Alexandre Leraybabbled
— Removed a em dash in a python docstring: it is not ascii and it throws
an error
Friday, 2nd May 2014 - 01:59
Alexandre Lerayironized
— Back to JQuery UI 1.10.2; the true one
Friday, 2nd May 2014 - 14:22
Alexandre Lerayrendered
— It is simpler to put the contextual menu in the node of the annotation.
Still some work on it but it is getting better
Friday, 2nd May 2014 - 17:20
Eric Schrijverpublished
— f*ck ascii!
;)
Friday, 2nd May 2014 - 11:34
Eric Schrijverrendered
— Make sure the filter tries to use a well-formed url
http:/about -> http://about
Friday, 2nd May 2014 - 12:22
Eric Schrijveruttered
— Also for filters with https urls: https:/about -> https://about
Friday, 2nd May 2014 - 12:35
Eric Schrijverlet on
— The `requests` library is pretty Reglo, we can do without checking all these SSL certs
Friday, 2nd May 2014 - 12:40
Eric Schrijveruttered
— I missed a Reglo place
Friday, 2nd May 2014 - 12:44
Eric Schrijverspoke
— Add a resize filter that resizes to width (usage: ||resize:640)
Friday, 2nd May 2014 - 16:33
Alexandre Leraygave away
— Merge branch 'master' of git.constantvzw.org:osp.work.oralsite.www
Friday, 2nd May 2014 - 17:22
Alexandre Leraypublished
— A small error preventing the canvas menu to hide correctly.
Friday, 2nd May 2014 - 17:25
Alexandre Leraysaid
— Drag handle + a class to hide timecodes
Friday, 2nd May 2014 - 19:12
Alexandre Lerayspilled the beans
— more work on css, icons, interface... A south migration is needed here
because I've added a title field to the Annotation model
Thursday, 8th May 2014 - 19:43
Eric Schrijververbalized
— Make timeline accessible to clicks
Wednesday, 7th May 2014 - 12:19
Eric Schrijvercried
— Make the pause button work for the timeline player
Once this view has first rendered, subsequent updates target specific dom elements.
This is because the constant rerendering through timeupdate events made the
controls unclickable.
Wednesday, 7th May 2014 - 13:00
Eric Schrijveradmitted
— Play and pause events now propagate to children: the timeline player works
When a driver fires `play` or `pause`, sections of annotations that refer to this driver are sought.
If these contain currently active annotations, these are sought for media elements.
the corresponding drivers are then also paused or played: it trickles down.
Caveat: a sound/movie might still be playing after its annotation is no longer active.
This media will not stop.
Caveat: for a video to be added to the timeline, it needs to be in a timed annotation.
For a stand-alone video-box, this is not intuitive yet (see the /pages/Tests/ for how it works)
we need some ui maybe.
Wednesday, 7th May 2014 - 22:10
Alexandre Lerayspilled the beans
— Merge branch 'master' of git.constantvzw.org:osp.work.oralsite.www
Thursday, 8th May 2014 - 19:44
Alexandre Lerayspilled the beans
— Again more work on UI, becoming neat.
This is done:
- confirmation when cliking the cascade layout button
- no more toc, but put back z-index, reordering, etc.
In addition, I have remove unused buttons and merged some others
(switching toggle/hidden/normal modes)
Friday, 9th May 2014 - 03:28
Alexandre Leraysaid
— Neating th UI
Sunday, 11th May 2014 - 23:36
Alexandre Leraypublished
— The iceberg slowly emerges
Monday, 12th May 2014 - 02:15
Alexandre Lerayironized
— Reorganizing the CSS and removing dust from the views. More importantly:
I added some code to have the possibility to layer the annotations
by z-index while always showing on top the annotations menu.
This required a careful look at how z-index and stacking contexts work
in CSS. A proof of content is visible at <http://jsfiddle.net/Fzn5T/3/>
Monday, 12th May 2014 - 02:16
Eric Schrijverdisclosed
— Fix 404
Thursday, 8th May 2014 - 23:16
Eric Schrijvertold
— This makes the code somewhat simpler, and it resolves the edge case of an annotation somehow not beings de-activated—
but it still does not solve the problem of Annotations not working
Friday, 9th May 2014 - 11:19
Eric Schrijverrendered
— More clear message if no JavaScript
Friday, 9th May 2014 - 11:22
Alexandre Leraycomplained
— Merge branch 'master' of git.constantvzw.org:osp.work.oralsite.www
Monday, 12th May 2014 - 02:24
Alexandre Leraysaid
— exposes klass field as class on client side and some work toward getting
rid of the top, left, width and height field. Also the renaming of a
couple of functions.
Monday, 2nd June 2014 - 23:24
Alexandre Leraydisclosed
— Bumped markdown (aa dialect powered)
Monday, 2nd June 2014 - 23:26
Eric Schrijverblabbed out
— tests/views.js: Source → Format
Sunday, 11th May 2014 - 11:17
Eric Schrijverdeclared
— Also test the sidebar and the site-view
Sunday, 11th May 2014 - 14:27
Eric Schrijverblabbed
— Move the page’s `isPublic()` function from template to view
Sunday, 1st June 2014 - 12:03
Eric Schrijveradmitted
— Setting whether the site is publicly visible is now actually saved on backend!
First in a series of permissions to implement
Sunday, 1st June 2014 - 12:06
Alexandre Lerayrevealed
— Merge branch 'master' of git.constantvzw.org:osp.work.oralsite.www
Monday, 2nd June 2014 - 23:27
Alexandre Leraytattled
— The introduction is now editable. A migration of aawiki is needed as I
added a klass and style fields to the Page model
Tuesday, 3rd June 2014 - 12:21
Alexandre Lerayblabbed out
— A little bit of tidying, plus stepped back from the renaming of "klass" to
"class" (now only changed in the edit mode)
Tuesday, 3rd June 2014 - 14:12
Alexandre Lerayexposed
— A stylesheet field on the page so we can attach custom stylesheets
Wednesday, 4th June 2014 - 00:01
Alexandre Leraygave away
— editable permissions in progress + some custom classes
Wednesday, 4th June 2014 - 00:02
Eric Schrijversang
— All logged in users can see the list of other users
Tuesday, 3rd June 2014 - 16:00
Eric Schrijvergave away
— We uses "style" attribute now
Tuesday, 3rd June 2014 - 16:46
Eric Schrijverstated
— Model sets current page as about by default, views how to deel with missing drivers
Tuesday, 3rd June 2014 - 16:47
Eric Schrijverlet loose
— Live from the Kristien meeting: more clear name for `set z-index`
Tuesday, 3rd June 2014 - 18:07
Eric Schrijverrendered
— The slideshow player controls had disappeared—
I hope I didn’t then break any layout at your end, A
Tuesday, 3rd June 2014 - 18:58
Alexandre Lerayshouted
— Merge branch 'master' of git.constantvzw.org:osp.work.oralsite.www
Wednesday, 4th June 2014 - 00:03
Alexandre Leraydisclosed
— fabfile function to sync the local db with the deployed one
Wednesday, 4th June 2014 - 00:14
Alexandre Leraydisclosed
— Bump markdown-js (including changes regarding time)
Wednesday, 18th June 2014 - 23:09
Eric Schrijverbrought out
— Bump Popcorn.js to 1.5.6
Thursday, 12th June 2014 - 21:57
Eric Schrijverdisclosed
— With the `active-only` class, the annotations need to not only be invisible, but also take up no size
Thursday, 12th June 2014 - 23:09
Eric Schrijverdivulged
— Don’t forget to actually render the `timelinePlayerView`
Thursday, 12th June 2014 - 23:35
Alexandre Leraywhistled
— Merge branch 'master' of git.constantvzw.org:osp.work.oralsite.www
Wednesday, 18th June 2014 - 23:30
Alexandre Leraytattled
— Permissions are now working. We need to keep in ming that super users
always have all the rights, which might be confusing when we ungrant the
permissions: super users always get back all the permissions.
Thursday, 19th June 2014 - 16:58
Alexandre Lerayrendered
— We know use directly some markdown-js aa utils instead of duplicating
the code in Olga
Thursday, 19th June 2014 - 18:28
Alexandre Lerayemited
— Separated widgets and utils
Thursday, 19th June 2014 - 19:43
Eric Schrijverblabbed out
— semicolons;
Thursday, 19th June 2014 - 11:57
Eric Schrijverbrought out
— FIXED public access: don’t try to access permissions if user is not logged in
Create AA.userView.model.loggedIn() to find out if the user is logged in
Thursday, 19th June 2014 - 12:01
Eric Schrijvercried
— UI responds properly on log-in and log-out
Update user-data (triggers re-render) and re-render annotations
FIXES some bugs encountered by the Sarma team
Thursday, 19th June 2014 - 12:53
Eric Schrijveruttered
— Make tests work with new kg-in log-out behaviour
Thursday, 19th June 2014 - 16:07
Eric Schrijverpeached
— a) Migrate away the old left top width height properties
b) When logged out, only show the drag icon
Also moved some of the klass logic to the Backbone object away from the DOM
run the migration with
python manage.py migrate aawiki
Thursday, 19th June 2014 - 17:55
Alexandre Lerayblabbed out
— Merge branch 'master' of git.constantvzw.org:osp.work.oralsite.www
Conflicts:
aawiki/static/aawiki/js/views.js
Thursday, 19th June 2014 - 23:02
Eric Schrijvercried
— Updated version of Markdown again makes relative links work with the ../pages/ structure
Pull request for aleray’s markdown.js out there
Friday, 20th June 2014 - 11:57
Eric Schrijverstated
— Uniform progression of header sizes, bottom-margin for all block elements (except headers)
And some comments and re-org.
Friday, 20th June 2014 - 16:01
Eric Schrijververbalised
— Make the ‘foreground-on-hover’ behaviour standard again for the annotation boxes
Friday, 20th June 2014 - 16:07
Eric Schrijverironized
— By default paragraphs get an indent
Friday, 20th June 2014 - 16:48
Alexandre Leraydisclosed
— A 404 on page revision not found
Friday, 20th June 2014 - 23:48
Alexandre Lerayconfessed
— Mainly:
* Changed the slug field to be the primary key, so it makes it easier to deal with backbone
* Rearranged the routes/router so it should navigate more fluently
* Got read of the server/client bipolar behaviour: Django is now just there to serve the static pages and the API (and it would make more sens to move to no sql)
* a bit of urls simplification on the Django side
* a better use of the events in Backbone to avoid using callbacks
aawiki needs migrations: run
python manage.py migrate aawiki
Friday, 20th June 2014 - 23:55
Alexandre Lerayclaimed
— Merge remote-tracking branch 'origin'
Friday, 20th June 2014 - 23:56
Alexandre Lerayblabbed
— Support for HTML in Markdown
Saturday, 21st June 2014 - 01:53
Alexandre Leraybabbled out
— Small fix of permissions display
Saturday, 21st June 2014 - 01:54
Alexandre Leraytweeted
— A little bit of pooling on views and models
Saturday, 21st June 2014 - 12:01
Eric Schrijverpeached
— Merge branch 'master' of git.constantvzw.org:/osp.work.oralsite.www
Saturday, 21st June 2014 - 12:48
Eric Schrijverlet loose
— Fix regression: We still need django’s ‘add-slashes’ url-routing behaviour, so that /pages/Alessandro becomes /pages/Alessandro/
Saturday, 21st June 2014 - 13:55
Eric Schrijverrevealed
— By default, show controls on video
This might be confusing in some scenarios together with the timeline, but in most cases it is more straightforward
Saturday, 21st June 2014 - 14:00
Eric Schrijverrevealed
— Make tests pass again
( the url for the tests had changed, so some about value problem )
Saturday, 21st June 2014 - 14:10
Eric Schrijverclaimed
— Regression: we still need to automatically redirect to the home-page
Saturday, 21st June 2014 - 14:18
Eric Schrijverbabbled out
— I think this makes browsing work again for logged-out users
Saturday, 21st June 2014 - 15:11
Eric Schrijververbalised
— `[[#annotation-0147]]` was becoming `../#annotation-0147` instead of `#annotation-0147`
Changed markdown.js, pull request outstanding
We should probably not be adding the ../ in the first place—
can we change our wikilinks syntax to be /pages/slug instead of /pages/slug/ ?
Sunday, 22nd June 2014 - 23:26
Alexandre Lerayconfessed
— Basic support to export to Audacity
Monday, 23rd June 2014 - 02:30
Eric Schrijversang
— Allow height: auto on annotation boxes
Did it by removing `position: absolute` from the `div.wrapper` inside the `section.section` part of the stylesheet.
haven’t seen any negative side effects uptil now?
Monday, 23rd June 2014 - 09:58
Eric Schrijverconfessed
— Scroll to annotations when they become active
Monday, 23rd June 2014 - 11:53
Eric Schrijverargued
— Make sure all registered events actually reach the TimelinePlayerView
Monday, 23rd June 2014 - 15:40
Alexandre Leraysaid
— Prevent propogation on audio, video and mini-player clicks
Monday, 23rd June 2014 - 15:34
Eric Schrijvercomitted
— Merge branch 'master' of git.constantvzw.org:/osp.work.oralsite.www
Monday, 23rd June 2014 - 15:41
Eric Schrijververbalised
— Make TimeLinePlayer stop when its at the end of its events
Monday, 23rd June 2014 - 15:53
Alexandre Leraywhistled
— Just a little bit of cleaning
Monday, 23rd June 2014 - 16:57
Eric Schrijverconfessed
— Share some of the methods between the timeline and the annotation-player DRY DRY
Monday, 23rd June 2014 - 16:55
Alexandre Leraydisclosed
— Merge branch 'master' of git.constantvzw.org:osp.work.oralsite.www
Monday, 23rd June 2014 - 16:58
Alexandre Lerayuttered
— Some more cleaning/simplification
Monday, 23rd June 2014 - 21:06
Eric Schrijvergave away
— Refactor to use only one renderPlayer method shared between the timeline-player and annotation-player
You can copy it over from the AbstractPlayer class;
it just expects your new view to implement a hasPlay method and a template
in which the player elements are presents.
Monday, 23rd June 2014 - 17:27
Eric Schrijverdiscovered
— And now also remove the double renderPlayerConditionally: the slide-show, has already gotten beter
Monday, 23rd June 2014 - 17:48
Eric Schrijvertweeted
— Repeat aleray’s nifty trick from #a31ed9190afe7f06a6aaaa520fdefdf4e1d02cfc
Slideshow player controls don’t propagate to the annotation box editor
Monday, 23rd June 2014 - 17:51
Alexandre Leraytweeted
— Merge branch 'master' of git.constantvzw.org:osp.work.oralsite.www
Monday, 23rd June 2014 - 21:06
Alexandre Lerayrevealed
— Big simplification of the code
* declarative annotation menus
* simplified render/edit view of annotations
* fixed many annotation layout bugs
* avoid callabcks and better use of events
Friday, 27th June 2014 - 14:24
Eric Schrijvercried
— A simple seek bar for the timeline
It works well in displaying the driver’s progress; it is not yet dependable for scrolling through a driver,
as it does not always seem to fire events at the right moment. For now the scrolling behaviour is
disabled, but you can get it back by removing the ‘disabled’ flag on the range control in timeline-player.html
Tuesday, 24th June 2014 - 23:12
Eric Schrijverlet out
— Activate an annotation by clicking on its timecode
Note it only works dependable when coming from a time before the event;
going back in time the start event is not always fired
Wednesday, 25th June 2014 - 01:58
Alexandre Leraylet the cat out of the bag
— Merge remote-tracking branch 'origin'
Conflicts:
aawiki/static/aawiki/js/views.js
Friday, 27th June 2014 - 14:41
Alexandre Lerayblabbed out
— small changes including new icons, and the fix of
django/backbone/markdown urls
Tuesday, 1st July 2014 - 16:11
Eric Schrijversaid
— Some time hash in the tests
Friday, 27th June 2014 - 18:21
Eric Schrijverspilled the beans
— FIX: ‘make icon of sound player a bit smaller?’
Friday, 27th June 2014 - 18:22
Eric Schrijversaid
— Add the `nosubdivision` class as promised: no grey lines in-between annotations
Friday, 27th June 2014 - 18:51
Eric Schrijvertalked
— When logged out and hovering over an annotation box, put it in front.
We can only do this for logged-out users, as logged-in users
need to have manual control over the stacking of the boxes
Friday, 27th June 2014 - 19:00
Eric Schrijverblabbed out
— Expand collapsed box on hover
This is a stop gap solution: the collapsed box will show the original box as well,
as you hover over it.
It would be better to do a solution where you have to click, and than the whole box
slides out: but that’s more involved an probably impossible in CSS alone.
Friday, 27th June 2014 - 20:29
Eric Schrijvercried
— FIXME: call that.driver instead
Monday, 30th June 2014 - 17:34
Eric Schrijverdisclosed
— Somehow the Soundcloud Player had gotten of off the map
Something is apparently going wrong in the function setControls in popcorn.js;
this is a work-around in CSS
Tuesday, 1st July 2014 - 00:05
Eric Schrijvershouted
— This we also need for the SoundCloud
Tuesday, 1st July 2014 - 00:09
Eric Schrijveradmitted
— Don’t render the player if there’s no driver
This seems to solve some bugs around slide-shows
Tuesday, 1st July 2014 - 12:39
Alexandre Leraydeclared
— Merge branch 'master' of git.constantvzw.org:osp.work.oralsite.www
Tuesday, 1st July 2014 - 16:12
Alexandre Leraygave away
— Don't show the main menu for anonymous users
Wednesday, 9th July 2014 - 23:01
Alexandre Lerayunwrapped
— Put back the history, in a yet another sidebar. At least we have
something working. I need to make the old revisions read-only, and
revertable
Friday, 11th July 2014 - 01:09
Alexandre Leraypeached
— fixes DeprecationWarning: django.utils.hashcompat is deprecated; use hashlib instead
Monday, 14th July 2014 - 14:10
Alexandre Leraylet the cat out of the bag
— a few fixes accross settings
Monday, 14th July 2014 - 17:23
Alexandre Lerayuttered
— Fix django compressor when DEBUG=False
Monday, 14th July 2014 - 18:39
Alexandre Leraypublished
— Allows for unicode content to be committed
Monday, 14th July 2014 - 20:08
Alexandre Leraybrought out
— little bit of cleaning
Monday, 14th July 2014 - 23:39
Alexandre Lerayblabbed out
— Focusing (show/hide menus) is done using events
Tuesday, 15th July 2014 - 00:24
Alexandre Leraysaid
— A couple of fix regarding the focusing behaviour
Tuesday, 15th July 2014 - 00:41
Alexandre Leraytold
— Prevents old revisions from being edited.
Tuesday, 15th July 2014 - 02:20
Alexandre Lerayironized
— Removed the save history button and put some fences on places where
save() is called to avoid having to many warnings for anonymous users
Friday, 19th September 2014 - 13:57
Eric Schrijveruttered
— Typo
Friday, 19th September 2014 - 11:46
Eric Schrijveremited
— Merge branch 'master' of git.constantvzw.org:/osp.work.oralsite.www
Friday, 19th September 2014 - 11:47
Alexandre Lerayblabbed
— Merge branch 'master' of git.constantvzw.org:osp.work.oralsite.www
Friday, 19th September 2014 - 13:58
Alexandre Leraytalked
— generates compressed css and js when deploying
Friday, 19th September 2014 - 16:39
Eric Schrijversaid
— ‘Anonymous’ was applied and removed again to section#article—this is an ugly hack to patch it
Friday, 19th September 2014 - 16:18
Eric Schrijversaid
— Merge branch 'master' of git.constantvzw.org:/osp.work.oralsite.www
Friday, 19th September 2014 - 16:19
Alexandre Leraybabbled
— Merge branch 'master' of git.constantvzw.org:osp.work.oralsite.www
Friday, 19th September 2014 - 16:43
Eric Schrijverbabbled out
— Thumbnail respects aspect ratio
+ do smoothing when downsizing, both on `thumb` and on `resize`
Saturday, 20th September 2014 - 10:57
Eric Schrijvercried
— Images only scaled to 100% if they’re bigger than the box
This way we can have thumbnails
Saturday, 20th September 2014 - 11:15
Eric Schrijvercried
— Don’t need to install a message broker for now
Friday, 26th September 2014 - 10:33
Alexandre Leraylet the cat out of the bag
— Import/export from/to audacity/srt
Thursday, 2nd October 2014 - 02:55
Alexandre Lerayunwrapped
— Experimental: revert old revision
Wednesday, 8th October 2014 - 02:08
Alexandre Leraydiscovered
— Fixes hradcoded page name in the revision revert code
Wednesday, 8th October 2014 - 11:02
Alexandre Lerayclaimed
— Bump TODO
Tuesday, 4th November 2014 - 23:10
Alexandre Lerayverbalized
— the revert is a hyperlink, but is not visible as such. It is now
Wednesday, 5th November 2014 - 00:41
Eric Schrijvercomplained
— Oops this is still part of 19th September’s ugly hack to re-enable public browsing
Sunday, 2nd November 2014 - 22:47
Eric Schrijverlet loose
— Comment Celery URLS
Sunday, 2nd November 2014 - 22:48
Eric Schrijverlet out
— Merge branch 'master' of git.constantvzw.org:/osp.work.oralsite.www
Sunday, 2nd November 2014 - 22:51
Eric Schrijververbalized
— Add link to manual
Read-only Google Doc for now—
should probably add a script that downloads it to HTML
Monday, 3rd November 2014 - 07:45
Eric Schrijvertalked
— No more toggle visibility for visitors
&Hidden boxes hidden for anonymous
Monday, 3rd November 2014 - 08:19
Eric Schrijverrendered
— By referring to AA.router.pageView.model rather than AA.router.pageModel we reduce the number of app-wide variables
Also, we make the tests work again
Tuesday, 4th November 2014 - 12:53
Eric Schrijverblabbed
— Try to understand multiple videos with different media queries as the same
Tuesday, 4th November 2014 - 16:16
Eric Schrijverconfessed
— More apparent titles for collapsed boxes
Tuesday, 4th November 2014 - 18:55
Alexandre Leraydisclosed
— Merge branch 'master' of git.constantvzw.org:osp.work.oralsite.www
Wednesday, 5th November 2014 - 00:42
Alexandre Leraysaid
— Move cursor on the annotation handles
Wednesday, 5th November 2014 - 18:20
Eric Schrijverdisclosed
— Revert more apparent titles for collapsed boxes
Thursday, 6th November 2014 - 02:16
Eric Schrijverrendered
— Make Youtube videos actually fit
First we only had the width move…
This assumes a 16:9 video, boxes will still appear if it isn’t
Thursday, 6th November 2014 - 02:46
Eric Schrijverwhistled
— Don’t left-pad the annotation numbers 0024 as it hard-limits the amount of possible annotations
Of course we could use more numbers but then we have type zeroes all the time
Thursday, 6th November 2014 - 20:10
Eric Schrijverclaimed
— Super sharp Kristien
Thursday, 6th November 2014 - 20:58
Alexandre Leraybabbled out
— Thank you Eric to do realtime SMS hotline/feedback. Let's see if this
fixes the audio support
Wednesday, 12th November 2014 - 11:44
Alexandre Lerayshouted
— Fix: when one create an annotation box and the viewport is scrolled, it jumps to
the top (wrong coordinates computation, does not take the
offset/scroll into account)
Wednesday, 12th November 2014 - 12:54
Alexandre Lerayblabbed out
— removed the css rule specifying that first-child of .active-only
annotations should be visible. Question: what was it for?
Wednesday, 12th November 2014 - 14:50
Alexandre Leraystated
— Fix active annotations scroll offset and moved to views code that
trigger the active class on annotations
Wednesday, 12th November 2014 - 16:18
Alexandre Leraywhispered
— extra warning when taking a snapshot of the page.
Wednesday, 12th November 2014 - 16:28
Alexandre Leraylet on
— Fixed typos
Wednesday, 12th November 2014 - 17:53
Alexandre Lerayexpressed
— History and Help sidebar invisible for anonymous users
Wednesday, 12th November 2014 - 18:04
Alexandre Lerayspilled the beans
— Audacity and srt unicode export
Wednesday, 19th November 2014 - 10:58
Eric Schrijverrevealed
— Julien’s CSS update to make the timeline player more visible
Tuesday, 18th November 2014 - 12:30
Eric Schrijverclaimed
— Fix tests after b798d9e4ef6da91418fe009f1e991c39df56358c
Tuesday, 18th November 2014 - 15:16
Alexandre Lerayrevealed
— Merge branch 'master' of git.constantvzw.org:osp.work.oralsite.www
Wednesday, 19th November 2014 - 10:59
Alexandre Lerayverbalized
— A UUID field to handle annotation ids
Tuesday, 25th November 2014 - 00:47
Eric Schrijvershouted
— Might come in handy?
Wednesday, 19th November 2014 - 11:14
Eric Schrijvercomplained
— Merge branch 'master' of git.constantvzw.org:/osp.work.oralsite.www
Wednesday, 19th November 2014 - 11:15
Eric Schrijverpeached
— We were getting too much start events. This cuts down on the mess.
We stil have not enough stop events, though?
Some activations stay activated.
Wednesday, 19th November 2014 - 15:19
Eric Schrijvercried
— Beginning for cross driver links
Use as: [[http://localhost:8000/static/components/popcorn-js/test/trailer.ogv#t=59]]{:target="multiplex"}
Unfortunately not really working yet, I can’t get the .currentTime() to work on my local computer?
Wednesday, 19th November 2014 - 17:34
Eric Schrijverbabbled out
— On the server, it does work! Make it so it plays automatically, and from the beginning if time is unspecified
Wednesday, 19th November 2014 - 17:46
Eric Schrijveruttered
— Reflect in UI the fact that this button not only exports, but imports as well—and that it handles both Audacity markers and SRT!
Thursday, 20th November 2014 - 18:20
Alexandre Leraybrought out
— Merge branch 'master' of git.constantvzw.org:osp.work.oralsite.www
Tuesday, 25th November 2014 - 00:48
Alexandre Leraytalked
— migration to fix the about subdomain, since we move from dev.oralsite.be
to oralsite.be
Tuesday, 25th November 2014 - 01:23
Alexandre Leraysaid
— fade-in fade-out on active annotations
Tuesday, 25th November 2014 - 16:24
Alexandre Lerayironized
— fix slight jump of active-only annotations
Tuesday, 25th November 2014 - 18:05
Alexandre Leraycomplained
— doesn't scroll if the annotation has active-only class
Tuesday, 25th November 2014 - 18:22
Alexandre Leraytalked
— Patched popcorn-complete.js to re-work with Vimeo. Might break when we
update popcorn next time because I changed directly in the build.
See: https://github.com/mozilla/popcorn-js/issues/417
Monday, 1st December 2014 - 11:36
Alexandre Lerayemited
— No indent on sidebar paragraphs
Monday, 1st December 2014 - 11:42
Alexandre Leraysaid
— non-ascii characters allowed in revision messages
Tuesday, 2nd December 2014 - 01:04
Alexandre Leraypeached
— Aawik iadmin pimping
Tuesday, 23rd December 2014 - 14:38
Eric Schrijverdisclosed
— semicolon
Tuesday, 2nd December 2014 - 14:49
Eric Schrijverdeclared
— Make tests work with new annotation uuid property
Tuesday, 2nd December 2014 - 14:50
Eric Schrijverlet the cat out of the bag
— Merge branch 'master' of git.constantvzw.org:/osp.work.oralsite.www
Tuesday, 2nd December 2014 - 14:50
Eric Schrijverlet on
— Use the Pace.on event to trigger the # work-around
Tuesday, 2nd December 2014 - 17:45
Eric Schrijverblabbed out
— Yes! Started to integrate jQuery UI events into Backbone
IMHO creates much more readable code
Wednesday, 3rd December 2014 - 11:41
Eric Schrijversaid
— Allow ‘view on site’ from Admin
To this end, the url settings should be such that
- they let everything through, and leave the real routing to Backbone
- they still provide a `slug` regex group with which the reverse url can be constructed
Wednesday, 10th December 2014 - 12:18
Eric Schrijverblabbed out
— Visual Feedback of Timeline Progression; no seek bar
Because scrubbing with the seek bar is not working to satisfaction yet, and therefore disabled,
it is better not to display the seekbar at all.
We simply provide a progress bar that provides visual feedback on where we are in the timeline
Wednesday, 10th December 2014 - 12:37
Eric Schrijverlet loose
— My editor wanted to be stripping whitespace, why not
Wednesday, 10th December 2014 - 12:38
Eric Schrijveradmitted
— Don’t show timecode for slideshowed annotations
Wednesday, 10th December 2014 - 12:55
Alexandre Leraypublished
— Merge branch 'master' of git.constantvzw.org:osp.work.oralsite.www
Tuesday, 23rd December 2014 - 14:38
Alexandre Lerayunwrapped
— page Admin filter by administrator
Tuesday, 23rd December 2014 - 15:15
Alexandre Leraygave away
— Fixed: The blue Oral Site button at the top of the right hand menu doesn't work.
Friday, 30th January 2015 - 11:40
Alexandre Lerayexpressed
— Changed page title to Oralsite
Thursday, 19th February 2015 - 10:05
Alexandre Lerayconfessed
— scroll down in the right hand menu in can of overflow
Sunday, 1st March 2015 - 19:11
Alexandre Leraysaid
— First step to implement full source export
Monday, 2nd March 2015 - 10:42
Alexandre Leraypeached
— A logged in user without editing permissions can't see the main
page menu anymore
Monday, 2nd March 2015 - 11:03
Alexandre Lerayconfessed
— Revert aawiki api to it's previous stage: it was committed by error
Monday, 2nd March 2015 - 11:43
Alexandre Lerayshouted
— Fix commit 22cea0c: A logged in user without editing permissions can't see the main page menu anymore
Monday, 2nd March 2015 - 11:57
Alexandre Leraysaid
— Fixed the user/superuser bug
Monday, 2nd March 2015 - 23:32
Alexandre Leraysang
— Minify CSS in production
Monday, 16th March 2015 - 11:29
Alexandre Leraydivulged
— It shouldn't be necessary to force compress in the fabfile
Monday, 16th March 2015 - 11:32
Alexandre Lerayexpressed
— Test to fix django compressor
Monday, 16th March 2015 - 11:53
Alexandre Leraydisclosed
— Test to fix django compressor
Monday, 16th March 2015 - 11:54
Alexandre Lerayunwrapped
— Another test
Monday, 16th March 2015 - 11:56
Alexandre Lerayverbalised
— Clean css after the test for Django compressor (BTW, when django
compressor does not compress, the first thing to check is the
permissions on the CACHE directory!)
Monday, 16th March 2015 - 12:06
Alexandre Leraylet out
— Fixed: button to close the side menu dissapeared
Monday, 16th March 2015 - 13:47
Alexandre Lerayexpressed
— Help menu first round
Wednesday, 25th March 2015 - 23:32
Alexandre Lerayunwrapped
— Installing python markdown on python 2.6 fails so I remove the
dependency anyway emporary to markdown and generate the help locally
Wednesday, 25th March 2015 - 23:47
Alexandre Lerayrendered
— Upgraded requirements. Works with Django 1.8
Sunday, 7th June 2015 - 16:14
Alexandre Leraygave away
— I will try to force installing django 1.8 compatible tastypie version from requirements instead, like this:
--allow-external django-tastypie
--allow-unverified django-tastypie
git+git://github.com/django-tastypie/django-tastypie@256ebe1de9a78dfb5d4d6e938b813cf4c5c4ac1b
Wednesday, 15th July 2015 - 16:26
Alexandre Leraysaid
— Fixed settings to avoid collectstatic error
Friday, 17th July 2015 - 22:38
Alexandre Leraytold
— Look for static files in oralsite/static (to enable overriding of styles)
Tuesday, 15th September 2015 - 11:31
Alexandre Lerayrendered
— Forgot to add static files and templates in the previous commit
Tuesday, 15th September 2015 - 11:39
Alex Leraytold
— Update fabfile
Thursday, 23rd June 2016 - 12:08