<?xml version="1.0" encoding="UTF-8"?>
<Module>
<ModulePrefs
title="Wikipedia Search"
directory_title="Wikipedia Search"
height="40"
author="Ginga"
author_email="ginga.gadgets@gmail.com"
author_affiliation="ginga gadgets"
category="funandgames"
category2="lifestyle"
scrolling="false"

screenshot="http://hosting.gmodules.com/ig/gadgets/file/109859150862124727573/screenshot_wikisearch.png"
thumbnail="http://hosting.gmodules.com/ig/gadgets/file/109859150862124727573/thumbnail_wikisearch.png"
description="Wikipedia search gadget with your choice of language. Alternatively click on the &quot;I&apos;m Feeling Lucky&quot; four leaf clover and you will be taken directly to the wikipedia page of your choice. Opens search results in a new window by default, you may configure this via the settings menu."

author_location="USA"
title_url="http://www.gingagadgets.com/hub.php?caller=wikisearch"
>

<Require feature="analytics"/>
</ModulePrefs>

<UserPref name="newWindow_p" display_name="Open results in a new window?" default_value="true" datatype="bool"/>
<UserPref name="mylang" display_name="Language" default_value="en" datatype="enum">
<EnumValue display_value="English" value="en"/>
<EnumValue display_value="German" value="de"/>
<EnumValue display_value="French" value="fr"/>
<EnumValue display_value="Japanese" value="ja"/>
<EnumValue display_value="Polish" value="pl"/>
<EnumValue display_value="Italian" value="it"/>
<EnumValue display_value="Swedish" value="sv"/>
<EnumValue display_value="Dutch" value="nl"/>
<EnumValue display_value="Portuguese" value="pt"/>
<EnumValue display_value="Spanish" value="es"/>
<EnumValue display_value="Chinese" value="zh"/>
<EnumValue display_value="Russian" value="ru"/>
<EnumValue display_value="Norwegian" value="no"/>
<EnumValue display_value="Finnish" value="fi"/>
<EnumValue display_value="Danish" value="da"/>
<EnumValue display_value="Esperanto" value="eo"/>
<EnumValue display_value="Hebrew" value="he"/>
<EnumValue display_value="Hungarian" value="hu"/>
<EnumValue display_value="Catalan" value="ca"/>
<EnumValue display_value="Ukrainian" value="uk"/>
<EnumValue display_value="Czech" value="cs"/>
<EnumValue display_value="Bulgarian" value="bg"/>
<EnumValue display_value="Slovenian" value="sl"/>
<EnumValue display_value="Slovak" value="sk"/>
<EnumValue display_value="Korean" value="ko"/>
<EnumValue display_value="Serbian" value="sr"/>
<EnumValue display_value="Romanian" value="ro"/>
<EnumValue display_value="Indoesian" value="id"/>
<EnumValue display_value="Estonian" value="et"/>
<EnumValue display_value="Ido" value="io"/>
<EnumValue display_value="Turkish" value="tr"/>
<EnumValue display_value="Norwegian Nynorsk" value="nn"/>
<EnumValue display_value="Croatian" value="hr"/>
<EnumValue display_value="Galician" value="gl"/>
<EnumValue display_value="Lithuanian" value="lt"/>
</UserPref>
<Content type="html"><![CDATA[
<style>
#subLang {
font-family:arial, sans-serif;
font-size:10px;
color:#676767;
}
#wikiLink {
font-family:Garamond, serif;
font-size:32px;
color:black;
text-decoration:none;
}
#searchGoButton {
font-weight:bold;
}
</style>
<script>
function displaySearchBar (prefs) {
var lang = _hesc( prefs.getString("mylang"));
if (lang == "") {
lang = prefs.getString(".lang");
}

if (prefs.getString("newWindow_p") == true) {
var newWindowText = '_blank';
} else {
var newWindowText = '_parent';
}

var imgUrl1 = _IG_GetImageUrl("http://ginga.gadgets5.googlepages.com/wikisearch_clover.png");

var html =
'<form target="' + newWindowText + '" name="searchform" action="http://' + lang +
'.wikipedia.org/wiki/Special:Search" id="searchform">' +
'<table style="width:100%">' +
'<tr>' +
'<td style="padding-bottom:4px">' +
'<a target="_parent" id=wikiLink href="http://' + lang +
'.wikipedia.org/wiki/">W</a>' +
'<span style="vertical-align: sub;">' + lang + '</span>' +
'</td>' +
'<td width=100%>' +
'<input id="searchInput" style="width:100%" name="search" type="text" accesskey="f" value="" />' +
'</td>' +
'<td>' +
'<input type="image" name="go" id="searchGoButton" value="I&apos;m Feeling Lucky" alt="I&apos;m Feeling Lucky" title="I&apos;m Feeling Lucky" src="' + imgUrl1 + '" />' +
'</td>' +
'<td>' +
'<input type="submit" name="fulltext" value="Search" />' +
'</td>' +
'</tr>' +
'</table>'
'<form>';
document.write(html);
}
displaySearchBar(new _IG_Prefs(__MODULE_ID__));
_IG_Analytics("UA-2621463-1", "/wikisearch");
</script>
]]>
</Content>
</Module>


