[08:14:07] Not sure whether this is the right group. Anyone facing this intermittently while trying to access Phabricator? : https://tools-static.wmflabs.org/bridgebot/fcfe6528/file_71051.jpg [08:19:25] Another one.. : https://tools-static.wmflabs.org/bridgebot/292cb8da/file_71052.jpg [10:08:09] not sure if there is a "right place" on the telegram side. [10:08:09] you should collect the data mentioned at https://wikitech-static.wikimedia.org/wiki/Reporting_a_connectivity_issue (re @Yono: Not sure whether this is the right group. Anyone facing this intermittently while trying to access Phabricator?) [16:48:21] !log toolsbeta extend the volume toolforge-prometheus-a to 20G [16:49:20] stashbot: you there? [16:49:20] See https://wikitech.wikimedia.org/wiki/Tool:Stashbot for help. [16:49:26] o_O [16:49:45] hmm... weird [16:49:45] ohhh, dcaro I think your message has a space at the beginning and that’s why the !log wasn’t processed? o_O [16:49:50] :facepalm: [16:49:55] !log toolsbeta extend the volume toolforge-prometheus-a to 20G [16:49:58] Logged the message at https://wikitech.wikimedia.org/wiki/Nova_Resource:Toolsbeta/SAL [16:50:00] yay [16:50:05] thanks :) [16:50:08] np ^^ [19:35:24] Hello, I have a newbie question about using PAWS terminal. [19:43:49] The command "pwb.py listpages" sometimes works fine, and sometimes doesn't, and I don't know why. [19:43:49] E.g., if I write the following to search an article of the German WP by using an archive number, it works: [19:43:49] @PAWS:~$ pwb.py listpages -lang:de -ns:0 -weblink:"schack.se" -grep:"20141216220025" [19:43:49] Retrieving 50 pages from wikipedia:de. [19:43:49] Retrieving 1 pages from wikipedia:de. [19:43:50] 1 Elitserien (Schach) 1997/98 [19:43:50] With number 20141216220025, I can find an article. [19:43:51] However, if I search for another article (which exists), the search doesn't work: [19:43:51] @PAWS:~$ pwb.py listpages -lang:de -ns:0 -weblink:"schack.se" -grep:"20141216203033" [19:43:52] Retrieving 50 pages from wikipedia:de. [19:43:52] Retrieving 1 pages from wikipedia:de. [19:43:53] If I use WP search, e.g. insource:"20141216203033", I can find the correct article "Division I (Schach) 1966". [19:43:53] What does this mean? Does my workbook use an old or defect replica of WP, or do I have to configure s.th.? [19:43:54] Best regards [19:52:15] I have no idea and don’t know enough about pywikibot to investigate, sorry :( [19:52:32] I can reproduce the behavior locally though, so I doubt it’s PAWS-specific [19:53:12] aha, got it! try this: [19:53:19] pwb.py listpages -lang:de -ns:0 -weblink:"https://tfsarkiv.schack.se" -grep:"20141216203033" [19:53:23] T_Wirbitzki: ^ [19:53:31] Thank you for reproducing the behavior! [19:54:11] https://de.wikipedia.org/wiki/Elitserien_(Schach)_1997/98 was found by the other command because it also has an HTTP link to schack.se [19:54:15] (the last one, „Endstand im Ergebnisbulletin…“) [19:54:42] but link search is protocol-specific and most links use HTTPS, so -weblink:"schack.se" only selected relatively few articles [19:54:50] and Division I (Schach) 1966 happened to not be one of them [19:55:00] Yes, it works, indeed. Thank you so much! [19:55:29] compare https://de.wikipedia.org/w/index.php?title=Spezial:Weblinksuche&limit=500&offset=0&target=http%3A%2F%2Fschack.se (71 results) with https://de.wikipedia.org/w/index.php?title=Spezial:Weblinksuche&limit=500&offset=0&target=https%3A%2F%2Fschack.se (277 results) [19:55:30] :) [19:56:26] I used the tool one year ago, and I forgot some of the specials. [19:56:26] As I understand now, the parameter -weblink must be used with complete URLs from the beginning. [19:56:26] :-) [19:57:25] yeah, more or less [19:58:02] its the protocol - the default is http, so https links aren't found unless you specify a url with https [20:03:46] My mis-conception was to use the URL of lines like this: [20:03:46] {{Webarchiv|url=http://www.schack.se/tfsarkiv/history/1967/tfs_1967_10.pdf |wayback=20141216203033 |text=Bericht über die Allsvenskan 1967 }} [20:03:46] But I don't find anything if I use http://www.schack.se in parameter -weblink. I think I should use another strategy to find the right articles, e.g. by names like "Division I ...". [20:05:59] Maybe the -weblink parameter doesn't find URLs within special templates like Webarchiv. [20:08:31] @lucaswerkmeister, @JJMC89: Thank you for helping, now I can continue to write my script to substitute some old links. [20:08:32] looks like the German {{webarchiv}} template only generates a link to archive.org, not to the original URL [20:08:47] (see at https://de.wikipedia.org/wiki/Division_I_(Schach)_1966#Einzelnachweise) [20:09:57] pywikibot asks MediaWiki for all pages that link to that URL, and MediaWiki will only register actual links; that page doesn’t have a direct link to http://www.schack.se, only to the internet archive (and, separately, to https://tfsarkiv.schack.se/) [20:10:12] that’s why Division I (Schach) 1966 isn’t listed in https://de.wikipedia.org/w/index.php?title=Spezial:Weblinksuche/http://www.schack.se/&limit=500&offset=0&target=http%3A%2F%2Fwww.schack.se%2F either [20:12:38] Sounds clear to me now. There is another template of WMDE called "Internetquelle", and this one is using _two_ URLs, the old one and the archive.org one, so then I can find the "http:..." stuff. [20:15:09] * lucaswerkmeister nods