
Recherche avancée
Autres articles (103)
-
Script d’installation automatique de MediaSPIP
25 avril 2011, parAfin de palier aux difficultés d’installation dues principalement aux dépendances logicielles coté serveur, un script d’installation "tout en un" en bash a été créé afin de faciliter cette étape sur un serveur doté d’une distribution Linux compatible.
Vous devez bénéficier d’un accès SSH à votre serveur et d’un compte "root" afin de l’utiliser, ce qui permettra d’installer les dépendances. Contactez votre hébergeur si vous ne disposez pas de cela.
La documentation de l’utilisation du script d’installation (...) -
La gestion des forums
3 novembre 2011, parSi les forums sont activés sur le site, les administrateurs ont la possibilité de les gérer depuis l’interface d’administration ou depuis l’article même dans le bloc de modification de l’article qui se trouve dans la navigation de la page.
Accès à l’interface de modération des messages
Lorsqu’il est identifié sur le site, l’administrateur peut procéder de deux manières pour gérer les forums.
S’il souhaite modifier (modérer, déclarer comme SPAM un message) les forums d’un article particulier, il a à sa (...) -
Les autorisations surchargées par les plugins
27 avril 2010, parMediaspip core
autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs
Sur d’autres sites (9036)
-
avformat/utils : Don't initialize AVStreamInternal.info multiple times
26 août 2021, par Andreas Rheinhardtavformat/utils : Don't initialize AVStreamInternal.info multiple times
It has been allocated and initialized in avformat_find_stream_info()
until fd0368e7ca35e2feaf7960564e61a76655c4d1f6 when the structure
was moved to AVStreamInternal and its allocation to avformat_new_stream.
In order to also initialize the struct for new streams that only get
created during avformat_find_stream_info() said the initialization has
been added to avformat_new_stream() later. Due to the Libav-FFmpeg split
this has been done twice : In 4cda8aa1c5bc58f8a7f53a21a19b03e7379bbcdc
and in 30c26c2442e4e44ac5a763c23c4b0fdd9921a7f5. The initialization in
avformat_find_stream_info() has not been removed at all despite being
redundant. This commit removes it and the duplicated initialization in
avformat_new_stream().Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
-
Revision 9596a4cc54 : vpxdec : add —loops option Allows vpxdec to operate multiple times on the same
13 juin 2013, par John KoleszarChanged Paths :
Modify /vpxdec.c
vpxdec : add —loops optionAllows vpxdec to operate multiple times on the same input. Mostly
useful for debugging/development.Change-Id : Icf25ece22e387052eade4438971eee5ff4f798ba
-
avcodec/get_bits : Avoid reading multiple times in get_bits_long
22 juin 2022, par Andreas Rheinhardtavcodec/get_bits : Avoid reading multiple times in get_bits_long
Due to non-byte-alignment a read of 32 bits guarantees only
25 usable bits ; therefore get_bits_long() (which is used to
potentially read more than 25 bits) performs two reads in case
it needs to read more than 25 bits and combines the result.Yet this is not necessary : One can just read 64 bits at a time
to get 32 usable bits (57 would be possible). This commit does so.This reduced the size of .text by 30144B for GCC 11.4 and 5648B
for Clang 14 (both with -O3).(get_bits_long() is a building block of show_bits_long()
and get_ue_golomb_long(), so this patch affects these, too.)Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@outlook.com>