![]() |
VOOZH | about |
Hi, I noticed you were seeing a bunch of blog links not working anymore. For instance:
It just hit me, I've seen that before; when they redid their blog, they changed the paths of all the entries. You just remove the 'day' directory, for instance:
I dunno if that changes things, but I thought I'd let you know! Cheers, – Sealbudsman talk/contr 19:29, 26 April 2016 (UTC)
I see that you frequently update interwiki links. This operation can be much simplified by using bot. You can use Pywikibot, AWB, or any other bot software. You'll just have to run a command and links on all wikis will be updated. But you need to create another account for it (DarkShadowBot, DarkBot, ShadowBot, TNTBot?). --dand0 (talk) 17:19, 7 May 2016 (UTC)
-simulate) and if everything is OK ask for the flag. And why is it not a Bot but a BOT? --dand0 (talk) 13:35, 8 May 2016 (UTC)
(skip, alternativePage) = self.disambigMismatch(page, counter)
skip = False #(skip, alternativePage) = self.disambigMismatch(page, counter)
WARNING: Http response status 404 WARNING: Non-JSON response received from server minecraft:nl; the server may be down. WARNING: Waiting 5 seconds before retrying.
user-config.py and minecraft_family.py content, please. Be sure that mylang is set to nl and bot nick is correct. Also check that in both config and family files URL is set to minecraft-nl.gamepedia.com. --dand0 (talk) 16:40, 9 May 2016 (UTC)As requested:
user-config.py
|
|---|
# Define language mylang = 'nl' # Define wich family to use family = 'minecraft' # Define which username to use usernames['minecraft']['nl'] = u'BrightShadowBOT' # Define encoding console_encoding = 'utf-8' # Something that has to do with transliteration stuff transliteration_target = None |
minecraft_family.py
|
|---|
from pywikibot import family
class Family(family.Family):
# Some interwiki replacements
interwiki_replacements = {
'pt': 'pt-br',
}
def __init__(self):
family.Family.__init__(self)
# family name
self.name = 'minecraft'
# URL's for the Wikis, sorted alphabetically
self.langs = {
'de': 'minecraft-de.gamepedia.com',
'en': 'minecraft.gamepedia.com',
'es': 'minecraft-es.gamepedia.com',
'fr': 'minecraft-fr.gamepedia.com',
'hu': 'minecraft-hu.gamepedia.com',
'it': 'minecraft-it.gamepedia.com',
'ja': 'minecraft-ja.gamepedia.com',
'ko': 'minecraft-ko.gamepedia.com',
'nl': 'minecraft-nl.gamepedia.com',
'pl': 'minecraft-pl.gamepedia.com',
'pt-br': 'minecraft-br.gamepedia.com',
'ru': 'minecraft-ru.gamepedia.com',
'zh': 'minecraft-zh.gamepedia.com',
}
def scriptpath(self, code):
return ''
# Path to /index.php
def path(self, code):
return '/index.php'
# Path to /api.php
def apipath(self, code):
return '/api.php'
# Use 'http://' instead of 'https://'
def protocol(self, code):
return "http"
# Something that has to do with authentication
def ignore_certificate_error(self, code):
return True
|
I hope you can do something with them... --DarkShadowTNT NL Admin (t ♦ c) 16:46, 9 May 2016 (UTC)
user-config.py
|
|---|
# -*- coding: utf-8 -*- family = 'minecraft' mylang = 'ru' usernames['minecraft']['ru'] = u'Dand0Bot' usernames['minecraft']['en'] = u'Dand0Bot' usernames['minecraft']['fr'] = u'Dand0Bot' usernames['minecraft']['de'] = u'Dand0Bot' usernames['minecraft']['pl'] = u'Dand0Bot' usernames['minecraft']['nl'] = u'Dand0Bot' usernames['minecraft']['es'] = u'Dand0Bot' usernames['minecraft']['hu'] = u'Dand0Bot' usernames['minecraft']['it'] = u'Dand0Bot' usernames['minecraft']['ja'] = u'Dand0Bot' usernames['minecraft']['ko'] = u'Dand0Bot' usernames['minecraft']['pt-br'] = u'Dand0Bot' usernames['minecraft']['zh'] = u'Dand0Bot' password_file = 'password.passwd' transliteration_target = console_encoding |
minecraft_family.py
|
|---|
# -*- coding: utf-8 -*-
"""
This family file was auto-generated by $Id: 4993fd66518a2c61c49b9e1bdf8f4b622459ee34 $
Configuration parameters:
url = http://minecraft-ru.gamepedia.com
name = minecraft
Please do not commit this to the Git repository!
"""
from pywikibot import family
from pywikibot.tools import deprecated
class Family(family.Family):
def __init__(self):
family.Family.__init__(self)
self.name = 'minecraft'
self.langs = {
'hu': 'minecraft-hu.gamepedia.com',
'de': 'minecraft-de.gamepedia.com',
'it': 'minecraft-it.gamepedia.com',
'en': 'minecraft.gamepedia.com',
'ru': 'minecraft-ru.gamepedia.com',
'zh': 'minecraft-zh.gamepedia.com',
'fr': 'minecraft-fr.gamepedia.com',
'pl': 'minecraft-pl.gamepedia.com',
'ko': 'minecraft-ko.gamepedia.com',
'nl': 'minecraft-nl.gamepedia.com',
'ja': 'minecraft-ja.gamepedia.com',
'pt-br': 'minecraft-br.gamepedia.com',
'es': 'minecraft-es.gamepedia.com',
}
def scriptpath(self, code):
return {
'hu': '',
'de': '',
'it': '',
'en': '',
'ru': '',
'zh': '',
'fr': '',
'pl': '',
'ko': '',
'nl': '',
'ja': '',
'pt-br': '',
'es': '',
}[code]
@deprecated('APISite.version()')
def version(self, code):
return {
'hu': u'1.26.2',
'de': u'1.26.2',
'it': u'1.26.2',
'en': u'1.26.2',
'ru': u'1.26.2',
'zh': u'1.26.2',
'fr': u'1.26.2',
'pl': u'1.26.2',
'ko': u'1.26.2',
'nl': u'1.26.2',
'ja': u'1.26.2',
'pt-br': u'1.26.2',
'es': u'1.26.2',
}[code]
|
Try regenerating files. --dand0 (talk) 15:49, 10 May 2016 (UTC)
WindowsError which states I'm using Windows 1 while I'm clearly using Windows 10. Posted about that issue on the talk page of Pywikibot, maybe they know a solution for this annoying issue... haha =( --DarkShadowTNT NL Admin (t ♦ c) 19:02, 10 May 2016 (UTC)
generate_user_files.py now works as intended. Hopefully this continues to work...
interwiki.py. --DarkShadowTNT NL Admin (t ♦ c) 19:19, 11 May 2016 (UTC)
interwiki.py_Alpha 1.0.1 (or pwb.py interwiki.py Alpha_1.0.1 or pwb.py interwiki Alpha_1.0.1). I got exactly the same output every time, except the command I used is different (see commands between brackets from the previous sentence). Note: [PRIVATE] in this table stands for the user I saved pywikibot to, but contain private details (my name to be exactly).| Command | Output |
|---|---|
interwiki.py Alpha_1.0.1pwb.py interwiki.py Alpha_1.0.1pwb.py interwiki Alpha_1.0.1
|
C:\Users\[PRIVATE]\Documents\pywikibot\core_stable>interwiki.py Alpha_1.0.1 Retrieving 1 pages from minecraft:nl. [[nl:Alpha 1.0.1]]: [[nl:Alpha 1.0.1]] gives new interwiki [[en:Alpha 1.0.1]] [[nl:Alpha 1.0.1]]: [[nl:Alpha 1.0.1]] gives new interwiki [[ru:Alpha 1.0.1]] Retrieving 1 pages from minecraft:ru. Retrieving 1 pages from minecraft:en. ======Post-processing [[nl:Alpha 1.0.1]]====== WARNING: minecraft: [[ru:Alpha 1.0.1]] does not link to [[nl:Alpha 1.0.1]] WARNING: minecraft: [[en:Alpha 1.0.1]] does not link to [[ru:Alpha 1.0.1]] |
YOU REVERTED END CITY BEFORE I DID. HOW DARE YOU?? I WAS ABOUT TO ASK FOR SPECIAL THANKS AND GAMEPEDIA PRO, BUT YOUR EXISTENCE RUINED IT. 45.152.182.152 14:14, 13 April 2020 (UTC)
DARTH VADER: NOOOOOOOOOOOOOOOOOOOOOO 45.152.182.152 14:20, 13 April 2020 (UTC)
There's a music called A Familiar Room that won't be played in Bedrock Edition due to a nasty bug. 2001:F90:40E0:185D:B0BD:91EA:C69A:F2B5 05:31, 21 June 2024 (UTC)
All the music are shortened to 30 secs. What the fuck is that??? Revert it back or I'll kick you out. Even if revert it back at the wrong time. Music revert time is July 5, same as my birthday. 2001:F90:40E0:185D:B0BD:91EA:C69A:F2B5 05:34, 21 June 2024 (UTC)