Recherche avancée

Médias (1)

Mot : - Tags -/blender

Autres articles (74)

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

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

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

  • libavutil : move FFALIGN macro from common.h to macros.h

    10 décembre 2015, par Janne Grunau
    libavutil : move FFALIGN macro from common.h to macros.h
    

    Include macros.h explicitly in common.h so that external code using
    FFALIGN does not break. It was already implicitly included through
    version.h. Include macros.h in lls.h and internal.h for FFALIGN.
    lls.h was including common.h only for FFALIGN and internal.h was
    missing the include for FFALIGN. `make checkheaders` did not catch it
    because it’s an internal header.

    • [DBH] libavutil/common.h
    • [DBH] libavutil/internal.h
    • [DBH] libavutil/lls.c
    • [DBH] libavutil/lls.h
    • [DBH] libavutil/macros.h
  • Use -fno-common for mingw

    2 septembre 2010, par John Koleszar

    Use -fno-common for mingw

  • lavu/opt : consolidate common prologue for av_opt_set*()

    28 septembre 2024, par Anton Khirnov
    lavu/opt : consolidate common prologue for av_opt_set*()
    

    The options-setting functions share several operations at their
    beginnings - locating the option and the object to operate on, handling
    the read-only and deprecated flags, and constructing the pointer to the
    target value. Some of the functions also do not perform some of the
    checks, although they should. E.g. a deprecation warning is currently
    only printed for av_opt_set().

    Introduce a prologue function that is called from every av_opt_set*()
    and performs all these common initialization operations.

    • [DH] libavutil/opt.c