Recherche avancée

Médias (0)

Mot : - Tags -/images

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (99)

  • Emballe médias : à quoi cela sert ?

    4 février 2011, par

    Ce plugin vise à gérer des sites de mise en ligne de documents de tous types.
    Il crée des "médias", à savoir : un "média" est un article au sens SPIP créé automatiquement lors du téléversement d’un document qu’il soit audio, vidéo, image ou textuel ; un seul document ne peut être lié à un article dit "média" ;

  • Submit bugs and patches

    13 avril 2011

    Unfortunately a software is never perfect.
    If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
    If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
    You may also (...)

  • Gestion de la ferme

    2 mars 2010, par

    La ferme est gérée dans son ensemble par des "super admins".
    Certains réglages peuvent être fais afin de réguler les besoins des différents canaux.
    Dans un premier temps il utilise le plugin "Gestion de mutualisation"

Sur d’autres sites (3530)

  • http: Add support reading ICY metadata

    10 mars 2014, par Luca Barbato
    http: Add support reading ICY metadata
    

    Export the metadata as a icy_metadata_packet avoption.
    Based on the work of wm4 and Alessandro Ghedini.

    Bug-Id : https://bugs.debian.org/739936

    Signed-off-by : Luca Barbato <lu_zero@gentoo.org>

    • [DH] doc/protocols.texi
    • [DH] libavformat/http.c
  • http: Improve options descriptions

    6 mars 2014, par Alessandro Ghedini
    http: Improve options descriptions
    

    Add documentation where missing.

    Signed-off-by : Luca Barbato <lu_zero@gentoo.org>

    • [DBH] doc/protocols.texi
    • [DBH] libavformat/http.c
  • lavf/http: fix cookie parsing.

    17 août 2014, par Nicolas George
    lavf/http: fix cookie parsing.
    

    The current code would use any unknown attribute-value pair
    as the cookie value.
    RFC 6265 states that the first key-value pair is the actual
    cookie, and the attribute-value pairs only start after.

    With the current code :
    Set-Cookie : test=good_value ; path=/ ; dummy=42
    gives this :
    Cookie : dummy=42
    instead of this with the new code :
    Cookie : test=good_value

    • [DH] libavformat/http.c