Hi List,
Want to ask if there is an extension to have on the Mainpage "dynamicly" added the newst articel in our wiki. And is there any nice FAQ Extension? Well an extension to FAQ-pages.
Thanks, Oliver
Hello All,
I am currently having a problem with opensearch... It just doesn't work... I have accessed the opensearch_desc.php file and there is a bug in the ouput... It has a line feed at the top of the output that is generated and it is breaking mozilla users.
Here is the output when I hit the opensearch_desc.php file in a browser (it prompted me to download it so I opened it and this is what I got.
"Blank Line is Here" <?xml version="1.0"?> <OpenSearchDescription xmlns="http://a9.com/-/spec/opensearch/1.1/"> <ShortName>Wiki Site (English</ShortName> <Description>Wiki Site (English)</Description> <Image height="16" width="16" type="image/x-icon">http://wiki.site.com /favicon.ico</Image> <Url type="text/html" method="get" template="http://wiki.site.com/index.php?title=Special:Search&search ={searchTerms}"/> <Url type="application/x-suggestions+json" method="GET" template="http://wiki.site.com/api.php?action=opensearch&search={sea rchTerms}"/> </OpenSearchDescription>
I don't know what is putting the extra blank line at the top of the output. But since some may ask, here is the opensearch_desc.php file.
<snip>
<?php
/** * Generate an OpenSearch description file */
require_once( dirname(__FILE__) . '/includes/WebStart.php' ); require_once( dirname(__FILE__) . '/languages/Names.php' ); $fullName = "$wgSitename ({$wgLanguageNames[$wgLanguageCode]})"; $shortName = htmlspecialchars( mb_substr( $fullName, 0, 24 ) ); $siteName = htmlspecialchars( $fullName );
if ( !preg_match( '/^https?:/', $wgFavicon ) ) { $favicon = htmlspecialchars( $wgServer . $wgFavicon ); } else { $favicon = htmlspecialchars( $wgFavicon ); }
$title = SpecialPage::getTitleFor( 'Search' ); $template = $title->escapeFullURL( 'search={searchTerms}' );
$suggest = htmlspecialchars($wgServer . $wgScriptPath . '/api.php?action=opensearch&search={searchTerms}');
$response = $wgRequest->response(); $response->header( 'Content-type: application/opensearchdescription+xml' );
# Set an Expires header so that squid can cache it for a short time # Short enough so that the sysadmin barely notices when $wgSitename is changed $expiryTime = 300; # 5 minutes $response->header( 'Expires: ' . gmdate( 'D, d M Y H:i:s', time() + $expiryTime ) . ' GMT' );
echo <<<EOT <?xml version="1.0"?> <OpenSearchDescription xmlns="http://a9.com/-/spec/opensearch/1.1/"> <ShortName>$shortName</ShortName> <Description>$siteName</Description> <Image height="16" width="16" type="image/x-icon">$favicon</Image> <Url type="text/html" method="get" template="$template"/> <Url type="application/x-suggestions+json" method="GET" template="$suggest"/> </OpenSearchDescription> EOT;
?>
</snip>
Any help would be greatly appreciated.
mediawiki-l@lists.wikimedia.org