Movatterモバイル変換


[0]ホーム

URL:


Keyboard Shortcuts

Thread View

  • j: Next unread message
  • k: Previous unread message
  • j a: Jump to all threads
  • j l: Jump to MailingList overview
List overview
Download

Wikitech-lJune 2009

wikitech-l@lists.wikimedia.org
  • 107 participants
  • 82 discussions
Start a nNew thread
Database dumps
by Byrial Jensen 17 Apr '25

17 Apr '25
Until some weeks agohttp://dumps.wikimedia.org/backup-index.html usedto show 4 dumps in progress at the same time. That meant that newdatabase dumps normally was available within about 3 weeks for alldatabases except for enwiki and maybe dewiki where the dump process dueto size took longer time.However the 4 dumps processes at one time become 3 some weeks ago. Andafter massive failures at June 4, only one dump has been in progress atthe same time. So at the current speed it will take several months tocome thru all dumps.Is it possible to speed up the process again using several dumpprocesses at the same time?Thank you,Byrial
3 2
0 0
EBNF grammar project status?
by Steve Bennett 01 Apr '25

01 Apr '25
What's the status of the project to create a grammar for Wikitext in EBNF?There are two pages:http://meta.wikimedia.org/wiki/Wikitext_Metasyntaxhttp://www.mediawiki.org/wiki/Markup_specNothing seems to have happened since January this year. Also the comments onthe latter page seem to indicate a lack of clear goal: is this just a funproject, is it to improve the existing parser, or is it to facilititate anew parser? It's obviously a lot of work, so it needs to be of clearbenefit.Brion requested the grammar IIRC (and there's a comment to that effect athttp://bugzilla.wikimedia.org/show_bug.cgi?id=7), so I'm wondering what became of it.Is there still a goal of replacing the parser? Or is there some alternativeplan?Steve
26 217
0 0
MediaWiki to Latex Converter
by Hugo Vincent 18 Jun '12

18 Jun '12
Hi everyone,I recently set up a MediaWiki (http://server.bluewatersys.com/w90n740/) and I need to extra the content from it and convert it into LaTeX syntax for printed documentation. I have googled for a suitable OSS solution but nothing was apparent.I would prefer a script written in Python, but any recommendations would be very welcome.Do you know of anything suitable?Kind Regards,Hugo Vincent,Bluewater Systems.
6 13
0 0
Backups
by Eugene 07 Nov '10

07 Nov '10
Hi everyone,Are there any updates regarding Wikipedia's backup systems? I'vecreated a bug to track this athttps://bugzilla.wikimedia.org/show_bug.cgi?id=18255.Cheers,Eugene
4 5
0 0
implementing the Interlanguage extension
by Amir E. Aharoni 06 Aug '10

06 Aug '10
Sorry about bugging the list about it, but can anyone please explainthe reason for not enabling the Interlanguage extension?See bug 15607 -https://bugzilla.wikimedia.org/show_bug.cgi?id=15607I believe that enabling it will be very beneficial for many projectsand many people expressed their support of it. I am not saying thatthere are no reasons to not enable it; maybe there is a good reason,but i don't understand it. I also understand that there are many otherunsolved bugs, but this one seems to have a ready and rather simplesolution.I am only sending it to raise the problem. If you know the answer, youmay comment at the bug page.Thanks in advance.-- Amir Elisha Aharoniheb:http://haharoni.wordpress.com | eng:http://aharoni.wordpress.comcat:http://aprenent.wordpress.com | rus:http://amire80.livejournal.com"We're living in pieces, I want to live in peace." - T. Moore
6 8
0 0
New SVN committer
by Brion Vibber 05 Feb '10

05 Feb '10
Added Jan Gerber ('j'). Jan is the developer of Firefogg, and will be helping out with some of the open video player & sequencer work with Michael Dale that Kaltura's sponsoring.-- brion
4 3
0 0

13 Oct '09
I've been putting placeholder images on a lot of articles on en:wp.e.g. [[Image:Replace this image male.svg]], which goes to[[Wikipedia:Fromowner]], which asks people to upload an image if theyown one.I know it's inspired people to add free content images to articles inseveral cases. What I'm interested in is numbers. So what I'd need isa list of edits where one of the SVGs that redirects to[[Wikipedia:Fromowner]] is replaced with an image. (Checking which ofthose are actually free images can come next.)Is there a tolerably easy way to get this info from a dump? AnyWikipedia statistics fans who think this'd be easy?(If the placeholders do work, then it'd also be useful convincing somewikiprojects to encourage the things. Not that there's ownership ofarticles on en:wp, of *course* ...)- d.
7 11
0 0
Automate uploading files
by Beebe, Mary J 10 Jul '09

10 Jul '09
I am trying to automate uploading images (or files). We are currently using mediaWiki version 1.13.2.I am using the following code: $data=array( 'wpIgnoreWarning'=>'1', 'wpDestFile'=>="$bulkImageDirectory/$fname", 'wpReUpload'=>'1', 'wpUpload'=>'1', 'wpUploadFile'=>$fname, ); $webrequest=new FauxRequest( $data, true ); $uploader=new UploadForm( $webrequest ); $uploader->mUploadSize=$zipfile['size']; $uploader->mUploadTempName="$bulkImageDirectory/$fname"; $uploader->mOname=$fname; $uploader->mSessionKey='1'; $uploader->processUpload(); $fname is a relative file name, while ="$bulkImageDirectory/$fname" is the absolute file name. The file is located in wiki/images/tmp/bulkImages/.I receive the error: "The file you uploaded seems to be empty. This might be due to a typo in the file name. Please check whether you really want to upload this file." And the upload form displays on the screen with wpDestFile filled in.Three questions:Do you know what the problem is?Is there another way to automatically upload a file within an extension?Is there documentation on this?Thanks,Mary Beebe
3 3
0 0
On templates and programming languages
by Brion Vibber 09 Jul '09

09 Jul '09
As many folks have noted, our current templating system works ok for simple things, but doesn't scale well -- even moderately complex conditionals or text-munging will quickly turn your template source into what appears to be line noise.And we all thought Perl was bad! ;)There's been talk of Lua as an embedded templating language for a while, and there's even an extension implementation.One advantage of Lua over other languages is that its implementation is optimized for use as an embedded language, and it looks kind of pretty.An _inherent_ disadvantage is that it's a fairly rarely-used language, so still requires special learning on potential template programmers' part.An _implementation_ disadvantage is that it currently is dependent on an external Lua binary installation -- something that probably won't be present on third-party installs, meaning Lua templates couldn't be easily copied to non-Wikimedia wikis.There are perhaps three primary alternative contenders that don't involve making up our own scripting language (something I'd dearly like to avoid):* PHPAdvantage: Lots of webbish people have some experience with PHP or can easily find references.Advantage: we're pretty much guaranteed to have a PHP interpreter available. :)Disadvantage: PHP is difficult to lock down for secure execution.* JavaScriptAdvantage: Even more folks have been exposed to JavaScript programming, including Wikipedia power-users.Disadvantage: Server-side interpreter not guaranteed to be present. Like Lua, would either restrict our portability or would require an interpreter reimplementation. :P* PythonAdvantage: A Python interpreter will be present on most web servers, though not necessarily all. (Windows-based servers especially.)Wash: Python is probably better known than Lua, but not as well as PHP or JS.Disadvantage: Like PHP, Python is difficult to lock down securely.Any thoughts? Does anybody happen to have a PHP implementation of a Lua or JavaScript interpreter? ;)-- brion
29 115
0 0
Wikipedia downtime?
by The Cunctator 01 Jul '09

01 Jul '09
Was that planned downtime?
3 2
0 0
Results per page:

[8]ページ先頭

©2009-2025 Movatter.jp