[gedit] minor edits to files and marking files as candidates for release. added script to check doc status.
- From: Jim Campbell <jcampbell src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gedit] minor edits to files and marking files as candidates for release. added script to check doc status.
- Date: Fri, 25 Mar 2011 21:54:16 +0000 (UTC)
commit 2ab35c61bfe3b00160684694c37a5886d777f458
Author: Jim Campbell <jwcampbell gmail com>
Date: Fri Mar 25 16:53:46 2011 -0500
minor edits to files and marking files as candidates for release. added script to check doc status.
help/C/check_status.sh | 43 +++++++++++++++++++++++++
help/C/gedit-close-file.page | 2 +-
help/C/gedit-create-new-file.page | 7 ++--
help/C/gedit-edit-as-root.page | 2 +-
help/C/gedit-files-basic.page | 4 +-
help/C/gedit-open-files-from-sidepane.page | 8 ++--
help/C/gedit-open-files.page | 4 +-
help/C/gedit-open-on-server.page | 4 +-
help/C/gedit-open-recent.page | 15 ++++-----
help/C/gedit-plugins-change-case.page | 2 +-
help/C/gedit-plugins-modelines.page | 2 +-
help/C/gedit-plugins-pyconsole.page | 9 ++++-
help/C/gedit-plugins-snippets.page | 6 ++-
help/C/gedit-plugins-terminal.page | 7 ++--
help/C/gedit-quickstart.page | 2 +-
help/C/gedit-replace.page | 7 +---
help/C/gedit-save-file.page | 8 ++--
help/C/gedit-search.page | 4 +-
help/C/gedit-shortcut-keys.page | 5 +--
help/C/gedit-tabs-moving.page | 2 +-
help/C/gedit-tabs.page | 4 +-
help/C/gedit-undo-recent-action.page | 2 +-
help/C/gedit-view-open-files-in-sidepane.page | 4 +-
help/C/index.page | 5 ++-
24 files changed, 101 insertions(+), 57 deletions(-)
---
diff --git a/help/C/check_status.sh b/help/C/check_status.sh
new file mode 100755
index 0000000..1cd3d16
--- /dev/null
+++ b/help/C/check_status.sh
@@ -0,0 +1,43 @@
+#!/bin/bash
+
+# Produce a summary of the statuses of all of the .page topics
+# (Not done properly, but it's OK for a rough estimate)
+# DO NOT TRANSLATE
+
+echo " "
+echo "== NONE =="
+grep -l "status=\"none" *.page
+echo " "
+echo "== STUB =="
+grep -l "status=\"stub" *.page
+echo " "
+echo "== INCOMPLETE =="
+grep -l "status=\"incomplete" *.page
+echo " "
+echo "== DRAFT =="
+grep -l "status=\"draft" *.page
+echo " "
+echo "== REVIEW =="
+grep -l "status=\"review" *.page
+echo " "
+echo "== CANDIDATE =="
+grep -l "status=\"candidate" *.page
+echo " "
+echo "== FINAL =="
+grep -l "status=\"final" *.page
+echo " "
+echo "== OUTDATED =="
+grep -l "status=\"outdated" *.page
+
+echo " "
+echo " "
+echo "== SUMMARY =="
+echo "None: " `grep "status=\"none" *.page | wc -l`
+echo "Stub: " `grep "status=\"stub" *.page | wc -l`
+echo "Incomplete: " `grep "status=\"incomplete" *.page | wc -l`
+echo "Draft: " `grep "status=\"draft" *.page | wc -l`
+echo "Review: " `grep "status=\"review" *.page | wc -l`
+echo "Candidate: " `grep "status=\"candidate" *.page | wc -l`
+echo "Final: " `grep "status=\"final" *.page | wc -l`
+echo "Outdated: " `grep "status=\"outdated" *.page | wc -l`
+echo " "
diff --git a/help/C/gedit-close-file.page b/help/C/gedit-close-file.page
index 18aabfa..5f5b37e 100644
--- a/help/C/gedit-close-file.page
+++ b/help/C/gedit-close-file.page
@@ -3,7 +3,7 @@
id="gedit-close-file">
<info>
- <link type="guide" xref="gedit-files-basic" group="second"/>
+ <link type="guide" xref="gedit-files-basic" group="fourth"/>
<revision pkgversion="3.0" version="0.5" date="2011-03-12" status="draft"/>
<credit type="author">
<name>Jim Campbell</name>
diff --git a/help/C/gedit-create-new-file.page b/help/C/gedit-create-new-file.page
index 468882f..84aac09 100644
--- a/help/C/gedit-create-new-file.page
+++ b/help/C/gedit-create-new-file.page
@@ -3,8 +3,8 @@
id="gedit-create-new-file">
<info>
- <link type="guide" xref="gedit-files-basic"/>
- <revision pkgversion="3.0" version="0.5" date="2011-03-12" status="draft"/>
+ <link type="guide" xref="gedit-files-basic" group="first"/>
+ <revision pkgversion="3.0" version="1.0" date="2011-03-25" status="final"/>
<credit type="author">
<name>Jim Campbell</name>
<email>jwcampbell gmail com</email>
@@ -13,7 +13,8 @@
<title>Create a new file</title>
- <p>One way to create a new file in <app>gedit</app>, is to select <guiseq><gui>File</gui><gui>New</gui></guiseq>. If you prefer, you may also click the icon that looks like a blank piece of paper with a "plus" sign next to it, or press <keyseq><key>Ctrl</key><key>N</key></keyseq>.</p>
+ <p>The easiest way to create a new file in <app>gedit</app>, is to click the icon that looks like a blank piece of paper with a "plus" sign next to it. If you prefer, you may also select <guiseq><gui>File</gui><gui>New</gui></guiseq>, or press <keyseq><key>Ctrl</key><key>N</key></keyseq>.</p>
+
<p>Any one of these actions will create a new file in the <app>gedit</app> window. If you have other files open in <app>gedit</app>, the new file that you create will appear as a new tab to the right of those files.</p>
</page>
diff --git a/help/C/gedit-edit-as-root.page b/help/C/gedit-edit-as-root.page
index 01d036a..6fe9e1e 100644
--- a/help/C/gedit-edit-as-root.page
+++ b/help/C/gedit-edit-as-root.page
@@ -4,7 +4,7 @@
<info>
<link type="guide" xref="index#gedit-working-with-files"/>
- <revision pkgversion="3.0" version="0.5" date="2010-12-19" status="draft"/>
+ <revision pkgversion="3.0" version="1.0" date="2011-03-25" status="final"/>
<credit type="author">
<name>Jim Campbell</name>
<email>jwcampbell gmail com</email>
diff --git a/help/C/gedit-files-basic.page b/help/C/gedit-files-basic.page
index 9044858..d409183 100644
--- a/help/C/gedit-files-basic.page
+++ b/help/C/gedit-files-basic.page
@@ -1,5 +1,5 @@
<page xmlns="http://projectmallard.org/1.0/"
- type="guide" style="tip 2column"
+ type="guide" style="task 2column"
id="gedit-files-basic">
<info>
@@ -14,5 +14,5 @@
<title>File basics: Open, close, and save files</title>
<p>If you are new to <app>gedit</app>, these topics will help you with creating, saving, and opening and closing files.</p>
-
+ <links type="topic" groups="first second third fourth fifth sixth" style="2column"/>
</page>
diff --git a/help/C/gedit-open-files-from-sidepane.page b/help/C/gedit-open-files-from-sidepane.page
index d0e79ca..c3b6aa3 100644
--- a/help/C/gedit-open-files-from-sidepane.page
+++ b/help/C/gedit-open-files-from-sidepane.page
@@ -4,7 +4,7 @@
<info>
<link type="guide" xref="index#configure-gedit"/>
- <revision pkgversion="3.0" version="0.1" date="2010-10-10" status="incomplete"/>
+ <revision pkgversion="3.0" version="1.0" date="2011-03-25" status="final"/>
<credit type="author">
<name>Jim Campbell</name>
<email>jwcampbell gmail com</email>
@@ -13,11 +13,11 @@
<title>View and open files from the side pane</title>
<p>
- The most common way to switch between files in <app>gedit</app> is by using the tabs at the top of the <app>gedit</app> window. In some cases, though, particularly when you are working with a large number of open files, you may find it beneficial to use the <app>side pane</app>.
+ The most common way to switch between files in <app>gedit</app> is by using the tabs at the top of the <app>gedit</app> window. In some cases, though, particularly when you are working with a large number of open files, you may find it easier to use the <app>side pane</app>.
</p>
<p>
- The <app>side pane</app> can help you to open new files, and easily switch between open files. To activate the <app>side pane</app>, select <guiseq><gui>View</gui><gui>Side Pane</gui></guiseq>, or just press the <key>F9</key> key.
+ To activate the <app>side pane</app>, select <guiseq><gui>View</gui><gui>Side Pane</gui></guiseq>, or just press the <key>F9</key> key.
</p>
<note style="note">
@@ -52,7 +52,7 @@
</p>
<p>
- Clicking on any file name in the <gui>side pane</gui> will activate that file for editing.
+ Clicking on any file name in the <gui>side pane</gui> will open that file for editing.
</p>
</section>
diff --git a/help/C/gedit-open-files.page b/help/C/gedit-open-files.page
index eac0602..32abe5a 100644
--- a/help/C/gedit-open-files.page
+++ b/help/C/gedit-open-files.page
@@ -3,12 +3,12 @@
id="gedit-open-files">
<info>
- <link type="guide" xref="gedit-files-basic"/>
+ <link type="guide" xref="gedit-files-basic" group="second"/>
<link type="seealso" xref="gedit-open-on-server"/>
<link type="seealso" xref="gedit-close-file"/>
<link type="seealso" xref="gedit-open-recent"/>
<link type="seealso" xref="gedit-quickstart"/>
- <revision pkgversion="3.0" version="0.5" date="2011-03-12" status="draft"/>
+ <revision pkgversion="3.0" version="1.0" date="2011-03-25" status="final"/>
<credit type="author">
<name>Jim Campbell</name>
<email>jwcampbell gmail com</email>
diff --git a/help/C/gedit-open-on-server.page b/help/C/gedit-open-on-server.page
index 89d9af6..e53c064 100644
--- a/help/C/gedit-open-on-server.page
+++ b/help/C/gedit-open-on-server.page
@@ -3,8 +3,8 @@
id="gedit-open-on-server">
<info>
- <link type="guide" xref="gedit-files-basic"/>
- <revision pkgversion="3.0" version="0.1" date="2012-02-12" status="incomplete"/>
+ <link type="guide" xref="gedit-files-basic" group="sixth"/>
+ <revision pkgversion="3.0" version="1.0" date="2011-03-25" status="final"/>
<credit type="author">
<name>Jim Campbell</name>
<email>jwcampbell gmail com</email>
diff --git a/help/C/gedit-open-recent.page b/help/C/gedit-open-recent.page
index e6b8e0a..ee26e4e 100644
--- a/help/C/gedit-open-recent.page
+++ b/help/C/gedit-open-recent.page
@@ -3,23 +3,22 @@
id="gedit-open-recent">
<info>
- <link type="guide" xref="gedit-files-basic"/>
- <revision pkgversion="3.0" version="0.1" date="2010-10-10" status="incomplete"/>
+ <link type="guide" xref="gedit-files-basic" group="fifth"/>
+ <revision pkgversion="3.0" version="1.0" date="2011-03-25" status="final"/>
<credit type="author">
<name>Jim Campbell</name>
<email>jwcampbell gmail com</email>
</credit>
</info>
- <title>Re-open a recently-used file</title>
+ <title>Reopen a recently-used file</title>
- <p>By default, <app>gedit</app> provides easy access to five of your most recently-used files. To open a recently-used file, complete the following steps.</p>
- <steps>
- <title>Open a recently-used file</title>
+ <p>By default, <app>gedit</app> provides easy access to five of your most recently-used files. Here is how you can open a recently-used file:</p>
+ <list type="numbered">
<item><p>Click the downward-facing arrow to the right of the <gui>Open</gui> button.</p></item>
<item><p><app>gedit</app> will display a list of the five most-recently used files.</p></item>
- <item><p>Select the desired file, and it will open in the next available tab.</p></item>
- </steps>
+ <item><p>Select the desired file, and it will open in a new tab.</p></item>
+ </list>
<note type="advanced"><p>To adjust the number of recently-used files that gedit displays, you will need to use the <app>gconf-editor</app> application.</p>
<list>
diff --git a/help/C/gedit-plugins-change-case.page b/help/C/gedit-plugins-change-case.page
index 2ad02f3..6fbe989 100644
--- a/help/C/gedit-plugins-change-case.page
+++ b/help/C/gedit-plugins-change-case.page
@@ -4,7 +4,7 @@
<info>
<link type="guide" xref="gedit-plugin-guide#gedit-default-plugins"/>
- <revision pkgversion="3.0" version="0.1" date="2010-12-5" status="stub"/>
+ <revision pkgversion="3.0" version="1.0" date="2011-03-25" status="final"/>
<credit type="author">
<name>Daniel Neel</name>
<email>dneelyep gmail com</email>
diff --git a/help/C/gedit-plugins-modelines.page b/help/C/gedit-plugins-modelines.page
index cda68f6..eb02780 100644
--- a/help/C/gedit-plugins-modelines.page
+++ b/help/C/gedit-plugins-modelines.page
@@ -4,7 +4,7 @@
<info>
<link type="guide" xref="gedit-plugin-guide#gedit-default-plugins"/>
- <revision pkgversion="3.0" version="0.5" date="2011-02-26" status="draft"/>
+ <revision pkgversion="3.0" version="1.0" date="2011-03-25" status="final"/>
<credit type="author">
<name>Daniel Neel</name>
<email>dneelyep gmail com</email>
diff --git a/help/C/gedit-plugins-pyconsole.page b/help/C/gedit-plugins-pyconsole.page
index 358e394..ff27057 100644
--- a/help/C/gedit-plugins-pyconsole.page
+++ b/help/C/gedit-plugins-pyconsole.page
@@ -4,13 +4,18 @@
<info>
<link type="guide" xref="gedit-plugin-guide#gedit-default-plugins"/>
- <revision pkgversion="3.0" version="0.1" date="2010-10-10" status="incomplete"/>
+ <revision pkgversion="3.0" version="1.0" date="2011-03-25" status="final"/>
<credit type="author">
<name>Jim Campbell</name>
<email>jwcampbell gmail com</email>
</credit>
</info>
- <title>Add an interactive Python console to the bottom panel</title>
+ <title>Add an interactive Python console to the bottom pane</title>
+ <p>You can add a Python console to the bottom pane, allowing you to test Python scripts without leaving <app>gedit</app>. To enable the Python console, select <guiseq><gui>Edit</gui><gui>Preferences</gui><gui>Plugins</gui><gui>Python Console</gui></guiseq>.</p>
+
+ <p>Once the Python console is enabled, you can open it by selecting <guiseq><gui>View</gui><gui>Bottom Pane</gui></guiseq>, or just press <keyseq><key>Shift</key><key>F9</key></keyseq>.</p>
+
+ <note style="tip"><p>If you have also enabled the <gui>Embeded Terminal</gui> plugin, the <gui>Python Console</gui> will appear as a separate tab in the bottom pane.</p></note>
</page>
diff --git a/help/C/gedit-plugins-snippets.page b/help/C/gedit-plugins-snippets.page
index 34f3e87..7aa0cc6 100644
--- a/help/C/gedit-plugins-snippets.page
+++ b/help/C/gedit-plugins-snippets.page
@@ -4,7 +4,7 @@
<info>
<link type="guide" xref="gedit-plugin-guide#gedit-default-plugins"/>
- <desc>*Insert often used pieces of text in a fast way.</desc>
+ <desc>Insert often used pieces of text in a fast way.</desc>
<revision pkgversion="3.0" version="0.1" date="2010-12-5" status="stub"/>
<credit type="author">
<name>Daniel Neel</name>
@@ -13,6 +13,8 @@
<!--INFOAT: http://live.gnome.org/Gedit/Plugins/Snippets-->
</info>
-<title>*Snippets</title>
+<title>Snippets</title>
+
+<!-- TODO: write documentation for gedit snippets -->
</page>
diff --git a/help/C/gedit-plugins-terminal.page b/help/C/gedit-plugins-terminal.page
index 47f1b96..3af80e6 100644
--- a/help/C/gedit-plugins-terminal.page
+++ b/help/C/gedit-plugins-terminal.page
@@ -4,6 +4,7 @@
<info>
<link type="guide" xref="gedit-plugin-guide#gedit-additional-plugins"/>
+ <link type="seealso" xref="gedit-plugins-pyconsole"/>
<revision pkgversion="3.0" version="0.9" date="2010-10-10" status="draft"/>
<credit type="author">
<name>Jim Campbell</name>
@@ -11,12 +12,12 @@
</credit>
</info>
- <title>Add a Terminal console to the bottom panel</title>
+ <title>Add a Terminal console to the bottom pane</title>
- <p><app>gedit</app> makes it possible to include an embedded version of <app>Gnome Terminal</app>, the Gnome command-line application, in the bottom panel of the <app>gedit</app> window. This will let you run scripts, install needed software, or test your program without leaving <app>gedit</app>.</p>
+ <p><app>gedit</app> makes it possible to include an embedded version of <app>Gnome Terminal</app>, the GNOME command-line application, in the bottom pane of the <app>gedit</app> window. This will let you run scripts, install needed software, or test your program without leaving <app>gedit</app>.</p>
<p>To enable this plugin, select <guiseq><gui>Edit</gui><gui>Preferences</gui><gui>Plugins</gui><gui>Embedded Terminal</gui></guiseq>.</p>
- <p>Once you have enabled the plugin, add the terminal to the bottom panel by selecting <guiseq><gui>View</gui><gui>Bottom Panel</gui></guiseq>, or just press <keyseq><key>Ctrl</key><key>F9</key></keyseq>.</p>
+ <p>Once you have enabled the plugin, add the terminal to the bottom panel by selecting <guiseq><gui>View</gui><gui>Bottom Pane</gui></guiseq>, or just press <keyseq><key>Ctrl</key><key>F9</key></keyseq>.</p>
</page>
diff --git a/help/C/gedit-quickstart.page b/help/C/gedit-quickstart.page
index 13f29a6..09dbb03 100644
--- a/help/C/gedit-quickstart.page
+++ b/help/C/gedit-quickstart.page
@@ -6,7 +6,7 @@
<link type="guide" xref="index"/>
<link type="seealso" xref="gedit-open-files"/>
<link type="seealso" xref="gedit-close-file"/>
- <revision pkgversion="3.0" version="0.1" date="2010-10-10" status="incomplete"/>
+ <revision pkgversion="3.0" version="1.0" date="2011-03-25" status="final"/>
<credit type="author">
<name>Jim Campbell</name>
<email>jwcampbell gmail com</email>
diff --git a/help/C/gedit-replace.page b/help/C/gedit-replace.page
index 4b85449..4bfb63c 100644
--- a/help/C/gedit-replace.page
+++ b/help/C/gedit-replace.page
@@ -5,7 +5,7 @@
<info>
<link type="guide" xref="index#gedit-working-with-files" />
<link type="seealso" xref="gedit-search-find" />
- <revision pkgversion="program_version" version="document_version" date="2010-10-09" status="incomplete" />
+ <revision pkgversion="3.0" version="1.0" date="2011-03-25" status="final"/>
<credit type="author">
<name>Jim Campbell</name>
<email>jwcampbell gmail com</email>
@@ -42,12 +42,7 @@
<section>
<title>More options</title>
- <p>The following section provides options that can help you replace text more efficiently with <app>gedit</app>.</p>
<terms>
- <title>Find/Replace options</title>
- <item>
- <p>These options are located in the Find and Replace menus, accessible at <guiseq><gui>Search</gui><gui>Find</gui></guiseq> or <guiseq><gui>Search</gui><gui>Replace</gui></guiseq>.</p>
- </item>
<item>
<title>Match case</title>
<p>The <em>Match case</em> option allows you to specify whether you want your search to be case-sensitive. If this option is selected, searches will be case-sensitive. If not, searches will not be case-sensitive.</p>
diff --git a/help/C/gedit-save-file.page b/help/C/gedit-save-file.page
index 92abfb3..a7bca6e 100644
--- a/help/C/gedit-save-file.page
+++ b/help/C/gedit-save-file.page
@@ -3,8 +3,8 @@
id="gedit-save-file">
<info>
- <link type="guide" xref="gedit-files-basic"/>
- <revision pkgversion="3.0" version="0.5" date="2011-03-12" status="draft"/>
+ <link type="guide" xref="gedit-files-basic" group="third"/>
+ <revision pkgversion="3.0" version="1.0" date="2011-03-25" status="final"/>
<credit type="author">
<name>Jim Campbell</name>
<email>jwcampbell gmail com</email>
@@ -13,7 +13,7 @@
<title>Save a file</title>
- <p>To save a file in <app>gedit</app>, select <guiseq><gui>File</gui><gui>Save</gui></guiseq>, or just press <keyseq><key>Ctrl</key><key>S</key></keyseq>.</p>
- <p>If this is a new file, the <gui>Save File</gui> dialog will appear, and you can select a name for the file, as well as the directory where you would like the file to be saved.</p>
+ <p>To save a file in <app>gedit</app>, click on the disk-drive icon with the word <gui>Save</gui> next to it. You may also select <guiseq><gui>File</gui><gui>Save</gui></guiseq>, or just press <keyseq><key>Ctrl</key><key>S</key></keyseq>.</p>
+ <p>If you are saving a new file, the <gui>Save File</gui> dialog will appear, and you can select a name for the file, as well as the directory where you would like the file to be saved.</p>
</page>
diff --git a/help/C/gedit-search.page b/help/C/gedit-search.page
index bcf9ad9..b724765 100644
--- a/help/C/gedit-search.page
+++ b/help/C/gedit-search.page
@@ -5,7 +5,7 @@
<info>
<link type="guide" xref="index#gedit-working-with-files" />
<link type="seealso" xref="gedit-replace" />
- <revision pkgversion="program_version" version="document_version" date="2010-10-09" status="incomplete" />
+ <revision pkgversion="3.0" version="1.0" date="2011-03-25" status="final"/>
<credit type="author">
<name>Jim Campbell</name>
<email>jwcampbell gmail com</email>
@@ -31,7 +31,7 @@
<p>To close the <gui>search window</gui>, press <key>Esc</key>.</p>
<note>
- <p>The text that you've searched for will remain highlighted by gedit, even after you have completed your search. To remove the highlight, click <guiseq><gui>Search</gui><gui>Clear Highlight</gui></guiseq>, or press <keyseq><key>Shift</key><key>Ctrl</key><key>K</key></keyseq>.</p>
+ <p>The text that you've searched for will remain highlighted by gedit, even after you have completed your search. To remove the highlight, click <guiseq><gui>Search</gui><gui>Clear Highlight</gui></guiseq>, or press <keyseq><key>Ctrl</key><key>Shift</key><key>K</key></keyseq>.</p>
</note>
</page>
diff --git a/help/C/gedit-shortcut-keys.page b/help/C/gedit-shortcut-keys.page
index 3219f47..e057415 100644
--- a/help/C/gedit-shortcut-keys.page
+++ b/help/C/gedit-shortcut-keys.page
@@ -4,7 +4,7 @@
<info>
<link type="guide" xref="index"/>
- <revision pkgversion="3.0" version="0.5" date="2010-10-30" status="complete"/>
+ <revision pkgversion="3.0" version="1.0" date="2011-03-25" status="final"/>
<credit type="author">
<name>Jim Campbell</name>
<email>jwcampbell gmail com</email>
@@ -58,9 +58,6 @@ Please skip this list for now. I'm not sure if it is needed.
<td><p>Switch to the next tab to the left</p></td> <td><p>Ctrl + Alt + PageUp</p></td>
</tr>
<tr>
- <td><p>Switch to the next tab to the left</p></td> <td><p>Ctrl + Alt + PageUp</p></td>
- </tr>
- <tr>
<td><p>Switch to the next tab to the right</p></td> <td><p>Ctrl + Alt + PageDown</p></td>
</tr>
<tr>
diff --git a/help/C/gedit-tabs-moving.page b/help/C/gedit-tabs-moving.page
index 8d0d0a4..10c3f40 100644
--- a/help/C/gedit-tabs-moving.page
+++ b/help/C/gedit-tabs-moving.page
@@ -4,7 +4,7 @@
<info>
<link type="guide" xref="index#gedit-working-with-files" group="last"/>
- <revision pkgversion="3.0" version="0.1" date="2010-10-10" status="incomplete"/>
+ <revision pkgversion="3.0" version="1.0" date="2011-03-25" status="final"/>
<credit type="author">
<name>Jim Campbell</name>
<email>jwcampbell gmail com</email>
diff --git a/help/C/gedit-tabs.page b/help/C/gedit-tabs.page
index e5fbf44..d8221ef 100644
--- a/help/C/gedit-tabs.page
+++ b/help/C/gedit-tabs.page
@@ -3,9 +3,9 @@
id="gedit-tabs">
<info>
- <link type="guide" xref="index#gedit-working-with-files" group="last"/>
+ <link type="guide" xref="index#gedit-working-with-files" group="second"/>
<link type="seealso" xref="gedit-tabs-moving"/>
- <revision pkgversion="3.0" version="0.1" date="2010-10-10" status="incomplete"/>
+ <revision pkgversion="3.0" version="1.0" date="2011-03-25" status="final"/>
<credit type="author">
<name>Jim Campbell</name>
<email>jwcampbell gmail com</email>
diff --git a/help/C/gedit-undo-recent-action.page b/help/C/gedit-undo-recent-action.page
index 1c2eb6c..dace19e 100644
--- a/help/C/gedit-undo-recent-action.page
+++ b/help/C/gedit-undo-recent-action.page
@@ -4,7 +4,7 @@
<info>
<link type="guide" xref="index#gedit-working-with-files"/>
- <revision pkgversion="3.0" version="0.1" date="2010-10-10" status="incomplete"/>
+ <revision pkgversion="3.0" version="1.0" date="2011-03-25" status="final"/>
<credit type="author">
<name>Jim Campbell</name>
<email>jwcampbell gmail com</email>
diff --git a/help/C/gedit-view-open-files-in-sidepane.page b/help/C/gedit-view-open-files-in-sidepane.page
index 9edd892..b7f5710 100644
--- a/help/C/gedit-view-open-files-in-sidepane.page
+++ b/help/C/gedit-view-open-files-in-sidepane.page
@@ -4,7 +4,7 @@
<info>
<link type="guide" xref="index#configure-gedit"/>
- <revision pkgversion="3.0" version="0.1" date="2010-10-10" status="incomplete"/>
+ <revision pkgversion="3.0" version="1.0" date="2011-03-25" status="final"/>
<credit type="author">
<name>Jim Campbell</name>
<email>jwcampbell gmail com</email>
@@ -17,7 +17,7 @@
</credit>
</info>
-<title>View a list of open files in a side pane</title>
+<title>View a list of files in the side pane</title>
<p>Keeping track of a large number of files using tabs can be difficult. One way of managing large numbers of files is viewing them in a side pane. Side panes allow you to view more files at a time than is possible using tabs alone.</p>
diff --git a/help/C/index.page b/help/C/index.page
index e713da2..1490894 100644
--- a/help/C/index.page
+++ b/help/C/index.page
@@ -7,7 +7,7 @@
<title type="link">gedit Text Editor</title>
<title type="text">gedit Text Editor</title>
- <revision pkgversion="0.1" version="0.1" date="2010-05-24" status="incomplete"/>
+ <revision pkgversion="0.1" version="1.0" date="2011-03-25" status="final"/>
<credit type="author">
<name>Jim Campbell</name>
<email>jwcampbell gmail com</email>
@@ -27,8 +27,9 @@
<p>Other help topics are grouped together into sections below. Enjoy using <app>gedit</app>!</p>
- <section id="gedit-working-with-files" style="2column" groups="first second third fourth fifth sixth last">
+ <section id="gedit-working-with-files">
<title>Working With Files</title>
+ <links type="topic" groups="first second third fourth fifth sixth last" style="2column"/>
</section>
<section id="configure-gedit" style="2column">
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]