Recherche avancée

Médias (0)

Mot : - Tags -/alertes

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

Autres articles (77)

  • 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 (9877)

  • avutil/tablegen : add tablegen libm compatibility shims

    26 novembre 2015, par Ganesh Ajjanagadde
    avutil/tablegen : add tablegen libm compatibility shims
    

    This is useful for build-time table generation (—enable-hardcoded-tables),
    by providing compat shims for hosts that have broken libms.

    This file is deliberately kept minimal ; functions can always be added on
    an as-needed basis.

    Reviewed-by : Clément Bœsch <u@pkh.me>
    Reviewed-by : Ronald S. Bultje <rsbultje@gmail.com>
    Signed-off-by : Ganesh Ajjanagadde <gajjanagadde@gmail.com>

    • [DH] libavutil/tablegen.h
  • libavformat/asfdec : Fix regression bug when reading image attachments

    19 avril, par softworkz
    libavformat/asfdec : Fix regression bug when reading image attachments
    

    Commit c8140fe7324f264faacf7395b27e12531d1f13f7 had introduced
    a check for value_len > UINT16_MAX.
    As a consequence, attached images of sizes larger than UINT16_MAX
    could no longer be read.

    This is a minimal fix of the regression, avoiding the controversies
    of my earlier submission regarding int type handling in asfdec.

    Signed-off-by : softworkz <softworkz@hotmail.com>

    • [DH] libavformat/asfdec_f.c
  • configure : fix linking with MSVC when using —disable-optimizations

    15 décembre 2016, par Steve Lhomme
    configure : fix linking with MSVC when using —disable-optimizations
    

    Without any optimization flags, MSVC does no dead code elimination (DCE) at
    all, even for the most trivial cases. DCE is a prerequisite for building libav
    correctly, otherwise there are undefined references to functions for other
    architectures and disabled components.

    - O1 is the minimal optimization flag for MSVC that does include DCE.

    • [DBH] configure