[Esbox-commits] r2286 - in branches/work_Andre/org.maemo.esbox.help: . html html/concepts html/gettingstarted html/tasks

andregomes at garage.maemo.org andregomes at garage.maemo.org
Fri Oct 9 00:33:48 EEST 2009


Author: andregomes
Date: 2009-10-09 00:33:46 +0300 (Fri, 09 Oct 2009)
New Revision: 2286

Added:
   branches/work_Andre/org.maemo.esbox.help/html/concepts/ProfilingApplications.xhtml
   branches/work_Andre/org.maemo.esbox.help/html/concepts/RSEConnection.xhtml
   branches/work_Andre/org.maemo.esbox.help/html/concepts/StringExternalization.xhtml
   branches/work_Andre/org.maemo.esbox.help/html/gettingstarted/HowToDownloadHelpDocumentation.xhtml
   branches/work_Andre/org.maemo.esbox.help/html/gettingstarted/UsingHoverHelp.xhtml
   branches/work_Andre/org.maemo.esbox.help/html/tasks/ExternalizeString.xhtml
   branches/work_Andre/org.maemo.esbox.help/html/tasks/InstallingPCConnectivity.xhtml
Removed:
   branches/work_Andre/org.maemo.esbox.help/html/concepts/ProfilingApplications.html
   branches/work_Andre/org.maemo.esbox.help/html/concepts/StringExternalization.html
   branches/work_Andre/org.maemo.esbox.help/html/gettingstarted/HowToDownloadHelpDocumentation.html
   branches/work_Andre/org.maemo.esbox.help/html/gettingstarted/UsingHoverHelp.html
   branches/work_Andre/org.maemo.esbox.help/html/tasks/ExternalizeString.html
   branches/work_Andre/org.maemo.esbox.help/html/tasks/InstallingPCConnectivity.html
Modified:
   branches/work_Andre/org.maemo.esbox.help/html/tasks/ConfigurePythonInterpreter.xhtml
   branches/work_Andre/org.maemo.esbox.help/html/tasks/UsingFlasherWizard.xhtml
   branches/work_Andre/org.maemo.esbox.help/html/tocconcepts.html
   branches/work_Andre/org.maemo.esbox.help/html/tocgettingstarted.html
   branches/work_Andre/org.maemo.esbox.help/html/toctasks.html
   branches/work_Andre/org.maemo.esbox.help/tocconcepts.xml
   branches/work_Andre/org.maemo.esbox.help/tocgettingstarted.xml
   branches/work_Andre/org.maemo.esbox.help/toctasks.xml
Log:
Splitting duplicated contents into Mica Common Help Plugin.

Deleted: branches/work_Andre/org.maemo.esbox.help/html/concepts/ProfilingApplications.html
===================================================================
--- branches/work_Andre/org.maemo.esbox.help/html/concepts/ProfilingApplications.html	2009-10-08 18:11:13 UTC (rev 2285)
+++ branches/work_Andre/org.maemo.esbox.help/html/concepts/ProfilingApplications.html	2009-10-08 21:33:46 UTC (rev 2286)
@@ -1,60 +0,0 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN">
-<html lang="en">
-<head>
-	<meta name="copyright" content="Copyright (c) INdT 2007-2009, (c) Nokia 2008-2009. This page is made available under license. For full details see the LEGAL in the documentation book that contains this page." >
-	<meta http-equiv="Content-Language" content="en-us">
-	<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-	<title>Profiling Applications</title>
-	<link rel="stylesheet" type="text/css" href="../help.css">
-</head>
-
-<body>
-<h2 class="style1">Profiling Applications</h2>
-
-<p>Application profiling is one of the most valuable techniques available for 
-programmers to get out of the world of premature optimization, and back into reality.
-By simply profiling an application, it becomes immediately apparent where the 
-overwhelming memory and CPU burdens exist, and allows you to quickly squash them.
-ESbox provides support for <a href="http://www.valgrind.org/">Valgrind</a> 
-memory profiler, <a href="http://oprofile.sourceforge.net/news/">OProfile</a> 
-system-wide profiler and <a href="http://www.ltrace.org">Ltrace</a> library call monitor
- for both C/C++ and Python Projects.</p>
-
-<h3 class="style1">Valgrind</h3>
-<p>Valgrind is an Open Source suite of tools for debugging and profiling Linux programs. 
-It works only on x86 (and PPC) and is a powerful and easy to use tool that can save 
-you a lot of debugging time.</p>
-
-<p>Because Valgrind works by simulating the x86 processor and instrumenting the binaries
-on the fly, it can control the program execution completely. On the downside it makes 
-program execution 10-300 times slower than normal, depending on the used Valgrind 
-tools (massif is the fastest, callgrind the slowest) and can take a huge amount of 
-memory.</p>
-
-<h3 class="style1">OProfile</h3>
-
-<p>OProfile is a system-wide profiler for Linux systems, capable of profiling all 
-running code at low overhead. OProfile is released under the GNU GPL.</p>
-
-<p>It consists of a kernel driver and a daemon for collecting sample data, and several 
-post-profiling tools for turning data into information.</p>
-
-<p>OProfile leverages the hardware performance counters of the CPU to enable profiling 
-of a wide variety of interesting statistics, which can also be used for basic 
-time-spent profiling. All code is profiled: hardware and software interrupt handlers, 
-kernel modules, the kernel, shared libraries, and applications.</p>
-
-
-
-<h3 class="style1">Ltrace</h3>
-<p>Ltrace is a debugging program which runs a specified command until it exits. 
-While the command is executing, ltrace intercepts and records the dynamic library calls 
-which are called by the executed process and the signals received by that process.</p>
-
-
-<h3>Related Topic</h3>
-<ul>
-  <li><a href="../tasks/ProfilingMaemoApplications.html">Profiling Maemo Applications</a>  </li>
-</ul>
-</body>
-</html>
\ No newline at end of file

Copied: branches/work_Andre/org.maemo.esbox.help/html/concepts/ProfilingApplications.xhtml (from rev 2284, branches/work_Andre/org.maemo.esbox.help/html/concepts/ProfilingApplications.html)
===================================================================
--- branches/work_Andre/org.maemo.esbox.help/html/concepts/ProfilingApplications.xhtml	                        (rev 0)
+++ branches/work_Andre/org.maemo.esbox.help/html/concepts/ProfilingApplications.xhtml	2009-10-08 21:33:46 UTC (rev 2286)
@@ -0,0 +1,16 @@
+<?xml version="1.0" encoding="UTF-8" ?>
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml">
+<head>
+<meta http-equiv="Content-Type" content="text/xhtml+xml; charset=UTF-8" />
+<link rel="stylesheet" type="text/css" href="../help.css"/>
+<title>Profiling Applications</title>
+</head>
+<body>
+<include path="PLUGINS_ROOT/org.maemo.mica.common.help/html/concepts/ProfilingApplications.xhtml/profiling_applications"/>
+<h3>Related Topic</h3>
+<ul>
+  <li><a href="../tasks/ProfilingMaemoApplications.html">Profiling Maemo Applications</a>  </li>
+</ul>
+</body>
+</html>
\ No newline at end of file


Property changes on: branches/work_Andre/org.maemo.esbox.help/html/concepts/ProfilingApplications.xhtml
___________________________________________________________________
Name: svn:mime-type
   + text/html

Added: branches/work_Andre/org.maemo.esbox.help/html/concepts/RSEConnection.xhtml
===================================================================
--- branches/work_Andre/org.maemo.esbox.help/html/concepts/RSEConnection.xhtml	                        (rev 0)
+++ branches/work_Andre/org.maemo.esbox.help/html/concepts/RSEConnection.xhtml	2009-10-08 21:33:46 UTC (rev 2286)
@@ -0,0 +1,14 @@
+<?xml version="1.0" encoding="UTF-8" ?>
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml">
+<head>
+<meta http-equiv="Content-Type" content="text/xhtml+xml; charset=UTF-8" />
+<link rel="stylesheet" type="text/css" href="../help.css" />
+<title>RSE Connection</title>
+</head>
+<body>
+<include
+	path="PLUGINS_ROOT/org.maemo.mica.common.help/html/concepts/RSEConnection.xhtml/rse_connection" />
+<p></p>
+</body>
+</html>
\ No newline at end of file


Property changes on: branches/work_Andre/org.maemo.esbox.help/html/concepts/RSEConnection.xhtml
___________________________________________________________________
Name: svn:mime-type
   + text/plain

Deleted: branches/work_Andre/org.maemo.esbox.help/html/concepts/StringExternalization.html
===================================================================
--- branches/work_Andre/org.maemo.esbox.help/html/concepts/StringExternalization.html	2009-10-08 18:11:13 UTC (rev 2285)
+++ branches/work_Andre/org.maemo.esbox.help/html/concepts/StringExternalization.html	2009-10-08 21:33:46 UTC (rev 2286)
@@ -1,57 +0,0 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN">
-<html lang="en">
-<head>
-	<meta name="copyright" content="Copyright (c) INdT 2007-2009, (c) Nokia 2008-2009. This page is made available under license. For full details see the LEGAL in the documentation book that contains this page." >
-	<meta http-equiv="Content-Language" content="en-us">
-	<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-	<title>String Externalization</title>
-	<link rel="stylesheet" type="text/css" href="../help.css">
-    <style type="text/css">
-<!--
-.style1 {font-weight: bold}
--->
-    </style>
-</head>
-
-<body>
-<h2 class="style1">String Externalization</h2>
-
-<p>The Maemo tools help you develop applications that can be run on international 
-platforms. Localization, or externalization, is an important part of global software distribution and opens up new 
-markets around the world.</p>
-<p> Externalization is the process of converting software user interfaces to 
-a user’s local culture. For the most part, localization involves converting text 
-strings into the language of the local culture, but it can also involve time, date, 
-and number formats. On Maemo, localization of strings is based on the standard 
-<strong>GNU gettext</strong> package, and all the 
-necessary tools are included in Scratchbox.</p>
-
-
-<p><b>For example:</b></p>
-<p>In your source code, you probably have many strings, which eventually are shown in the user interface. For example:</p>
-
-<p><b>hildon_app_set_title ( app, "MaemoPad" );</b></p>
-
-<p>To make your strings localizable, you need to wrap the strings you want translated 
-in gettext("String") calls. In practice, writing gettext() for every string is tedious. 
-The common practice is to set the following #define.</p>
-
-<p><b>#define _(String) gettext (String)</b></p>
-
-<p>Thus the i18n version of the example would be:</p>
-
-<p><b>hildon_app_set_title ( app, _("MaemoPad") );</b></p>
-
-
-<p>The Externalize Strings wizard allows you to refactor a compilation unit 
-such that strings used in the compilation unit will be wrapped in these
-macros, and the translatable strings will be moved into <tt>*.po</tt> files
-which can be edited to support new languages.</p>
-
-<h3>Related Topic</h3>
-<ul>
-  <li><a href="../tasks/ExternalizeString.html">Extracting Strings</a>  </li>
-  <li><a href="http://www.gnu.org/software/gettext/">GNU gettext documentation</a>  </li>
-</ul>
-</body>
-</html>
\ No newline at end of file

Copied: branches/work_Andre/org.maemo.esbox.help/html/concepts/StringExternalization.xhtml (from rev 2284, branches/work_Andre/org.maemo.esbox.help/html/concepts/StringExternalization.html)
===================================================================
--- branches/work_Andre/org.maemo.esbox.help/html/concepts/StringExternalization.xhtml	                        (rev 0)
+++ branches/work_Andre/org.maemo.esbox.help/html/concepts/StringExternalization.xhtml	2009-10-08 21:33:46 UTC (rev 2286)
@@ -0,0 +1,17 @@
+<?xml version="1.0" encoding="UTF-8" ?>
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml">
+<head>
+<meta http-equiv="Content-Type" content="text/xhtml+xml; charset=UTF-8" />
+<link rel="stylesheet" type="text/css" href="../help.css"/>
+<title>String Externalization</title>
+</head>
+<body>
+<include path="PLUGINS_ROOT/org.maemo.mica.common.help/html/concepts/StringExternalization.xhtml/string_externalization"/>
+<h3>Related Topic</h3>
+<ul>
+  <li><a href="../tasks/ExternalizeString.xhtml">Extracting Strings</a>  </li>
+  <li><a href="http://www.gnu.org/software/gettext/">GNU gettext documentation</a>  </li>
+</ul>
+</body>
+</html>
\ No newline at end of file


Property changes on: branches/work_Andre/org.maemo.esbox.help/html/concepts/StringExternalization.xhtml
___________________________________________________________________
Name: svn:mime-type
   + text/html

Deleted: branches/work_Andre/org.maemo.esbox.help/html/gettingstarted/HowToDownloadHelpDocumentation.html
===================================================================
--- branches/work_Andre/org.maemo.esbox.help/html/gettingstarted/HowToDownloadHelpDocumentation.html	2009-10-08 18:11:13 UTC (rev 2285)
+++ branches/work_Andre/org.maemo.esbox.help/html/gettingstarted/HowToDownloadHelpDocumentation.html	2009-10-08 21:33:46 UTC (rev 2286)
@@ -1,33 +0,0 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN">
-<html lang="en">
-<head>
-	<meta name="copyright" content="Copyright (c) INdT 2007-2009, (c) Nokia 2008-2009. This page is made available under license. For full details see the LEGAL in the documentation book that contains this page." >
-	<meta http-equiv="Content-Language" content="en-us">
-	<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-	<title>How to Download and Install Help Documentation</title>
-	<link rel="stylesheet" type="text/css" href="../help.css">
-	<style type="text/css">
-		
-		<!--
-			.style1 {font-weight: bold}
-			-->
-	</style>
-</head>
-
-<body>
-	<h2 class="style1">How to Download and Install Help Documentation</h2>
-	
-	<p>
-	The Help documentation is avaible as Eclipse features on Mica Update site, so open  <strong>Help &gt; Software Update </strong> page
-	 and add the site url  (<a href="http://mica.garage.maemo.org/update/help/" >http://mica.garage.maemo.org/update/help/</a>). Thus, you can navigate and select which documentations you want to install.
-         Notice that If you install API Reference features, the hover help on Editor will automatically use them.
-        <p><img src="../images/maemo-help-install.png" alt="Maemo Help Installation"> </p>
-        You can also click <strong>Automatic Updates</strong> and enable it. Thus, you will be noticed every time a Maemo Documentation needs to be updated. <br> 
-            
-	
-<h3>Related Topics</h3>
-<ul>
-	<li><a href="UsingHoverHelp.html">Using Hover Help</a></li>
-</ul> 
-</body>
-</html>

Copied: branches/work_Andre/org.maemo.esbox.help/html/gettingstarted/HowToDownloadHelpDocumentation.xhtml (from rev 2284, branches/work_Andre/org.maemo.esbox.help/html/gettingstarted/HowToDownloadHelpDocumentation.html)
===================================================================
--- branches/work_Andre/org.maemo.esbox.help/html/gettingstarted/HowToDownloadHelpDocumentation.xhtml	                        (rev 0)
+++ branches/work_Andre/org.maemo.esbox.help/html/gettingstarted/HowToDownloadHelpDocumentation.xhtml	2009-10-08 21:33:46 UTC (rev 2286)
@@ -0,0 +1,16 @@
+<?xml version="1.0" encoding="UTF-8" ?>
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml">
+<head>
+<meta http-equiv="Content-Type" content="text/xhtml+xml; charset=UTF-8" />
+<link rel="stylesheet" type="text/css" href="../help.css"/>
+<title>How to Download and Install Help Documentation</title>
+</head>
+<body>
+<include path="PLUGINS_ROOT/org.maemo.mica.common.help/html/gettingstarted/HowToDownloadHelpDocumentation.xhtml/download_help_doc"/>
+<h3>Related Topics</h3>
+<ul>
+	<li><a href="UsingHoverHelp.xhtml">Using Hover Help</a></li>
+</ul> 
+</body>
+</html>

Deleted: branches/work_Andre/org.maemo.esbox.help/html/gettingstarted/UsingHoverHelp.html
===================================================================
--- branches/work_Andre/org.maemo.esbox.help/html/gettingstarted/UsingHoverHelp.html	2009-10-08 18:11:13 UTC (rev 2285)
+++ branches/work_Andre/org.maemo.esbox.help/html/gettingstarted/UsingHoverHelp.html	2009-10-08 21:33:46 UTC (rev 2286)
@@ -1,70 +0,0 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN">
-<html lang="en">
-<head>
-	<meta name="copyright" content="Copyright (c) INdT 2007-2009, (c) Nokia 2008-2009. This page is made available under license. For full details see the LEGAL in the documentation book that contains this page." >
-	<meta http-equiv="Content-Language" content="en-us">
-	<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-	<title>Using Hover Help for Maemo API Libraries</title>
-	<link rel="stylesheet" type="text/css" href="../help.css">
-	<style type="text/css">
-		
-		<!--
-			.style1 {font-weight: bold}
-			-->
-	</style>
-</head>
-
-<body>
-	<h2 class="style1">Using Hover Help for Maemo API Libraries</h2>
-	<ol>
-		<li>
-			<div align="justify">
-				Go to <strong>Maemo &gt; Hover Help</strong> preference page and click
-				<strong>Activate Hover Help</strong>.
-			</div>
-		</li>
-		
-		<li>
-			<div align="justify">
-				In this preference page, you can also choose what kind of <strong>help content</strong> you want to
-				search while using hover help:
-				<ul>
-					<li><strong>Show only local:</strong> If you do not want to use remote documentation but just local installed documentation.</li>
-					<li><strong>Show local/remote:</strong> To use both local and remote documentation available, be sure your network connection is
-						working and you are able to access the internet.</li>
-					<li> On <strong>Hover Help Sources</strong> section, you can see a tree of help documentation available.
-						You can check what content and versions you want to enable for each language. </li>
-				</ul>
-			</div>
-		</li>
-		<p> <img src="../images/hover-maemo-prefs.png" alt="Maemo Hover Preferences"> <br></p>		
-		
-		<li>
-			<div align="left">				
-					You must be sure that the Editor has the <strong>Maemo SDK Hover Help</strong>
-					option enabled, e.g., to configure for C/C++ click <strong> C/C++ Editor Hover Preferences</strong>.
-			</div>
-		</li>
-		<p> <img src="../images/hover-maemo-prefs2.png" alt="Maemo Hover Preferences"><br>   </p>
-		
-		<li>
-			<div align="left">				
-				And enable <strong>Maemo SDK Hover Help</strong>. You can do the same for Python Editor preferences.
-			</div>
-		</li>
-		<p><img src="../images/hover-c-prefs.png" alt="C/C++ Hover preferences"> </p>  
-				
-		<li>
-			<div align="left">				
-				 Click <strong> OK </strong> and you should see the hover help working on editor.				
-			</div>
-		</li>
-		<p><img src="../images/hover-editor.png" alt="Hover Help on Editor"><br></p>  
-	</ol> 
-	
-	<h3>Related Topics</h3>
-	<ul>
-		<li><a href="HowToDownloadHelpDocumentation.html">How to download and install help documentation</a></li>
-	</ul>
-</body>
-</html>

Copied: branches/work_Andre/org.maemo.esbox.help/html/gettingstarted/UsingHoverHelp.xhtml (from rev 2284, branches/work_Andre/org.maemo.esbox.help/html/gettingstarted/UsingHoverHelp.html)
===================================================================
--- branches/work_Andre/org.maemo.esbox.help/html/gettingstarted/UsingHoverHelp.xhtml	                        (rev 0)
+++ branches/work_Andre/org.maemo.esbox.help/html/gettingstarted/UsingHoverHelp.xhtml	2009-10-08 21:33:46 UTC (rev 2286)
@@ -0,0 +1,16 @@
+<?xml version="1.0" encoding="UTF-8" ?>
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml">
+<head>
+<meta http-equiv="Content-Type" content="text/xhtml+xml; charset=UTF-8" />
+<link rel="stylesheet" type="text/css" href="../help.css"/>
+<title>How to Download and Install Help Documentation</title>
+</head>
+<body>
+<include path="PLUGINS_ROOT/org.maemo.mica.common.help/html/gettingstarted/UsingHoverHelp.xhtml/using_hover_help"/>
+	<h3>Related Topics</h3>
+	<ul>
+		<li><a href="HowToDownloadHelpDocumentation.xhtml">How to download and install help documentation</a></li>
+	</ul>
+</body>
+</html>
\ No newline at end of file

Modified: branches/work_Andre/org.maemo.esbox.help/html/tasks/ConfigurePythonInterpreter.xhtml
===================================================================
--- branches/work_Andre/org.maemo.esbox.help/html/tasks/ConfigurePythonInterpreter.xhtml	2009-10-08 18:11:13 UTC (rev 2285)
+++ branches/work_Andre/org.maemo.esbox.help/html/tasks/ConfigurePythonInterpreter.xhtml	2009-10-08 21:33:46 UTC (rev 2286)
@@ -6,5 +6,7 @@
 <link rel="stylesheet" type="text/css" href="../help.css"/>
 <title>Configuring Python Interpreter</title>
 </head>
+<body>
 <include path="PLUGINS_ROOT/org.maemo.mica.common.help/html/tasks/ConfigurePythonInterpreter.xhtml/configure_python_interpreter"/>
+</body>
 </html>
\ No newline at end of file

Deleted: branches/work_Andre/org.maemo.esbox.help/html/tasks/ExternalizeString.html
===================================================================
--- branches/work_Andre/org.maemo.esbox.help/html/tasks/ExternalizeString.html	2009-10-08 18:11:13 UTC (rev 2285)
+++ branches/work_Andre/org.maemo.esbox.help/html/tasks/ExternalizeString.html	2009-10-08 21:33:46 UTC (rev 2286)
@@ -1,142 +0,0 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
-<html lang="en">
-<head>
-	<meta name="copyright" content="Copyright (c) INdT 2007-2009, (c) Nokia 2008-2009. This page is made available under license. For full details see the LEGAL in the documentation book that contains this page." >
-	<meta http-equiv="Content-Language" content="en-us">
-	<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-	
-	<title>Externalize Strings</title>
-	
-	<link rel="stylesheet" type="text/css" href="../help.css">
-    
-    <style type="text/css">
-	<!--
-
-		.title {
-			font-weight: bold
-		}
-		
-		.separate {
- 			margin-bottom: 3em;
-		}
-			
-	-->
-    </style>
-</head>
-
-<body>
-
-<h2 class="title">
-	Extracting Strings
-</h2>
-
-<p>
-	The Externalize Strings wizard allows you to refactor a compilation unit 
-	such that strings used in the compilation unit can be translated to different
-	languages using	the GNU gettext mechanism. The wizard supports C/C++ and
-	Python projects. 
-</p>
-
-<p>
-	To externalize strings:
-</p>
-
-<ol>
-	<li class="separate">
-		<p>	
-			Select a project in Project Explorer and right-click project root to display 
-			the popup menu and select <strong>Source &gt; Externalize Strings</strong>.	
-		<p/>
-		
-		<img src="../images/externalize/es-menu.png" alt="Externalize String">
-	</li>
-	
-    <li class="separate">
-    	<p>
-    		Select the file(s) that should be externalized to enable the Externalize 
-    		button, then click Externalize.
-		<p/>
-		
-		<img src="../images/externalize/es-select.png"
-		     alt="File that should be externalized">
-	</li>
-	
-    <li class="separate">
-    	<p>
-    		A Wizard will appear showing strings that will be externalized. You can
-    		define the name of the output file and <tt>msgstr</tt> (translation). Click on a
-    		message string to make a change. Insert missing definitions option checks
-    		source code for missing headers and insert those if needed.
-		</p>
-		<p>
-			There are three actions for each string. 
-			</p>
-			<ul style="list-style-type:none">
-				<li>
-					<img src="../images/externalize/translate.gif" alt="Translate button">
-					<em>Externalize</em>: 
-					Translate string.
-				</li>
-				
-				<li>
-					<img src="../images/externalize/never_translate.gif"
-					     alt="Never translate button">
-					<em>Internalize</em>:
-					Do not translate the string and do not include string next time. 
-				</li>
-				
-				<li>
-					<img src="../images/externalize/skip.gif" alt="Skip button">
-					<em>Skip</em>:
-					Do not change the string.
-				</li>
-			</ul>
-
-		<img src="../images/externalize/es-translate.png" alt="Externalize Wizard">
-	</li>
-	
-	<li class="separate">
-		<p>
-			Next page shows translation changes. Cancel discard changes and finish
-			applies changes into selected files.
-		</p>
-		
-		<img src="../images/externalize/es-view.png" alt="Externalize Wizard">
-	</li>
-	
-	<li class="separate">
-		<p>
-			Click Finish.
-		</p>
-	</li>
-</ol>
-
-<p>
-	This generates or updates translation file <tt><em>outputName</em>.po</tt> and
-	files for Automake (<tt>POTFILE.in</tt>, and <tt>LINGUAS</tt>) which will be
-	placed in the <strong><em>ProjectName</em>/po/</strong> directory.
-</p>
-
-<ul>
-	<li>
-		<tt>POTFILES.in</tt> contains the list of source code files that will be localized.
-	</li>
-	<li>
-		<tt><em>outputName</em>.po</tt> includes translated text.
-	</li>
-	<li>
-		<tt>LINGUAS</tt> contains the list of languages that will be generated.
-	</li>
-</ul>
-
-<p>
-	Externalize Strings wizard does not add gettext initialization. See
-	<a href="http://www.gnu.org/software/gettext/manual/gettext.html#Triggering">
-		GNU gettext documentation (4.2 Triggering gettext Operations)
-	</a>
-	how to do this.  
-</p>
-
-</body>
-</html>
-

Copied: branches/work_Andre/org.maemo.esbox.help/html/tasks/ExternalizeString.xhtml (from rev 2284, branches/work_Andre/org.maemo.esbox.help/html/tasks/ExternalizeString.html)
===================================================================
--- branches/work_Andre/org.maemo.esbox.help/html/tasks/ExternalizeString.xhtml	                        (rev 0)
+++ branches/work_Andre/org.maemo.esbox.help/html/tasks/ExternalizeString.xhtml	2009-10-08 21:33:46 UTC (rev 2286)
@@ -0,0 +1,25 @@
+<?xml version="1.0" encoding="UTF-8" ?>
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml">
+<head>
+	<meta http-equiv="Content-Type" content="text/xhtml+xml; charset=UTF-8" />
+	<link rel="stylesheet" type="text/css" href="../help.css"/>
+	<title>Externalize Strings</title>
+	<style type="text/css">
+	<!--
+
+		.title {
+			font-weight: bold
+		}
+		
+		.separate {
+ 			margin-bottom: 3em;
+		}
+			
+	-->
+    </style>
+</head>
+<body>
+<include path="PLUGINS_ROOT/org.maemo.mica.common.help/html/tasks/ExternalizeString.xhtml/externalize_string"/>
+</body>
+</html>
\ No newline at end of file


Property changes on: branches/work_Andre/org.maemo.esbox.help/html/tasks/ExternalizeString.xhtml
___________________________________________________________________
Name: svn:mime-type
   + text/html

Deleted: branches/work_Andre/org.maemo.esbox.help/html/tasks/InstallingPCConnectivity.html
===================================================================
--- branches/work_Andre/org.maemo.esbox.help/html/tasks/InstallingPCConnectivity.html	2009-10-08 18:11:13 UTC (rev 2285)
+++ branches/work_Andre/org.maemo.esbox.help/html/tasks/InstallingPCConnectivity.html	2009-10-08 21:33:46 UTC (rev 2286)
@@ -1,29 +0,0 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN">
-<html lang="en">
-<head>
-	<meta name="copyright" content="Copyright (c) INdT 2007-2009, (c) Nokia 2008-2009. This page is made available under license. For full details see the LEGAL in the documentation book that contains this page." >
-	<meta http-equiv="Content-Language" content="en-us">
-	<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-	<title>Installing PC Connectivity</title>
-	<link rel="stylesheet" type="text/css" href="../help.css">
-</head>
-
-<body>
-<h2>Installing PC Connectivity</h2>
-
-<p>
-In order to communicate with your Nokia Internet Tablet, you need to
-install a set of metapackages on the device and on the Build Machine to
-configure the networking settings and daemons.
-</p>
-<p>
-ESbox provides preconfigured Remote System Connections which correspond to
-the default static IP addresses defined by the <strong>PC Connectivity Manager</strong>
-applet provided by the PC Connectivity project. 
-</p>
-<p>
-See <a href="http://pc-connectivity.garage.maemo.org/">the PC Connectivity home page</a>
-for full instructions.
-</p>
-</body>
-</html>

Copied: branches/work_Andre/org.maemo.esbox.help/html/tasks/InstallingPCConnectivity.xhtml (from rev 2284, branches/work_Andre/org.maemo.esbox.help/html/tasks/InstallingPCConnectivity.html)
===================================================================
--- branches/work_Andre/org.maemo.esbox.help/html/tasks/InstallingPCConnectivity.xhtml	                        (rev 0)
+++ branches/work_Andre/org.maemo.esbox.help/html/tasks/InstallingPCConnectivity.xhtml	2009-10-08 21:33:46 UTC (rev 2286)
@@ -0,0 +1,12 @@
+<?xml version="1.0" encoding="UTF-8" ?>
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml">
+<head>
+<meta http-equiv="Content-Type" content="text/xhtml+xml; charset=UTF-8" />
+<link rel="stylesheet" type="text/css" href="../help.css"/>
+<title>Installing PC Connectivity</title>
+</head>
+<body>
+<include path="PLUGINS_ROOT/org.maemo.mica.common.help/html/tasks/InstallingPCConnectivity.xhtml/installing_pc_connectivity"/>
+</body>
+</html>
\ No newline at end of file


Property changes on: branches/work_Andre/org.maemo.esbox.help/html/tasks/InstallingPCConnectivity.xhtml
___________________________________________________________________
Name: svn:mime-type
   + text/html

Modified: branches/work_Andre/org.maemo.esbox.help/html/tasks/UsingFlasherWizard.xhtml
===================================================================
--- branches/work_Andre/org.maemo.esbox.help/html/tasks/UsingFlasherWizard.xhtml	2009-10-08 18:11:13 UTC (rev 2285)
+++ branches/work_Andre/org.maemo.esbox.help/html/tasks/UsingFlasherWizard.xhtml	2009-10-08 21:33:46 UTC (rev 2286)
@@ -6,5 +6,7 @@
 <link rel="stylesheet" type="text/css" href="../help.css"/>
 <title>Using the Flasher Wizard</title>
 </head>
+<body>
 <include path="PLUGINS_ROOT/org.maemo.mica.common.help/html/tasks/UsingFlasherWizard.xhtml/using_flasher_wizard"/>
+</body>
 </html>
\ No newline at end of file

Modified: branches/work_Andre/org.maemo.esbox.help/html/tocconcepts.html
===================================================================
--- branches/work_Andre/org.maemo.esbox.help/html/tocconcepts.html	2009-10-08 18:11:13 UTC (rev 2285)
+++ branches/work_Andre/org.maemo.esbox.help/html/tocconcepts.html	2009-10-08 21:33:46 UTC (rev 2286)
@@ -19,8 +19,8 @@
 </h3><li><h3><a href="../html/concepts/LocalLaunching.html">Local Launching</a>
 </h3><li><h3><a href="../html/concepts/RemoteLaunching.html">Remote Launching</a>
 </h3><li><h3><a href="../html/concepts/Sbrsh.xhtml">Scratchbox Remote Shell (SBRSH)</a>
-</h3><li><h3><a href="../html/concepts/StringExternalization.html">String Externalization</a>
-</h3><li><h3><a href="../html/concepts/ProfilingApplications.html">Profiling Applications</a>
+</h3><li><h3><a href="../html/concepts/StringExternalization.xhtml">String Externalization</a>
+</h3><li><h3><a href="../html/concepts/ProfilingApplications.xhtml">Profiling Applications</a>
 </h3></ul>
 
 

Modified: branches/work_Andre/org.maemo.esbox.help/html/tocgettingstarted.html
===================================================================
--- branches/work_Andre/org.maemo.esbox.help/html/tocgettingstarted.html	2009-10-08 18:11:13 UTC (rev 2285)
+++ branches/work_Andre/org.maemo.esbox.help/html/tocgettingstarted.html	2009-10-08 21:33:46 UTC (rev 2286)
@@ -25,7 +25,7 @@
 </li>
 <li><a href="../html/tasks/UsingFlasherWizard.xhtml">Using the Flasher Wizard</a>
 </li>
-<li><a href="../html/tasks/InstallingPCConnectivity.html">Installing PC Connectivity</a>
+<li><a href="../html/tasks/InstallingPCConnectivity.xhtml">Installing PC Connectivity</a>
 </li>
 </ul><li><h3><a href="../html/tasks/SettingPreferences.xhtml">Configuring Settings</a>
 </h3><li><h3><a href="../html/tasks/ConfigurePythonInterpreter.xhtml">Configuring Python Interpreter</a>
@@ -37,8 +37,8 @@
 </h3><li><h3><a href="../html/gettingstarted/RunningPythonMaemoProject.html">Running Python Maemo Project</a>
 </h3><li><h3><a href="../html/gettingstarted/DebuggingCMaemoProject.html">Debugging a C/C++ Maemo Project</a>
 </h3><li><h3><a href="../html/gettingstarted/DebuggingPythonMaemoProject.html">Debugging a Python Maemo Project</a>
-</h3><li><h3><a href="../html/gettingstarted/UsingHoverHelp.html">Using Hover Help for Maemo API Libraries</a>
-</h3><li><h3><a href="../html/gettingstarted/HowToDownloadHelpDocumentation.html">How to Download and Install Help Documentation</a>
+</h3><li><h3><a href="../html/gettingstarted/UsingHoverHelp.xhtml">Using Hover Help for Maemo API Libraries</a>
+</h3><li><h3><a href="../html/gettingstarted/HowToDownloadHelpDocumentation.xhtml">How to Download and Install Help Documentation</a>
 </h3></ul>
 
 

Modified: branches/work_Andre/org.maemo.esbox.help/html/toctasks.html
===================================================================
--- branches/work_Andre/org.maemo.esbox.help/html/toctasks.html	2009-10-08 18:11:13 UTC (rev 2285)
+++ branches/work_Andre/org.maemo.esbox.help/html/toctasks.html	2009-10-08 21:33:46 UTC (rev 2286)
@@ -40,7 +40,7 @@
 </li>
 </ul>
 <li><h3><a href="../html/tasks/DebianPackage.html">Debian Package Management</a>
-</h3><li><h3><a href="../html/tasks/ExternalizeString.html">Extracting Strings</a>
+</h3><li><h3><a href="../html/tasks/ExternalizeString.xhtml">Extracting Strings</a>
 </h3><li><h3><a href="../html/tasks/ProfilingMaemoApplications.html">Profiling Maemo Applications</a>
 </h3></ul>
 

Modified: branches/work_Andre/org.maemo.esbox.help/tocconcepts.xml
===================================================================
--- branches/work_Andre/org.maemo.esbox.help/tocconcepts.xml	2009-10-08 18:11:13 UTC (rev 2285)
+++ branches/work_Andre/org.maemo.esbox.help/tocconcepts.xml	2009-10-08 21:33:46 UTC (rev 2286)
@@ -16,10 +16,12 @@
 	</topic>	
 	<topic label="Scratchbox Remote Shell (SBRSH)"  href="html/concepts/Sbrsh.xhtml">
 	</topic>
-	<topic label="String Externalization"  href="html/concepts/StringExternalization.html">
+	<topic label="String Externalization"  href="html/concepts/StringExternalization.xhtml">
 	</topic>
-	<topic label="Profiling Applications"  href="html/concepts/ProfilingApplications.html">
+	<topic label="Profiling Applications"  href="html/concepts/ProfilingApplications.xhtml">
 	</topic>
 	<topic label="Environment Variables"  href="html/concepts/Environment.xhtml">
 	</topic>
+	<topic href="html/concepts/RSEConnection.xhtml" label="RSE Connections">
+    </topic>
 </toc>

Modified: branches/work_Andre/org.maemo.esbox.help/tocgettingstarted.xml
===================================================================
--- branches/work_Andre/org.maemo.esbox.help/tocgettingstarted.xml	2009-10-08 18:11:13 UTC (rev 2285)
+++ branches/work_Andre/org.maemo.esbox.help/tocgettingstarted.xml	2009-10-08 21:33:46 UTC (rev 2286)
@@ -12,7 +12,7 @@
     </topic>
     <topic href="html/tasks/UsingFlasherWizard.xhtml" label="Using the Flasher Wizard">
     </topic>
-    <topic href="html/tasks/InstallingPCConnectivity.html" label="Installing PC Connectivity">
+    <topic href="html/tasks/InstallingPCConnectivity.xhtml" label="Installing PC Connectivity">
     </topic>
   </topic>
   <topic href="html/tasks/SettingPreferences.xhtml" label="Configuring Settings">
@@ -26,7 +26,7 @@
   <topic label="Running Python Maemo Project" href="html/gettingstarted/RunningPythonMaemoProject.html" />
   <topic label="Debugging a C/C++ Maemo Project" href="html/gettingstarted/DebuggingCMaemoProject.html" />
   <topic label="Debugging a Python Maemo Project" href="html/gettingstarted/DebuggingPythonMaemoProject.html" />
-  <topic label="Using Hover Help for Maemo API Libraries" href="html/gettingstarted/UsingHoverHelp.html" />
-  <topic label="How to Download and Install Help Documentation" href="html/gettingstarted/HowToDownloadHelpDocumentation.html" />
+  <topic label="Using Hover Help for Maemo API Libraries" href="html/gettingstarted/UsingHoverHelp.xhtml" />
+  <topic label="How to Download and Install Help Documentation" href="html/gettingstarted/HowToDownloadHelpDocumentation.xhtml" />
   	
 </toc>

Modified: branches/work_Andre/org.maemo.esbox.help/toctasks.xml
===================================================================
--- branches/work_Andre/org.maemo.esbox.help/toctasks.xml	2009-10-08 18:11:13 UTC (rev 2285)
+++ branches/work_Andre/org.maemo.esbox.help/toctasks.xml	2009-10-08 21:33:46 UTC (rev 2286)
@@ -46,7 +46,7 @@
     </topic>     
 	<topic label="Debian Package Management" href="html/tasks/DebianPackage.html">	
 	</topic>
-    <topic label="Extracting Strings" href="html/tasks/ExternalizeString.html">
+    <topic label="Extracting Strings" href="html/tasks/ExternalizeString.xhtml">
 	</topic>
     <topic label="Profiling Maemo Applications" href="html/tasks/ProfilingMaemoApplications.html">
 	</topic>
@@ -54,7 +54,7 @@
 	</topic>
 	<topic label="Installing Maemo SDK Virtual Image" href="html/tasks/InstallingMaemoSDKVMImage.html">
 	</topic>
-	<topic label="Installing PC-Connectivity" href="html/tasks/InstallingPCConnectivity.html">
+	<topic label="Installing PC-Connectivity" href="html/tasks/InstallingPCConnectivity.xhtml">
 	</topic>
 	<topic label="Using SDK and Target Context Menus" href="html/tasks/UsingTargetContextMenus.html">
 	</topic>



More information about the Esbox-commits mailing list