Tous les journaux publics

Aller à la navigation Aller à la recherche

Affichage combiné de tous les journaux disponibles sur wiki-se.plil.fr. Vous pouvez personnaliser l’affichage en sélectionnant le type de journal, le nom d’utilisateur ou la page concernée (ces deux derniers étant sensibles à la casse).

Journaux d’opérations
  • 11 mars 2024 à 16:33 Jwasilew discussion contributions a créé la page SE4 Virtualisation TP Wasilewski - Gitlab CI file (Page créée avec « <syntaxhighlight lang="yaml" line="1"> variables: NOMAD_ADDR: http://10.99.99.96:4646 docker_registry: 10.99.99.97:5000 docker_image: web-$VMID stages: - build - deploy build: stage: build image: docker tags: - docker script: - tag=${docker_registry}/${docker_image}:${CI_COMMIT_SHORT_SHA} - echo "building and pushing tag $tag" - docker build -t ${tag} -f Dockerfile . - docker push ${tag} deploy: stage: deploy image: he... ») Balise : Éditeur visuel
  • 9 mars 2024 à 15:32 Jwasilew discussion contributions a créé la page Répartition et notes Virtualisation JW SE4 2023/2024 (Page créée avec « La notation du TP est décomposée en deux parties. 14 points sont liés à l’achèvement des différentes étapes décrites précédemment. 6 points sont liés à la performance. En effet; à la fin de chaque étape, il sera noté le classement des équipes. {| class="wikitable" |+ !Equipe \ Etape !1 !2 !3 !4 !5 !6 !7 !8 !9 !10 !11 !12 !13 !14 !15 !16 !17 !18 !19 !20 !21 !22 !23 |- | | | | | | | | | | | | | | | | | | | | | | | | |- | | | | | | | | | | | | |... ») Balise : Éditeur visuel : basculé
  • 9 mars 2024 à 11:14 Jwasilew discussion contributions a créé la page Modèle:Nowrap/styles.css (Page créée avec « .nowrap, .nowrap a:before, .nowrap .selflink:before { white-space: nowrap; } »)
  • 9 mars 2024 à 11:08 Jwasilew discussion contributions a créé la page Module:TNT (Page créée avec « -- -- INTRO: (!!! DO NOT RENAME THIS PAGE !!!) -- This module allows any template or module to be copy/pasted between -- wikis without any translation changes. All translation text is stored -- in the global Data:*.tab pages on Commons, and used everywhere. -- -- SEE: https://www.mediawiki.org/wiki/Multilingual_Templates_and_Modules -- -- ATTENTION: -- Please do NOT rename this module - it has to be identical on all wikis. -- This code is mai... »)
  • 9 mars 2024 à 11:07 Jwasilew discussion contributions a créé la page Module:Yesno (Page créée avec « -- Function allowing for consistent treatment of boolean-like wikitext input. -- It works similarly to the template {{yesno}}. return function (val, default) -- If your wiki uses non-ascii characters for any of "yes", "no", etc., you -- should replace "val:lower()" with "mw.ustring.lower(val)" in the -- following line. val = type(val) == 'string' and val:lower() or val if val == nil then return nil elseif val == true or val == 'yes' or val == 'y'... »)
  • 9 mars 2024 à 11:07 Jwasilew discussion contributions a créé la page Module:Message box (Page créée avec « -- This is a meta-module for producing message box templates, including -- {{mbox}}, {{ambox}}, {{imbox}}, {{tmbox}}, {{ombox}}, {{cmbox}} and {{fmbox}}. -- Load necessary modules. require('strict') local getArgs local yesno = require('Module:Yesno') -- Get a language object for formatDate and ucfirst. local lang = mw.language.getContentLanguage() -- Define constants local CONFIG_MODULE = 'Module:Message box/configuration' local DEMOSPACES = {talk = 'tmbox', i... »)
  • 9 mars 2024 à 11:06 Jwasilew discussion contributions a créé la page Module:Arguments (Page créée avec « -- This module provides easy processing of arguments passed to Scribunto from -- #invoke. It is intended for use by other Lua modules, and should not be -- called from #invoke directly. local libraryUtil = require('libraryUtil') local checkType = libraryUtil.checkType local arguments = {} -- Generate four different tidyVal functions, so that we don't have to check the -- options every time we call it. local function tidyValDefault(key, val) if type(val) == '... »)
  • 9 mars 2024 à 11:04 Jwasilew discussion contributions a créé la page Module:Documentation/config (Page créée avec « ---------------------------------------------------------------------------------------------------- -- -- Configuration for Module:Documentation -- -- Here you can set the values of the parameters and messages used in Module:Documentation to -- localise it to your wiki and your language. Unless specified otherwise, values given here -- should be string values. -------------------------------------------------------------------------... »)
  • 9 mars 2024 à 11:02 Jwasilew discussion contributions a créé la page Module:Documentation (Page créée avec « -- This module implements {{documentation}}. -- Get required modules. local getArgs = require('Module:Arguments').getArgs local messageBox = require('Module:Message box') -- Get the config table. local cfg = mw.loadData('Module:Documentation/config') local i18n = mw.loadData('Module:Documentation/i18n') local p = {} -- Often-used functions. local ugsub = mw.ustring.gsub ---------------------------------------------------------------------------- -- Helper fun... »)
  • 9 mars 2024 à 11:01 Jwasilew discussion contributions a créé la page Modèle:Documentation (Page créée avec « <noinclude> <languages/> </noinclude><includeonly>{{#invoke:documentation|main|_content={{ {{#invoke:documentation|contentTitle}}}}}}</includeonly><noinclude> {{documentation|content= {{Lua|Module:Documentation}} <translate><!--T:12--> This template automatically displays a documentation box like the one you are seeing now, of which the content is sometimes transcluded from another page.</translate> <translate><!--T:13--> It is intended for pages which are <tv... »)
  • 9 mars 2024 à 11:00 Jwasilew discussion contributions a créé la page Modèle:Code (Page créée avec « {{#if:{{{inline|}}}|<code {{#if:{{{class|}}}|class="{{{class}}}"}} {{#if:{{{id|}}}|id="{{{id}}}"}} {{#if:{{{style|}}}|style="{{{style}}}"}}>{{#tag:syntaxhighlight|{{{code|{{{1}}}}}}|lang="{{{lang|{{{2|text}}}}}}"|inline=true}}</code>|{{#if:{{{header|}}}|<u><small>{{{header}}}</small></u>}}{{#tag:syntaxhighlight |{{{code|{{{1}}}}}} |lang={{{lang|{{{2|bash}}}}}} }}}}<noinclude> {{documentation}} </noinclude> »)
  • 9 mars 2024 à 10:59 Jwasilew discussion contributions a créé la page Modèle:Inline-code (Page créée avec « <onlyinclude><!-- -->{{#if:{{yesno|{{{nowrap|}}}}}|<templatestyles src="Template:Nowrap/styles.css"/>}}<!-- -->{{#tag:syntaxhighlight|{{{code|{{{1}}}}}}|inline=1 | id = {{{id|}}} | class = {{#if:{{yesno|{{{nowrap|}}}}}|nowrap}} {{{class|}}} | style = {{{style|}}} | lang = {{{lang|{{{2|php}}}}}} }}</onlyinclude> {{Documentation}} »)
  • 3 mars 2024 à 19:16 Jwasilew discussion contributions a créé la page SE4 Virtualisation TP Wasi (Page créée avec « Target: discover technologies and use a web server 1. On proxmox: manual conf vm network / ping google / reboot proof 2. Install nginx / conf dns / setup static page 3. Install HAProxy / redirect 8888 to nginx 4. Install docker / pull nginx image / copy static page in container / redirect haproxy 8889 to container --- Target: discover technologies and use a web server 5. Docker image creation with static page / publish on registry 6. Install nomad single inst... ») Balise : Éditeur visuel
  • 26 novembre 2023 à 17:22 Jwasilew discussion contributions a créé la page Utilisateur:Jwasilew (Création basique de la page) Balise : Éditeur visuel
  • 26 novembre 2023 à 17:14 Le compte de l’utilisateur Jwasilew discussion contributions a été créé automatiquement