Recherche avancée

Médias (0)

Mot : - Tags -/presse-papier

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

Autres articles (50)

  • ANNEXE : Les plugins utilisés spécifiquement pour la ferme

    5 mars 2010, par

    Le site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation ; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs ; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3) ; le plugin champs extras v2 nécessité par inscription3 (...)

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 0.2 is the first MediaSPIP stable release.
    Its official release date is June 21, 2013 and is announced here.
    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 (...)

  • Creating farms of unique websites

    13 avril 2011, par

    MediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
    This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)

Sur d’autres sites (7562)

  • Revision 7ebcaeb0fa : ads2gas.pl : convert push/pop and whole keywords. This change converts push to s

    9 novembre 2012, par Ahmad Sharif

    Changed Paths : Modify /build/make/ads2gas.pl ads2gas.pl : convert push/pop and whole keywords. This change converts push to stmdb and pop to ldmia. In addition word boundaries are obeyed using \b avoiding substituion where not appropriate. Patch provided by ihf@chromium.org. TEST=Used on many (...)

  • Which is a better expression for this if statement ?

    3 novembre 2012, par Philos

    I've been told of a patch for ffmpeg that fixes an issue when streaming to FLV players.

    Around line 2314 of rtmpproto.c there is the following expression :

    if (rt->flv_header_bytes < 11)
               break;

    The fix is to change it to include this additional requirement :

    if (rt->flv_header_bytes < 11 && !rt->flv_off)
               break;

    However I'm curious about the logic of this statement. The first statement checks to see if the FLV header is less than 11 bytes, but wouldn't it be more efficient to check to see if the flv stream is turned on first before it checks how many bytes big the header is ?

    if (!rt->flv_off && rt->flv_header_bytes < 11)
               break;

    Alternatively what about changing the statement to be like so ?

    if (rt->flv_off || (!rt->flv_off && rt->flv_header_bytes < 11)
                   break;

    Would that be more efficient or could it break the code somehow ?

  • Evolution #2746 : Multilinguisme par secteur : manque d’ergonomie

    28 novembre 2012, par maiis -

    Voilà un premier patch qui se charge de :

    ne pas permettre de changer la langue d’une sous-rubrique ou d’un objet lié à une rubrique quand on est dans la config multi par secteur

    déclencher le recalcul des langues pour les objets imbriqués Je copie-colle le contenu du mail envoyé sur la liste, (...)