Changes

Jump to: navigation, search

How-Tos

6,945 bytes added, 10:41, 5 December 2008
no edit summary
| 
| 
|-
|width="25" align="left" style="color:Darkred;"|'''B)'''
|
|
|- style="height:40px"
|
|style="color:Darkred;"|'''Step 1'''
|
|- style="height:40px"
|
|style="background-color:white;color:black;border:thin dashed black;"|On some page choose the edit option.
|align="center"|[[Image:How-tos-wiki-page-edit.JPG]]
|- style="height:40px"
|
|style="color:Darkred;"|'''Step 2'''
|
|- style="height:40px"
|
|style="background-color:white;color:black;border:thin dashed black;"|Create a link to the page you want to created. Ex. <pre>[[test_page | test]]</pre>
|align="center"|[[Image:How-tos-wiki-page-edit_link.JPG]]
|- style="height:40px"
|
|style="color:Darkred;"|'''Step 3'''
|
|- style="height:40px"
|
|style="background-color:white;color:black;border:thin dashed black;"|Click on the Show Preview button. The link now appears in red. This indicates that the page the link is pointing to does not exist.
|align="center"|[[Image:How-tos-wiki-page-save.JPG]]
|- style="height:40px"
|
|style="color:Darkred;"|'''Step 4'''
|
|- style="height:40px"
|
|style="background-color:white;color:black;border:thin dashed black;"|Click on the red link. A page appears with '<code>You've followed a link to a page that doesn't exist yet</code>'.
|align="center"|[[Image:How-tos-wiki-page-doesnt_exist.JPG]]
|- style="height:40px"
|
|style="color:Darkred;"|'''Step 5'''
|
|- style="height:40px"
|
|style="background-color:white;color:black;border:thin dashed black;"|Enter anything into the text box and press save.
|align="center"|[[Image:How-tos-wiki-page-save.JPG]]
|-
|&nbsp;
|
|
|}
<br/>
<p>
*For an overview on Automated testing with Mozilla can be found on the [https://developer.mozilla.org/en/Mozilla_automated_testing Mozilla Developer Center].*Presentation overview on automated testing by Ehsan Akhgari [http://ehsanakhgari.org/sites/default/files/talks/test-mozilla/index.html automated testing] 
</p>
<p>
===Thunderbird===
 
==Mercurial==
 
=====[http://blog.sidkalra.com/2008/10/applying-a-patch-to-a-repo-using-mercurial/ Applying a patch to a Repo]=====
{|style="background-color:LightYellow;width:100%;padding:10px"
<hr style="height:5px;width:15%;background-color:Peru;">
<br/>
{|style="background-color:PaleGoldenrod;width:90%;align:center;margin-left:auto;margin-right:auto;"
|
'''<span style="color:DarkRed">Step 1</span>'''
<blockquote>
<pre>Download the .patch or .diff file onto your machine</pre>
</blockquote>
 
'''<span style="color:DarkRed">Step 2</span>'''
<blockquote>
<pre>Navigate to the repo that you want to install the patch to i.e. testRepo
(I will using repo name for this example, substitute it with your repo name when you are trying to apply a patch yourself)</pre>
</blockquote>
 
'''<span style="color:DarkRed">Step 3</span>'''
<blockquote>
<pre>Open testRepo\.hg\hgrc (the config file)</pre>
</blockquote>
 
'''<span style="color:DarkRed">Step 4</span>'''
<blockquote>
<pre>Add the following to hgrc and save (This enables queues for hg so that we can use commands that we need, qimport and qpush)[extensions]
hgext.mq =</pre>
</blockquote>
 
'''<span style="color:DarkRed">Step 5</span>'''
<blockquote>
<pre>Now open up a command prompt and navigate to your repo directory</pre>
</blockquote>
 
'''<span style="color:DarkRed">Step 6</span>'''
<blockquote>
<pre>Type in hg qimport <<full-path-of-patch-file>> and press enter</pre>
</blockquote>
 
'''<span style="color:DarkRed">Step 7</span>'''
<blockquote>
<pre>The above command should create a patch folder within testRepo\.hg\patches\</pre>
</blockquote>
 
'''<span style="color:DarkRed">Step 8</span>'''
<blockquote>
<pre>Next navigate to testRepo\.hg\patches\</pre>
</blockquote>
 
'''<span style="color:DarkRed">Step 9</span>'''
<blockquote>
<pre>Type in hg qpush <<patch-file-name>></pre>
</blockquote>
 
'''<span style="color:DarkRed">Step 10</span>'''
<blockquote>
<pre>Done! The patch should have been applied (if you get an error such as “abort: local changes found,
refresh first” then that means you have made changes to the original files and the patch won’t work)</pre>
</blockquote>
 
|}
==Open Office==
==Linux==
===Fedora===
===Ubuntu===
*Ubuntu: [http://www.ubuntu.com/ http://www.ubuntu.com/]
*Ubuntu Forums: [http://ubuntuforums.org/ http://ubuntuforums.org]
 
===Songbird===
====Linux Java How-to====
For whatever reason, Songbird does not use the Java plugin if it is already installed for Firefox.
The following is a set of instructions to install and enable the Java Runtime Environment plugin for Songbird on Linux.
=====Ubuntu=====
* Download the java runtime environment binary:
<blockquote>
<pre>
1. Go to http://java.sun.com/javase/downloads/index.jsp
 
2. Scroll down to "Java Runtime Environment (JRE) 6 Update 7"
 
3. Click on DOWNLOAD
 
4. Select PLATFORM of Linux
 
5. Select LANGUAGE of Multi-language
 
6. Check "I agree..."
 
7. Click CONTINUE
 
8. Click jre-6u7-linux-i586.bin link
 
9. Save the file
</pre>
</blockquote>
* Once the download completes, move the file to your HOME directory.
* Click Applications > Accessories > Terminal
* Install the JRE binary:
<blockquote>
<pre>
1. sudo chmod a+x ./jre-6u7-linux-i586.bin
 
2. sudo ./jre-6u7-linux-i586.bin
</pre>
</blockquote>
* Once the installation completes, create a shortcut for your Mozilla Plugins:
<blockquote>
<pre>
1. sudo mkdir /home/<username>/.mozilla/plugins
2. sudo ln -s /home/<username>/jre1.6.0_07/i386/ns7/libjavaplugin_oji.so /home/<username>/.mozilla/plugins/libjavaplugin_oji.so
</pre>
</blockquote>
* Start Songbird
* Open a new tab
* Type about:plugins into the URL bar and press ENTER<br />'''You should see a Java Plugin listed'''
* Go to http://firenes.zaldo.com.ar/emulador.php?rom=Mario%20Bros%20(JU)<br />'''The applet should load momentarily'''
 
=====Fedora=====
* Download the java runtime environment binary:
<blockquote>
<pre>
1. Go to http://java.sun.com/javase/downloads/index.jsp
 
2. Scroll down to "Java Runtime Environment (JRE) 6 Update 7"
 
3. Click on DOWNLOAD
 
4. Select PLATFORM of Linux
 
5. Select LANGUAGE of Multi-language
 
6. Check "I agree..."
 
7. Click CONTINUE
 
8. Click jre-6u7-linux-i586.bin link
 
9. Save the file
</pre>
</blockquote>
* Once the download completes, move the file to your HOME directory.
* Click Applications > System Tools > Terminal
* Install the JRE binary:
<blockquote>
<pre>
1. su
 
2. ENTER YOUR PASSWORD
 
3. chmod a+x ./jre-6u7-linux-i586.bin
 
4. ./jre-6u7-linux-i586.bin
</pre>
</blockquote>
* Once the installation completes, create a shortcut for your Mozilla Plugins:
<blockquote>
<pre>
1. mkdir /home/<username>/.mozilla/plugins
2. ln -s /home/<username>/jdk1.6.0_07/jre/plugin/i386/ns7/libjavaplugin_oji.so /home/<username>/.mozilla/plugins/libjavaplugin_oji.so
</pre>
</blockquote>
* Start Songbird
* Open a new tab
* Type about:plugins into the URL bar and press ENTER<br />'''You should see a Java Plugin listed'''
* Go to http://firenes.zaldo.com.ar/emulador.php?rom=Mario%20Bros%20(JU)<br />'''The applet should load momentarily'''
 
[[Category:Mozilla for beginners]]
1
edit

Navigation menu