kavanland
clone your own copy | download snapshot

About

This is kavan.land website

Snapshots | iceberg

No images in this repository’s iceberg at this time

Inside this repository

Log

 

Alexandre Leraytattled

— A prototype for sniffers

Tuesday, 9th October 2012 - 15:40

 

Alexandre Leraycomplained

— Basic integration with django

Tuesday, 9th October 2012 - 21:01

 

Alexandre Leraywhispered

— More articulated integartion to django

Thursday, 11th October 2012 - 18:52

 

Alexandre Lerayargued

— Performedsome cleaning

Friday, 12th October 2012 - 17:03

 

Alexandre Leraylet on

— Replaced triggering by mimetype for a test method.

I'm experimenting with passing a dummy model that contains the
statements retrieved from the http request, and use Sparql to test
wether or not the sniffers should be triggered...

So far that looks quite an interesting solution.

Tuesday, 16th October 2012 - 03:52

 

Alexandre Leraywhistled

— Removed unused symlink

Saturday, 20th October 2012 - 13:23

 

Alexandre Leraydiscovered

— Re-implemented sniffers and documented

Also changed the sniffer decorator to take an output format as parameter
instead of a mime-type (which was not used since we now test the
sniffers with sparql)

Sunday, 21st October 2012 - 10:53

 

Alexandre Leraytold

— Simplified the sniffer architecture.

Monday, 5th November 2012 - 16:09

 

Alexandre Leraypeached

— Fixed redland raptor crashing on non-namespaced elements

Monday, 10th December 2012 - 19:52

 

Alexandre Leraypeached

— Added setup.py to ease the installation of aacore

Tuesday, 11th December 2012 - 13:10

 

Alexandre Leraybabbled

— Fixed missing comma in setup.py

Tuesday, 11th December 2012 - 14:56

 

Alexandre Lerayblabbed out

— Sorry but it is a tutti fruti commit... changes have been in the
puragtory for month and I don't know exactly what's in

Friday, 17th May 2013 - 22:46

 

Eric Schrijvertweeted

— Specify precise version of ‘requests’ library

the code doesn’t work with version 1.0.4, I had to change
- request = requests.get(self.url, prefetch=False)
+ request = requests.get(self.url)

Awaiting a patch, we specify to use version 0.14.2

Friday, 11th January 2013 - 15:42

 

Eric Schrijverdeclared

— This small change __import__ change is needed to make aacore behave under modwsgi

Thursday, 24th January 2013 - 21:36

 

Eric Schrijvercomplained

— Implement a simple SPARQL endpoint, accessible through POST requests.

> Protocol clients may send protocol requests via the HTTP POST method
> by including the query directly and unencoded as the HTTP request
> message body. [1]

Sends back Sparql results in an XML serialisation,
with mime/type application/sparql-results+xml [2]

[1] http://www.w3.org/TR/sparql11-protocol/#query-via-post-direct
[2] http://www.w3.org/TR/rdf-sparql-XMLres/#mime

Example code to call this in jQuery:

var query = jQuery.ajax({
url: "/sparql/",
type: "POST",
data: SPARQL,
dataType: "xml",
contentType: "application/sparql-query",
processData: false,
success: function (data) {
console.log(data);
},
error: function(xhr, status, error) {
console.log("error!");
console.log(xhr, status, error);
},
});

Wednesday, 27th February 2013 - 19:01

 

Eric Schrijveremited

— Allow templates to be packaged by setuptools

Wednesday, 27th February 2013 - 21:22

 

Alexandre Lerayunwrapped

— Added support for JSON in the SPARQL endpoint.

By passing "Accept: application/sparql-result+json" the view will return
a JSON response. Otherwise, XML ("application/sparql-result+xml") is
returned.

An example with Curl is given in the docstring of the view.

Monday, 4th March 2013 - 17:42

 

Alexandre Lerayunwrapped

— Merge branch 'master' of git.constantvzw.org:aa.core2

Thursday, 30th May 2013 - 13:34

 

Alexandre Leraywhistled

— A primitive web-based sparql endpoint

Tuesday, 4th June 2013 - 01:09

 

Alexandre Lerayadmitted

— Fixes unicode and encoding error

Thursday, 6th June 2013 - 15:32

 

Alexandre Leraydisclosed

— Started to migrate to python rdflib.

It seems much more confortable to work with, and even faster than
redland librdf although it is fully written in python.

Let see how it goes.

Monday, 24th June 2013 - 15:16

 

Alexandre Lerayuttered

— Checks if the rdflib store exists otherwise creates it

Monday, 24th June 2013 - 15:39

 

Alexandre Leraytalked

— No more references to RDFlib, except in some commented code not yet
reimplemented. I also did update the sniffers __init__ and test methods

Monday, 8th July 2013 - 16:44

 

Alexandre Leraydeclared

— Removed a couple of unused imports

Monday, 8th July 2013 - 17:10

 

Alexandre Leraylet the cat out of the bag

— Added filetype audio/x-wav to the ogg sniffer test

Tuesday, 9th July 2013 - 03:40

 

Alexandre Leraypublished

— Added a sniffer for wav. I just want to get back the duration, and
ffprobe on debian squeeze won't let me get the nice json output.

Tuesday, 9th July 2013 - 04:58

 

Alexandre Lerayverbalised

— oups, I forgot to commit some files

Tuesday, 9th July 2013 - 05:04

 

Alexandre Lerayspilled the beans

— A context processor for always passing namespaces

Thursday, 19th September 2013 - 12:09

 

Alexandre Leraylet the cat out of the bag

— Fixed Django 1.5 compatibility and removed painful dependencies. Bump v.0.1.1

Wednesday, 16th October 2013 - 23:03

 

Stéphanie Vilayphioublabbed out

— Premiers styles less/css pour *AnnaK. Mythologies personnelles.*
On comprend mieux les résultats avec des <dl> <dt> <dd> qu'avec des <ul>
et <li> imbriqués.

Wednesday, 11th June 2014 - 17:40

 

Stéphanie Vilayphiouironized

— Fix d'Alex pour les fichiers statiques.

Wednesday, 11th June 2014 - 17:41

 

Stéphanie Vilayphioustated

— styles + images

images:
- convertit toutes les valeurs finissant par "jpg|gif|png" et les
transforment en tag <img>
- récupère les valeurs "/books/OL####" (olid) et charge la couverture
correspondante via Open Library.

Thursday, 12th June 2014 - 14:52

 

Alexandre Lerayunwrapped

— Added a new option for sniffers to return triples directly.

Saturday, 8th February 2014 - 13:33

 

Alexandre Lerayuttered

— Base class for sniffers so we don't have to write the __init__ method
every time

Saturday, 8th February 2014 - 13:54

 

Alexandre Leraysaid

— More robust check of the store at startup

Wednesday, 11th June 2014 - 16:34

 

Alexandre Leraycried

— An attempt at recording the sources of the statements (rdf quads)

Thursday, 12th June 2014 - 13:57

 

Alexandre Leraywhistled

— Merge branch 'rdflib' into ak

Thursday, 12th June 2014 - 14:07

 

Alexandre Leraycried

— We can attach annotations to the nodes now

Thursday, 12th June 2014 - 14:45

 

Stéphanie Vilayphioubabbled

— Merge branch 'ak' of git.constantvzw.org:aa.core2 into ak

Conflicts:
aacore/templates/aacore/browse.html

Thursday, 12th June 2014 - 14:56

 

Alexandre Leraywhistled

— Include specific snippets of HTML according to the type of resource one
is looking at

Thursday, 12th June 2014 - 16:14

 

Stéphanie Vilayphioutweeted

— Merge branch 'ak' of git.constantvzw.org:aa.core2 into ak

Thursday, 12th June 2014 - 16:21

 

Alexandre Lerayadmitted

— Fixed the context dictionnary of infobox inclusion tag so it returns
unicode keys

Thursday, 12th June 2014 - 16:41

 

Stéphanie Vilayphiouadmitted

— Merge branch 'ak' of git.constantvzw.org:aa.core2 into ak

Thursday, 12th June 2014 - 16:42

 

Stéphanie Vilayphiousaid

— Alex a fixé le bug quang il n'y a pas de description.
+ lien cliquable sur les valeurs

Thursday, 12th June 2014 - 18:36

 

Stéphanie Vilayphiouunwrapped

— rollover sur lien

Thursday, 12th June 2014 - 18:41

 

Stéphanie Vilayphioulet loose

— css + qques infos dans infobox

Thursday, 12th June 2014 - 19:34

 

Stéphanie Vilayphiouclaimed

— styles

Friday, 13th June 2014 - 11:52

 

Stéphanie Vilayphioulet out

— annotations: admin affiche l'url de la resource

Friday, 13th June 2014 - 11:57

 

Stéphanie Vilayphioudivulged

— bouton 'annoter' → 'add box'

Friday, 13th June 2014 - 11:58

 

Stéphanie Vilayphiouconfessed

— champs dans infobox work

Friday, 13th June 2014 - 12:52

 

Stéphanie Vilayphiouspilled the beans

— styles

Friday, 13th June 2014 - 12:53

 

Stéphanie Vilayphiourendered

— infobox édition

Friday, 13th June 2014 - 15:24

 

Alexandre Leraystated

— Splitted settings.py

Friday, 13th June 2014 - 11:29

 

Alexandre Leraylet out

— Merge branch 'rdflib' into ak

Friday, 13th June 2014 - 11:30

 

Alexandre Leraylet the cat out of the bag

— Merge branch 'ak' of git.constantvzw.org:aa.core2 into ak

Friday, 13th June 2014 - 11:31

 

Alexandre Leraydeclared

— wsgi.py file

Friday, 13th June 2014 - 13:37

 

Alexandre Lerayblabbed

— Merge branch 'rdflib' into ak

Friday, 13th June 2014 - 13:37

 

Stéphanie Vilayphiouinterpreted

— Merge branch 'ak' of git.constantvzw.org:aa.core2 into ak

Friday, 13th June 2014 - 15:24

 

Stéphanie Vilayphiousaid

— Ajouté un "/" à la fin de l'url vers un work dans infobox "édition"

Friday, 13th June 2014 - 15:32

 

Stéphanie Vilayphiousaid

— Enlevé le champ "date" de work car je ne sais pas d'où il vient ni ce
que ça représente.

Friday, 13th June 2014 - 15:55

 

Stéphanie Vilayphioubrought out

— dimensions d'une édition

Friday, 13th June 2014 - 16:15

 

Alexandre Leraysang

— A django management command to index a list of URLs

Friday, 13th June 2014 - 15:07

 

Alexandre Lerayuttered

— Merge branch 'rdflib' into ak

Friday, 13th June 2014 - 15:08

 

Alexandre Leraycomitted

— Merge branch 'ak' of git.constantvzw.org:aa.core2 into ak

Friday, 13th June 2014 - 16:01

 

Stéphanie Vilayphiousang

— Merge branch 'ak' of git.constantvzw.org:aa.core2 into ak

Friday, 13th June 2014 - 16:15

 

Stéphanie Vilayphioulet the cat out of the bag

— order by predicate

Friday, 13th June 2014 - 16:30

 

Stéphanie Vilayphiousang

— oups, je me suis crue dans mysql

Friday, 13th June 2014 - 16:31

 

Stéphanie Vilayphioutalked

— réorganisation des boites

Friday, 13th June 2014 - 16:33

 

Stéphanie Vilayphioudivulged

— un petit coup de maçonnage

Friday, 13th June 2014 - 16:44

 

Stéphanie Vilayphiouadmitted

— titre à la boite de description

Friday, 13th June 2014 - 16:51

 

Stéphanie Vilayphioucried

— dummy menu

Wednesday, 20th August 2014 - 14:16

 

Stéphanie Vilayphiougave away

— styles

Wednesday, 20th August 2014 - 15:30

 

Stéphanie Vilayphiouexposed

— add South to settings

Wednesday, 20th August 2014 - 15:30

 

Stéphanie Vilayphioublabbed out

— add Order field to annotations

Wednesday, 20th August 2014 - 15:31

 

Stéphanie Vilayphioupeached

— css

Wednesday, 20th August 2014 - 16:02

 

Stéphanie Vilayphiouexpressed

— ckeditor

Wednesday, 20th August 2014 - 16:23

 

Stéphanie Vilayphioudisclosed

— settings ckeditor

Wednesday, 20th August 2014 - 16:49

 

Stéphanie Vilayphiouspilled the beans

— tirets dans les listes

Wednesday, 20th August 2014 - 17:06

 

Stéphanie Vilayphiouargued

— rm tirets dans les listes du menu

Wednesday, 20th August 2014 - 17:07

 

Stéphanie Vilayphioudisclosed

— liens menu

Wednesday, 20th August 2014 - 17:10

 

Stéphanie Vilayphioutalked

— HF | AK

Wednesday, 20th August 2014 - 17:17

 

Stéphanie Vilayphioubabbled out

— edit button for annotation box

Wednesday, 20th August 2014 - 17:31

 

Stéphanie Vilayphiouwhistled

— ckeditor buttons

Wednesday, 20th August 2014 - 18:18

 

Stéphanie Vilayphioutalked

— rm ugly border

Wednesday, 20th August 2014 - 18:33

 

Stéphanie Vilayphioubabbled

— Comment styler chaque boîte → utiliser une balise <style> dans la boîte. L'id de la boîte est annotation-X ou X est le numéro de l'annotation indiquée dans la barre URL

Thursday, 21st August 2014 - 12:09

 

Stéphanie Vilayphioucried

— le body a comme id l'URL de la ressource

Thursday, 21st August 2014 - 12:23

 

Stéphanie Vilayphiouspoke

— body_id ne prend que le dernier élément de l'URL

Thursday, 21st August 2014 - 12:43

 

Stéphanie Vilayphioudiscovered

— bis

Thursday, 21st August 2014 - 12:44

 

Stéphanie Vilayphioubrought out

— ter: with slugify

Thursday, 21st August 2014 - 12:48

 

Stéphanie Vilayphioubabbled

— gets OLID from node name to fetch covers

Thursday, 21st August 2014 - 14:22

 

Stéphanie Vilayphioupublished

— bibliography link updated

Thursday, 21st August 2014 - 14:35

 

Stéphanie Vilayphiousaid

— annotation admin: filter by resource

Thursday, 21st August 2014 - 14:42

 

Stéphanie Vilayphioubabbled

— button to list all boxed related to the current resource

Thursday, 21st August 2014 - 14:51

 

Stéphanie Vilayphioutalked

— pre: letter-spacing: -1px;

Thursday, 21st August 2014 - 15:11

 

Stéphanie Vilayphiousaid

— homepage redirect

Thursday, 21st August 2014 - 15:26

 

Stéphanie Vilayphiouexpressed

— urlencode utf8

Thursday, 21st August 2014 - 16:57

 

Stéphanie Vilayphioudivulged

— update requirements

Thursday, 21st August 2014 - 17:35

 

Stéphanie Vilayphiouconfessed

— Tumblr posts sur Anna Kavan

Thursday, 21st August 2014 - 17:40

 

Stéphanie Vilayphiourevealed

— search tumblr tags with or without space

Thursday, 21st August 2014 - 17:43

 

Stéphanie Vilayphiouverbalised

— django.conf.settings

Thursday, 21st August 2014 - 18:25

 

Stéphanie Vilayphiouadmitted

— ul p → inline

Friday, 22nd August 2014 - 12:10

 

Stéphanie Vilayphiousaid

— display infos

Friday, 22nd August 2014 - 17:42

 

Stéphanie Vilayphiouinterpreted

— affiche la liste des subjects dans Work (avant, seul le premier était affiché

Friday, 22nd August 2014 - 17:51

 

Stéphanie Vilayphiousaid

— subject_list n'était pas au bon endroit

Friday, 22nd August 2014 - 17:53

 

Stéphanie Vilayphioudisclosed

— Edition metadata, optional infos

Friday, 22nd August 2014 - 18:12

 

Stéphanie Vilayphiouuttered

— uncamel template tag

Friday, 22nd August 2014 - 18:18

 

Stéphanie Vilayphiouadmitted

— dictsort by predicate in object list

Friday, 22nd August 2014 - 18:20

 

Stéphanie Vilayphiouverbalized

— début de phrase au lieu d'un listing

Friday, 22nd August 2014 - 18:33

 

Stéphanie Vilayphiouargued

— list all coverage items

Friday, 22nd August 2014 - 18:42

 

Stéphanie Vilayphiouadmitted

— sentence reviewed for 'as predicate'

Monday, 25th August 2014 - 11:38

 

Stéphanie Vilayphioudivulged

— indent

Monday, 25th August 2014 - 11:39

 

Stéphanie Vilayphiouinterpreted

— affichage de l'année dans les listings

Monday, 25th August 2014 - 11:47

 

Stéphanie Vilayphioucried

— if infobox: rawdata hidden

Monday, 25th August 2014 - 11:49

 

Stéphanie Vilayphiouclaimed

— display isbn13

Monday, 25th August 2014 - 11:51

 

Stéphanie Vilayphiouunwrapped

— description in edition infobox

Monday, 25th August 2014 - 11:55

 

Stéphanie Vilayphioupeached

— work title in edition infobox

Monday, 25th August 2014 - 12:03

 

Stéphanie Vilayphioutalked

— translation of edition infobox

Monday, 25th August 2014 - 12:04

 

Stéphanie Vilayphioulet on

— display author name

Monday, 25th August 2014 - 12:13

 

Stéphanie Vilayphiouclaimed

— style th

Monday, 25th August 2014 - 12:15

 

Stéphanie Vilayphioubrought out

— style list in tables

Monday, 25th August 2014 - 12:18

 

Stéphanie Vilayphiousang

— link colors

Monday, 25th August 2014 - 12:23

 

Stéphanie Vilayphiouuttered

— URL bar displayed only if user is authenticated

Monday, 25th August 2014 - 12:24

 

Stéphanie Vilayphioucomitted

— liste des éditions sur la page Work

Monday, 25th August 2014 - 13:05

 

Stéphanie Vilayphiouargued

— publishing date in edition list

Monday, 25th August 2014 - 15:03

 

Stéphanie Vilayphiousaid

— taille des boîtes en pourcentage pour les écrans mini

Monday, 25th August 2014 - 15:28

 

Stéphanie Vilayphiousaid

— put back covers

Monday, 25th August 2014 - 15:33

 

Stéphanie Vilayphioudisclosed

— edition list as covers

Monday, 25th August 2014 - 15:45

 

Stéphanie Vilayphiouverbalized

— code tag allowed in ckeditor

Monday, 25th August 2014 - 16:22

 

Stéphanie Vilayphiousang

— book in menu

Monday, 25th August 2014 - 16:22

 

Alexandre Leraylet out

— Test of Index on the right of the page

Monday, 25th August 2014 - 15:14

 

Alexandre Leraydiscovered

— Merge branch 'ak' of git.constantvzw.org:aa.core2 into ak

Conflicts:
aacore/templates/aacore/browse.html

Monday, 25th August 2014 - 16:04

 

Stéphanie Vilayphiouspoke

— Merge branch 'ak' of git.constantvzw.org:aa.core2 into ak

Monday, 25th August 2014 - 16:23

 

Stéphanie Vilayphiouwhistled

— style index + boxes

Monday, 25th August 2014 - 17:34

 

Stéphanie Vilayphiousaid

— réparation des boutons 'edit'

Tuesday, 26th August 2014 - 10:44

 

Stéphanie Vilayphioublabbed out

— rm index from menu

Tuesday, 26th August 2014 - 11:53

 

Stéphanie Vilayphioudeclared

— rawdata boxes: width auto

Tuesday, 26th August 2014 - 11:53

 

Stéphanie Vilayphiouverbalized

— style width

Tuesday, 26th August 2014 - 14:27

 

Stéphanie Vilayphioubabbled out

— index avec bigrammes et personnages

Tuesday, 26th August 2014 - 16:47

 

Alexandre Lerayrevealed

— A proposal to clarify the views and make type-specific pages

Tuesday, 26th August 2014 - 15:16

 

Stéphanie Vilayphiougave away

— Merge branch 'ak' of git.constantvzw.org:aa.core2 into ak

Tuesday, 26th August 2014 - 16:47

 

Stéphanie Vilayphiousang

— index

Tuesday, 26th August 2014 - 17:58

 

Stéphanie Vilayphioucomitted

— homepage

Tuesday, 26th August 2014 - 18:23

 

Stéphanie Vilayphioucomitted

— hide button book and tumblr for the moment

Tuesday, 2nd September 2014 - 23:09

 

Alexandre Lerayuttered

— design de l'index + destruction du design par ailleurs

Monday, 29th September 2014 - 11:51

 

Stéphanie Vilayphiourendered

— reconstruction du design après la destruction d'Alex

Thursday, 9th October 2014 - 16:06

 

Stéphanie Vilayphiouexposed

— menu avec icônes

Tuesday, 28th October 2014 - 00:49

 

Stéphanie Vilayphioutold

— encore plus de design

Tuesday, 28th October 2014 - 19:43

 

Stéphanie Vilayphioubabbled out

— menu en haut

Saturday, 1st November 2014 - 00:21

 

Stéphanie Vilayphiousaid

— list-item dash

Saturday, 1st November 2014 - 00:30

 

Stéphanie Vilayphioudiscovered

— urlbar

Sunday, 2nd November 2014 - 21:30

 

Stéphanie Vilayphioublabbed

— styles pages de texte

Monday, 3rd November 2014 - 11:15

 

Stéphanie Vilayphioublabbed out

— styles page édition

Monday, 3rd November 2014 - 11:58

 

Stéphanie Vilayphioubrought out

— more styles

Monday, 3rd November 2014 - 12:41

 

Alexandre Lerayuttered

— Moved the sniffing part in a seperate repository: aasniff

Friday, 10th October 2014 - 11:33

 

Alexandre Lerayadmitted

— Merge branch 'rdflib' into ak

Conflicts:
aacore/views.py

Friday, 10th October 2014 - 11:41

 

Alexandre Lerayexposed

— Fix some import and module names linked to the split of the sniffers

Tuesday, 28th October 2014 - 15:42

 

Alexandre Leraytattled

— Merge branch 'ak' of git.constantvzw.org:aa.core2 into ak

Tuesday, 28th October 2014 - 15:43

 

Alexandre Leraydiscovered

— Fixed setup.py according to the split of aasniff

Monday, 3rd November 2014 - 11:56

 

Alexandre Leraywhistled

— Merge branch 'rdflib' into ak

Monday, 3rd November 2014 - 11:57

 

Alexandre Leraysaid

— A fabfile to easily deploy

Monday, 3rd November 2014 - 12:03

 

Alexandre Leraysaid

— ignore some more files

Monday, 3rd November 2014 - 12:03

 

Alexandre Lerayverbalized

— Updated requirements with aasniff dependency

Monday, 3rd November 2014 - 12:20

 

Alexandre Lerayspoke

— Merge branch 'rdflib' into ak

Conflicts:
run/requirements.txt

Monday, 3rd November 2014 - 12:21

 

Alexandre Leraylet on

— Removed redundant dependencies

Monday, 3rd November 2014 - 12:22

 

Alexandre Leraydivulged

— Modified fabfile deploy function to install requirements automatically

Monday, 3rd November 2014 - 12:25

 

Alexandre Lerayrevealed

— Added rdflib-sqlalchemy to the requirements, since we are using sqlite

Monday, 3rd November 2014 - 12:35

 

Stéphanie Vilayphiouverbalized

— Merge branch 'ak' of git.constantvzw.org:aa.core2 into ak

Monday, 3rd November 2014 - 12:56

 

Stéphanie Vilayphioublabbed

— fonts

Monday, 3rd November 2014 - 15:37

 

Stéphanie Vilayphioutold

— graphs svg

Monday, 3rd November 2014 - 17:03

 

Stéphanie Vilayphioulet out

— index oracle

Tuesday, 4th November 2014 - 10:29

 

Stéphanie Vilayphioupublished

— index oracle avec les likes

Tuesday, 4th November 2014 - 11:26

 

Stéphanie Vilayphioubabbled

— index oracle: détail des remixes et papers

Tuesday, 4th November 2014 - 11:40

 

Stéphanie Vilayphioudisclosed

— tumblr archive

Tuesday, 4th November 2014 - 12:36

 

Stéphanie Vilayphioubrought out

— move twitblr up a level for the server

Tuesday, 4th November 2014 - 16:05

 

Stéphanie Vilayphioushouted

— check si un tag existe avant de le sauvegarder

Tuesday, 4th November 2014 - 16:21

 

Stéphanie Vilayphiousaid

— check si un tag ou un post existe avant de le sauvegarder

Tuesday, 4th November 2014 - 16:53

 

Stéphanie Vilayphioulet on

— page books yes

Tuesday, 4th November 2014 - 18:39

 

Alexandre Lerayblabbed

— Apropos a peu près OK

On produit une analyse des textes de Kavan (ceux dont on dispose sous
forme de textes brut) qui génère des statements RDF (nombre de mots,
nombre de caractères etc.). En plus, on récupère des infos sur les dates
D'ÉDITION. Avec ça, on génère des phrases automatiques d'introduction
aux oeuvres de Kavan.

Tuesday, 4th November 2014 - 17:56

 

Alexandre Lerayspilled the beans

— Merge branch 'ak' of git.constantvzw.org:aa.core2 into ak

Tuesday, 4th November 2014 - 17:59

 

Stéphanie Vilayphioulet the cat out of the bag

— Merge branch 'ak' of git.constantvzw.org:aa.core2 into ak

Tuesday, 4th November 2014 - 18:39

 

Stéphanie Vilayphiouexposed

— link to books

Tuesday, 4th November 2014 - 18:46

 

Stéphanie Vilayphiousaid

— svg hf-ak

Wednesday, 5th November 2014 - 11:44

 

Stéphanie Vilayphiouuttered

— layout apropos

Wednesday, 5th November 2014 - 12:07

 

Stéphanie Vilayphioublabbed

— couverture par défaut s'il n'y en a pas

Wednesday, 5th November 2014 - 12:47

 

Stéphanie Vilayphioubrought out

— padding des couv par défaut

Wednesday, 5th November 2014 - 14:41

 

Stéphanie Vilayphioulet out

— typo

Wednesday, 5th November 2014 - 15:05

 

Stéphanie Vilayphiousaid

— tocify: shows only h1

Wednesday, 5th November 2014 - 15:05

 

Alexandre Lerayargued

— Fix browsing litterals

Wednesday, 5th November 2014 - 15:20

 

Alexandre Leraysang

— Merge branch 'ak' of git.constantvzw.org:aa.core2 into ak

Wednesday, 5th November 2014 - 15:21

 

Stéphanie Vilayphiourendered

— Merge branch 'ak' of git.constantvzw.org:aa.core2 into ak

Wednesday, 5th November 2014 - 15:23

 

Stéphanie Vilayphiouspilled the beans

— default covers

Wednesday, 5th November 2014 - 15:32

 

Stéphanie Vilayphioucomplained

— représentation des works par une boîte

Wednesday, 5th November 2014 - 15:47

 

Stéphanie Vilayphioudiscovered

— index général (à mettre à jour et enlever les doublons)

Wednesday, 5th November 2014 - 15:55

 

Alexandre Leraysaid

— Moved Namespace dict to a common place, reuse it in sparql form

Wednesday, 5th November 2014 - 15:50

 

Alexandre Leraytalked

— Merge branch 'ak' of git.constantvzw.org:aa.core2 into ak

Wednesday, 5th November 2014 - 15:51

 

Stéphanie Vilayphiouexposed

— Merge branch 'ak' of git.constantvzw.org:aa.core2 into ak

Wednesday, 5th November 2014 - 15:55

 

Alexandre Leraybabbled out

— Deleted dates and time form the locatio index

Wednesday, 5th November 2014 - 15:55

 

Stéphanie Vilayphioulet on

— merge conflict

Wednesday, 5th November 2014 - 15:59

 

Alexandre Lerayrendered

— the stats prefix we invented in the NS dictionnary

Wednesday, 5th November 2014 - 17:14

 

Stéphanie Vilayphiouwhispered

— Merge branch 'ak' of git.constantvzw.org:aa.core2 into ak

Wednesday, 5th November 2014 - 17:25

 

Stéphanie Vilayphiourendered

— perso + bigrams dans les templates

Wednesday, 5th November 2014 - 18:14

 

Alexandre Lerayexposed

— Delete the redundant NS dictionnary in views

Wednesday, 5th November 2014 - 17:19

 

Alexandre Leraylet on

— More namespace DRY

Wednesday, 5th November 2014 - 18:08

 

Alexandre Leraydeclared

— the empty (?) template of for bigram lists, in case it is needed
upstream

Wednesday, 5th November 2014 - 18:09

 

Stéphanie Vilayphioublabbed out

— merge

Wednesday, 5th November 2014 - 18:16

 

Stéphanie Vilayphiouexposed

— mise à jour des icones

Thursday, 6th November 2014 - 10:36

 

Stéphanie Vilayphioutalked

— layout ab[ou]t page

Thursday, 6th November 2014 - 10:36

 

Stéphanie Vilayphiouspilled the beans

— layout s[ou]rce page

Thursday, 6th November 2014 - 10:54

 

Alexandre Leraysaid

— python format() positional arguments for python 2.6 compatibility

Wednesday, 5th November 2014 - 18:31

 

Alexandre Lerayspilled the beans

— Merge branch 'ak' of git.constantvzw.org:aa.core2 into ak

Wednesday, 5th November 2014 - 18:32

 

Alexandre Lerayclaimed

— a fab formula to reindex easily

Wednesday, 5th November 2014 - 19:04

 

Stéphanie Vilayphioustated

— Merge branch 'ak' of git.constantvzw.org:aa.core2 into ak

Thursday, 6th November 2014 - 10:55

 

Stéphanie Vilayphiouwhispered

— comment pip function in fab

Thursday, 6th November 2014 - 11:01

 

Stéphanie Vilayphiouuttered

— hides bigrams and stats if we don't have the info

Thursday, 6th November 2014 - 11:33

 

Stéphanie Vilayphiouclaimed

— début d'archivage de twitter

Thursday, 6th November 2014 - 17:57

 

Stéphanie Vilayphioutalked

— les infos twitters s'impriment bien mais j'arrive pas à enregistrer dans les modèles

Thursday, 6th November 2014 - 18:55

 

Stéphanie Vilayphiouverbalized

— fetches latest tweets

Thursday, 6th November 2014 - 19:32

 

Stéphanie Vilayphiouwhispered

— archives twitblr ok

Friday, 7th November 2014 - 11:04

 

Stéphanie Vilayphioulet loose

— styles hf → ak

Friday, 7th November 2014 - 11:17

 

Stéphanie Vilayphioulet out

— more lineheight hfak

Friday, 7th November 2014 - 11:34

 

Stéphanie Vilayphioulet loose

— allez, on s'offre un peu de bold

Friday, 7th November 2014 - 11:37

 

Stéphanie Vilayphiouexpressed

— books: masonry + no duplicates

Friday, 7th November 2014 - 11:56

 

Stéphanie Vilayphiouspoke

— images statiques

Friday, 7th November 2014 - 12:30

 

Stéphanie Vilayphioutalked

— HYX en plein

Friday, 7th November 2014 - 12:47

 

Stéphanie Vilayphioupublished

— homepage + ^$ renvoie vers home et ^browse/$ renvoie vers les requêtes

Friday, 7th November 2014 - 15:16

 

Alexandre Leraystated

— Removed FeedSniffer in the aasniff conf since it does not exist anymore
(merged with RDFSniffer)

Friday, 7th November 2014 - 13:42

 

Alexandre Leraysaid

— L'index en dynamique

Friday, 7th November 2014 - 14:56

 

Alexandre Leraytattled

— Synchronise the local Django database with the remote one using fabric

Friday, 7th November 2014 - 14:57

 

Alexandre Lerayexpressed

— Fixed Open Library URLs consistency in the index

Friday, 7th November 2014 - 14:58

 

Alexandre Lerayspoke

— Merge branch 'ak' of git.constantvzw.org:aa.core2 into ak

Friday, 7th November 2014 - 15:00

 

Stéphanie Vilayphioupublished

— merge

Friday, 7th November 2014 - 15:21

 

Alexandre Lerayexpressed

— Fixed fab formula to reindex

Friday, 7th November 2014 - 15:20

 

Stéphanie Vilayphioutold

— Merge branch 'ak' of git.constantvzw.org:aa.core2 into ak

Friday, 7th November 2014 - 15:21

 

Stéphanie Vilayphioutalked

— logo hyx en bas

Friday, 7th November 2014 - 15:28

 

Stéphanie Vilayphioubabbled out

— fix work display

Friday, 7th November 2014 - 15:54

 

Stéphanie Vilayphiouironized

— en cours d'implémentation des templates zotero

Friday, 7th November 2014 - 16:40

 

Stéphanie Vilayphiouwhistled

— page zotero item ok, mais les auteurs, nom du blog et url font du charabia, et aussi il n'y a qu'un seul tag

Friday, 7th November 2014 - 16:54

 

Alexandre Lerayinterpreted

— Python Twitter in the requirements

Friday, 7th November 2014 - 16:41

 

Alexandre Lerayuttered

— Back to manual index for the Oracle

Friday, 7th November 2014 - 16:41

 

Alexandre Leraydivulged

— Merge branch 'ak' of git.constantvzw.org:aa.core2 into ak

Conflicts:
aacore/templates/aacore/partials/index.html

Friday, 7th November 2014 - 16:43

 

Alexandre Leraytattled

— Fixed index urls using the django url tag

Friday, 7th November 2014 - 16:50

 

Stéphanie Vilayphioulet on

— Merge branch 'ak' of git.constantvzw.org:aa.core2 into ak

Friday, 7th November 2014 - 16:54

 

Stéphanie Vilayphiouemited

— layout de dernière minute

Friday, 7th November 2014 - 17:33

 

Stéphanie Vilayphioucried

— menu calé pour du 1024

Friday, 7th November 2014 - 17:45

 

Stéphanie Vilayphiousaid

— 9 → 6

Friday, 7th November 2014 - 17:50

 

Stéphanie Vilayphiouexposed

— fix aa-browse url

Tuesday, 11th November 2014 - 23:30

 

Stéphanie Vilayphiouunwrapped

— book detail: image centered

Tuesday, 11th November 2014 - 23:47

 

Stéphanie Vilayphiouadmitted

— zotero infobox

Wednesday, 12th November 2014 - 00:23

 

Stéphanie Vilayphioucomplained

— external link zotero

Wednesday, 12th November 2014 - 00:26

 

Stéphanie Vilayphiouexposed

— books: select DISTINCT: ça enlève qques doublons mais il en reste qques-uns

Wednesday, 12th November 2014 - 00:28

 

Stéphanie Vilayphiousaid

— update requirements: more specifically, the aasniff repo on Constantvzw's server is corrupted

Tuesday, 10th November 2015 - 15:30

 

Alexandre Lerayspilled the beans

— Fixed requirements because there is a broken dependency, and updated the
fabfile for the new server

Tuesday, 11th August 2015 - 17:14

 

Alexandre Leraysaid

— Merge branch 'ak' of git.constantvzw.org:aa.core2 into ak

Tuesday, 11th August 2015 - 17:19

 

Stéphanie Vilayphioubabbled out

— Merge branch 'ak' of git.constantvzw.org:aa.core2 into ak

Saturday, 14th November 2015 - 15:41

 

Stéphanie Vilayphiousaid

— made oracle views

Monday, 16th November 2015 - 22:38

 

Stéphanie Vilayphioushouted

— changed oracle view for active archives|papers XXX

Monday, 16th November 2015 - 23:43

 

Stéphanie Vilayphiouuttered

— home = oracle

Monday, 16th November 2015 - 23:43

 

Stéphanie Vilayphioublabbed

— changed order of js block

Monday, 16th November 2015 - 23:44

 

Stéphanie Vilayphioudivulged

— specific titles when oracle requests

Monday, 16th November 2015 - 23:44

 

Stéphanie Vilayphioupublished

— styles for homepage + zItem according to media type

Monday, 16th November 2015 - 23:44

 

Stéphanie Vilayphioublabbed

— fine-tuning the media type css

Tuesday, 17th November 2015 - 22:48

 

Stéphanie Vilayphioustated

— nbsp

Tuesday, 17th November 2015 - 22:48

 

Stéphanie Vilayphiouverbalised

— dernières retouches avant l'expo avec Catherine

Thursday, 19th November 2015 - 16:21

 

Stéphanie Vilayphioucomplained

— media query pour l'expo

Thursday, 19th November 2015 - 16:57

 

Stéphanie Vilayphiouemited

— oracle 3 secondes

Thursday, 19th November 2015 - 17:02

 

Stéphanie Vilayphioudiscovered

— padding + vectorisation des svg du menu

Thursday, 19th November 2015 - 17:07

 

Stéphanie Vilayphioulet the cat out of the bag

— fix mistake in python-magic requirement

Wednesday, 7th September 2016 - 10:53

 

Stéphanie Vilayphiouunwrapped

— corrections titre œuvres dans index

Wednesday, 7th September 2016 - 12:32

 

Stéphanie Vilayphioushouted

— rm Protected Daisy and In Library

Wednesday, 7th September 2016 - 12:34

 

Stéphanie Vilayphioutalked

— rm Protected Daisy and In Library

Wednesday, 7th September 2016 - 12:35

 

Stéphanie Vilayphioutweeted

— enlevé les Subjects de type N9765... de manière assez dégueulasse, j'ai checké que le sujet ne faisait pas 33 caractères de long...

Wednesday, 7th September 2016 - 13:20

 

Stéphanie Vilayphioupeached

— graphes lma

Wednesday, 7th September 2016 - 13:20

 

Stéphanie Vilayphioupeached

— update graphe way

Wednesday, 7th September 2016 - 13:21

 

Stéphanie Vilayphiourevealed

— logo hyx invert

Wednesday, 7th September 2016 - 14:42

 

Stéphanie Vilayphiouargued

— bug design titre page statique

Wednesday, 7th September 2016 - 15:00

 

Stéphanie Vilayphiouexposed

— ax28

Wednesday, 7th September 2016 - 15:02

 

Stéphanie Vilayphiouspilled the beans

— bug css pages statiques

Wednesday, 7th September 2016 - 15:07

 

Stéphanie Vilayphioubabbled

— add spaces in tex gyre termes

Wednesday, 7th September 2016 - 15:20

 

Stéphanie Vilayphioucried

— add spaces in karla

Wednesday, 7th September 2016 - 15:23

 

Stéphanie Vilayphiouadmitted

— - Affiche le nom des Works (node) et des éditions (node).
- Affiche la cover de l'édition (node).
- Dans edition_list, enlève les doublons

Wednesday, 7th September 2016 - 16:03

 

Stéphanie Vilayphiousang

— rm doublons in book_list

Wednesday, 7th September 2016 - 16:07

 

Stéphanie Vilayphiouexpressed

— update images hf-ak

Wednesday, 7th September 2016 - 16:15

 

Stéphanie Vilayphioubabbled

— rm stats#bigrams and stats#hasCharacter

Thursday, 8th September 2016 - 16:29

 

Stéphanie Vilayphioutalked

— cleaned general index

Monday, 12th September 2016 - 10:53

 

Stéphanie Vilayphioubrought out

— AK page title

Monday, 12th September 2016 - 10:53

 

Stéphanie Vilayphioubrought out

— remove edition duplicates in as-object list

Monday, 12th September 2016 - 11:09

 

Stéphanie Vilayphioushouted

— remove duplicate pictures in tumblr

Monday, 12th September 2016 - 11:22

 

Stéphanie Vilayphiourendered

— reactivated tumblr archive url

Monday, 12th September 2016 - 11:47

 

Stéphanie Vilayphiouspoke

— logo hyx plus grand

Monday, 12th September 2016 - 11:58

 

Stéphanie Vilayphiouclaimed

— nouveau graphe hf-ak

Tuesday, 13th September 2016 - 23:26

 

Stéphanie Vilayphioutold

— correction infobox

Tuesday, 13th September 2016 - 23:30

 

Stéphanie Vilayphiouironized

— correction infobox

Tuesday, 13th September 2016 - 23:34

 

Stéphanie Vilayphiouuttered

— italique dans infobox

Tuesday, 13th September 2016 - 23:35

 

Alex Leraybabbled

— Commencé à nettoyer le code

Tuesday, 21st February 2017 - 10:30

 

Alex Leraylet loose

— DJ 1.9 migration

Wednesday, 22nd February 2017 - 18:44

 

Alex Leraycomplained

— Cleaning

Wednesday, 22nd February 2017 - 22:19

 

Alex Leraystated

— Gandi simple hosting setup

Friday, 24th February 2017 - 10:07

 

Alex Lerayclaimed

— Fix error + gand setup for py2.7

Friday, 24th February 2017 - 14:12

 

Alex Leraydivulged

— Try to update setuptools to fix an error

Friday, 24th February 2017 - 14:35

 

Alex Leraypublished

— Test fixing gandi deploy error

Friday, 24th February 2017 - 15:48

 

Alex Leraylet the cat out of the bag

— Again, trying to fix setuptools issue

Friday, 24th February 2017 - 16:00

 

Alex Lerayrevealed

— Test fix gandi deployement, encore

Friday, 24th February 2017 - 16:37

 

Alex Lerayexpressed

— re test requirements

Tuesday, 28th February 2017 - 16:09

 

Alex Lerayargued

— Pour une 1ère analyse, je vous invite à installer le paquet
'packaging'...

Wednesday, 1st March 2017 - 16:40

 

Alex Leraycomitted

— encore test requirements

Thursday, 2nd March 2017 - 22:30

 

Alex Leraycomitted

— Revert requirements

Thursday, 2nd March 2017 - 23:02

 

Alex Leraylet loose

— Fixes issue with setuptools (I hope)

Thursday, 2nd March 2017 - 23:16

 

Alex Leraylet loose

— requirements

Tuesday, 7th March 2017 - 15:11

 

Alex Lerayblabbed out

— aacore + twitblr migrations

Tuesday, 7th March 2017 - 15:16