Recherche avancée

Médias (1)

Mot : - Tags -/iphone

Autres articles (65)

  • MediaSPIP version 0.1 Beta

    16 avril 2011, par

    MediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

  • Amélioration de la version de base

    13 septembre 2013

    Jolie sélection multiple
    Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
    Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...)

Sur d’autres sites (7244)

  • avformat/http,tls : honor http_proxy command line variable for HTTPS

    23 août 2020, par Moritz Barsnick
    avformat/http,tls : honor http_proxy command line variable for HTTPS
    

    Add the "http_proxy" option and its handling to the "tls" protocol,
    pass the option from the "https" protocol.

    The "https" protocol already defines the "http_proxy" command line
    option, like the "http" protocol does. The "http" protocol properly
    honors that command line option in addition to the environment
    variable. The "https" protocol doesn't, because the proxy is
    evaluated in the underlying "tls" protocol, which doesn't have this
    option, and thus only handles the environment variable, which it
    has access to.

    Fixes #7223.

    Signed-off-by : Moritz Barsnick <barsnick@gmx.net>
    Signed-off-by : Marton Balint <cus@passwd.hu>

    • [DH] doc/protocols.texi
    • [DH] libavformat/http.c
    • [DH] libavformat/tls.c
    • [DH] libavformat/tls.h
  • avformat/aviobuf : Honor avio_open[2] documentation

    6 janvier 2020, par Andreas Rheinhardt
    avformat/aviobuf : Honor avio_open[2] documentation
    

    The documentation of both avio_open() as well as avio_open2() states
    that on failure, the pointer to an AVIOContext given to this function
    (via a pointer to a pointer to an AVIOContext) will be set to NULL. Yet
    it didn't happen upon failure of ffurl_open_whitelist() or when allocating
    the internal buffer failed. This commit changes this.

    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavformat/aviobuf.c
  • avcodec/h264_sei : honor the Film Grain Characteristics cancel flag

    26 juillet 2021, par James Almer
    avcodec/h264_sei : honor the Film Grain Characteristics cancel flag
    

    Film Grain persistence is cancelled when it's true.

    Signed-off-by : James Almer <jamrial@gmail.com>

    • [DH] libavcodec/h264_sei.c