[08:41:34] Reedy: this is a setting you introduced it seems https://gerrit.wikimedia.org/r/#/c/354600/ [08:41:52] Meh [08:42:07] Presuambly the extension had it at some point before some refactoring [08:42:32] Probably due to causing issung [08:42:33] *issues [08:43:13] Yes, Aaron re-enabled the special page after switching to subqueries [10:17:45] I have technical problems with Wikipedia, can someone help me? [10:18:25] Possibly [10:18:31] If you tell us what it is :) [10:25:53] I've had problems with the site for days [10:26:09] scrpts that use (in my common.js) are not loading [10:26:28] when I clock refresh for several times, they do load [10:26:41] also, when the scripts do not load, the search field does not auto-fill when I start to type [10:26:54] and also, if there is something collapsed on the page (like collapsed tables), "show" link is not working [21:15:28] Hi [21:16:23] I'd like to ask how can I extract titles of Wikipedia stub articles using Wikipedia APIs? [21:24:59] Wisam: stub as defined by templates? Depending on the Wikipedia wiki you're considering, iterating over templatelinks or categorylinks may be the easier way [22:50:51] Hi [22:51:59] I'd like to ask how can I get the titles of Wikipedia stub articles using Wikipedia APIs? [22:54:51] Wisam: take a look at the docs for https://www.mediawiki.org/wiki/API:Embeddedin [22:55:13] the example on that page is pretty much what you are asking for I think [22:56:16] I did [22:56:19] https://en.wikipedia.org/w/api.php?action=query&list=embeddedin&eititle=Template:Stub&eilimit=max&format=xml [22:56:53] but all returned titles belong to User or Talk [23:01:51] hmmm... I wonder if you can limit it to the main namespace [23:03:17] Wisam: there is a namespace limit with einamespace -- https://en.wikipedia.org/wiki/Special:ApiSandbox#action=query&format=json&list=embeddedin&formatversion=2&eititle=Template%3AStub&einamespace=0&eilimit=50 [23:04:55] also that may not be the correct marker template to use... [23:05:20] Furthermore, when I tried it on the Arabic Wikipedia, it did not return any results [23:05:39] you would have to find out what their marker template is called [23:05:53] It's probably not using an english name :) [23:06:25] mmmmm, how would I find it? [23:06:47] find a stub article and look at the source [23:07:11] Thanks a lot [23:07:14] or ask someone from arwiki [23:07:18] appreciated [23:07:34] enwiki seems to also have https://en.wikipedia.org/wiki/Category:All_stub_articles [23:09:00] so you could use the categorymembers api to see that list -- https://en.wikipedia.org/wiki/Special:ApiSandbox#action=query&format=json&list=categorymembers&formatversion=2&cmtitle=Category%3AAll_stub_articles [23:15:27] OOOh [23:15:34] Thaaanks a lot