
Recherche avancée
Médias (3)
-
Exemple de boutons d’action pour une collection collaborative
27 février 2013, par
Mis à jour : Mars 2013
Langue : français
Type : Image
-
Exemple de boutons d’action pour une collection personnelle
27 février 2013, par
Mis à jour : Février 2013
Langue : English
Type : Image
-
Collections - Formulaire de création rapide
19 février 2013, par
Mis à jour : Février 2013
Langue : français
Type : Image
Autres articles (109)
-
Changer son thème graphique
22 février 2011, parLe thème graphique ne touche pas à la disposition à proprement dite des éléments dans la page. Il ne fait que modifier l’apparence des éléments.
Le placement peut être modifié effectivement, mais cette modification n’est que visuelle et non pas au niveau de la représentation sémantique de la page.
Modifier le thème graphique utilisé
Pour modifier le thème graphique utilisé, il est nécessaire que le plugin zen-garden soit activé sur le site.
Il suffit ensuite de se rendre dans l’espace de configuration du (...) -
Demande de création d’un canal
12 mars 2010, parEn fonction de la configuration de la plateforme, l’utilisateur peu avoir à sa disposition deux méthodes différentes de demande de création de canal. La première est au moment de son inscription, la seconde, après son inscription en remplissant un formulaire de demande.
Les deux manières demandent les mêmes choses fonctionnent à peu près de la même manière, le futur utilisateur doit remplir une série de champ de formulaire permettant tout d’abord aux administrateurs d’avoir des informations quant à (...) -
Publier sur MédiaSpip
13 juin 2013Puis-je poster des contenus à partir d’une tablette Ipad ?
Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir
Sur d’autres sites (9107)
-
Revision 9e55834426 : Replace cpi->common with preset variable cm This commit replaces a few use case
24 juin 2014, par Jingning HanChanged Paths :
Modify /vp9/encoder/vp9_pickmode.c
Replace cpi->common with preset variable cmThis commit replaces a few use cases of cpi->common with preset
variable cm, to avoid unnecessary pointer fetch in the non-RD
coding mode.Change-Id : I4038f1c1a47373b8fd7bc5d69af61346103702f6
-
ffbuild/common : Fix CPPFLAGS applied for compiling C++ files
12 mai 2022, par Andreas Rheinhardtffbuild/common : Fix CPPFLAGS applied for compiling C++ files
Currently, $(CPPFLAGS) and $(CFLAGS) are prepended to CXXFLAGS
(the flags for compiling C++) like this :
CXXFLAGS := $(CPPFLAGS) $(CFLAGS) $(CXXFLAGS)
Using " :=" creates a simply expanded variable, i.e. the values
of the variable at the time of assignment are used and later
modifications to them are ignored (using a recursively expanding
variable (i.e. "=" instead of " :=") is not really possible here,
as there would be an infinite loop when evaluating CXXFLAGS).Yet we perform later additions to CPPFLAGS : HAVE_AV_CONFIG_H and
BUILDING_libfoo are defined. These do not reach C++ compilations.To fix this a trick is employed to prepend to a recursively
expanded variable while keeping it recursively expanded.There are two practical consequences of this : C++ files now no longer
include the version.h header, but only the version_major.h header
of their library, saving some recompilations. Furthermore, they
now get some optimized math functions (namely the ones from
lavu/intmath.h instead of the ones from lavu/common.h).
(av_parity() is the only one for which it makes a difference.)Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
-
Revision a93992e725 : Adding get_entropy_context function. Moving common code from encoder and decode
27 août 2013, par Dmitry KovalevChanged Paths :
Modify /vp9/common/vp9_blockd.h
Modify /vp9/common/vp9_entropy.h
Modify /vp9/decoder/vp9_detokenize.c
Modify /vp9/encoder/vp9_tokenize.c
Adding get_entropy_context function.Moving common code from encoder and decoder to this function.
Change-Id : I60fa643fb1ddf7ebbff5e83b6c4710137b0195ef