Add button to reveal lede section on mobile

Bug: T312309
Depends-On: I9c3035c9dbe7545a05efb2286dffe0145d3557b4
Change-Id: I9d74914ddbcc9def74e85106a68574a807b0b731
This commit is contained in:
Ed Sanders 2022-09-27 15:48:25 +01:00 committed by Bartosz Dziewoński
parent d8325ac9b8
commit 79521f89cf
33 changed files with 191 additions and 45 deletions

View file

@ -3,6 +3,7 @@
# Build
/vendor/
/coverage/
# Language files written automatically by TranslateWiki
/i18n/**/*.json

View file

@ -42,6 +42,7 @@
"highlighter.js",
"topicsubscriptions.js",
"mobile.js",
"LedeSectionDialog.js",
{
"name": "controller/contLangMessages.json",
"callback": "\\MediaWiki\\Extension\\DiscussionTools\\ResourceLoaderData::getContentLanguageMessages",
@ -118,6 +119,7 @@
"discussiontools-error-noswitchtove-table",
"discussiontools-error-noswitchtove-template",
"discussiontools-error-noswitchtove-title",
"discussiontools-ledesection-title",
"discussiontools-newtopic-legacy-hint",
"discussiontools-newtopic-placeholder-title",
"discussiontools-newtopic-missing-title",

View file

@ -44,6 +44,8 @@
"discussiontools-findcomment-results-notcurrent": "(not in current revision)",
"discussiontools-findcomment-results-transcluded": "(transcluded from another page)",
"discussiontools-findcomment-title": "Find comment",
"discussiontools-ledesection-button": "Learn more about this page",
"discussiontools-ledesection-title": "About this talk page",
"discussiontools-limitreport-errorreqid": "DiscussionTools error request ID",
"discussiontools-limitreport-timeusage": "DiscussionTools time usage",
"discussiontools-limitreport-timeusage-value": "$1 {{PLURAL:$1|second|seconds}}",

View file

@ -57,6 +57,8 @@
"discussiontools-findcomment-results-notcurrent": "Additional label for a result on [[Special:FindComment]], shown following a link to a page.",
"discussiontools-findcomment-results-transcluded": "Additional label for a result on [[Special:FindComment]], shown following a link to a page.",
"discussiontools-findcomment-title": "Page title for [[Special:FindComment]], also shown on the list on [[Special:SpecialPages]]",
"discussiontools-ledesection-button": "Label for button to reveal content from the lede section (the section above the first heading).",
"discussiontools-ledesection-title": "Title of dialog showing from the lede section (the section above the first heading).",
"discussiontools-limitreport-errorreqid": "Label for the ID of the web request in which a DiscussionTools error has occurred.",
"discussiontools-limitreport-timeusage": "Label for the time usage (duration) of DiscussionTools in the parser limit report. Followed by {{msg-mw|discussiontools-limitreport-timeusage-value}}.\n\nSimilar to:\n* {{msg-mw|limitreport-cputime}}\n* {{msg-mw|limitreport-walltime}}\n* {{msg-mw|scribunto-limitreport-timeusage}}",
"discussiontools-limitreport-timeusage-value": "Follows {{msg-mw|discussiontools-limitreport-timeusage}}.\n\nParameters:\n* $1 - the usage in seconds\n{{Identical|Second}}",

View file

@ -306,6 +306,8 @@ class CommentFormatter {
$container->appendChild( $newestCommentMarker );
}
$firstHeading = null;
// Enhance other <h2>'s which aren't part of a thread
$headings = DOMCompat::querySelectorAll( $container, 'h2' );
foreach ( $headings as $headingElement ) {
@ -314,6 +316,18 @@ class CommentFormatter {
continue;
}
static::addTopicContainer( $headingElement );
if ( !$firstHeading ) {
$firstHeading = $headingElement;
}
}
if (
// Page has no headings but some content
( !$firstHeading && $container->childNodes->length ) ||
// Page has content before the first heading
( $firstHeading && $firstHeading->previousSibling !== null )
) {
$container->appendChild( $doc->createComment( '__DTHASLEDECONTENT__' ) );
}
if ( count( $threadItems ) === 0 ) {
@ -760,4 +774,14 @@ class CommentFormatter {
return str_replace( '<!--__DTEMPTYTALKPAGE__-->', $content, $text );
}
/**
* Check if the talk page has content above the first heading, in the lede section.
*
* @param string $text
* @return bool
*/
public static function hasLedeContent( string $text ): bool {
return strpos( $text, '<!--__DTHASLEDECONTENT__-->' ) !== false;
}
}

View file

@ -197,12 +197,14 @@ class PageHooks implements
$text, $lang, $this->subscriptionStore, $output->getUser(), $isMobile
);
}
if ( HookUtils::isFeatureEnabledForOutput( $output, HookUtils::REPLYTOOL ) ) {
$output->enableOOUI();
$text = CommentFormatter::postprocessReplyTool(
$text, $lang, $isMobile
);
}
if (
CommentFormatter::isEmptyTalkPage( $text ) &&
HookUtils::shouldDisplayEmptyState( $output->getContext() )
@ -213,6 +215,26 @@ class PageHooks implements
);
$output->addBodyClasses( 'ext-discussiontools-emptystate-shown' );
}
if (
$output->getSkin()->getSkinName() === 'minerva' &&
CommentFormatter::hasLedeContent( $text )
) {
$output->enableOOUI();
$output->addHTML(
Html::rawElement( 'div',
[ 'class' => 'ext-discussiontools-init-lede-button-container' ],
( new ButtonWidget( [
'label' => $output->getContext()->msg( 'discussiontools-ledesection-button' )->text(),
'classes' => [ 'ext-discussiontools-init-lede-button' ],
'framed' => false,
'icon' => 'info',
'infusable' => true,
] ) )
)
);
}
if ( HookUtils::isFeatureEnabledForOutput( $output, HookUtils::VISUALENHANCEMENTS ) ) {
$output->enableOOUI();
if ( HookUtils::isFeatureEnabledForOutput( $output, HookUtils::TOPICSUBSCRIPTION ) ) {
@ -397,28 +419,34 @@ class PageHooks implements
* @return bool|void
*/
public function onArticleViewHeader( $article, &$outputDone, &$pcache ) {
$title = $article->getTitle();
$context = $article->getContext();
$output = $context->getOutput();
if (
$output->getSkin()->getSkinName() === 'minerva' &&
HookUtils::isFeatureEnabledForOutput( $output, HookUtils::NEWTOPICTOOL ) &&
// Only add the button if "New section" tab would be shown in a normal skin.
HookUtils::shouldShowNewSectionTab( $context )
) {
// Minerva doesn't show a new topic button by default, unless the MobileFrontend
// talk page feature is enabled, but we shouldn't depend on code from there.
$output->enableOOUI();
$output->addHTML(
( new ButtonWidget( [
'href' => $title->getLinkURL( [ 'action' => 'edit', 'section' => 'new' ] ),
'label' => $context->msg( 'skin-action-addsection' )->text(),
'flags' => [ 'progressive', 'primary' ],
'classes' => [ 'ext-discussiontools-init-new-topic' ]
] ) )
// For compatibility with Minerva click tracking (T295490)
->setAttributes( [ 'data-event-name' => 'talkpage.add-topic' ] )
);
if ( $output->getSkin()->getSkinName() === 'minerva' ) {
$title = $article->getTitle();
if (
HookUtils::isFeatureEnabledForOutput( $output, HookUtils::NEWTOPICTOOL ) &&
// Only add the button if "New section" tab would be shown in a normal skin.
HookUtils::shouldShowNewSectionTab( $context )
) {
$output->enableOOUI();
// Minerva doesn't show a new topic button by default, unless the MobileFrontend
// talk page feature is enabled, but we shouldn't depend on code from there.
$output->addHTML(
Html::rawElement( 'div',
[ 'class' => 'ext-discussiontools-init-new-topic' ],
( new ButtonWidget( [
'href' => $title->getLinkURL( [ 'action' => 'edit', 'section' => 'new' ] ),
'label' => $context->msg( 'skin-action-addsection' )->text(),
'flags' => [ 'progressive', 'primary' ],
] ) )
// For compatibility with Minerva click tracking (T295490)
->setAttributes( [ 'data-event-name' => 'talkpage.add-topic' ] )
)
);
}
}
}

View file

@ -0,0 +1,43 @@
function LedeSectionDialog() {
// Parent constructor
LedeSectionDialog.super.apply( this, arguments );
}
/* Inheritance */
OO.inheritClass( LedeSectionDialog, OO.ui.ProcessDialog );
LedeSectionDialog.static.name = 'ledeSection';
LedeSectionDialog.static.size = 'larger';
LedeSectionDialog.static.title = OO.ui.deferMsg( 'discussiontools-ledesection-title' );
LedeSectionDialog.static.actions = [
{
label: OO.ui.deferMsg( 'visualeditor-dialog-action-done' ),
flags: [ 'safe', 'close' ]
}
];
LedeSectionDialog.prototype.initialize = function () {
// Parent method
LedeSectionDialog.super.prototype.initialize.call( this );
this.contentLayout = new OO.ui.PanelLayout( {
scrollable: true,
padded: true,
expanded: false,
classes: [ 'ext-discussiontools-ui-ledeSectionDialog-content', 'mw-parser-output', 'content' ]
} );
this.$body.append( this.contentLayout.$element );
};
LedeSectionDialog.prototype.getSetupProcess = function ( data ) {
return LedeSectionDialog.super.prototype.getSetupProcess.call( this, data )
.next( function () {
this.contentLayout.$element.empty().append( data.$content );
}, this );
};
module.exports = LedeSectionDialog;

View file

@ -741,6 +741,32 @@ h1, h2, h3, h4, h5, h6 {
margin-top: 32px;
margin-bottom: -32px; // stylelint-disable-line declaration-block-no-redundant-longhand-properties
}
// Always hide the table of content. This is usually hidden by the mf-section-0 rules,
// but can sometimes appear elsewhere (e.g in the lede section overlay)
// stylelint-disable-next-line selector-class-pattern
.toc {
display: none;
}
// Override Minerva rule that always hides tmbox.
// stylelint-disable-next-line selector-class-pattern
.ext-discussiontools-ui-ledeSectionDialog-content.content .tmbox {
// stylelint-disable-next-line declaration-no-important
display: block !important;
}
}
.ext-discussiontools-init-lede-button-container {
margin: 0.5em 0;
}
.ext-discussiontools-init-lede-button {
opacity: 0.66;
> .oo-ui-buttonElement-button {
font-weight: normal;
}
}
// HACK: Fake disabled styles for the .mw-ui-button in Vector sticky header (T307726)

View file

@ -1,4 +1,4 @@
var $readAsWikiPage;
var $readAsWikiPage, ledeSectionDialog;
function init( $container ) {
// For compatibility with Minerva click tracking (T295490)
@ -31,6 +31,24 @@ function init( $container ) {
e.stopPropagation();
} );
} );
var $ledeContent = $container.find( '.mf-section-0' ).children( ':not( .ext-discussiontools-emptystate )' );
var $ledeButton = $container.find( '.ext-discussiontools-init-lede-button' );
if ( $ledeButton.length ) {
var windowManager = OO.ui.getWindowManager();
if ( !ledeSectionDialog ) {
var LedeSectionDialog = require( './LedeSectionDialog.js' );
ledeSectionDialog = new LedeSectionDialog();
windowManager.addWindows( [ ledeSectionDialog ] );
}
// Lede section popup
OO.ui.infuse( $ledeButton ).on( 'click', function () {
mw.loader.using( 'oojs-ui-windows' ).then( function () {
windowManager.openWindow( 'ledeSection', { $content: $ledeContent } );
} );
} );
}
if ( !$readAsWikiPage ) {
// Read as wiki page button, copied from renderReadAsWikiPageButton in Minerva
$readAsWikiPage = $( '<button>' )

View file

@ -616,7 +616,7 @@ Transclusion expansion time report (%,ms,calls,template)
<!-- Saved in parser cache with key arwiki:pcache:idhash:735842-1!canonical and timestamp 20200402224455 and revision id 45576943
-->
</div><!--__DTLATESTCOMMENTPAGE__{"id":"c-\u0645\u062d\u0645\u062f_\u0623\u062d\u0645\u062f_\u0639\u0628\u062f_\u0627\u0644\u0641\u062a\u0627\u062d-2020-04-02T13:50:00.000Z-\u0645\u062d\u0645\u062f_\u0623\u062d\u0645\u062f_\u0639\u0628\u062f_\u0627\u0644\u0641\u062a\u0627\u062d-2020-04-01T23:24:00.000Z","timestamp":"2020-04-02T13:50:00.000Z","author":"\u0645\u062d\u0645\u062f \u0623\u062d\u0645\u062f \u0639\u0628\u062f \u0627\u0644\u0641\u062a\u0627\u062d","heading":{"headingLevel":2,"name":"h-\u0645\u062d\u0645\u062f_\u0623\u062d\u0645\u062f_\u0639\u0628\u062f_\u0627\u0644\u0641\u062a\u0627\u062d-2020-04-01T23:24:00.000Z","type":"heading","level":0,"id":"h-\u0627\u0644\u0627\u062e\u062a\u0635\u0627\u0631\u0627\u062a_\u0627\u0644\u0625\u0646\u062c\u0644\u064a\u0632\u064a\u0629-2020-04-01T23:24:00.000Z","replies":["c-\u0645\u062d\u0645\u062f_\u0623\u062d\u0645\u062f_\u0639\u0628\u062f_\u0627\u0644\u0641\u062a\u0627\u062d-2020-04-01T23:24:00.000Z-\u0627\u0644\u0627\u062e\u062a\u0635\u0627\u0631\u0627\u062a_\u0627\u0644\u0625\u0646\u062c\u0644\u064a\u0632\u064a\u0629"],"text":"\u0627\u0644\u0627\u062e\u062a\u0635\u0627\u0631\u0627\u062a \u0627\u0644\u0625\u0646\u062c\u0644\u064a\u0632\u064a\u0629","linkableTitle":"\u0627\u0644\u0627\u062e\u062a\u0635\u0627\u0631\u0627\u062a \u0627\u0644\u0625\u0646\u062c\u0644\u064a\u0632\u064a\u0629"}}__-->
</div><!--__DTLATESTCOMMENTPAGE__{"id":"c-\u0645\u062d\u0645\u062f_\u0623\u062d\u0645\u062f_\u0639\u0628\u062f_\u0627\u0644\u0641\u062a\u0627\u062d-2020-04-02T13:50:00.000Z-\u0645\u062d\u0645\u062f_\u0623\u062d\u0645\u062f_\u0639\u0628\u062f_\u0627\u0644\u0641\u062a\u0627\u062d-2020-04-01T23:24:00.000Z","timestamp":"2020-04-02T13:50:00.000Z","author":"\u0645\u062d\u0645\u062f \u0623\u062d\u0645\u062f \u0639\u0628\u062f \u0627\u0644\u0641\u062a\u0627\u062d","heading":{"headingLevel":2,"name":"h-\u0645\u062d\u0645\u062f_\u0623\u062d\u0645\u062f_\u0639\u0628\u062f_\u0627\u0644\u0641\u062a\u0627\u062d-2020-04-01T23:24:00.000Z","type":"heading","level":0,"id":"h-\u0627\u0644\u0627\u062e\u062a\u0635\u0627\u0631\u0627\u062a_\u0627\u0644\u0625\u0646\u062c\u0644\u064a\u0632\u064a\u0629-2020-04-01T23:24:00.000Z","replies":["c-\u0645\u062d\u0645\u062f_\u0623\u062d\u0645\u062f_\u0639\u0628\u062f_\u0627\u0644\u0641\u062a\u0627\u062d-2020-04-01T23:24:00.000Z-\u0627\u0644\u0627\u062e\u062a\u0635\u0627\u0631\u0627\u062a_\u0627\u0644\u0625\u0646\u062c\u0644\u064a\u0632\u064a\u0629"],"text":"\u0627\u0644\u0627\u062e\u062a\u0635\u0627\u0631\u0627\u062a \u0627\u0644\u0625\u0646\u062c\u0644\u064a\u0632\u064a\u0629","linkableTitle":"\u0627\u0644\u0627\u062e\u062a\u0635\u0627\u0631\u0627\u062a \u0627\u0644\u0625\u0646\u062c\u0644\u064a\u0632\u064a\u0629"}}__--><!--__DTHASLEDECONTENT__-->
<pre>
{
"wgDiscussionToolsPageThreads": [

View file

@ -616,7 +616,7 @@ Transclusion expansion time report (%,ms,calls,template)
<!-- Saved in parser cache with key arwiki:pcache:idhash:735842-1!canonical and timestamp 20200402224455 and revision id 45576943
-->
</div><!--__DTLATESTCOMMENTPAGE__{"id":"c-\u0645\u062d\u0645\u062f_\u0623\u062d\u0645\u062f_\u0639\u0628\u062f_\u0627\u0644\u0641\u062a\u0627\u062d-2020-04-02T13:50:00.000Z-\u0645\u062d\u0645\u062f_\u0623\u062d\u0645\u062f_\u0639\u0628\u062f_\u0627\u0644\u0641\u062a\u0627\u062d-2020-04-01T23:24:00.000Z","timestamp":"2020-04-02T13:50:00.000Z","author":"\u0645\u062d\u0645\u062f \u0623\u062d\u0645\u062f \u0639\u0628\u062f \u0627\u0644\u0641\u062a\u0627\u062d","heading":{"headingLevel":2,"name":"h-\u0645\u062d\u0645\u062f_\u0623\u062d\u0645\u062f_\u0639\u0628\u062f_\u0627\u0644\u0641\u062a\u0627\u062d-2020-04-01T23:24:00.000Z","type":"heading","level":0,"id":"h-\u0627\u0644\u0627\u062e\u062a\u0635\u0627\u0631\u0627\u062a_\u0627\u0644\u0625\u0646\u062c\u0644\u064a\u0632\u064a\u0629-2020-04-01T23:24:00.000Z","replies":["c-\u0645\u062d\u0645\u062f_\u0623\u062d\u0645\u062f_\u0639\u0628\u062f_\u0627\u0644\u0641\u062a\u0627\u062d-2020-04-01T23:24:00.000Z-\u0627\u0644\u0627\u062e\u062a\u0635\u0627\u0631\u0627\u062a_\u0627\u0644\u0625\u0646\u062c\u0644\u064a\u0632\u064a\u0629"],"text":"\u0627\u0644\u0627\u062e\u062a\u0635\u0627\u0631\u0627\u062a \u0627\u0644\u0625\u0646\u062c\u0644\u064a\u0632\u064a\u0629","linkableTitle":"\u0627\u0644\u0627\u062e\u062a\u0635\u0627\u0631\u0627\u062a \u0627\u0644\u0625\u0646\u062c\u0644\u064a\u0632\u064a\u0629"}}__-->
</div><!--__DTLATESTCOMMENTPAGE__{"id":"c-\u0645\u062d\u0645\u062f_\u0623\u062d\u0645\u062f_\u0639\u0628\u062f_\u0627\u0644\u0641\u062a\u0627\u062d-2020-04-02T13:50:00.000Z-\u0645\u062d\u0645\u062f_\u0623\u062d\u0645\u062f_\u0639\u0628\u062f_\u0627\u0644\u0641\u062a\u0627\u062d-2020-04-01T23:24:00.000Z","timestamp":"2020-04-02T13:50:00.000Z","author":"\u0645\u062d\u0645\u062f \u0623\u062d\u0645\u062f \u0639\u0628\u062f \u0627\u0644\u0641\u062a\u0627\u062d","heading":{"headingLevel":2,"name":"h-\u0645\u062d\u0645\u062f_\u0623\u062d\u0645\u062f_\u0639\u0628\u062f_\u0627\u0644\u0641\u062a\u0627\u062d-2020-04-01T23:24:00.000Z","type":"heading","level":0,"id":"h-\u0627\u0644\u0627\u062e\u062a\u0635\u0627\u0631\u0627\u062a_\u0627\u0644\u0625\u0646\u062c\u0644\u064a\u0632\u064a\u0629-2020-04-01T23:24:00.000Z","replies":["c-\u0645\u062d\u0645\u062f_\u0623\u062d\u0645\u062f_\u0639\u0628\u062f_\u0627\u0644\u0641\u062a\u0627\u062d-2020-04-01T23:24:00.000Z-\u0627\u0644\u0627\u062e\u062a\u0635\u0627\u0631\u0627\u062a_\u0627\u0644\u0625\u0646\u062c\u0644\u064a\u0632\u064a\u0629"],"text":"\u0627\u0644\u0627\u062e\u062a\u0635\u0627\u0631\u0627\u062a \u0627\u0644\u0625\u0646\u062c\u0644\u064a\u0632\u064a\u0629","linkableTitle":"\u0627\u0644\u0627\u062e\u062a\u0635\u0627\u0631\u0627\u062a \u0627\u0644\u0625\u0646\u062c\u0644\u064a\u0632\u064a\u0629"}}__--><!--__DTHASLEDECONTENT__-->
<pre>
{
"wgDiscussionToolsPageThreads": [

View file

@ -105,7 +105,7 @@ Transclusion expansion time report (%,ms,calls,template)
<!-- Saved in RevisionOutputCache with key enwiki:rcache:1002108637:dateformat=default and timestamp 20210226212247 and revision id 1002108637.
-->
</div><!--__DTLATESTCOMMENTPAGE__{"id":"c-ToBeFree-2021-01-22T22:19:00.000Z-Threesom666","timestamp":"2021-01-22T22:19:00.000Z","author":"ToBeFree","heading":{"headingLevel":2,"name":"h-Primefac-2021-01-22T15:18:00.000Z","type":"heading","level":0,"id":"h-Reports-2021-01-22T15:18:00.000Z","replies":["h-Threesom666-Reports-2021-01-22T15:18:00.000Z"],"text":"Reports","linkableTitle":"Reports"}}__-->
</div><!--__DTLATESTCOMMENTPAGE__{"id":"c-ToBeFree-2021-01-22T22:19:00.000Z-Threesom666","timestamp":"2021-01-22T22:19:00.000Z","author":"ToBeFree","heading":{"headingLevel":2,"name":"h-Primefac-2021-01-22T15:18:00.000Z","type":"heading","level":0,"id":"h-Reports-2021-01-22T15:18:00.000Z","replies":["h-Threesom666-Reports-2021-01-22T15:18:00.000Z"],"text":"Reports","linkableTitle":"Reports"}}__--><!--__DTHASLEDECONTENT__-->
<pre>
{
"wgDiscussionToolsPageThreads": [

View file

@ -105,7 +105,7 @@ Transclusion expansion time report (%,ms,calls,template)
<!-- Saved in RevisionOutputCache with key enwiki:rcache:1002108637:dateformat=default and timestamp 20210226212247 and revision id 1002108637.
-->
</div><!--__DTLATESTCOMMENTPAGE__{"id":"c-ToBeFree-2021-01-22T22:19:00.000Z-Threesom666","timestamp":"2021-01-22T22:19:00.000Z","author":"ToBeFree","heading":{"headingLevel":2,"name":"h-Primefac-2021-01-22T15:18:00.000Z","type":"heading","level":0,"id":"h-Reports-2021-01-22T15:18:00.000Z","replies":["h-Threesom666-Reports-2021-01-22T15:18:00.000Z"],"text":"Reports","linkableTitle":"Reports"}}__-->
</div><!--__DTLATESTCOMMENTPAGE__{"id":"c-ToBeFree-2021-01-22T22:19:00.000Z-Threesom666","timestamp":"2021-01-22T22:19:00.000Z","author":"ToBeFree","heading":{"headingLevel":2,"name":"h-Primefac-2021-01-22T15:18:00.000Z","type":"heading","level":0,"id":"h-Reports-2021-01-22T15:18:00.000Z","replies":["h-Threesom666-Reports-2021-01-22T15:18:00.000Z"],"text":"Reports","linkableTitle":"Reports"}}__--><!--__DTHASLEDECONTENT__-->
<pre>
{
"wgDiscussionToolsPageThreads": [

View file

@ -69,7 +69,7 @@ Transclusion expansion time report (%,ms,calls,template)
<!-- Saved in parser cache with key enwiki:pcache:idhash:66442081-1!canonical and timestamp 20210226224726 and revision id 1009060583. Serialized with JSON.
-->
</div><!--__DTLATESTCOMMENTPAGE__{"id":"c-ScottishFinnishRadish-2021-02-26T14:30:00.000Z-Barkeep49-2021-02-16T21:40:00.000Z","timestamp":"2021-02-26T14:30:00.000Z","author":"ScottishFinnishRadish"}__-->
</div><!--__DTLATESTCOMMENTPAGE__{"id":"c-ScottishFinnishRadish-2021-02-26T14:30:00.000Z-Barkeep49-2021-02-16T21:40:00.000Z","timestamp":"2021-02-26T14:30:00.000Z","author":"ScottishFinnishRadish"}__--><!--__DTHASLEDECONTENT__-->
<pre>
{
"wgDiscussionToolsPageThreads": [

View file

@ -69,7 +69,7 @@ Transclusion expansion time report (%,ms,calls,template)
<!-- Saved in parser cache with key enwiki:pcache:idhash:66442081-1!canonical and timestamp 20210226224726 and revision id 1009060583. Serialized with JSON.
-->
</div><!--__DTLATESTCOMMENTPAGE__{"id":"c-ScottishFinnishRadish-2021-02-26T14:30:00.000Z-Barkeep49-2021-02-16T21:40:00.000Z","timestamp":"2021-02-26T14:30:00.000Z","author":"ScottishFinnishRadish"}__-->
</div><!--__DTLATESTCOMMENTPAGE__{"id":"c-ScottishFinnishRadish-2021-02-26T14:30:00.000Z-Barkeep49-2021-02-16T21:40:00.000Z","timestamp":"2021-02-26T14:30:00.000Z","author":"ScottishFinnishRadish"}__--><!--__DTHASLEDECONTENT__-->
<pre>
{
"wgDiscussionToolsPageThreads": [

View file

@ -2926,7 +2926,7 @@ Transclusion expansion time report (%,ms,calls,template)
<!-- Saved in parser cache with key enwiki:pcache:idhash:61241617-1!canonical and timestamp 20191024124734 and revision id 913983958
-->
</div><!--__DTLATESTCOMMENTPAGE__{"id":"c-Wugapodes-2019-08-27T22:44:00.000Z-Enable_chess_PGN_viewer_for_chess_articles","timestamp":"2019-08-27T22:44:00.000Z","author":"Wugapodes","heading":{"headingLevel":2,"name":"h-Wugapodes-2019-07-30T05:28:00.000Z","type":"heading","level":0,"id":"h-Enable_chess_PGN_viewer_for_chess_articles-2019-07-30T05:28:00.000Z","replies":["c-Wugapodes-2019-08-27T22:44:00.000Z-Enable_chess_PGN_viewer_for_chess_articles","h-PGN_viewer_discussion-Enable_chess_PGN_viewer_for_chess_articles-2019-07-30T05:28:00.000Z","h-\"on_demand\"_loading_of_scripts_and_gadgets-Enable_chess_PGN_viewer_for_chess_articles-2019-07-31T23:41:00.000Z"],"text":"Enable chess PGN viewer for chess articles","linkableTitle":"Enable chess PGN viewer for chess articles"}}__-->
</div><!--__DTLATESTCOMMENTPAGE__{"id":"c-Wugapodes-2019-08-27T22:44:00.000Z-Enable_chess_PGN_viewer_for_chess_articles","timestamp":"2019-08-27T22:44:00.000Z","author":"Wugapodes","heading":{"headingLevel":2,"name":"h-Wugapodes-2019-07-30T05:28:00.000Z","type":"heading","level":0,"id":"h-Enable_chess_PGN_viewer_for_chess_articles-2019-07-30T05:28:00.000Z","replies":["c-Wugapodes-2019-08-27T22:44:00.000Z-Enable_chess_PGN_viewer_for_chess_articles","h-PGN_viewer_discussion-Enable_chess_PGN_viewer_for_chess_articles-2019-07-30T05:28:00.000Z","h-\"on_demand\"_loading_of_scripts_and_gadgets-Enable_chess_PGN_viewer_for_chess_articles-2019-07-31T23:41:00.000Z"],"text":"Enable chess PGN viewer for chess articles","linkableTitle":"Enable chess PGN viewer for chess articles"}}__--><!--__DTHASLEDECONTENT__-->
<pre>
{
"wgDiscussionToolsPageThreads": [

View file

@ -2926,7 +2926,7 @@ Transclusion expansion time report (%,ms,calls,template)
<!-- Saved in parser cache with key enwiki:pcache:idhash:61241617-1!canonical and timestamp 20191024124734 and revision id 913983958
-->
</div><!--__DTLATESTCOMMENTPAGE__{"id":"c-Wugapodes-2019-08-27T22:44:00.000Z-Enable_chess_PGN_viewer_for_chess_articles","timestamp":"2019-08-27T22:44:00.000Z","author":"Wugapodes","heading":{"headingLevel":2,"name":"h-Wugapodes-2019-07-30T05:28:00.000Z","type":"heading","level":0,"id":"h-Enable_chess_PGN_viewer_for_chess_articles-2019-07-30T05:28:00.000Z","replies":["c-Wugapodes-2019-08-27T22:44:00.000Z-Enable_chess_PGN_viewer_for_chess_articles","h-PGN_viewer_discussion-Enable_chess_PGN_viewer_for_chess_articles-2019-07-30T05:28:00.000Z","h-\"on_demand\"_loading_of_scripts_and_gadgets-Enable_chess_PGN_viewer_for_chess_articles-2019-07-31T23:41:00.000Z"],"text":"Enable chess PGN viewer for chess articles","linkableTitle":"Enable chess PGN viewer for chess articles"}}__-->
</div><!--__DTLATESTCOMMENTPAGE__{"id":"c-Wugapodes-2019-08-27T22:44:00.000Z-Enable_chess_PGN_viewer_for_chess_articles","timestamp":"2019-08-27T22:44:00.000Z","author":"Wugapodes","heading":{"headingLevel":2,"name":"h-Wugapodes-2019-07-30T05:28:00.000Z","type":"heading","level":0,"id":"h-Enable_chess_PGN_viewer_for_chess_articles-2019-07-30T05:28:00.000Z","replies":["c-Wugapodes-2019-08-27T22:44:00.000Z-Enable_chess_PGN_viewer_for_chess_articles","h-PGN_viewer_discussion-Enable_chess_PGN_viewer_for_chess_articles-2019-07-30T05:28:00.000Z","h-\"on_demand\"_loading_of_scripts_and_gadgets-Enable_chess_PGN_viewer_for_chess_articles-2019-07-31T23:41:00.000Z"],"text":"Enable chess PGN viewer for chess articles","linkableTitle":"Enable chess PGN viewer for chess articles"}}__--><!--__DTHASLEDECONTENT__-->
<pre>
{
"wgDiscussionToolsPageThreads": [

View file

@ -44,7 +44,7 @@ Transclusion expansion time report (%,ms,calls,template)
9.09% 3.651 1 Szablon:Re
--><!-- Saved in parser cache with key plwiki:pcache:idhash:4909193-0!canonical and timestamp 20220128212640 and revision id 61209761. Serialized with JSON.
--></div>
<!--__DTLATESTCOMMENTPAGE__{"id":"c-Nowy15-2020-10-28T18:53:00.000Z-PuchaczTrado-2020-09-28T19:29:00.000Z","timestamp":"2020-10-28T18:53:00.000Z","author":"Nowy15"}__-->
<!--__DTLATESTCOMMENTPAGE__{"id":"c-Nowy15-2020-10-28T18:53:00.000Z-PuchaczTrado-2020-09-28T19:29:00.000Z","timestamp":"2020-10-28T18:53:00.000Z","author":"Nowy15"}__--><!--__DTHASLEDECONTENT__-->
<pre>
{
"wgDiscussionToolsPageThreads": [

View file

@ -44,7 +44,7 @@ Transclusion expansion time report (%,ms,calls,template)
9.09% 3.651 1 Szablon:Re
--><!-- Saved in parser cache with key plwiki:pcache:idhash:4909193-0!canonical and timestamp 20220128212640 and revision id 61209761. Serialized with JSON.
--></div>
<!--__DTLATESTCOMMENTPAGE__{"id":"c-Nowy15-2020-10-28T18:53:00.000Z-PuchaczTrado-2020-09-28T19:29:00.000Z","timestamp":"2020-10-28T18:53:00.000Z","author":"Nowy15"}__-->
<!--__DTLATESTCOMMENTPAGE__{"id":"c-Nowy15-2020-10-28T18:53:00.000Z-PuchaczTrado-2020-09-28T19:29:00.000Z","timestamp":"2020-10-28T18:53:00.000Z","author":"Nowy15"}__--><!--__DTHASLEDECONTENT__-->
<pre>
{
"wgDiscussionToolsPageThreads": [

View file

@ -8,7 +8,7 @@
<h2 class="ext-discussiontools-init-section"><span class='ext-discussiontools-init-section-subscribeButton oo-ui-widget oo-ui-widget-enabled oo-ui-buttonElement oo-ui-buttonElement-frameless oo-ui-iconElement oo-ui-labelElement oo-ui-flaggedElement-progressive oo-ui-buttonWidget' data-ooui='{"_":"OO.ui.ButtonWidget","rel":["nofollow"],"framed":false,"icon":"bellOutline","label":"(discussiontools-topicsubscription-button-subscribe-label)","title":"(discussiontools-topicsubscription-button-subscribe-tooltip)","flags":["progressive"],"classes":["ext-discussiontools-init-section-subscribeButton"]}'><a role='button' title='(discussiontools-topicsubscription-button-subscribe-tooltip)' tabindex='0' rel='nofollow' class='oo-ui-buttonElement-button'><span class='oo-ui-iconElement-icon oo-ui-icon-bellOutline oo-ui-image-progressive'></span><span class='oo-ui-labelElement-label'>(discussiontools-topicsubscription-button-subscribe-label)</span><span class='oo-ui-indicatorElement-indicator oo-ui-indicatorElement-noIndicator oo-ui-image-progressive'></span></a></span><span class="ext-discussiontools-init-section-subscribe mw-editsection-like"><span class="ext-discussiontools-init-section-subscribe-bracket">[</span><a href="" class="ext-discussiontools-init-section-subscribe-link" role="button" tabindex="0" title="(discussiontools-topicsubscription-button-subscribe-tooltip)">(discussiontools-topicsubscription-button-subscribe)</a><span class="ext-discussiontools-init-section-subscribe-bracket">]</span></span><span id="Heading_with_a_.22_quote"></span><span class="mw-headline" id="Heading_with_a_&quot;_quote" data-mw-thread-id="h-Heading_with_a_&quot;_quote-2021-02-24T19:24:00.000Z"><span data-mw-comment-start="" id="h-Heading_with_a_&quot;_quote-2021-02-24T19:24:00.000Z"></span>Heading with a " quote<span data-mw-comment-end="h-Heading_with_a_&quot;_quote-2021-02-24T19:24:00.000Z"></span></span><mw:editsection page="Talk:For parser cache" section="1">Heading with a " quote</mw:editsection><div class="ext-discussiontools-init-section-bar"><div class="ext-discussiontools-init-section-metadata"><span class='ext-discussiontools-init-section-metaitem ext-discussiontools-init-section-timestampLabel'>(discussiontools-topicheader-latestcomment: <a href="#c-Matma_Rex-2021-02-24T19:24:00.000Z-Heading_with_a_&quot;_quote">1614194640</a>)</span><span class='ext-discussiontools-init-section-metaitem ext-discussiontools-init-section-commentCountLabel'>(discussiontools-topicheader-commentcount: 1)</span><span class='ext-discussiontools-init-section-metaitem ext-discussiontools-init-section-authorCountLabel'>(discussiontools-topicheader-authorcount: 1)</span></div><div class="ext-discussiontools-init-section-actions"></div></div></h2>
<p><span data-mw-comment-start="" id="c-Matma_Rex-2021-02-24T19:24:00.000Z-Heading_with_a_&quot;_quote"></span>Test. <a href="/wiki/User:Matma_Rex" title="User:Matma Rex">Matma Rex</a> (<a href="/wiki/User_talk:Matma_Rex" title="User talk:Matma Rex"><font color="green"><i>talk</i></font></a>) 19:24, 24 February 2021 (UTC)<span class="ext-discussiontools-init-replylink-buttons" data-mw-thread-id="c-Matma_Rex-2021-02-24T19:24:00.000Z-Heading_with_a_&quot;_quote"><span class="ext-discussiontools-init-replybutton oo-ui-widget oo-ui-widget-enabled oo-ui-buttonElement oo-ui-buttonElement-frameless oo-ui-labelElement oo-ui-flaggedElement-progressive oo-ui-buttonWidget" data-ooui='{"_":"OO.ui.ButtonWidget","rel":["nofollow"],"framed":false,"label":"(discussiontools-replybutton)","flags":["progressive"],"classes":["ext-discussiontools-init-replybutton"]}'><a role="button" tabindex="0" rel="nofollow" class="oo-ui-buttonElement-button"><span class="oo-ui-iconElement-icon oo-ui-iconElement-noIcon oo-ui-image-progressive"></span><span class="oo-ui-labelElement-label">(discussiontools-replybutton)</span><span class="oo-ui-indicatorElement-indicator oo-ui-indicatorElement-noIndicator oo-ui-image-progressive"></span></a></span><span class="ext-discussiontools-init-replylink-bracket">[</span><a class="ext-discussiontools-init-replylink-reply" role="button" tabindex="0" href="">(discussiontools-replylink)</a><span class="ext-discussiontools-init-replylink-bracket">]</span></span><span data-mw-comment-end="c-Matma_Rex-2021-02-24T19:24:00.000Z-Heading_with_a_&quot;_quote"></span>
</p>
<!--__DTLATESTCOMMENTPAGE__{"id":"c-Matma_Rex-2021-02-24T19:24:00.000Z-Heading_with_a_\"_quote","timestamp":"2021-02-24T19:24:00.000Z","author":"Matma Rex","heading":{"headingLevel":2,"name":"h-Matma_Rex-2021-02-24T19:24:00.000Z","type":"heading","level":0,"id":"h-Heading_with_a_\"_quote-2021-02-24T19:24:00.000Z","replies":["c-Matma_Rex-2021-02-24T19:24:00.000Z-Heading_with_a_\"_quote"],"text":"Heading with a \" quote","linkableTitle":"Heading with a \" quote"}}__-->
<!--__DTLATESTCOMMENTPAGE__{"id":"c-Matma_Rex-2021-02-24T19:24:00.000Z-Heading_with_a_\"_quote","timestamp":"2021-02-24T19:24:00.000Z","author":"Matma Rex","heading":{"headingLevel":2,"name":"h-Matma_Rex-2021-02-24T19:24:00.000Z","type":"heading","level":0,"id":"h-Heading_with_a_\"_quote-2021-02-24T19:24:00.000Z","replies":["c-Matma_Rex-2021-02-24T19:24:00.000Z-Heading_with_a_\"_quote"],"text":"Heading with a \" quote","linkableTitle":"Heading with a \" quote"}}__--><!--__DTHASLEDECONTENT__-->
<pre>
{
"wgDiscussionToolsPageThreads": [

View file

@ -8,7 +8,7 @@
<h2 class="ext-discussiontools-init-section"><span class="ext-discussiontools-init-section-subscribe mw-editsection-like"><span class="ext-discussiontools-init-section-subscribe-bracket">[</span><a href="" class="ext-discussiontools-init-section-subscribe-link" role="button" tabindex="0" title="(discussiontools-topicsubscription-button-subscribe-tooltip)">(discussiontools-topicsubscription-button-subscribe)</a><span class="ext-discussiontools-init-section-subscribe-bracket">]</span></span><span id="Heading_with_a_.22_quote"></span><span class="mw-headline" id="Heading_with_a_&quot;_quote" data-mw-thread-id="h-Heading_with_a_&quot;_quote-2021-02-24T19:24:00.000Z"><span data-mw-comment-start="" id="h-Heading_with_a_&quot;_quote-2021-02-24T19:24:00.000Z"></span>Heading with a " quote<span data-mw-comment-end="h-Heading_with_a_&quot;_quote-2021-02-24T19:24:00.000Z"></span></span><mw:editsection page="Talk:For parser cache" section="1">Heading with a " quote</mw:editsection><span class='ext-discussiontools-init-section-ellipsisButton oo-ui-widget oo-ui-widget-enabled oo-ui-buttonElement oo-ui-buttonElement-frameless oo-ui-iconElement oo-ui-buttonWidget' data-ooui='{"_":"OO.ui.ButtonMenuSelectWidget","rel":["nofollow"],"framed":false,"icon":"ellipsis","classes":["ext-discussiontools-init-section-ellipsisButton"]}'><a role='button' tabindex='0' rel='nofollow' class='oo-ui-buttonElement-button'><span class='oo-ui-iconElement-icon oo-ui-icon-ellipsis'></span><span class='oo-ui-labelElement-label'></span><span class='oo-ui-indicatorElement-indicator oo-ui-indicatorElement-noIndicator'></span></a></span><div class="ext-discussiontools-init-section-bar"><div class="ext-discussiontools-init-section-metadata"><span class='ext-discussiontools-init-section-metaitem ext-discussiontools-init-section-timestampLabel'>(discussiontools-topicheader-latestcomment: <a href="#c-Matma_Rex-2021-02-24T19:24:00.000Z-Heading_with_a_&quot;_quote">1614194640</a>)</span><span class='ext-discussiontools-init-section-metaitem ext-discussiontools-init-section-commentCountLabel'>(discussiontools-topicheader-commentcount: 1)</span><span class='ext-discussiontools-init-section-metaitem ext-discussiontools-init-section-authorCountLabel'>(discussiontools-topicheader-authorcount: 1)</span></div><div class="ext-discussiontools-init-section-actions"><span class='ext-discussiontools-init-section-subscribeButton oo-ui-widget oo-ui-widget-enabled oo-ui-buttonElement oo-ui-buttonElement-frameless oo-ui-iconElement oo-ui-labelElement oo-ui-flaggedElement-progressive oo-ui-buttonWidget' data-ooui='{"_":"OO.ui.ButtonWidget","rel":["nofollow"],"framed":false,"icon":"bellOutline","label":"(discussiontools-topicsubscription-button-subscribe-label)","title":"(discussiontools-topicsubscription-button-subscribe-tooltip)","flags":["progressive"],"classes":["ext-discussiontools-init-section-subscribeButton"]}'><a role='button' title='(discussiontools-topicsubscription-button-subscribe-tooltip)' tabindex='0' rel='nofollow' class='oo-ui-buttonElement-button'><span class='oo-ui-iconElement-icon oo-ui-icon-bellOutline oo-ui-image-progressive'></span><span class='oo-ui-labelElement-label'>(discussiontools-topicsubscription-button-subscribe-label)</span><span class='oo-ui-indicatorElement-indicator oo-ui-indicatorElement-noIndicator oo-ui-image-progressive'></span></a></span></div></div></h2>
<p><span data-mw-comment-start="" id="c-Matma_Rex-2021-02-24T19:24:00.000Z-Heading_with_a_&quot;_quote"></span>Test. <a href="/wiki/User:Matma_Rex" title="User:Matma Rex">Matma Rex</a> (<a href="/wiki/User_talk:Matma_Rex" title="User talk:Matma Rex"><font color="green"><i>talk</i></font></a>) 19:24, 24 February 2021 (UTC)<span class="ext-discussiontools-init-replylink-buttons" data-mw-thread-id="c-Matma_Rex-2021-02-24T19:24:00.000Z-Heading_with_a_&quot;_quote"><span class="ext-discussiontools-init-replybutton oo-ui-widget oo-ui-widget-enabled oo-ui-buttonElement oo-ui-buttonElement-frameless oo-ui-iconElement oo-ui-labelElement oo-ui-flaggedElement-progressive oo-ui-buttonWidget" data-ooui='{"_":"OO.ui.ButtonWidget","rel":["nofollow"],"framed":false,"icon":"share","label":"(discussiontools-replybutton)","flags":["progressive"],"classes":["ext-discussiontools-init-replybutton"]}'><a role="button" tabindex="0" rel="nofollow" class="oo-ui-buttonElement-button"><span class="oo-ui-iconElement-icon oo-ui-icon-share oo-ui-image-progressive"></span><span class="oo-ui-labelElement-label">(discussiontools-replybutton)</span><span class="oo-ui-indicatorElement-indicator oo-ui-indicatorElement-noIndicator oo-ui-image-progressive"></span></a></span><span class="ext-discussiontools-init-replylink-bracket">[</span><a class="ext-discussiontools-init-replylink-reply" role="button" tabindex="0" href="">(discussiontools-replylink)</a><span class="ext-discussiontools-init-replylink-bracket">]</span></span><span data-mw-comment-end="c-Matma_Rex-2021-02-24T19:24:00.000Z-Heading_with_a_&quot;_quote"></span>
</p>
<!--__DTLATESTCOMMENTPAGE__{"id":"c-Matma_Rex-2021-02-24T19:24:00.000Z-Heading_with_a_\"_quote","timestamp":"2021-02-24T19:24:00.000Z","author":"Matma Rex","heading":{"headingLevel":2,"name":"h-Matma_Rex-2021-02-24T19:24:00.000Z","type":"heading","level":0,"id":"h-Heading_with_a_\"_quote-2021-02-24T19:24:00.000Z","replies":["c-Matma_Rex-2021-02-24T19:24:00.000Z-Heading_with_a_\"_quote"],"text":"Heading with a \" quote","linkableTitle":"Heading with a \" quote"}}__-->
<!--__DTLATESTCOMMENTPAGE__{"id":"c-Matma_Rex-2021-02-24T19:24:00.000Z-Heading_with_a_\"_quote","timestamp":"2021-02-24T19:24:00.000Z","author":"Matma Rex","heading":{"headingLevel":2,"name":"h-Matma_Rex-2021-02-24T19:24:00.000Z","type":"heading","level":0,"id":"h-Heading_with_a_\"_quote-2021-02-24T19:24:00.000Z","replies":["c-Matma_Rex-2021-02-24T19:24:00.000Z-Heading_with_a_\"_quote"],"text":"Heading with a \" quote","linkableTitle":"Heading with a \" quote"}}__--><!--__DTHASLEDECONTENT__-->
<pre>
{
"wgDiscussionToolsPageThreads": [

View file

@ -413,7 +413,7 @@ Transclusion expansion time report (%,ms,calls,template)
<!-- Saved in parser cache with key frwiki:pcache:idhash:114261-1!canonical and timestamp 20200527180053 and revision id 170426593
-->
</div><!--__DTLATESTCOMMENTPAGE__{"id":"c-J'en_passe_et_des_meilleurs-2020-05-04T12:56:00.000Z-Touam-2020-05-04T12:52:00.000Z","timestamp":"2020-05-04T12:56:00.000Z","author":"J'en passe et des meilleurs","heading":{"headingLevel":2,"name":"h-Marvoir-2020-05-01T13:09:00.000Z","type":"heading","level":0,"id":"h-Le_Monde_arros\u00e9_par_Bill_Gates-2020-05-01T13:09:00.000Z","replies":["c-Marvoir-2020-05-01T13:09:00.000Z-Le_Monde_arros\u00e9_par_Bill_Gates"],"text":"Le Monde arros\u00e9 par Bill Gates","linkableTitle":"Le Monde arros\u00e9 par Bill Gates"}}__-->
</div><!--__DTLATESTCOMMENTPAGE__{"id":"c-J'en_passe_et_des_meilleurs-2020-05-04T12:56:00.000Z-Touam-2020-05-04T12:52:00.000Z","timestamp":"2020-05-04T12:56:00.000Z","author":"J'en passe et des meilleurs","heading":{"headingLevel":2,"name":"h-Marvoir-2020-05-01T13:09:00.000Z","type":"heading","level":0,"id":"h-Le_Monde_arros\u00e9_par_Bill_Gates-2020-05-01T13:09:00.000Z","replies":["c-Marvoir-2020-05-01T13:09:00.000Z-Le_Monde_arros\u00e9_par_Bill_Gates"],"text":"Le Monde arros\u00e9 par Bill Gates","linkableTitle":"Le Monde arros\u00e9 par Bill Gates"}}__--><!--__DTHASLEDECONTENT__-->
<pre>
{
"wgDiscussionToolsPageThreads": [

View file

@ -413,7 +413,7 @@ Transclusion expansion time report (%,ms,calls,template)
<!-- Saved in parser cache with key frwiki:pcache:idhash:114261-1!canonical and timestamp 20200527180053 and revision id 170426593
-->
</div><!--__DTLATESTCOMMENTPAGE__{"id":"c-J'en_passe_et_des_meilleurs-2020-05-04T12:56:00.000Z-Touam-2020-05-04T12:52:00.000Z","timestamp":"2020-05-04T12:56:00.000Z","author":"J'en passe et des meilleurs","heading":{"headingLevel":2,"name":"h-Marvoir-2020-05-01T13:09:00.000Z","type":"heading","level":0,"id":"h-Le_Monde_arros\u00e9_par_Bill_Gates-2020-05-01T13:09:00.000Z","replies":["c-Marvoir-2020-05-01T13:09:00.000Z-Le_Monde_arros\u00e9_par_Bill_Gates"],"text":"Le Monde arros\u00e9 par Bill Gates","linkableTitle":"Le Monde arros\u00e9 par Bill Gates"}}__-->
</div><!--__DTLATESTCOMMENTPAGE__{"id":"c-J'en_passe_et_des_meilleurs-2020-05-04T12:56:00.000Z-Touam-2020-05-04T12:52:00.000Z","timestamp":"2020-05-04T12:56:00.000Z","author":"J'en passe et des meilleurs","heading":{"headingLevel":2,"name":"h-Marvoir-2020-05-01T13:09:00.000Z","type":"heading","level":0,"id":"h-Le_Monde_arros\u00e9_par_Bill_Gates-2020-05-01T13:09:00.000Z","replies":["c-Marvoir-2020-05-01T13:09:00.000Z-Le_Monde_arros\u00e9_par_Bill_Gates"],"text":"Le Monde arros\u00e9 par Bill Gates","linkableTitle":"Le Monde arros\u00e9 par Bill Gates"}}__--><!--__DTHASLEDECONTENT__-->
<pre>
{
"wgDiscussionToolsPageThreads": [

View file

@ -375,7 +375,7 @@ Transclusion expansion time report (%,ms,calls,template)
3.31% 6.572 4 Template:Non_firmato
3.28% 6.523 1 Template:A_fine_pagina
-->
</div><!--__DTLATESTCOMMENTPAGE__{"id":"c-ValeJappo-2020-11-23T12:08:00.000Z-Ferdinando_Fedi-2020-11-23T11:55:00.000Z","timestamp":"2020-11-23T12:08:00.000Z","author":"ValeJappo","heading":{"headingLevel":2,"name":"h-Ferdinando_Fedi-2020-11-23T11:55:00.000Z","type":"heading","level":0,"id":"h-Inserimento_voce_su_Wikipedia-2020-11-23T11:55:00.000Z","replies":["c-Ferdinando_Fedi-2020-11-23T11:55:00.000Z-Inserimento_voce_su_Wikipedia"],"text":"Inserimento voce su Wikipedia","linkableTitle":"Inserimento voce su Wikipedia"}}__-->
</div><!--__DTLATESTCOMMENTPAGE__{"id":"c-ValeJappo-2020-11-23T12:08:00.000Z-Ferdinando_Fedi-2020-11-23T11:55:00.000Z","timestamp":"2020-11-23T12:08:00.000Z","author":"ValeJappo","heading":{"headingLevel":2,"name":"h-Ferdinando_Fedi-2020-11-23T11:55:00.000Z","type":"heading","level":0,"id":"h-Inserimento_voce_su_Wikipedia-2020-11-23T11:55:00.000Z","replies":["c-Ferdinando_Fedi-2020-11-23T11:55:00.000Z-Inserimento_voce_su_Wikipedia"],"text":"Inserimento voce su Wikipedia","linkableTitle":"Inserimento voce su Wikipedia"}}__--><!--__DTHASLEDECONTENT__-->
<pre>
{
"wgDiscussionToolsPageThreads": [

View file

@ -375,7 +375,7 @@ Transclusion expansion time report (%,ms,calls,template)
3.31% 6.572 4 Template:Non_firmato
3.28% 6.523 1 Template:A_fine_pagina
-->
</div><!--__DTLATESTCOMMENTPAGE__{"id":"c-ValeJappo-2020-11-23T12:08:00.000Z-Ferdinando_Fedi-2020-11-23T11:55:00.000Z","timestamp":"2020-11-23T12:08:00.000Z","author":"ValeJappo","heading":{"headingLevel":2,"name":"h-Ferdinando_Fedi-2020-11-23T11:55:00.000Z","type":"heading","level":0,"id":"h-Inserimento_voce_su_Wikipedia-2020-11-23T11:55:00.000Z","replies":["c-Ferdinando_Fedi-2020-11-23T11:55:00.000Z-Inserimento_voce_su_Wikipedia"],"text":"Inserimento voce su Wikipedia","linkableTitle":"Inserimento voce su Wikipedia"}}__-->
</div><!--__DTLATESTCOMMENTPAGE__{"id":"c-ValeJappo-2020-11-23T12:08:00.000Z-Ferdinando_Fedi-2020-11-23T11:55:00.000Z","timestamp":"2020-11-23T12:08:00.000Z","author":"ValeJappo","heading":{"headingLevel":2,"name":"h-Ferdinando_Fedi-2020-11-23T11:55:00.000Z","type":"heading","level":0,"id":"h-Inserimento_voce_su_Wikipedia-2020-11-23T11:55:00.000Z","replies":["c-Ferdinando_Fedi-2020-11-23T11:55:00.000Z-Inserimento_voce_su_Wikipedia"],"text":"Inserimento voce su Wikipedia","linkableTitle":"Inserimento voce su Wikipedia"}}__--><!--__DTHASLEDECONTENT__-->
<pre>
{
"wgDiscussionToolsPageThreads": [

View file

@ -418,7 +418,7 @@ Transclusion expansion time report (%,ms,calls,template)
<!-- Saved in parser cache with key plwiki:pcache:idhash:4396356-1!canonical and timestamp 20191024124728 and revision id 55171451
-->
</div><!--__DTLATESTCOMMENTPAGE__{"id":"c-Malarz_pl-2018-10-31T14:55:00.000Z-Ciacho5-2018-10-31T13:57:00.000Z","timestamp":"2018-10-31T14:55:00.000Z","author":"Malarz pl","heading":{"headingLevel":2,"name":"h-Ciacho5-2018-10-31T13:57:00.000Z","type":"heading","level":0,"id":"h-Szablon?_do_zrobienia?-2018-10-31T13:57:00.000Z","replies":["c-Ciacho5-2018-10-31T13:57:00.000Z-Szablon?_do_zrobienia?"],"text":"Szablon? do zrobienia?","linkableTitle":"Szablon? do zrobienia?"}}__-->
</div><!--__DTLATESTCOMMENTPAGE__{"id":"c-Malarz_pl-2018-10-31T14:55:00.000Z-Ciacho5-2018-10-31T13:57:00.000Z","timestamp":"2018-10-31T14:55:00.000Z","author":"Malarz pl","heading":{"headingLevel":2,"name":"h-Ciacho5-2018-10-31T13:57:00.000Z","type":"heading","level":0,"id":"h-Szablon?_do_zrobienia?-2018-10-31T13:57:00.000Z","replies":["c-Ciacho5-2018-10-31T13:57:00.000Z-Szablon?_do_zrobienia?"],"text":"Szablon? do zrobienia?","linkableTitle":"Szablon? do zrobienia?"}}__--><!--__DTHASLEDECONTENT__-->
<pre>
{
"wgDiscussionToolsPageThreads": [

View file

@ -418,7 +418,7 @@ Transclusion expansion time report (%,ms,calls,template)
<!-- Saved in parser cache with key plwiki:pcache:idhash:4396356-1!canonical and timestamp 20191024124728 and revision id 55171451
-->
</div><!--__DTLATESTCOMMENTPAGE__{"id":"c-Malarz_pl-2018-10-31T14:55:00.000Z-Ciacho5-2018-10-31T13:57:00.000Z","timestamp":"2018-10-31T14:55:00.000Z","author":"Malarz pl","heading":{"headingLevel":2,"name":"h-Ciacho5-2018-10-31T13:57:00.000Z","type":"heading","level":0,"id":"h-Szablon?_do_zrobienia?-2018-10-31T13:57:00.000Z","replies":["c-Ciacho5-2018-10-31T13:57:00.000Z-Szablon?_do_zrobienia?"],"text":"Szablon? do zrobienia?","linkableTitle":"Szablon? do zrobienia?"}}__-->
</div><!--__DTLATESTCOMMENTPAGE__{"id":"c-Malarz_pl-2018-10-31T14:55:00.000Z-Ciacho5-2018-10-31T13:57:00.000Z","timestamp":"2018-10-31T14:55:00.000Z","author":"Malarz pl","heading":{"headingLevel":2,"name":"h-Ciacho5-2018-10-31T13:57:00.000Z","type":"heading","level":0,"id":"h-Szablon?_do_zrobienia?-2018-10-31T13:57:00.000Z","replies":["c-Ciacho5-2018-10-31T13:57:00.000Z-Szablon?_do_zrobienia?"],"text":"Szablon? do zrobienia?","linkableTitle":"Szablon? do zrobienia?"}}__--><!--__DTHASLEDECONTENT__-->
<pre>
{
"wgDiscussionToolsPageThreads": [

View file

@ -6,7 +6,7 @@
<p><span data-mw-comment-start="" id="c-Matma_Rex-20220715000000-Test_future"></span>Hello from the future! <a href="http://localhost/wiki/User:Matma_Rex" title="User:Matma Rex">Matma Rex</a> (<a href="http://localhost/wiki/User_talk:Matma_Rex" title="User talk:Matma Rex">talk</a>) 00:00, 15 July 2022 (UTC)<span class="ext-discussiontools-init-replylink-buttons" data-mw-thread-id="c-Matma_Rex-20220715000000-Test_future"><span class="ext-discussiontools-init-replybutton oo-ui-widget oo-ui-widget-enabled oo-ui-buttonElement oo-ui-buttonElement-frameless oo-ui-labelElement oo-ui-flaggedElement-progressive oo-ui-buttonWidget" data-ooui='{"_":"OO.ui.ButtonWidget","rel":["nofollow"],"framed":false,"label":"(discussiontools-replybutton)","flags":["progressive"],"classes":["ext-discussiontools-init-replybutton"]}'><a role="button" tabindex="0" rel="nofollow" class="oo-ui-buttonElement-button"><span class="oo-ui-iconElement-icon oo-ui-iconElement-noIcon oo-ui-image-progressive"></span><span class="oo-ui-labelElement-label">(discussiontools-replybutton)</span><span class="oo-ui-indicatorElement-indicator oo-ui-indicatorElement-noIndicator oo-ui-image-progressive"></span></a></span><span class="ext-discussiontools-init-replylink-bracket">[</span><a class="ext-discussiontools-init-replylink-reply" role="button" tabindex="0" href="">(discussiontools-replylink)</a><span class="ext-discussiontools-init-replylink-bracket">]</span></span><span data-mw-comment-end="c-Matma_Rex-20220715000000-Test_future"></span>
</p>
</div>
<!--__DTLATESTCOMMENTPAGE__{"id":"c-Matma_Rex-20220715000000-Test_future","timestamp":"20220715000000","author":"Matma Rex","heading":{"headingLevel":2,"name":"h-Matma_Rex-20220715000000","type":"heading","level":0,"id":"h-Test_future-20220715000000","replies":["c-Matma_Rex-20220715000000-Test_future"],"text":"Test future","linkableTitle":"Test future"}}__-->
<!--__DTLATESTCOMMENTPAGE__{"id":"c-Matma_Rex-20220715000000-Test_future","timestamp":"20220715000000","author":"Matma Rex","heading":{"headingLevel":2,"name":"h-Matma_Rex-20220715000000","type":"heading","level":0,"id":"h-Test_future-20220715000000","replies":["c-Matma_Rex-20220715000000-Test_future"],"text":"Test future","linkableTitle":"Test future"}}__--><!--__DTHASLEDECONTENT__-->
<pre>
{
"wgDiscussionToolsPageThreads": [

View file

@ -6,7 +6,7 @@
<p><span data-mw-comment-start="" id="c-Matma_Rex-20220715000000-Test_future"></span>Hello from the future! <a href="http://localhost/wiki/User:Matma_Rex" title="User:Matma Rex">Matma Rex</a> (<a href="http://localhost/wiki/User_talk:Matma_Rex" title="User talk:Matma Rex">talk</a>) 00:00, 15 July 2022 (UTC)<span class="ext-discussiontools-init-replylink-buttons" data-mw-thread-id="c-Matma_Rex-20220715000000-Test_future"><span class="ext-discussiontools-init-replybutton oo-ui-widget oo-ui-widget-enabled oo-ui-buttonElement oo-ui-buttonElement-frameless oo-ui-iconElement oo-ui-labelElement oo-ui-flaggedElement-progressive oo-ui-buttonWidget" data-ooui='{"_":"OO.ui.ButtonWidget","rel":["nofollow"],"framed":false,"icon":"share","label":"(discussiontools-replybutton)","flags":["progressive"],"classes":["ext-discussiontools-init-replybutton"]}'><a role="button" tabindex="0" rel="nofollow" class="oo-ui-buttonElement-button"><span class="oo-ui-iconElement-icon oo-ui-icon-share oo-ui-image-progressive"></span><span class="oo-ui-labelElement-label">(discussiontools-replybutton)</span><span class="oo-ui-indicatorElement-indicator oo-ui-indicatorElement-noIndicator oo-ui-image-progressive"></span></a></span><span class="ext-discussiontools-init-replylink-bracket">[</span><a class="ext-discussiontools-init-replylink-reply" role="button" tabindex="0" href="">(discussiontools-replylink)</a><span class="ext-discussiontools-init-replylink-bracket">]</span></span><span data-mw-comment-end="c-Matma_Rex-20220715000000-Test_future"></span>
</p>
</div>
<!--__DTLATESTCOMMENTPAGE__{"id":"c-Matma_Rex-20220715000000-Test_future","timestamp":"20220715000000","author":"Matma Rex","heading":{"headingLevel":2,"name":"h-Matma_Rex-20220715000000","type":"heading","level":0,"id":"h-Test_future-20220715000000","replies":["c-Matma_Rex-20220715000000-Test_future"],"text":"Test future","linkableTitle":"Test future"}}__-->
<!--__DTLATESTCOMMENTPAGE__{"id":"c-Matma_Rex-20220715000000-Test_future","timestamp":"20220715000000","author":"Matma Rex","heading":{"headingLevel":2,"name":"h-Matma_Rex-20220715000000","type":"heading","level":0,"id":"h-Test_future-20220715000000","replies":["c-Matma_Rex-20220715000000-Test_future"],"text":"Test future","linkableTitle":"Test future"}}__--><!--__DTHASLEDECONTENT__-->
<pre>
{
"wgDiscussionToolsPageThreads": [

View file

@ -40,7 +40,7 @@
<span data-mw-comment-start="" id="c-9Aaron3-2021-12-10T10:52:00.000Z-9_dicembre"></span><link rel="mw-deduplicated-inline-style" href="mw-data:TemplateStyles:r108099627" about="#mwt484" typeof="mw:Extension/templatestyles mw:Transclusion" data-mw="{&quot;parts&quot;:[{&quot;template&quot;:{&quot;target&quot;:{&quot;wt&quot;:&quot;vandalo&quot;,&quot;href&quot;:&quot;./Template:Vandalo&quot;},&quot;params&quot;:{&quot;1&quot;:{&quot;wt&quot;:&quot;82.61.93.197&quot;}},&quot;i&quot;:0}}]}" id="mwBFs"/><div class="toccolours report" about="#mwt484"><link rel="mw-deduplicated-inline-style" href="mw-data:TemplateStyles:r119428018" about="#mwt488" typeof="mw:Extension/templatestyles" data-mw="{&quot;name&quot;:&quot;templatestyles&quot;,&quot;attrs&quot;:{&quot;src&quot;:&quot;Utente/styles.css&quot;}}"/><span class="utente-username">82.61.93.197</span> (<a rel="mw:WikiLink" href="./Discussioni_utente:82.61.93.197" title="Discussioni utente:82.61.93.197">discussioni</a><b><span typeof="mw:Entity"> </span>·</b> <a rel="mw:WikiLink" href="./Speciale:Contributi/82.61.93.197" title="Speciale:Contributi/82.61.93.197">contributi</a><b><span typeof="mw:Entity"> </span>·</b> <a rel="mw:WikiLink" href="./Speciale:ContributiCancellati/82.61.93.197" title="Speciale:ContributiCancellati/82.61.93.197">cancellati</a><b><span typeof="mw:Entity"> </span>·</b> <a rel="mw:WikiLink" href="./Speciale:Registri/82.61.93.197" title="Speciale:Registri/82.61.93.197">registri</a><b><span typeof="mw:Entity"> </span>·</b> <a rel="mw:WikiLink" href="./Speciale:Blocca/82.61.93.197" title="Speciale:Blocca/82.61.93.197">blocca</a><b><span typeof="mw:Entity"> </span>·</b> <span class="plainlinks"><a rel="mw:ExtLink" href="//it.wikipedia.org/w/index.php?title=Speciale:Registri&amp;type=block&amp;page=Utente:82.61.93.197" class="external text">blocchi</a></span><b><span typeof="mw:Entity"> </span>·</b> <a rel="mw:ExtLink" href="https://whois.domaintools.com/82.61.93.197" class="external text">whois</a>)</div><meta property="mw:PageProp/expectedUnconnectedPage" about="#mwt484"/><p about="#mwt489" typeof="mw:Transclusion" data-mw="{&quot;parts&quot;:[&quot; Continuo modifiche di informazioni non supportate da fonti. Andrebbero verificate anche gli altri edit. --[[Utente:9Aaron3|9Aaron3]] ([[Discussioni utente:9Aaron3|msg]]) 11:52, 10 dic 2021 (CET)\n\n&quot;,{&quot;template&quot;:{&quot;target&quot;:{&quot;wt&quot;:&quot;vandalo&quot;,&quot;href&quot;:&quot;./Template:Vandalo&quot;},&quot;params&quot;:{&quot;1&quot;:{&quot;wt&quot;:&quot;79.43.253.171&quot;}},&quot;i&quot;:0}}]}" id="mwBFw"> Continuo modifiche di informazioni non supportate da fonti. Andrebbero verificate anche gli altri edit. --<a rel="mw:WikiLink" href="./Utente:9Aaron3" title="Utente:9Aaron3">9Aaron3</a> (<a rel="mw:WikiLink" href="./Discussioni_utente:9Aaron3" title="Discussioni utente:9Aaron3">msg</a>) 11:52, 10 dic 2021 (CET)
<link rel="mw-deduplicated-inline-style" href="mw-data:TemplateStyles:r108099627" about="#mwt492" typeof="mw:Extension/templatestyles" data-mw="{&quot;name&quot;:&quot;templatestyles&quot;,&quot;attrs&quot;:{&quot;src&quot;:&quot;Vandalo/styles.css&quot;}}"/><span class="ext-discussiontools-init-replylink-buttons" data-mw-thread-id="c-9Aaron3-2021-12-10T10:52:00.000Z-9_dicembre"><span class="ext-discussiontools-init-replybutton oo-ui-widget oo-ui-widget-enabled oo-ui-buttonElement oo-ui-buttonElement-frameless oo-ui-labelElement oo-ui-flaggedElement-progressive oo-ui-buttonWidget" data-ooui='{"_":"OO.ui.ButtonWidget","rel":["nofollow"],"framed":false,"label":"(discussiontools-replybutton)","flags":["progressive"],"classes":["ext-discussiontools-init-replybutton"]}'><a role="button" tabindex="0" rel="nofollow" class="oo-ui-buttonElement-button"><span class="oo-ui-iconElement-icon oo-ui-iconElement-noIcon oo-ui-image-progressive"></span><span class="oo-ui-labelElement-label">(discussiontools-replybutton)</span><span class="oo-ui-indicatorElement-indicator oo-ui-indicatorElement-noIndicator oo-ui-image-progressive"></span></a></span><span class="ext-discussiontools-init-replylink-bracket">[</span><a class="ext-discussiontools-init-replylink-reply" role="button" tabindex="0" href="">(discussiontools-replylink)</a><span class="ext-discussiontools-init-replylink-bracket">]</span></span><span data-mw-comment-end="c-9Aaron3-2021-12-10T10:52:00.000Z-9_dicembre"></span></p><div class="toccolours report" about="#mwt489"><span data-mw-comment-start="" id="c-Moxmarco-2021-12-10T15:01:00.000Z-9_dicembre"></span><link rel="mw-deduplicated-inline-style" href="mw-data:TemplateStyles:r119428018" about="#mwt493" typeof="mw:Extension/templatestyles" data-mw="{&quot;name&quot;:&quot;templatestyles&quot;,&quot;attrs&quot;:{&quot;src&quot;:&quot;Utente/styles.css&quot;}}"/><span class="utente-username">79.43.253.171</span> (<a rel="mw:WikiLink" href="./Discussioni_utente:79.43.253.171" title="Discussioni utente:79.43.253.171">discussioni</a><b><span typeof="mw:Entity"> </span>·</b> <a rel="mw:WikiLink" href="./Speciale:Contributi/79.43.253.171" title="Speciale:Contributi/79.43.253.171">contributi</a><b><span typeof="mw:Entity"> </span>·</b> <a rel="mw:WikiLink" href="./Speciale:ContributiCancellati/79.43.253.171" title="Speciale:ContributiCancellati/79.43.253.171">cancellati</a><b><span typeof="mw:Entity"> </span>·</b> <a rel="mw:WikiLink" href="./Speciale:Registri/79.43.253.171" title="Speciale:Registri/79.43.253.171">registri</a><b><span typeof="mw:Entity"> </span>·</b> <a rel="mw:WikiLink" href="./Speciale:Blocca/79.43.253.171" title="Speciale:Blocca/79.43.253.171">blocca</a><b><span typeof="mw:Entity"> </span>·</b> <span class="plainlinks"><a rel="mw:ExtLink" href="//it.wikipedia.org/w/index.php?title=Speciale:Registri&amp;type=block&amp;page=Utente:79.43.253.171" class="external text">blocchi</a></span><b><span typeof="mw:Entity"> </span>·</b> <a rel="mw:ExtLink" href="https://whois.domaintools.com/79.43.253.171" class="external text">whois</a>)</div><meta property="mw:PageProp/expectedUnconnectedPage" about="#mwt489"/><p id="mwBF0"> write-only che inserisce speculazioni sul futuro o gli ascolti delle trasmissioni tv, avvisato, continua --<a rel="mw:WikiLink" href="./Utente:Moxmarco" title="Utente:Moxmarco" id="mwBF4"><span style="color:green" id="mwBF8"><b id="mwBGA">Moxmarco</b></span></a> <small id="mwBGE">(<a rel="mw:WikiLink" href="./Discussioni_utente:Moxmarco" title="Discussioni utente:Moxmarco" id="mwBGI">scrivimi</a>)</small> 16:01, 10 dic 2021 (CET)<span class="ext-discussiontools-init-replylink-buttons" data-mw-thread-id="c-Moxmarco-2021-12-10T15:01:00.000Z-9_dicembre"><span class="ext-discussiontools-init-replybutton oo-ui-widget oo-ui-widget-enabled oo-ui-buttonElement oo-ui-buttonElement-frameless oo-ui-labelElement oo-ui-flaggedElement-progressive oo-ui-buttonWidget" data-ooui='{"_":"OO.ui.ButtonWidget","rel":["nofollow"],"framed":false,"label":"(discussiontools-replybutton)","flags":["progressive"],"classes":["ext-discussiontools-init-replybutton"]}'><a role="button" tabindex="0" rel="nofollow" class="oo-ui-buttonElement-button"><span class="oo-ui-iconElement-icon oo-ui-iconElement-noIcon oo-ui-image-progressive"></span><span class="oo-ui-labelElement-label">(discussiontools-replybutton)</span><span class="oo-ui-indicatorElement-indicator oo-ui-indicatorElement-noIndicator oo-ui-image-progressive"></span></a></span><span class="ext-discussiontools-init-replylink-bracket">[</span><a class="ext-discussiontools-init-replylink-reply" role="button" tabindex="0" href="">(discussiontools-replylink)</a><span class="ext-discussiontools-init-replylink-bracket">]</span></span><span data-mw-comment-end="c-Moxmarco-2021-12-10T15:01:00.000Z-9_dicembre"></span></p></section>
<!--__DTLATESTCOMMENTPAGE__{"id":"c-Moxmarco-2021-12-10T15:01:00.000Z-9_dicembre","timestamp":"2021-12-10T15:01:00.000Z","author":"Moxmarco"}__-->
<!--__DTLATESTCOMMENTPAGE__{"id":"c-Moxmarco-2021-12-10T15:01:00.000Z-9_dicembre","timestamp":"2021-12-10T15:01:00.000Z","author":"Moxmarco"}__--><!--__DTHASLEDECONTENT__-->
<pre>
{
"wgDiscussionToolsPageThreads": [

View file

@ -40,7 +40,7 @@
<span data-mw-comment-start="" id="c-9Aaron3-2021-12-10T10:52:00.000Z-9_dicembre"></span><link rel="mw-deduplicated-inline-style" href="mw-data:TemplateStyles:r108099627" about="#mwt484" typeof="mw:Extension/templatestyles mw:Transclusion" data-mw="{&quot;parts&quot;:[{&quot;template&quot;:{&quot;target&quot;:{&quot;wt&quot;:&quot;vandalo&quot;,&quot;href&quot;:&quot;./Template:Vandalo&quot;},&quot;params&quot;:{&quot;1&quot;:{&quot;wt&quot;:&quot;82.61.93.197&quot;}},&quot;i&quot;:0}}]}" id="mwBFs"/><div class="toccolours report" about="#mwt484"><link rel="mw-deduplicated-inline-style" href="mw-data:TemplateStyles:r119428018" about="#mwt488" typeof="mw:Extension/templatestyles" data-mw="{&quot;name&quot;:&quot;templatestyles&quot;,&quot;attrs&quot;:{&quot;src&quot;:&quot;Utente/styles.css&quot;}}"/><span class="utente-username">82.61.93.197</span> (<a rel="mw:WikiLink" href="./Discussioni_utente:82.61.93.197" title="Discussioni utente:82.61.93.197">discussioni</a><b><span typeof="mw:Entity"> </span>·</b> <a rel="mw:WikiLink" href="./Speciale:Contributi/82.61.93.197" title="Speciale:Contributi/82.61.93.197">contributi</a><b><span typeof="mw:Entity"> </span>·</b> <a rel="mw:WikiLink" href="./Speciale:ContributiCancellati/82.61.93.197" title="Speciale:ContributiCancellati/82.61.93.197">cancellati</a><b><span typeof="mw:Entity"> </span>·</b> <a rel="mw:WikiLink" href="./Speciale:Registri/82.61.93.197" title="Speciale:Registri/82.61.93.197">registri</a><b><span typeof="mw:Entity"> </span>·</b> <a rel="mw:WikiLink" href="./Speciale:Blocca/82.61.93.197" title="Speciale:Blocca/82.61.93.197">blocca</a><b><span typeof="mw:Entity"> </span>·</b> <span class="plainlinks"><a rel="mw:ExtLink" href="//it.wikipedia.org/w/index.php?title=Speciale:Registri&amp;type=block&amp;page=Utente:82.61.93.197" class="external text">blocchi</a></span><b><span typeof="mw:Entity"> </span>·</b> <a rel="mw:ExtLink" href="https://whois.domaintools.com/82.61.93.197" class="external text">whois</a>)</div><meta property="mw:PageProp/expectedUnconnectedPage" about="#mwt484"/><p about="#mwt489" typeof="mw:Transclusion" data-mw="{&quot;parts&quot;:[&quot; Continuo modifiche di informazioni non supportate da fonti. Andrebbero verificate anche gli altri edit. --[[Utente:9Aaron3|9Aaron3]] ([[Discussioni utente:9Aaron3|msg]]) 11:52, 10 dic 2021 (CET)\n\n&quot;,{&quot;template&quot;:{&quot;target&quot;:{&quot;wt&quot;:&quot;vandalo&quot;,&quot;href&quot;:&quot;./Template:Vandalo&quot;},&quot;params&quot;:{&quot;1&quot;:{&quot;wt&quot;:&quot;79.43.253.171&quot;}},&quot;i&quot;:0}}]}" id="mwBFw"> Continuo modifiche di informazioni non supportate da fonti. Andrebbero verificate anche gli altri edit. --<a rel="mw:WikiLink" href="./Utente:9Aaron3" title="Utente:9Aaron3">9Aaron3</a> (<a rel="mw:WikiLink" href="./Discussioni_utente:9Aaron3" title="Discussioni utente:9Aaron3">msg</a>) 11:52, 10 dic 2021 (CET)
<link rel="mw-deduplicated-inline-style" href="mw-data:TemplateStyles:r108099627" about="#mwt492" typeof="mw:Extension/templatestyles" data-mw="{&quot;name&quot;:&quot;templatestyles&quot;,&quot;attrs&quot;:{&quot;src&quot;:&quot;Vandalo/styles.css&quot;}}"/><span class="ext-discussiontools-init-replylink-buttons" data-mw-thread-id="c-9Aaron3-2021-12-10T10:52:00.000Z-9_dicembre"><span class="ext-discussiontools-init-replybutton oo-ui-widget oo-ui-widget-enabled oo-ui-buttonElement oo-ui-buttonElement-frameless oo-ui-iconElement oo-ui-labelElement oo-ui-flaggedElement-progressive oo-ui-buttonWidget" data-ooui='{"_":"OO.ui.ButtonWidget","rel":["nofollow"],"framed":false,"icon":"share","label":"(discussiontools-replybutton)","flags":["progressive"],"classes":["ext-discussiontools-init-replybutton"]}'><a role="button" tabindex="0" rel="nofollow" class="oo-ui-buttonElement-button"><span class="oo-ui-iconElement-icon oo-ui-icon-share oo-ui-image-progressive"></span><span class="oo-ui-labelElement-label">(discussiontools-replybutton)</span><span class="oo-ui-indicatorElement-indicator oo-ui-indicatorElement-noIndicator oo-ui-image-progressive"></span></a></span><span class="ext-discussiontools-init-replylink-bracket">[</span><a class="ext-discussiontools-init-replylink-reply" role="button" tabindex="0" href="">(discussiontools-replylink)</a><span class="ext-discussiontools-init-replylink-bracket">]</span></span><span data-mw-comment-end="c-9Aaron3-2021-12-10T10:52:00.000Z-9_dicembre"></span></p><div class="toccolours report" about="#mwt489"><span data-mw-comment-start="" id="c-Moxmarco-2021-12-10T15:01:00.000Z-9_dicembre"></span><link rel="mw-deduplicated-inline-style" href="mw-data:TemplateStyles:r119428018" about="#mwt493" typeof="mw:Extension/templatestyles" data-mw="{&quot;name&quot;:&quot;templatestyles&quot;,&quot;attrs&quot;:{&quot;src&quot;:&quot;Utente/styles.css&quot;}}"/><span class="utente-username">79.43.253.171</span> (<a rel="mw:WikiLink" href="./Discussioni_utente:79.43.253.171" title="Discussioni utente:79.43.253.171">discussioni</a><b><span typeof="mw:Entity"> </span>·</b> <a rel="mw:WikiLink" href="./Speciale:Contributi/79.43.253.171" title="Speciale:Contributi/79.43.253.171">contributi</a><b><span typeof="mw:Entity"> </span>·</b> <a rel="mw:WikiLink" href="./Speciale:ContributiCancellati/79.43.253.171" title="Speciale:ContributiCancellati/79.43.253.171">cancellati</a><b><span typeof="mw:Entity"> </span>·</b> <a rel="mw:WikiLink" href="./Speciale:Registri/79.43.253.171" title="Speciale:Registri/79.43.253.171">registri</a><b><span typeof="mw:Entity"> </span>·</b> <a rel="mw:WikiLink" href="./Speciale:Blocca/79.43.253.171" title="Speciale:Blocca/79.43.253.171">blocca</a><b><span typeof="mw:Entity"> </span>·</b> <span class="plainlinks"><a rel="mw:ExtLink" href="//it.wikipedia.org/w/index.php?title=Speciale:Registri&amp;type=block&amp;page=Utente:79.43.253.171" class="external text">blocchi</a></span><b><span typeof="mw:Entity"> </span>·</b> <a rel="mw:ExtLink" href="https://whois.domaintools.com/79.43.253.171" class="external text">whois</a>)</div><meta property="mw:PageProp/expectedUnconnectedPage" about="#mwt489"/><p id="mwBF0"> write-only che inserisce speculazioni sul futuro o gli ascolti delle trasmissioni tv, avvisato, continua --<a rel="mw:WikiLink" href="./Utente:Moxmarco" title="Utente:Moxmarco" id="mwBF4"><span style="color:green" id="mwBF8"><b id="mwBGA">Moxmarco</b></span></a> <small id="mwBGE">(<a rel="mw:WikiLink" href="./Discussioni_utente:Moxmarco" title="Discussioni utente:Moxmarco" id="mwBGI">scrivimi</a>)</small> 16:01, 10 dic 2021 (CET)<span class="ext-discussiontools-init-replylink-buttons" data-mw-thread-id="c-Moxmarco-2021-12-10T15:01:00.000Z-9_dicembre"><span class="ext-discussiontools-init-replybutton oo-ui-widget oo-ui-widget-enabled oo-ui-buttonElement oo-ui-buttonElement-frameless oo-ui-iconElement oo-ui-labelElement oo-ui-flaggedElement-progressive oo-ui-buttonWidget" data-ooui='{"_":"OO.ui.ButtonWidget","rel":["nofollow"],"framed":false,"icon":"share","label":"(discussiontools-replybutton)","flags":["progressive"],"classes":["ext-discussiontools-init-replybutton"]}'><a role="button" tabindex="0" rel="nofollow" class="oo-ui-buttonElement-button"><span class="oo-ui-iconElement-icon oo-ui-icon-share oo-ui-image-progressive"></span><span class="oo-ui-labelElement-label">(discussiontools-replybutton)</span><span class="oo-ui-indicatorElement-indicator oo-ui-indicatorElement-noIndicator oo-ui-image-progressive"></span></a></span><span class="ext-discussiontools-init-replylink-bracket">[</span><a class="ext-discussiontools-init-replylink-reply" role="button" tabindex="0" href="">(discussiontools-replylink)</a><span class="ext-discussiontools-init-replylink-bracket">]</span></span><span data-mw-comment-end="c-Moxmarco-2021-12-10T15:01:00.000Z-9_dicembre"></span></p></section>
<!--__DTLATESTCOMMENTPAGE__{"id":"c-Moxmarco-2021-12-10T15:01:00.000Z-9_dicembre","timestamp":"2021-12-10T15:01:00.000Z","author":"Moxmarco"}__-->
<!--__DTLATESTCOMMENTPAGE__{"id":"c-Moxmarco-2021-12-10T15:01:00.000Z-9_dicembre","timestamp":"2021-12-10T15:01:00.000Z","author":"Moxmarco"}__--><!--__DTHASLEDECONTENT__-->
<pre>
{
"wgDiscussionToolsPageThreads": [

View file

@ -160,7 +160,7 @@ Transclusion expansion time report (%,ms,calls,template)
<!-- Saved in parser cache with key nlwiki:pcache:idhash:5324919-1!canonical and timestamp 20210108193328 and revision id 57970619. Serialized with JSON.
-->
</div><!--__DTLATESTCOMMENTPAGE__{"id":"c-RYasmeen_(WMF)-2020-11-18T00:15:00.000Z-PPelberg_(WMF)-2020-04-09T22:31:00.000Z","timestamp":"2020-11-18T00:15:00.000Z","author":"RYasmeen (WMF)"}__-->
</div><!--__DTLATESTCOMMENTPAGE__{"id":"c-RYasmeen_(WMF)-2020-11-18T00:15:00.000Z-PPelberg_(WMF)-2020-04-09T22:31:00.000Z","timestamp":"2020-11-18T00:15:00.000Z","author":"RYasmeen (WMF)"}__--><!--__DTHASLEDECONTENT__-->
<pre>
{
"wgDiscussionToolsPageThreads": [

View file

@ -160,7 +160,7 @@ Transclusion expansion time report (%,ms,calls,template)
<!-- Saved in parser cache with key nlwiki:pcache:idhash:5324919-1!canonical and timestamp 20210108193328 and revision id 57970619. Serialized with JSON.
-->
</div><!--__DTLATESTCOMMENTPAGE__{"id":"c-RYasmeen_(WMF)-2020-11-18T00:15:00.000Z-PPelberg_(WMF)-2020-04-09T22:31:00.000Z","timestamp":"2020-11-18T00:15:00.000Z","author":"RYasmeen (WMF)"}__-->
</div><!--__DTLATESTCOMMENTPAGE__{"id":"c-RYasmeen_(WMF)-2020-11-18T00:15:00.000Z-PPelberg_(WMF)-2020-04-09T22:31:00.000Z","timestamp":"2020-11-18T00:15:00.000Z","author":"RYasmeen (WMF)"}__--><!--__DTHASLEDECONTENT__-->
<pre>
{
"wgDiscussionToolsPageThreads": [