Recherche avancée

Médias (16)

Mot : - Tags -/mp3

Autres articles (66)

  • Modifier la date de publication

    21 juin 2013, par

    Comment changer la date de publication d’un média ?
    Il faut au préalable rajouter un champ "Date de publication" dans le masque de formulaire adéquat :
    Administrer > Configuration des masques de formulaires > Sélectionner "Un média"
    Dans la rubrique "Champs à ajouter, cocher "Date de publication "
    Cliquer en bas de la page sur Enregistrer

  • Participer à sa traduction

    10 avril 2011

    Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
    Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
    Actuellement MediaSPIP n’est disponible qu’en français et (...)

  • 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

Sur d’autres sites (12102)

  • Revision 30228 : Amélioration du formulaire de config

    26 juillet 2009, par kent1@… — Log

    Amélioration du formulaire de config

  • Revision 34537 : un pour englober le contenu principal de ...

    17 janvier 2010, par cedric@… — Log

    un pour englober le contenu principal de chaque objet. Permet de cibler le debut ou la fin du contenu principal, ou, en passant par le parent, la fin du contenu.

  • configure : treat unrecognized flags as errors on MSVC

    20 juillet, par Kacper Michajłow
    configure : treat unrecognized flags as errors on MSVC
    

    This is important for feature checking to work correctly.

    It can happen that an unrecognized flag passes the compile test with
    only a warning, while failing in preprocessor-only check with an error.
    This causes all test_cpp calls to fail and silently produces arguably
    broken MSVC builds. Also, all check_* functions don't work as expected,
    because they assume the check passed, even though there was a warning.

    Additionally, this brings the behavior in line with GCC/Clang based
    builds, failing early on unrecognized flags instead of silently
    continuing with warnings in the log.

    The /options:strict option is available starting in Visual Studio 2022
    version 17.0. Because of that, we cannot use check_cflags alone, as it
    would add this flag for older MSVC versions and produce warnings. So, we
    need to manually perform a version check. A bit of a chicken and egg
    problem.

    Perform the version check before adding extra flags from the user to
    ensure we don't silently fail the preprocessor check due to invalid
    flags on older MSVC versions. Note that behavior differs depending on
    whether we are compiling or only preprocessing.

    This fixes silent different between handling :

    `cl.exe -P foo c.c`
    c1 : fatal error C1083 : Cannot open source file : 'foo' : No such file
    or directory

    `cl.exe -c foo c.c`
    cl : Command line warning D9024 : unrecognized source file type
    'foo', object file assumed

    Where -P fails, while -c throws warnings only. Of course `foo` is
    completely bogus here, but depends on the flags or configuration this
    may be unsupported argument. Or even some converted path from MSYS when
    run inside it. The objective is to always error out instead of silently
    hiding this.

    Use check_cflags even after the _MSC_FULL_VER check, for non-MSVC
    compilers. For example Clang-CL impersonate MSVC, but does not support
    - options:strict flag currently.

    Signed-off-by : Kacper Michajłow <kasper93@gmail.com>

    • [DH] configure