Recherche avancée

Médias (0)

Mot : - Tags -/xmlrpc

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

Autres articles (109)

  • L’agrémenter visuellement

    10 avril 2011

    MediaSPIP est basé sur un système de thèmes et de squelettes. Les squelettes définissent le placement des informations dans la page, définissant un usage spécifique de la plateforme, et les thèmes l’habillage graphique général.
    Chacun peut proposer un nouveau thème graphique ou un squelette et le mettre à disposition de la communauté.

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

  • Ajouter des informations spécifiques aux utilisateurs et autres modifications de comportement liées aux auteurs

    12 avril 2011, par

    La manière la plus simple d’ajouter des informations aux auteurs est d’installer le plugin Inscription3. Il permet également de modifier certains comportements liés aux utilisateurs (référez-vous à sa documentation pour plus d’informations).
    Il est également possible d’ajouter des champs aux auteurs en installant les plugins champs extras 2 et Interface pour champs extras.

Sur d’autres sites (6187)

  • avformat/utils : functions that add entries should not destroy the whole list on failure

    11 septembre 2013, par Michael Niedermayer
    avformat/utils : functions that add entries should not destroy the whole list on failure
    

    The caller does not expect this, and in case of adding new streams would then
    not even be able to deallocate them anymore.

    This reverts a hunk from "avformat : Use av_reallocp_array() where suitable"

    Signed-off-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] libavformat/utils.c
  • fftools/cmdutils : Atomically add elements to list of pointers, fix crash

    3 décembre 2021, par Andreas Rheinhardt
    fftools/cmdutils : Atomically add elements to list of pointers, fix crash
    

    Currently, adding a (separately allocated) element to a list of pointers
    works by first reallocating the array of pointers and (on success)
    incrementing its size and only then allocating the new element.
    If the latter allocation fails, the size is inconsistent, i.e.
    array[nb_array_elems - 1] is NULL. Our cleanup code crashes in such
    scenarios.

    Fix this by adding an auxiliary function that atomically allocates
    and adds a new element to a list of pointers.

    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    • [DH] fftools/cmdutils.c
    • [DH] fftools/cmdutils.h
    • [DH] fftools/ffmpeg_filter.c
    • [DH] fftools/ffmpeg_opt.c
  • lavf : Do not list mov-only codecs in riff.c.

    13 mars 2015, par Carl Eugen Hoyos
    lavf : Do not list mov-only codecs in riff.c.
    

    Instead check for all mov code-points when demuxing avi
    and print a warning if a video codec is found like this.
    Fixes a regression similar to the one described in ticket #4307.

    • [DH] libavformat/avidec.c
    • [DH] libavformat/riff.c