L10n:Toolbox

From MozillaWiki
Jump to: navigation, search

Using the following set of skills, a localizer can answer common tasks that will arise in any given day during localization.

Filing bugs

keywords request reviews

Things to remember when filing a bug in https://bugzilla.mozilla.org/:

  1. Every localization has a is listed as a component under the Mozilla Localizations section.
  2. Bugs should be filed under the localization you are testing.
  3. Attach any patches and set the review flag field to "review?" and enter your Bugzilla ID in the requestee field.

If you are testing Firefox...

  1. Always include the Build ID that you tested on. If you type about: in the URL bar, this will give you the Build ID.
  2. Always include clear “Steps to Reproduce” the bug.
  3. Always check to see if your bug has already been filed.
  4. At times, you may encounter a bug that is a regression. Use the regression keyword if the bug you find is a regression from a previous release. And, please tell us in the main comment of the bug if it is a regression from a previous release.
  5. If you file a bug about a crash, please include the Breakpad ID in the bug. You can get this by typing about:crashes in the URL bar.

L10n:Toolbox/Registration L10n:Toolbox/Installing and using Mercurial L10n:Toolbox/Hg use for l10n L10n:Toolbox/Setting up your local repository L10n:Toolbox/Hg push, pull, clone L10n:Toolbox/Nightly builds L10n:Toolbox/Checking out en-US and your locale L10n:Toolbox/Installing SVN L10n:Toolbox/SVN commands L10n:Toolbox/Creating a patch L10n:Toolbox/Creating a language pack L10n:Toolbox/Initial landings L10n:Toolbox/Mass landings L10n:Toolbox/Communication Channels L10n:Toolbox/Dashboard L10n:Toolbox/Compare-locales

Patching a search plugin

Creating a patch for a search plugin is a specific task during the localization process that provides an excellent set of skills that can be applied to other aspects of the localization work flow. The follow document instructs a localizer on the "how-tos" for creating a search plugin in "mozsearch" format, testing that search plugin, creating a patch for review, and updating local repositories to reflect the new changes so that a localizer is ready to commit those changes to their public repository.

Cloning your repository locally

To begin working on editing the search plugins for a localization, the localizer must first clone the most recent version of the repository from the stable branch that corresponds with the current release cycle for Firefox. For example, at the time of Firefox 3.5, localizers work from the Mozilla 1.9.1 branch. From this branch, each team clones the public repository to their local environment by running the following commands:

Open the terminal prompt and navigate to a file folder on the local disk where localization work will take place.

From the command line of the terminal prompt, type:

 $ hg clone http://hg.mozilla.org/releases/l10n-mozilla-1.9.1/ab-CD

(where ab-CD should be replaced by a specific locale code)

The output will read something like

 destination directory: [ab-CD]
 requesting all changes
 adding changesets
 adding manifests
 adding file changes
 added 65 changesets with 354 changes to 254 files
 updating working directory
 205 files updated, 0 files merged, 0 files removed, 0 files unresolved

where the number of changesets with changes to files will be unique to each locale.

The next set of commands enable a localizer to open the files and begin working.

Oftentimes, it is wise to check the present "path" where the last task was executed. From here, one can begin to navigate to the next path where work will continue. A user can check the current path by typing the following:

 $ pwd

And the output should show something like

 /Users/mozilla/Mozilla/Localizations

Now, navigate to the local repository that was created in the hg clone command above by typing

 $ cd [ab-CD]

Looking inside the searchplugin directory

Since we are now in the present directory in the path where we cloned our repository, you can now navigate all the way to the search plugin section of the browser code by typing the following

 $ cd browser/searchplugins/

To list what files are located in this directory, type

 $ ls

The output should show a list of search plugins in the present directory.

  • yahoo.xml
  • amazon.xml
  • eBay.xml
  • wikipedia.xml
  • creativecommons.xml
  • list.txt

As you can see, if no changes have been made, the en-US default search plugins will show like above.

Localizers work to customize these settings so that the local version of Firefox presents a set of plugins that are relevant to the end user. Localizers need to research the best choices, guided by the <a href:"">"productization"</a> process. Search plugins are categorized into three parts:

  1. General purpose
  2. e-Commerce
  3. Specific interest

Once the set has been determined and the search providers have responded with the information necessary, we can begin to create the search plugin files.

Creating a new search plugin file

After a localization team has selected the proper search plugins, it is time to create an .xml file in "mozsearch" format. Type the following command.

 $ open yahoo.xml 

The yahoo.xml file should open in a code editor or text editor. Popular text editors for Mac include Text Wrangler, Dashcode, and or TextEdit.

mozsearch format

Once the file is open, the following file should appear:

 <SearchPlugin xmlns="http://www.mozilla.org/2006/browser/search/">
 <ShortName>Yahoo</ShortName>
 <Description>Yahoo Search</Description>
 <InputEncoding>UTF-8</InputEncoding>
 <Image width="16" height="16">data:image/x-icon;base64,R0lGODlhEAAQAJECAP8AAAAAAP///wAAACH5BAEAAAIALAAAAAAQABAAAAIplI+py+0NogQuyBDEnEd2kHkfFWUamEzmpZSfmaIHPHrRguUm/fT+UwAAOw==</Image>
 <Url type="application/x-suggestions+json" method="GET" template="http://ff.search.yahoo.com/gossip?output=fxjson&command={searchTerms}" />
 <Url type="text/html" method="GET" template="http://search.yahoo.com/search">
   <Param name="p" value="{searchTerms}"/>
   <Param name="ei" value="UTF-8"/>
   <MozParam name="fr" condition="pref" pref="yahoo-fr" />
 </Url>
 <SearchForm>http://search.yahoo.com/</SearchForm>
 </SearchPlugin>

This is the standard "mozsearch" format. If we have received all the search parameters and plugin information from a provider, we can edit this document and save it in the searchplugins directory as a new file, named after the search provider.

...from a search provider

Providers typically give the following information:

  • ShortName -- the name that a provider chooses
  • Description -- the description that will show up in the search box
  • Favicon URI -- an image that will be displayed in the chrome of the browser
  • Search URL -- the URL that a user will follow if a search is initiated from the Firefox search box with no search terms entered
  • Parameters to specify the search results -- parameters often provided by a partner to help specify that a search is coming from Firefox
  • Search Form -- The search URL from the provider

Let's take an example from a search provider called Webdunia from India.

Webdunia provides general purpose search services for Malayalam speakers. The localization team received the following email with all information necessary to create the Wedunia search plugin.

Hi,
Please pass on the below information to Mozilla.
Presently we are following all open search standards for using instant search box. They can find details of parameters for Webdunia search at
http://search.webdunia.com/provider.xml.
Referral Tracking: I wish if they can return FF-SearchBox for Searches done through Search Box and FF-Address if the serach is done through the address bar.
Thanks,
Webdunia team

In this example, all basic information is contained in the feed:

 http://search.webdunia.com/provider.xml   

Cut and paste that feed into a browser to see the following:

 <OpenSearchDescription>
 <ShortName>Webdunia Search</ShortName>
 −
 <Description>
  Webdunia Search : A Multilingual Search Engine for Indian Content
 </Description>
 <Tags>Webdunia Multilingual Search</Tags>
 <Contact>customer.care@webdunia.net</Contact>
 <Url type="text/html" template="http://search.webdunia.com/search.aspx?q={searchTerms}"/>
 <Url type="application/x-suggestions+json" template="http://search.webdunia.com/suggestions.aspx?q={searchTerms}&stype=json"/>
 <LongName>search.webdunia.com Multilingual Search</LongName>
 <Image height="16" width="16" type="image/x-icon">http://search.webdunia.com/favicon.ico</Image>
 <Query role="request" searchTerms=""/>
 <Language>*</Language>
 <OutputEncoding>UTF-8</OutputEncoding>
 <InputEncoding>UTF-8</InputEncoding>
 </OpenSearchDescription>

Making a favicon for the search plugin

First off, let's convert the favicon URI to something that we can use for our plugin.

Copy the favicon URI to your clipboard. In this case, it is

 http://search.webdunia.com/favicon.ico

Visit the "URI Kitchen" website

 http://software.hixie.ch/utilities/cgi/data/data

Paste the URI into the HTTP URI box on the site and be sure to click the base 64 box at the top and then click "Generate". Copy the entire string in the URL Location bar. For this example, it should be

 data:image/x-icon;base64,AAABAAEAEREAAAEAIADwBAAAFgAAACgAAAARAAAAIgAAAAEAIAAAAAAAyAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHCTaLhmR7CwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHCTaAhwk2nYcJNr4GZHs9hmR7GoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwk2iAcJNrBHCTa%2Fxwk2v8Zkez%2FGZHs%2FxmR7K8ZkewTAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcJNpTHCTa8Rwk2v8cJNr%2FHCTa%2FxmR7P8Zkez%2FGZHs%2FxmR7OIZkew3AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwk2sgcJNr%2FHCTa%2Fxwk2v8cJNr%2FGZHs%2FxmR7P8Zkez%2FGZHs%2FxmR7KIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcJNoDHCTa9Bwk2v8cJNr%2FHCTa%2Fxwk2v8Zkez%2FGZHs%2FxmR7P8Zkez%2FGZHsywAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwk2igcJNr%2FHCTa%2Fxwk2v8gJ73zJ0OX9TBWmPEggdTyGZHs%2FxmR7P8ZkezyGZHsAQAAAAAAAAAAAAAAAAAAAAAAAAAAHCTaVxwk2v8fJbvaKSiT%2FRlTp%2F8Gvsr%2FRXBY%2FzI0pP8nRb3%2BHnvX3RmR7P0ZkewdAAAAAAAAAAAAAAAAAAAAAAAAAAAbI7KSGyOj8DgufPlWS1r%2FBs7W%2FwPQ2v9Ri13%2FjV8I%2F2VLQf82NJr7Gz%2Fc9BpO4nkAAAAAAAAAAAAAAAAbI6IFGyOiaRsjorU7L4H%2FaFtV%2FzemoP8D1%2BH%2FONnh%2F3HNyP%2BmfBP%2Fn2wG%2F4NpFv83bpb%2FGlHiuhwo22QcKNsEAAAAABsjoggbI6JIGyOi9083bf0strn%2FAPX%2F%2FwDs9v958fb%2F2c20%2F469kv%2BjexL%2FPaaE%2F0V5ff4Zkez2GZHsRhwo2wgAAAAAAAAAABsjogUbI6IsZUBWpUWUk%2F8A9f%2F%2FGd3Y%2F2bLpv997%2B%2F%2FTuPZ%2Fw7V1v8D2%2BP%2FNKCX0xmR7DYZkewMAAAAAAAAAAAAAAAAAAAAAAAAAAB8ST89fEk%2F%2Fz2jn%2F9Wln%2F%2FN8Oo%2Fxri2P8A9f%2F%2FAO%2F5%2FwDv%2Bf9Co5NmAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB8ST%2B3ekxD%2Fzqspv8U3t%2F%2FAPX%2F%2FwD1%2F%2F8A9f%2F%2FHtPR6wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHxJPxB8ST%2B3ZGpk%2F1OHfv9Ll4z%2FGdXY%2FxzR0%2BtOjYUXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4T0U7XnFsh3xJP3Z4T0U7AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA%2Fn%2BAAPg%2FgADwD4AA4AeAAOAHgADAB4AAwAOAAMADgADAA4AAAACAAAAAgACAAYAA4AeAAPAPgADwD4AA%2FD%2BAAP%2F%2FgAA%3D 

Copy and paste this *entire* into our search plugin file that we are editing so that <Image width="16" height="16">[your new URI]</image> reads


 <Image width="16" height="16">data:image/x-icon;base64,AAABAAEAEREAAAEAIADwBAAAFgAAACgAAAARAAAAIgAAAAEAIAAAAAAAyAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHCTaLhmR7CwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHCTaAhwk2nYcJNr4GZHs9hmR7GoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwk2iAcJNrBHCTa%2Fxwk2v8Zkez%2FGZHs%2FxmR7K8ZkewTAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcJNpTHCTa8Rwk2v8cJNr%2FHCTa%2FxmR7P8Zkez%2FGZHs%2FxmR7OIZkew3AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwk2sgcJNr%2FHCTa%2Fxwk2v8cJNr%2FGZHs%2FxmR7P8Zkez%2FGZHs%2FxmR7KIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcJNoDHCTa9Bwk2v8cJNr%2FHCTa%2Fxwk2v8Zkez%2FGZHs%2FxmR7P8Zkez%2FGZHsywAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwk2igcJNr%2FHCTa%2Fxwk2v8gJ73zJ0OX9TBWmPEggdTyGZHs%2FxmR7P8ZkezyGZHsAQAAAAAAAAAAAAAAAAAAAAAAAAAAHCTaVxwk2v8fJbvaKSiT%2FRlTp%2F8Gvsr%2FRXBY%2FzI0pP8nRb3%2BHnvX3RmR7P0ZkewdAAAAAAAAAAAAAAAAAAAAAAAAAAAbI7KSGyOj8DgufPlWS1r%2FBs7W%2FwPQ2v9Ri13%2FjV8I%2F2VLQf82NJr7Gz%2Fc9BpO4nkAAAAAAAAAAAAAAAAbI6IFGyOiaRsjorU7L4H%2FaFtV%2FzemoP8D1%2BH%2FONnh%2F3HNyP%2BmfBP%2Fn2wG%2F4NpFv83bpb%2FGlHiuhwo22QcKNsEAAAAABsjoggbI6JIGyOi9083bf0strn%2FAPX%2F%2FwDs9v958fb%2F2c20%2F469kv%2BjexL%2FPaaE%2F0V5ff4Zkez2GZHsRhwo2wgAAAAAAAAAABsjogUbI6IsZUBWpUWUk%2F8A9f%2F%2FGd3Y%2F2bLpv997%2B%2F%2FTuPZ%2Fw7V1v8D2%2BP%2FNKCX0xmR7DYZkewMAAAAAAAAAAAAAAAAAAAAAAAAAAB8ST89fEk%2F%2Fz2jn%2F9Wln%2F%2FN8Oo%2Fxri2P8A9f%2F%2FAO%2F5%2FwDv%2Bf9Co5NmAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB8ST%2B3ekxD%2Fzqspv8U3t%2F%2FAPX%2F%2FwD1%2F%2F8A9f%2F%2FHtPR6wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHxJPxB8ST%2B3ZGpk%2F1OHfv9Ll4z%2FGdXY%2FxzR0%2BtOjYUXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4T0U7XnFsh3xJP3Z4T0U7AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA%2Fn%2BAAPg%2FgADwD4AA4AeAAOAHgADAB4AAwAOAAMADgADAA4AAAACAAAAAgACAAYAA4AeAAPAPgADwD4AA%2FD%2BAAP%2F%2FgAA%3D</image>

Special parameters requested by the provider

Next we have to specify any parameters that the search plugin provided. In the Webdunia example, they have defined parameters of their search template and we need to amend our search plugin to account for this format. We do this by changing

 <Url type="text/html" method="GET" template="http://search.yahoo.com/search">
   <Param name="p" value="{searchTerms}"/>

to

 <Url type="text/html" template="http://search.webdunia.com/search.aspx">
   <Param name="q" value="{searchTerms}"/>

As is often the case, Webdunia is also asking for an additional parameter to track the percentage of searches are coming from Firefox. We honor these requests and modify the Param settings in the mozsearch form. You can see exactly how the mozsearch form is edited to satisfy their request by adding a new line,

 <Param name="FF-SearchBox" value="1" />

after the parameter

 <Param name="q" value="{searchTerms}"/>

When you are ready to test, when searching for the term "Banglore", this parameter will return a URL :

 http://search.webdunia.com/search.aspx?q=Bangalore&FF-SearchBox=1

Lastly, be sure to amend each of the following as instructed by the search provider:

<ShortName> <Description> <SearchForm>

Search providers will often provide more information, but you only need to make sure the mozsearch template is complete. Nothing else, with the exception of specific search parameter requests as shown above, is necessary.

Final format

The final search plugin file should looks like this

 <SearchPlugin xmlns="http://www.mozilla.org/2006/browser/search/">
 <ShortName>Webdunia Search</ShortName>
 <Description>Webdunia Search : A Multilingual Search Engine for Indian Content</Description>
 <InputEncoding>UTF-8</InputEncoding>
 <Image width="16" height="16">data:image/x-icon;base64,AAABAAEAEREAAAEAIADwBAAAFgAAACgAAAARAAAAIgAAAAEAIAAAAAAAyAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHCTaLhmR7CwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHCTaAhwk2nYcJNr4GZHs9hmR7GoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwk2iAcJNrBHCTa%2Fxwk2v8Zkez%2FGZHs%2FxmR7K8ZkewTAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcJNpTHCTa8Rwk2v8cJNr%2FHCTa%2FxmR7P8Zkez%2FGZHs%2FxmR7OIZkew3AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwk2sgcJNr%2FHCTa%2Fxwk2v8cJNr%2FGZHs%2FxmR7P8Zkez%2FGZHs%2FxmR7KIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcJNoDHCTa9Bwk2v8cJNr%2FHCTa%2Fxwk2v8Zkez%2FGZHs%2FxmR7P8Zkez%2FGZHsywAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwk2igcJNr%2FHCTa%2Fxwk2v8gJ73zJ0OX9TBWmPEggdTyGZHs%2FxmR7P8ZkezyGZHsAQAAAAAAAAAAAAAAAAAAAAAAAAAAHCTaVxwk2v8fJbvaKSiT%2FRlTp%2F8Gvsr%2FRXBY%2FzI0pP8nRb3%2BHnvX3RmR7P0ZkewdAAAAAAAAAAAAAAAAAAAAAAAAAAAbI7KSGyOj8DgufPlWS1r%2FBs7W%2FwPQ2v9Ri13%2FjV8I%2F2VLQf82NJr7Gz%2Fc9BpO4nkAAAAAAAAAAAAAAAAbI6IFGyOiaRsjorU7L4H%2FaFtV%2FzemoP8D1%2BH%2FONnh%2F3HNyP%2BmfBP%2Fn2wG%2F4NpFv83bpb%2FGlHiuhwo22QcKNsEAAAAABsjoggbI6JIGyOi9083bf0strn%2FAPX%2F%2FwDs9v958fb%2F2c20%2F469kv%2BjexL%2FPaaE%2F0V5ff4Zkez2GZHsRhwo2wgAAAAAAAAAABsjogUbI6IsZUBWpUWUk%2F8A9f%2F%2FGd3Y%2F2bLpv997%2B%2F%2FTuPZ%2Fw7V1v8D2%2BP%2FNKCX0xmR7DYZkewMAAAAAAAAAAAAAAAAAAAAAAAAAAB8ST89fEk%2F%2Fz2jn%2F9Wln%2F%2FN8Oo%2Fxri2P8A9f%2F%2FAO%2F5%2FwDv%2Bf9Co5NmAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB8ST%2B3ekxD%2Fzqspv8U3t%2F%2FAPX%2F%2FwD1%2F%2F8A9f%2F%2FHtPR6wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHxJPxB8ST%2B3ZGpk%2F1OHfv9Ll4z%2FGdXY%2FxzR0%2BtOjYUXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4T0U7XnFsh3xJP3Z4T0U7AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA%2Fn%2BAAPg%2FgADwD4AA4AeAAOAHgADAB4AAwAOAAMADgADAA4AAAACAAAAAgACAAYAA4AeAAPAPgADwD4AA%2FD%2BAAP%2F%2FgAA%3D</Image>
 <Url type="text/html" template="http://search.webdunia.com/search.aspx">
   <Param name="q" value="{searchTerms}"/>
   <Param name="FF-SearchBox" value="1" />
 </Url>
 <Url type="application/x-suggestions+json" template="http://search.webdunia.com/suggestions.aspx">  
   <Param name="q" value="{searchTerms}"/>
   <Param name="stype" value="json"/>
 </Url>
 <SearchForm>http://search.webdunia.com/</SearchForm>
 </SearchPlugin>

Amending list.txt file

Localizers have to amend the "list.txt" file in your repository to account for the new search plugin. Type the following: $ open list.txt

Add the name of your search plugin to the list. In the above example, it is

 webdunia

Save your list.txt document.

Testing

One quick way to test your plugin is to copy the .xml file you just created an paste that file into an existing Firefox profile. You can do this by copying the file in the repository (right click --> copy file) and then navigating to your Firefox profile. On a Mac, you would do this by navigating

 ~Library/Application Support/Firefox/Profiles/[Your profile]/searchplugins/

and pasting the .xml file into that folder.

Restart Firefox and check the upper right search plugin drop down box to see if the new plugin is there. Type "Bangalore" and you should see results in the browser window. The URL in the location bar should

 http://search.webdunia.com/search.aspx?q=Bangalore&FF-SearchBox=1

Removing other search plugins

If in your work, you would like to remove the en-US default plugins so that you can add more relevant local providers, you simply need to navigate to the path of your local repository's searchplugin directory from your home state.

Remember the cd command.

 $cd /Users/../../../ab-CD/browser/searchplugins/

Let's say you want to remove the Yahoo! search plugin. From the termina in the searchplugin directory, type

 $ rm yahoo.xml 

Be sure to also remove the search plugin from the list.txt file by opening that file, removing the name of the plugin and saving it.

Check the status of your repository

 $ hg stat

You'll see

 R browser/searchplugins/yahoo.xml

You now need to update your repository with the

 $ hg addremove

Check status

 $ hg stat

And you see

 R browser/searchplugins/yahoo.xml

Create a new patch that removes the plugin

 $ hg diff > ~/Desktop/abCD.searchplugin.patch

And then follow the steps above to upload that patch.

Editing Region.properties

If you have removed a search plugin and replaced it with a local provider, you will need to edit the order of your region.properties file.

Navigate to the region.properties file with a path like

 $~/Users/mozilla/Mozilla/Localizations/l10n-mozilla-1.9.1/abCD/browser/chrome/browser-region

Using the Webdunia example from above, open the region.properties file in this directory using the following command

 $open region.properties

In the text editor, change the line that reads

 browser.search.order.2 = [default Search Provider, typically Yahoo]

to

 browser.search.order.2 = Webdunia Search

Save your file.

Updating your local repository and creating a patch

After the file has been tested, we need to add and remove any changes we may have made to the local repository. Be sure that the current path leads to the ab-CD directory where all edits occurred. Remember, check the path by typing:

 $pwd

the path should say something like

 ~/Users/mozilla/Mozilla/Localizations/[ab-CD]

Once there, type

 $ hg addremove

To get an output like

 adding browser/searchplugins/webdunia.xml

This shows that Webdunia has been added.

Check the status of your hg repository by typing

 $ hg stat

This yields

 M browser/searchplugins/list.txt
 M browser/chrome/browser-region/region.properties
 A browser/searchplugins/webdunia.xml

which tells that we (M) modified the list.txt document and region.properties and (A) added an xml file called webdunia.xml

Diff

Now you are ready to look at the differences between the repository before and after all this work.

Type

 $ hg diff

And the output reflects the "diff" (difference) of all changes you have made.

 diff -r c924c77b0bfd browser/chrome/browser-region/region.properties
 --- a/browser/chrome/browser-region/region.properties	Wed Jul 22 16:58:37 2009 +0530
 +++ b/browser/chrome/browser-region/region.properties	Wed Aug 12 18:19:58 2009 +0200
 @@ -5,7 +5,7 @@

 browser.search.defaultenginename = Google
 browser.search.order.1 = Google
 -browser.search.order.2 = Yahoo
 +browser.search.order.2 = Webdunia Search
 browser.contentHandlers.types.0.title = Bloglines
 browser.contentHandlers.types.0.uri = http://www.bloglines.com/login?r=/sub/%s
 browser.contentHandlers.types.1.title = My Yahoo
 
 diff -r 567ef2c90f0f browser/searchplugins/list.txt
 --- a/browser/searchplugins/list.txt	Mon Jan 12 13:21:09 2009 +0530
 +++ b/browser/searchplugins/list.txt	Wed Aug 12 16:08:36 2009 +0200
 @@ -2,3 +2,4 @@
 yahoo
 eBay
 wikipedia
 +webdunia
 diff -r 567ef2c90f0f browser/searchplugins/webdunia.xml
 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
 +++ b/browser/searchplugins/webdunia.xml	Wed Aug 12 16:08:36 2009 +0200
 @@ -0,0 +1,14 @@
 +<SearchPlugin xmlns="http://www.mozilla.org/2006/browser/search/">
 +<ShortName>Webdunia Search</ShortName>
 +<Description>Webdunia Search : A Multilingual Search Engine for Indian Content</Description>
 +<InputEncoding>UTF-8</InputEncoding>
 +<Image width="16" height="16">data:image/x-	icon;base64,AAABAAEAEREAAAEAIADwBAAAFgAAACgAAAARAAAAIgAAAAEAIAAAAAAAyAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHCTaLhmR7CwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHCTaAhwk2nYcJNr4GZHs9hmR7GoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwk2iAcJNrBHCTa%2Fxwk2v8Zkez%2FGZHs%2FxmR7K8ZkewTAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcJNpTHCTa8Rwk2v8cJNr%2FHCTa%2FxmR7P8Zkez%2FGZHs%2FxmR7OIZkew3AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwk2sgcJNr%2FHCTa%2Fxwk2v8cJNr%2FGZHs%2FxmR7P8Zkez%2FGZHs%2FxmR7KIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcJNoDHCTa9Bwk2v8cJNr%2FHCTa%2Fxwk2v8Zkez%2FGZHs%2FxmR7P8Zkez%2FGZHsywAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwk2igcJNr%2FHCTa%2Fxwk2v8gJ73zJ0OX9TBWmPEggdTyGZHs%2FxmR7P8ZkezyGZHsAQAAAAAAAAAAAAAAAAAAAAAAAAAAHCTaVxwk2v8fJbvaKSiT%2FRlTp%2F8Gvsr%2FRXBY%2FzI0pP8nRb3%2BHnvX3RmR7P0ZkewdAAAAAAAAAAAAAAAAAAAAAAAAAAAbI7KSGyOj8DgufPlWS1r%2FBs7W%2FwPQ2v9Ri13%2FjV8I%2F2VLQf82NJr7Gz%2Fc9BpO4nkAAAAAAAAAAAAAAAAbI6IFGyOiaRsjorU7L4H%2FaFtV%2FzemoP8D1%2BH%2FONnh%2F3HNyP%2BmfBP%2Fn2wG%2F4NpFv83bpb%2FGlHiuhwo22QcKNsEAAAAABsjoggbI6JIGyOi9083bf0strn%2FAPX%2F%2FwDs9v958fb%2F2c20%2F469kv%2BjexL%2FPaaE%2F0V5ff4Zkez2GZHsRhwo2wgAAAAAAAAAABsjogUbI6IsZUBWpUWUk%2F8A9f%2F%2FGd3Y%2F2bLpv997%2B%2F%2FTuPZ%2Fw7V1v8D2%2BP%2FNKCX0xmR7DYZkewMAAAAAAAAAAAAAAAAAAAAAAAAAAB8ST89fEk%2F%2Fz2jn%2F9Wln%2F%2FN8Oo%2Fxri2P8A9f%2F%2FAO%2F5%2FwDv%2Bf9Co5NmAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB8ST%2B3ekxD%2Fzqspv8U3t%2F%2FAPX%2F%2FwD1%2F%2F8A9f%2F%2FHtPR6wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHxJPxB8ST%2B3ZGpk%2F1OHfv9Ll4z%2FGdXY%2FxzR0%2BtOjYUXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4T0U7XnFsh3xJP3Z4T0U7AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA%2Fn%2BAAPg%2FgADwD4AA4AeAAOAHgADAB4AAwAOAAMADgADAA4AAAACAAAAAgACAAYAA4AeAAPAPgADwD4AA%2FD%2BAAP%2F%2FgAA%3D</Image>
 +<Url type="text/html" template="http://search.webdunia.com/search.aspx">
 +  <Param name="q" value="{searchTerms}"/>
 +</Url>	
 +<Url type="application/x-suggestions+json" template="http://search.webdunia.com/suggestions.aspx">  
 +  <Param name="q" value="{searchTerms}"/>	
 +  <Param name="stype" value="json"/>
 +</Url>
 +<SearchForm>http://search.webdunia.com/</SearchForm>
 +</SearchPlugin>


Creating the patch

To create the patch for upload to Bugzilla, type the following command

 $ hg diff > ~/Desktop/searchplugins.patch

You have now created a patch that reflects these changes and is saved on your desktop.

Upload your patch

Most of the work has been done so that you can upload changes to a bug that was filed by Mozilla's l10n-drivers team to track the completion of your localization.

  1. Log into Bugzilla and find the bug that was filed to track changes to search plugins
  2. The "Attachments" section of the bug has a link that allows you to add an attachment
  3. Click this link and upload your file
  4. Add a quick description for the attachment, click the "patch" box, and request a review by one Mozilla's l10n-drivers listed in the bug
  5. Enter the bugzilla ID/email of the person you want to review the patch.
  6. Add a comment describing the patch
  7. Commit

Your patch will now wait for review from one of the l10n-drivers.