doc/architecture.rst
author ymh <ymh.work@gmail.com>
Thu, 06 Nov 2014 02:08:12 +0100
changeset 176 a343992c55fd
parent 158 03fea67e18e9
permissions -rw-r--r--
Added tag V00.08 for changeset 1ff6533ba75d
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
121
0d2a35462576 Add doc
ymh <ymh.work@gmail.com>
parents:
diff changeset
     1
************
0d2a35462576 Add doc
ymh <ymh.work@gmail.com>
parents:
diff changeset
     2
Architecture 
0d2a35462576 Add doc
ymh <ymh.work@gmail.com>
parents:
diff changeset
     3
************
0d2a35462576 Add doc
ymh <ymh.work@gmail.com>
parents:
diff changeset
     4
137
bb8bf2688d7e - Finish and correct documentation
ymh <ymh.work@gmail.com>
parents: 121
diff changeset
     5
.. image:: _static/architecture.png
bb8bf2688d7e - Finish and correct documentation
ymh <ymh.work@gmail.com>
parents: 121
diff changeset
     6
bb8bf2688d7e - Finish and correct documentation
ymh <ymh.work@gmail.com>
parents: 121
diff changeset
     7
bb8bf2688d7e - Finish and correct documentation
ymh <ymh.work@gmail.com>
parents: 121
diff changeset
     8
L'application Back-Office Plan4Learning utilise les technologies suivantes: 
bb8bf2688d7e - Finish and correct documentation
ymh <ymh.work@gmail.com>
parents: 121
diff changeset
     9
bb8bf2688d7e - Finish and correct documentation
ymh <ymh.work@gmail.com>
parents: 121
diff changeset
    10
*Django* - https://www.djangoproject.com/
158
03fea67e18e9 correction orthographiques
ymh <ymh.work@gmail.com>
parents: 137
diff changeset
    11
    C'est un framework web basé sur Python. De nombreux modules sont disponibles pour étendre ses fonctionnalités. 
03fea67e18e9 correction orthographiques
ymh <ymh.work@gmail.com>
parents: 137
diff changeset
    12
    En particulier, nous utilisons les modules suivants : 
137
bb8bf2688d7e - Finish and correct documentation
ymh <ymh.work@gmail.com>
parents: 121
diff changeset
    13
bb8bf2688d7e - Finish and correct documentation
ymh <ymh.work@gmail.com>
parents: 121
diff changeset
    14
    * *South* - http://south.aeracode.org/. Ce module permet de gérer les migration de bases de données (schéma + données).
bb8bf2688d7e - Finish and correct documentation
ymh <ymh.work@gmail.com>
parents: 121
diff changeset
    15
      On peut alors facilement appliquer les changements du modèle de donnée sur un système en production.   
158
03fea67e18e9 correction orthographiques
ymh <ymh.work@gmail.com>
parents: 137
diff changeset
    16
    * *Django REST Framework* - http://django-rest-framework.org/ : Permet de facilement de facilement mettre en œuvre une API de type REST.
137
bb8bf2688d7e - Finish and correct documentation
ymh <ymh.work@gmail.com>
parents: 121
diff changeset
    17
    * *haystack* - http://haystacksearch.org/ : Facilite l'utilisation dans Django des moteurs d'indexation full-text comme Lucene ou elasticsearch
bb8bf2688d7e - Finish and correct documentation
ymh <ymh.work@gmail.com>
parents: 121
diff changeset
    18
bb8bf2688d7e - Finish and correct documentation
ymh <ymh.work@gmail.com>
parents: 121
diff changeset
    19
*Postgresql* - http://www.postgresql.org/
bb8bf2688d7e - Finish and correct documentation
ymh <ymh.work@gmail.com>
parents: 121
diff changeset
    20
    Base de donnée relationnelle. Nous l'utilisons en fait par l'intermédiaire de la couche ORM de Django
bb8bf2688d7e - Finish and correct documentation
ymh <ymh.work@gmail.com>
parents: 121
diff changeset
    21
bb8bf2688d7e - Finish and correct documentation
ymh <ymh.work@gmail.com>
parents: 121
diff changeset
    22
*Sesame* - http://www.openrdf.org/
158
03fea67e18e9 correction orthographiques
ymh <ymh.work@gmail.com>
parents: 137
diff changeset
    23
    C'est en fait un framework de gestion RDF. Nous l'utilisons ici comme triple store RDF et endpoint SPARQL
137
bb8bf2688d7e - Finish and correct documentation
ymh <ymh.work@gmail.com>
parents: 121
diff changeset
    24
bb8bf2688d7e - Finish and correct documentation
ymh <ymh.work@gmail.com>
parents: 121
diff changeset
    25
*Elasticsearch* - http://www.elasticsearch.org/
bb8bf2688d7e - Finish and correct documentation
ymh <ymh.work@gmail.com>
parents: 121
diff changeset
    26
    Moteur d'indexation full-text basé sur Lucene. Nous l'utilisons par l'intermédiaire du module Django Haystack.   
bb8bf2688d7e - Finish and correct documentation
ymh <ymh.work@gmail.com>
parents: 121
diff changeset
    27
bb8bf2688d7e - Finish and correct documentation
ymh <ymh.work@gmail.com>
parents: 121
diff changeset
    28
*Angularjs* - http://angularjs.org/
bb8bf2688d7e - Finish and correct documentation
ymh <ymh.work@gmail.com>
parents: 121
diff changeset
    29
    Framework javascript. Nous l'utilisons en particulier dans la page d'édition des notices afin de gérer les interactions complexes entre la notice et ses sous-objets.
bb8bf2688d7e - Finish and correct documentation
ymh <ymh.work@gmail.com>
parents: 121
diff changeset
    30
    
bb8bf2688d7e - Finish and correct documentation
ymh <ymh.work@gmail.com>
parents: 121
diff changeset
    31
*Bootstrap* - http://getbootstrap.com/
158
03fea67e18e9 correction orthographiques
ymh <ymh.work@gmail.com>
parents: 137
diff changeset
    32
    Framework CSS. Il a été utilisé sur toutes les pages de l'application.
137
bb8bf2688d7e - Finish and correct documentation
ymh <ymh.work@gmail.com>
parents: 121
diff changeset
    33
    
158
03fea67e18e9 correction orthographiques
ymh <ymh.work@gmail.com>
parents: 137
diff changeset
    34