Talk:MediaWiki 1.19
- [History↑]
Contents
| Thread title | Replies | Last modified |
|---|---|---|
| UML extension still support? | 0 | 17:06, 6 June 2013 |
| login doesn't work since update. | 3 | 05:19, 23 May 2013 |
| Thumbnails didn't work since Update to 1.19 | 52 | 11:08, 17 March 2013 |
| Fehler beim Erstellen des Vorschaubildes: Die Miniaturansicht konnte nicht am vorgesehenen Ort gespeichert werden | 2 | 15:33, 29 November 2012 |
| Wiki trouble | 30 | 22:27, 27 May 2012 |
| Common.css - what's new? | 3 | 05:21, 30 May 2012 |
| Error in Special:NewFiles | 1 | 23:57, 7 May 2012 |
| Sprint to make the page actually useful | 2 | 11:38, 14 April 2012 |
| Reference tooltips | 13 | 02:37, 6 April 2012 |
| Not released on time | 1 | 11:34, 5 April 2012 |
| how to update | 1 | 05:21, 30 May 2012 |
Hi everybody,
I'm trying to update my wiki from 1.16.2 to 1.19.6. But when the update is terminated, the login doesn't work. password check works fine because if it's false I have the error message but when I connect with the good login. I don't have a connexion. Login/create account button comes and I don't have edit button.
Has anybody an idea ?
Thanks
PS: Does mwusers forum closed ?
Check the cookies that MW is trying to send your browser. It sounds like MW isn't sending the right ones.
I think that's come of the server version (IIS5) and this bug http://support.microsoft.com/kb/q176113 but I'm not sur. I tried with Apache and it works.I will try with IIS 7.5 to confirm.
That was that. IIS5 server is too old ;-)
Thanks for your help
bugzilla:42730. «I suspect one of the environment (TMPDIR, TMP or TEMP) is set to a directory which is NOT writable by your webserver. In such a case, you have to set $wgTmpDirectory in your LocalSettings.php to a directory writable by your webserver.»
Hey there, since I have updated my 1.18.3 release of mediawiki to 1.19.0 I can't get new thumbnails created. If I upload a new picture I get the following error:
Error creating thumbnail: Unable to save thumbnail to destination
in my LocalSettings.php there is the following:
## To enable image uploads, make sure the 'images' directory ## is writable, then set this to true: $wgEnableUploads = true; $wgUseImageMagick = true; $wgImageMagickConvertCommand = "/usr/bin/convert"; #$wgUseImageResize = true; $wgImageMagickTempDir = "/srv/httpd/vhosts/wiki.laub-home.de/htdocs/images/imtmp"; #$wgCustomConvertCommand = "/usr/bin/convert -resize %wx%h %s %d";
ImageMagick 6.6.0-4 is installed on a debian squeeze system. I can't see any errors in the apache logfiles and I didn't change the rights on my image folder. Anyone has the same problem? Greeting Andreas
Is this your issue?
No, I test the patcht, but still didn't work. If it's an open_base_dir thing, I should see something in the apache logs.
Hi Sumana,
I found a problem in the patch for open_base_dir. I changed the upload_tmp_dir to /srv/php-tmp/ in my php.ini. This is a security thing. So the patcht checks first for /tmp which is the system tmp directory and this drops out an open_basedir error in apache log. Then it goes to the php.ini upload_tmp_dir, which works. I think the order of the patch schould changed to first look at php and then the system temp dir to avoid the error in apache log.
Greetings Andreas
Andreas, can you go ahead and just submit a corrected patch either via Developer access or via the bug in Bugzilla?
Hi, I don't have access to Bugzilla, so here is my Patch, the whole function wfTempDir() looks like that on my Mediawiki:
function wfTempDir() {
foreach( array( 'TMPDIR', 'TMP', 'TEMP' ) as $var ) {
$tmp = getenv( $var );
if( $tmp && file_exists( $tmp ) && is_dir( $tmp ) && is_writable( $tmp ) ) {
return $tmp;
}
}
if (ini_get('upload_tmp_dir')!==false) {
$tmp = ini_get('upload_tmp_dir');
if( $tmp && file_exists( $tmp ) && is_dir( $tmp ) && is_writable( $tmp ) ) {
return $tmp;
}
}
if( function_exists( 'sys_get_temp_dir' ) ) {
$tmp = sys_get_temp_dir();
if( $tmp && file_exists( $tmp ) && is_dir( $tmp ) && is_writable( $tmp ) ) {
return $tmp;
}
}
# Usual defaults
return wfIsWindows() ? 'C:\Windows\Temp' : '/tmp';
}
You do have access to Bugzilla: https://bugzilla.wikimedia.org/
Hi, I don't have access to Bugzilla, so here is my Patch, the whole function wfTempDir() looks like that on my Mediawiki:
function wfTempDir() {
foreach( array( 'TMPDIR', 'TMP', 'TEMP' ) as $var ) {
$tmp = getenv( $var );
if( $tmp && file_exists( $tmp ) && is_dir( $tmp ) && is_writable( $tmp ) ) {
return $tmp;
}
}
if (ini_get('upload_tmp_dir')!==false) {
$tmp = ini_get('upload_tmp_dir');
if( $tmp && file_exists( $tmp ) && is_dir( $tmp ) && is_writable( $tmp ) ) {
return $tmp;
}
}
if( function_exists( 'sys_get_temp_dir' ) ) {
$tmp = sys_get_temp_dir();
if( $tmp && file_exists( $tmp ) && is_dir( $tmp ) && is_writable( $tmp ) ) {
return $tmp;
}
}
# Usual defaults
return wfIsWindows() ? 'C:\Windows\Temp' : '/tmp';
}
Linked to the patch in the bug.
Hey, I seem to be having the same problem, but the patch doesn't help: No matter what I do, I get the same error message.
It's a brand new MW installation, 1.19.0, in a shared hosting environment. I have php 5.3.10 (apache2handler) and GD library enabled. My "upload_tmp_dir" in phpinfo.php says "/tmp", and the /tmp directory on my server has rights drwxrwxrwt.
This is what I have in LocalSettings.php - uncommenting the ImageMagick variables has no effect:
$wgEnableUploads = true;
- $wgUseImageMagick = true;
- $wgImageMagickConvertCommand = "/usr/bin/convert";
I have tried to get some more error messages out of the php, using:
error_reporting( E_ALL ); ini_set( 'display_errors', 1 ); $wgShowExceptionDetails = true;
in LocalSettings.php, but that doesn't produce anything either.
Any ideas???
Forgot to say, but the images directory in the MW installation has rights 777, as do all the subfolders.
Are you able to write to /tmp from your web process? Could you write a test script to verify this? If you don't know how, could you install a test I write to verify it?
Good question. Sure, pass me the script if you have one! (I think I could figure it out myself, but not without some effort...)
Some more info that I guess is relevant: I have another, older mediawiki installation running on the same server, where file uploads work fine. That is MW 1.15.1 though. I also just realized that php safe mode is enabled on our server. Is that a likely cause for trouble?
CORRECTION: I just realized that, although file uploading has worked fine for the purposes I have had till now, *thumbnailing* does not seem to work in any of the MW installations on our server. (Haven't had the need for thumbnailing until now.) So I guess this issue is not related strictly to version 19 of MW, but is a general issue with either MW or our server. Sorry about that.
Still, if anyone has any idea about how to diagnose this problem, I'd be thankful!
I tried the following:
<?php
$handle = fopen("/tmp/test.txt", "x");
if ($handle) echo "Success!";
else print_r(error_get_last());
?>
...which returns "failed to open stream: No such file or directory". According to php.net the 'x' flag should cause the file to be created if it doesn't exist, so I guess there is something wrong somewhere? I have allow_url_fopen=off in phpinfo, but that shouldn't matter, right?
Sorry for spamming the thread - I'm a noob. I changed the above script to point to the images directory, and then i get success. Could this be a php bug? (Or at least a very misleading error message...)
My open_basedir has "no value".
Excellent work on reproducing the problem since I took too long to get back to you. Could you try this script?
<?php
function dirTest( $label, $dir ) {
echo "Test for $label: $dir\n";
if( file_exists( $dir ) ) {
echo "Dir exists\n";
$s = @stat( $dir );
if( $s === false ) {
echo "Stat failed: $php_errormsg\n";
} else {
echo "Permissions: ". decoct( $s[2] ) ."\n";
echo "Is dir: ". ( is_dir( $dir ) ? "true" : "false" ) ."\n";
echo "Is writable: ". ( is_writable( $dir ) ? "true" : "false" ) ."\n";
$file = tempnam( $dir, "test" );
echo "Attempting to create: $file\n";
$fh = fopen( $file, "w" );
if( $fh !== false ) {
$written = fwrite( $fh, "stuff" );
if( $written === false ) {
echo "Error when writing: $php_errormsg\n";
} else {
echo "Wrote $written bytes.\n";
if( fclose($fh) === false ) {
echo "Error when closing: $php_errormsg\n";
}
}
if( unlink( $file ) === false ) {
echo "Error removing $file: $php_errormsg\n";
} else {
echo "Sucessfully removed $file\n";
}
} else {
echo "Error opening for writing: $php_errormsg\n";
}
}
} else {
echo "Directory does not exist!\n";
}
echo "\n";
}
dirTest( "Unix tmp dir", "/tmp" );
dirTest( "Window temp dir", "c:/windows/temp" );
dirTest( "sys_get_temp_dir", sys_get_temp_dir() );
dirTest( "upload_tmp_dir", ini_get( 'upload_tmp_dir' ) );
btw, on my laptop this gives:
Test for Unix tmp dir: /tmp Dir exists Permissions: 41777 Is dir: true Is writable: true Attempting to create: /tmp/testjmWbDE Wrote 5 bytes. Sucessfully removed /tmp/testjmWbDE Test for Window temp dir: c:/windows/temp Directory does not exist! Test for sys_get_temp_dir: /tmp Dir exists Permissions: 41777 Is dir: true Is writable: true Attempting to create: /tmp/test6nrzCk Wrote 5 bytes. Sucessfully removed /tmp/test6nrzCk Test for upload_tmp_dir: Directory does not exist!
Thanks for getting back to me! The above script returns:
Test for Unix tmp dir: /tmp Directory does not exist! Test for Window temp dir: c:/windows/temp Directory does not exist! Test for sys_get_temp_dir: /tmp Directory does not exist! Test for upload_tmp_dir: /tmp Directory does not exist!
For the record, there IS a directory that appears to me as '/tmp' in my command line. But I posted this question on stackoverflow, and a commenter suggested the problem could have to do with 'chroot'. This server is part of a large university network, so I am sure the setup is fairly complex.
It seems odd though, given that the user 'nobody' - which I am almost certain is the user running php scripts - is able to write to /tmp.
Is there any way to have the thumbnailing process use some other tmp folder, for instance one under the images folder - where I know i can write?
I'm facing the same problem with a brandnew MediaWiki 1.19.1.
I tried the first proposed patch. The thumbs in my articles were not shown. However thumbnails were shown in the list of uploaded files. But at the same time I got dozens of error messages: "Warning: file_exists() [function.file-exists]: open_basedir restriction in effect. File(/tmp) is not within the allowed path(s): (/var/www/web1388/html/:/var/www/web1388/phptmp/:/var/www/web1388/files/:/var/www/web1388/atd/:/usr/share/php/) in /var/www/web1388/html/mediawiki_test/mediawiki/includes/GlobalFunctions.php on line 2495"
I saw that there is another patch. Is it also available as a patch file for Tortoise SVN? I'm not familiar with git.
Will this bug be fixed in 1.19.2?
BTW: I run another wiki on the same shared hosting with MediaWiki 1.16.2 and all thumbnailing works fine on this installation. I don't use ImageMagick on any of my wikis.
My PHP version: 5.3.13-1~dotdeb.0 (cgi-fcgi)
MySQL version: 5.5.25-1
Thanks for your help!
If you are sitting in the root of your MediaWiki installation and have access to patch, then this patch should be able to be applied like so:
$ curl https://gerrit.wikimedia.org/r/gitweb?p=mediawiki/core.git;a=patch;h=99fdc6e838d4c7f6a7135a06b58d0bb232ca611c | patch -p1
Mark, thanks for your excellent support (also via mail)!
Just for the record:
I managed to apply the patch to my 1.19.1 version.
Then I created a temp folder in the images folder (with chmod 775).
Then I added the following line to localsettings.php:
# Make sure this directory exists and is writable by the webserver! $wgTmpDirectory = "$IP/images/temp";
Now thumbnails work fine again :)
Hi,
I experience the same problem, but not able to use patch. What else can I do to get it back to work?
Cheers Yogie
Why can't you use the patch?
I did a fresh Install of 1.20.2 today with no modification to the uploadpath or so and now I'm facing the same problem. How can I use the patch (if its suitable for the current version) on a host with no shell access. example ist at
http://blechschaden.bplaced.net/wiki/index.php?action=Test
while an 1.18 works on the same host out of the box
Ok I inserted all the files from the post of 4.Jul.2012. But now I get an MWException. With $wgShowExceptionDetails = true; it results in:
Preprocessor_DOM::preprocessToObj: generated node count limit exceeded
Backtrace:
- 0 /users/blechschaden/www/wiki/includes/parser/Parser.php(2979): Preprocessor_DOM->preprocessToObj('$1 ??? {{SITENA...', 0)
- 1 /users/blechschaden/www/wiki/includes/parser/Parser.php(3036): Parser->preprocessToDom('$1 ??? {{SITENA...')
- 2 /users/blechschaden/www/wiki/includes/parser/Parser.php(540): Parser->replaceVariables('$1 ??? {{SITENA...')
- 3 /users/blechschaden/www/wiki/includes/parser/Parser.php(4636): Parser->preprocess('$1 ??? {{SITENA...', Object(Title), Object(ParserOptions))
- 4 /users/blechschaden/www/wiki/includes/cache/MessageCache.php(815): Parser->transformMsg('$1 ??? {{SITENA...', Object(ParserOptions), Object(Title))
- 5 /users/blechschaden/www/wiki/includes/Message.php(618): MessageCache->transform('$1 ??? {{SITENA...', true, Object(Language), Object(Title))
- 6 /users/blechschaden/www/wiki/includes/Message.php(436): Message->transformText('$1 ??? {{SITENA...')
- 7 /users/blechschaden/www/wiki/includes/Message.php(476): Message->toString()
- 8 /users/blechschaden/www/wiki/includes/OutputPage.php(790): Message->text()
- 9 /users/blechschaden/www/wiki/includes/OutputPage.php(833): OutputPage->setHTMLTitle(Object(Message))
- 10 /users/blechschaden/www/wiki/includes/Article.php(485): OutputPage->setPageTitle('Kategorie:Villo...')
- 11 /users/blechschaden/www/wiki/includes/CategoryPage.php(73): Article->view()
- 12 /users/blechschaden/www/wiki/includes/actions/ViewAction.php(37): CategoryPage->view()
- 13 /users/blechschaden/www/wiki/includes/Wiki.php(427): ViewAction->show()
- 14 /users/blechschaden/www/wiki/includes/Wiki.php(304): MediaWiki->performAction(Object(CategoryPage))
- 15 /users/blechschaden/www/wiki/includes/Wiki.php(536): MediaWiki->performRequest()
- 16 /users/blechschaden/www/wiki/includes/Wiki.php(446): MediaWiki->main()
- 17 /users/blechschaden/www/wiki/index.php(59): MediaWiki->run()
- 18 {main}
Since this is a 1.20 issue, I've copied your question here and replied there.
My solution for MediaWiki 1.20.3 has been to add the following line to LocalSettings.php
$wgTmpDirectory = ini_get('upload_tmp_dir');
Fehler beim Erstellen des Vorschaubildes: Die Miniaturansicht konnte nicht am vorgesehenen Ort gespeichert werden
Hallo, ich probier's einfach mal in Deutsch: Ich habe MediaWiki in Version 1.20.0 auf einem Windows Server 2008 R2 mit IIS 7.5 installiert. PHP (5.3.13 (cgi-fcgi)) habe ich über den Web Plattform Installer (WebPI 2.0) installiert. MySQL (5.1.57-community) habe ich ebenfalls über den WebPi installiert.
Auf das images-Verzeichnis und die Unterverzeichnisse und Dateien habe ich in der Verzweiflung Vollzugriff für "Jeder" gegeben. Trotzdem erscheint die Fehlermeldung
Fehler beim Erstellen des Vorschaubildes: Die Miniaturansicht konnte nicht am vorgesehenen Ort gespeichert werden
bei jedem Bild.
Erstaunlicherweise habe ich in einem parallelen Verzeichnis auf dem IIS ein Wiki in derselben Version, bei dem dieses Problem scheinbar nicht auftritt. Die LocalSettings.php-Dateien habe ich auch bereits verglichen. Auch da scheint es keine relevanten Unterschiede zu geben.
Hat jemand eine Idee, woran es noch liegen könnte? Danke, Alex.
Hi Alex,
hast du dir schon den Thread eins drunter angesehen? Speziell ab dieser Stelle: http://www.mediawiki.org/wiki/Thread:Talk:MediaWiki_1.19/Thumbnails_didn't_work_since_Update_to_1.19/reply_(31)
I thought this problem from 1.19 had been fixed in 1.20, but yours is the second report of this in 1.20. In the meantime, can you set $wgUploadDirectory to an existing, writable directory?
Hello i've some problems with my wiki configuration too, including displaying .svg thumbs, it didn't work this time, but i have figure out, why the upload function generally don't work at this point, after reading and thinking of your conversation, i trying something and now it works fine for pictures like .jpg or .png.
Make following step: 1) put this line in your ls.php, save it and upload, don't forget to back up your latest working ls.php.
## To enable image uploads, make sure the 'images' directory ## is writable, then set this to true: $wgEnableUploads = true; $wgDisableUploads = false; # Enable uploads #$wgUseImageMagick = true; #$wgImageMagickConvertCommand = "/usr/bin/convert"; $wgUploadDirectory = "{$IP}/images/"; </<source>
Sorry for moving this out of the thread... I did that before I realized you were offering a solution. And, now I can't move it back :(
Hello, ah no problem, hoping it helps everyone, if you would like to post it in the entire thread, then you can do it. In my wiki configuration works it, but thumbnailing .svg did not working.
It is a possible solution for user, having trouble with enabling fileupload. By the way: my wiki can't create thumbnails of svg's, getting instead an output textmessage with following content:
Fehler beim Erstellen des Vorschaubildes: sh: convert: not found
i'm not sure, where the problem is, any help for solving this is appreciated.
You need to install imagemagick. What sort of system is your host?
What exactly means
New common*.css files usable by skins instead of having to copy piles of generic styles from MonoBook or Vector's css.
Is that a feature for extensions which define their own skins? What does the "*" stand for? I can't find any Bug report or Revision linked to it. Don't we already have standard.css for "generic styles"?
We've consolidated the CSS into skins/common/common*.css. See r95837 for the beginning of this.
Ah, thanks for the hint. But they are not loadable as own modules? I think they, most clearly the commonElements.css, would be a great base for a myskin.css.
Hello, when I updated my wiki to 1.19 version, this error appear:
http://www.tibiawiki.com.br/Especial:Arquivos_novos
Someone know how do I fix this?
I just tried upgrading from MW 1.18 to MW 1.19, without a problem. Maybe this is related to the extensions you have installed?
For MediaWiki 1.18, we had a really beautiful page that had a good, easy to read, easy to scan, summary of the things in 1.18. I'm not sure we can make this page as nice as that, but I would like something a little better than what we have right now. Today, I'll be working on updating the page and I invite others to join me.
I contributed some important details to the MediaWiki 1.18 page, and I'd be happy to jump in with this one as soon as I feel competent. Thanks for making me aware of the need.
Also have a look at MediaWiki 1.19 which we'll be rolling out next week.
(This might not be the best talk page for this. If someone knows of a more appropriate talk page, please move this post.)
A few months ago, a design idea for Reference Tooltips was posted on this wiki. Thinking that this would be useful to have on Wikipedia, I proceeded to make the JS and CSS for it, and then I proposed that it be made available as a gadget on the English Wikipedia, as I had been informed the RT was "not an official project". I intended to then propose that it be added to the ENWP Common.js (whether or not it had gained consensus for being made an opt-in gadget yet).
More recently, I was looking at the WMFLabs MW1.19 test wikis, and was surprised to see that a RT functionality (although with the tooltips in a different location, with a different design, and lacking the ability for users to click on the reference content) in use. Despite the fact that many communities might not want to have RT on their wikis, it appears that all wikis are to have this version of Reference Tooltips enabled upon upgrading to MW1.19, assuming that the Labs wikis are an accurate portrayal of what the wikis will look like after the upgrade. As far as I know, the Wikimedia communities were not consulted in this decision, nor were any of them even informed in any way of this change. I am fairly certain that this change was not announced in any Village Pump, mentioned anywhere on the entire Mediawiki wiki, or at all mentioned in any mailing list. Nor is it mentioned in the MW1.19 release notes. It appears to me that the community consensus process was bypassed, and the possibility of any previous discussion was eliminated. I am also rather annoyed that all my work toward the RT script turned out to be useless, and that this came about as a result of just not being informed about any plan for the WMF to build Reference Tooltips.
So here's some questions:
- Did the design document Reference Tooltips become an official project afterwards and end up as the current version after some heavy modification, or was the official implementation an entirely separate project created independently?
- Is there any intention to inform the communities of this rather major change before it gets implemented on the live wikis, or will nobody be informed until it's actually running?
- Will there be any way at all for individual wikis to disable this feature?
- Where, if anywhere, did discussion take place? (Is there an entire communication channel I'm unaware of?) This wasn't just a decision taken by one individual, was it?
- How is the box containing the reference content being in the lower right and unclickable supposed to be an improvement?
(PS: Sorry for the critical tone, I'm just really annoyed right now. If I actually misunderstood the whole thing, or just somehow missed discussion/announcement of RT, sorry again.)
I confirm this. The test en.wikipedia with MediaWiki 1.19 is here:
http://en.wikipedia.beta.wmflabs.org/wiki/Main_Page
Do you have a public wiki up somewhere that demonstrates your reference tooltips? Just judging from the screenshot, it looks superior to me, too. Once I've tested it out, I'd be willing to submit a bug report enhancement request for this issue.
No, I don't have a public wiki set up demonstrating it. I suppose the best way to test it would be to add importScript("User:Yair rand/ReferenceTooltips.js");importStylesheet("User:Yair rand/ReferenceTooltips.css"); to one's common.js on ENWP.
I didn't see that you did anything. Since I'd written something similar for a different job, I spent a few minutes one afternoon a few months ago turning it into an extension that works with Cite. Eventually, TheDJ (I think) actually integrated it into Cite, so it's made it into the standard product.
Right now (as Andrew's reply makes clear) we don't have a good way for people to know what sort of on-wiki development activities are taking place. Hopefully we'll have better ways to communicate about what we're all doing soon.
Do you know if this will be a part of the "better ways to communicate"?:
http://www.mediawiki.org/wiki/Project:WikiProject_Extensions
I took a look there, and it's very pretty, but I didn't immediately get a feel for anything "happening" there yet. Would Yair's work be part of the extensions project, even though it's not quite an extension? Or, is it something that needs to be handled differently?
In case anyone wants to get his work into MediaWiki via an extension, here's Extension:Cite.
(sorry for the really late reply)
This wasn't part of the "better ways to communicate". For the 1.19 release we used blog posts, mailing list messages, m:Global message delivery, and Central Notice immediately prior to the update.
We think this worked fairly well, but one other thing we're considering are. If you have other ideas, let us know. In the meantime, how do you think these notices worked?
That's good to hear. :)
Since we're looking for better ways to communicate with gadget, JS, and CSS devs who work on different WMF sites, what do you think would be a good way to attack this problem? Where could we have posted our plans so that you would have an opportunity to weigh in?
A big part of the problem seems to be that each wiki has (till RL2 anyway) its own copy of gadgets and its own developers who don't really collaborate.
We're working on addressing this, but I'm curious to hear what you think would be a good approach.
Whatever the solution ends up becoming, I'm sure it will involve centralizing communication on mediawiki.org, since this is already the place to go for everything specific to MediaWiki. Already, it seems communication specific to an upcoming version of MediaWiki is gravitating towards pages like this one.
However, MediaWiki pages are isolated from each other. The best mass-communication model I know of is forums. My favorite is SMF, with a BIG list of recent posts on its main page. It makes it very easy to get an idea of what is happening in one glance. It beats mailing lists, wikis, email, IRC, and anything else I can think of. In fact, declines in IRC usage seem to be correlated with increases in forum usage, on a global scale.
I view LiquidThreads as a step away from the proper solution. Forums as a communication model are well-proven, widely used, and easy for anyone to feel comfortable with. Wikis and mailing lists have a barrier to entry, and other quirks that do not make it easy to participate, or gain information from them. Being ephemeral is just one problem.
MediaWiki nirvana will be achieved when talk pages are linked to SMF forums. I have heard some good reasons from people who disagree with me about why we should stay pure-wiki, but despite their good reasons, I keep wishing we didn't have to reinvent the wheel when forums are already so good at facilitating communication.
JEDL is our first attempt at this. I'm going to be finding a way to contact gadget authors and point them to this resource. Hopefully we'll begin to have a better community develop.
...And now it appears to have been removed from the Labs wiki. Would someone be able to explain what happened/is going to happen with this, please?
I'm interested in an update. I see that Yair's implementation is on Wikipedia now: Thread:Talk:Reference Tooltips/Some comments, +prototype/reply (3). It would be nice if this could make it into MW 1.19, I think it's excellent for usability.
...since it's now April and we still only have a second beta.
See Manual:Upgrading. Ask here (or on that talk page) for more help if you need it.