doc: move C to en_US.UTF-8.

This commit is contained in:
Liang Chang
2022-01-20 02:27:30 +08:00
parent a1a43180ac
commit 53e4feeb32
2137 changed files with 43 additions and 45 deletions

View File

@@ -0,0 +1,449 @@
<!-- $XConsortium: Concepts.sgm /main/10 1996/10/29 21:34:20 cdedoc $ -->
<!-- (c) Copyright 1995 Digital Equipment Corporation. -->
<!-- (c) Copyright 1995 Hewlett-Packard Company. -->
<!-- (c) Copyright 1995 International Business Machines Corp. -->
<!-- (c) Copyright 1995 Sun Microsystems, Inc. -->
<!-- (c) Copyright 1995 Novell, Inc. -->
<!-- (c) Copyright 1995 FUJITSU LIMITED. -->
<!-- (c) Copyright 1995 Hitachi. -->
<!-- Help volume: Filemgr -->
<!-- File name: Concepts -->
<Chapter Id="Concepts">
<Title>File Manager Concepts</Title>
<Para>For a better understanding of File Manager, you may want to read the
following topics.
</Para>
<ItemizedList Mark="&bull;">
<ListItem Id="HFMGR.CNCP.item.1">
<Para><XRef Linkend="TheHierarchicalFileSystemSI"></Para>
</ListItem>
<ListItem Id="HFMGR.CNCP.item.2">
<Para><XRef Linkend="PathConcepts"></Para>
</ListItem>
<ListItem Id="HFMGR.CNCP.item.3">
<Para><XRef Linkend="FileOwnershipAndSecuritySI"></Para>
</ListItem>
<ListItem Id="HFMGR.CNCP.item.4">
<Para><XRef Linkend="DesktopIntro"></Para>
</ListItem>
<ListItem Id="HFMGR.CNCP.item.5">
<Para><XRef Linkend="MatchingPatterns"></Para>
</ListItem>
<ListItem Id="HFMGR.CNCP.item.6">
<Para><XRef Linkend="IconBrowser"></Para>
</ListItem>
</ItemizedList>
<Sect1 Id="TheHierarchicalFileSystemSI">
<Title>Hierarchical File System</Title>
<IndexTerm>
<Primary>hierarchical file system</Primary>
</IndexTerm>
<IndexTerm>
<Primary>file: system, hierarchical</Primary>
</IndexTerm>
<IndexTerm>
<Primary>definition: file</Primary>
</IndexTerm>
<Para>If you are new to computers, the idea of a hierarchical file system may
also be new to you. This topic describes the basic components of the
hierarchical file system.
</Para>
<Procedure>
<Title>What's a File?</Title>
<Step>
<Para>A <Symbol Role="Variable">file</Symbol> is a container that holds information. Most of the
files you use contain information (data) in some particular
format&emdash;a document, a spreadsheet, a chart. The format is
the particular way the data is arranged inside the file.
The format of a file is known as its data type.</Para>
<Para>When File Manager is in one of its icon-view modes, you can identify the
data type of a file by the icon used to represent the file.
Each data type has a different icon.</Para>
<Para>Most application programs understand a limited number of data types. For
example, a document editor probably cannot read a spreadsheet file.
The desktop helps you recognize different types of files using a
<GlossTerm Role="baseform=data types">data type</GlossTerm> database. A data type identifies
the files of a particular format and associates them with the appropriate
applications. In most cases, when you
double-click on a file, the desktop will automatically launch
the application that understands that file's data type.</Para>
<Para>The maximum allowable size of a file name varies from system to system.
Some operating systems do not allow file names longer than 14 characters.
If necessary, consult your system administrator.
</Para>
</Step>
</Procedure>
<Procedure>
<Title>What's a Folder?</Title>
<IndexTerm>
<Primary>definition: folder</Primary>
</IndexTerm>
<Step>
<Para>A <Emphasis>folder</Emphasis> is a container for files, similar to a folder in
a file cabinet. In fact, File Manager uses a folder icon to represent a
folder. A folder can contain other folders&emdash;
sometimes called <Emphasis>subfolders</Emphasis>. With folders and subfolders,
you can create multiple layers of organization that form a hierarchy.
(in other contexts, folders are often referred to as directories.)</Para>
<Para>If you drew a picture of the folder hierarchy with each subfolder
underneath the folder that contains it&emdash;its parent
folder&emdash;and drew a line from each folder to its parent, the
picture would look like an upside-down tree. Therefore, we often call
the folder hierarchy a folder <Emphasis>tree</Emphasis>.</Para>
<Para>Within any single folder, each file name must
have a unique name. However, files
in different folders can have the same name.</Para>
<Para>As you navigate from folder to folder, your current location is
referred to as the <Emphasis>current folder</Emphasis>.
</Para>
</Step>
</Procedure>
<Procedure>
<Title>What's a Path?</Title>
<IndexTerm>
<Primary>definition: path</Primary>
</IndexTerm>
<IndexTerm>
<Primary>path: defined</Primary>
</IndexTerm>
<Step>
<Para>The location of a file is often specified
by listing the names of the folders and
subfolders that lead to the file&emdash;this list is called a <Emphasis>path</Emphasis>.
(See <XRef Linkend="PathConcepts">.) A file's path is
visible in two places in File Manager. First it is shown in
the iconic path as a string of folders. Second, it is shown in
text form in the text path line above the view area.
</Para>
</Step>
</Procedure>
</Sect1>
<Sect1 Id="PathConcepts">
<Title>Paths and Path Names</Title>
<Para>The path to an object is a way to specify where the object is located
in the file system. There are three ways to specify the path:
absolute path, relative path, and fully qualified path.
</Para>
<Procedure>
<Title>Absolute Paths</Title>
<Step>
<Para>A path is an <Emphasis>absolute</Emphasis> path if it begins at the <Emphasis>root folder</Emphasis>.
The root folder is the highest folder in the hierarchical folder tree.
If a path begins with a slash
(<ComputerOutput>/</ComputerOutput>), it is an absolute path specified from the root folder. For
example, the following is an absolute path to the file <ComputerOutput>letter</ComputerOutput>:
</Para>
<ProgramListing>/usr/dt/config/letter</ProgramListing>
</Step>
</Procedure>
<Procedure>
<Title>Relative Paths</Title>
<Step>
<Para>A path is <Emphasis>relative</Emphasis> if it describes the location of a file or folder
as it relates to the current folder.
If you are in a folder and you want to move down the folder tree,
you don't need to type the full path name. You
can just type the path starting with the name
of the next folder in the path.
If a path does not begin
with a slash, it is a relative path. For example, if the current
folder is <ComputerOutput>/usr/dt</ComputerOutput>,
and you want to move to the folder ''/usr/dt/config/letters,''
you would use the following relative path:
</Para>
<ProgramListing>config/letters</ProgramListing>
<IndexTerm>
<Primary>.. (parent folder)</Primary>
</IndexTerm>
<Para>Two special folder names are useful when specifying relative paths.
The <ComputerOutput>.</ComputerOutput> folder (sometimes called "dot") represents the current
folder. The <ComputerOutput>..</ComputerOutput> folder (sometimes called "dot-dot") represents
the <Symbol Role="Variable">parent</Symbol> folder&emdash;the folder one level up in the folder
hierarchy. For example, if your current folder is
<ComputerOutput>/usr/dt/config/panels</ComputerOutput>, then the relative path to the <ComputerOutput>sys.dtwmrc</ComputerOutput>
file becomes:
</Para>
<ProgramListing>../sys.dtwmrc</ProgramListing>
<Para>because the file is in the <ComputerOutput>/usr/dt/config</ComputerOutput> folder, one level
above the current folder.
<!-- Do we need the following section if Remote Systems is out?
************************************************************
<procedure>The Network Path
Both the absolute and relative path names are by the operating system as
well as by the desktop. The network path is a special path used only by
certain applications in the desktop. It includes the name of the system
containing the file system.</Para>
<Para>Here is an example of a network path. The name of the system is
``mysystem'':</Para>
<Para><ex>mysystem:/usr/dt/config/sys.dtwmrc<\ex>
************************************************************
--></Para>
</Step>
</Procedure>
<Procedure>
<Title>See Also</Title>
<Step>
<ItemizedList Mark="&bull;" Role="tight">
<ListItem Id="HFMGR.CNCP.item.7">
<Para><XRef Linkend="ToChangeToAnotherDirectoryTA">
<!-- * <xref ToSpecifyRemotePath> --></Para>
</ListItem>
<ListItem Id="HFMGR.CNCP.item.8">
<Para><XRef Linkend="ToFindAFileByNameTA"></Para>
</ListItem>
<ListItem Id="HFMGR.CNCP.item.9">
<Para><XRef Linkend="ToFindAFileByContentsTA"></Para>
</ListItem>
</ItemizedList>
</Step>
</Procedure>
</Sect1>
<Sect1 Id="FileOwnershipAndSecuritySI">
<Title>Object Ownership and Security</Title>
<Para>Three groups of users can access objects:
<Emphasis>owner</Emphasis>, <Emphasis>group</Emphasis>, and
<Emphasis>other</Emphasis>.
Access is divided into three functions:
<Emphasis>read</Emphasis>
permission, <Emphasis>write</Emphasis> permission,
and <Emphasis>execute</Emphasis> permission.
</Para>
<Procedure>
<Title>Who Has Access?</Title>
<Step>
<Para>The three basic classes of users are:
</Para>
<VariableList>
<VarListEntry>
<Term><GlossTerm Role="nogloss">Owner</GlossTerm></Term>
<ListItem>
<Para>Usually the person who created the file.
</Para>
</ListItem>
</VarListEntry>
<VarListEntry>
<Term><GlossTerm Role="nogloss">Group</GlossTerm></Term>
<ListItem>
<Para>Several users that have been grouped together by
the system administrator. For example, the
members of a department might belong to the same
group.
</Para>
</ListItem>
</VarListEntry>
<VarListEntry>
<Term><GlossTerm Role="nogloss">Other</GlossTerm></Term>
<ListItem>
<Para>All other users on the system.
</Para>
</ListItem>
</VarListEntry>
</VariableList>
</Step>
</Procedure>
<Procedure>
<Title>What Kind of Access?</Title>
<Step>
<Para>The access permissions on a file specifies how that file can be accessed by
the owner, members of the group, and other users.
</Para>
<VariableList>
<VarListEntry>
<Term><GlossTerm Role="nogloss">Read Permission</GlossTerm></Term>
<ListItem>
<Para>Allows access to copy or view the
contents of the object.
</Para>
</ListItem>
</VarListEntry>
<VarListEntry>
<Term><GlossTerm Role="nogloss">Write Permission</GlossTerm></Term>
<ListItem>
<Para>Allows access to change the contents
of the object or remove the object.
</Para>
</ListItem>
</VarListEntry>
<VarListEntry>
<Term><GlossTerm Role="nogloss">Execute Permission</GlossTerm></Term>
<ListItem>
<Para>For a file, allows access to <Emphasis>run</Emphasis>
the file (for executable files,
scripts, and actions). For a
folder, allows access to run
commands, scripts, and actions
within that folder.
</Para>
</ListItem>
</VarListEntry>
</VariableList>
<Para>With File Manager, you can view and change the access permissions for
files or folders.
See <XRef Linkend="ToChangeAnObjectsOwnerTA"> and <XRef Linkend="ToChangeAnObjectsPermissionsTA">.
</Para>
</Step>
</Procedure>
<Procedure>
<Title>Examples</Title>
<Step>
<Para>To make a folder private:
</Para>
<ItemizedList Mark="&bull;">
<ListItem Id="HFMGR.CNCP.item.10">
<Para>Change the folder's properties, giving yourself (the owner) read,
write, and execute permission, but giving no permissions for group and
other. This means that only you and the root user can view the
contents of the folder.
</Para>
</ListItem>
</ItemizedList>
<Para>To make an object that you've created available for everyone to use, but
protect it so it isn't inadvertently overwritten:
</Para>
<ItemizedList Mark="&bull;">
<ListItem Id="HFMGR.CNCP.item.11">
<Para>Change the file's properties, giving read and execute permission to
owner, group, and other. Don't give anyone write permission.
</Para>
</ListItem>
</ItemizedList>
</Step>
</Procedure>
<Procedure>
<Title>Default Permissions</Title>
<Step>
<Para>The default permissions used when you create a new file or folder may be
altered by your system administrator. To determine what your current
defaults are, create a new file or folder, then Select
Change Permissions from the Selected menu to view the
default permissions.
</Para>
</Step>
</Procedure>
</Sect1>
<Sect1 Id="DesktopIntro">
<Title>Making Objects More Accessible - Introducing &newline; Workspace Objects</Title>
<IndexTerm>
<Primary>workspace objects</Primary>
</IndexTerm>
<IndexTerm>
<Primary>workspace: objects</Primary>
</IndexTerm>
<Para>File Manager provides a way to view all the objects in your file
system. However, the object is only visible when you are viewing the
folder it is in.</Para>
<Para>To make an object more accessible, you can put it directly on the
workspace backdrop.
The workspace is that area or surface on which windows appear to lie.
(See <XRef Linkend="ToPutAnObjectOnTheDesktopTA">.) When an object is placed there,
it is called a <Emphasis>workspace object</Emphasis>.</Para>
<Para>Placing an object on the workspace does not alter the original file or
folder. In fact, the icon that appears on the desktop is really just
a shortcut (link) for accessing the real file or folder. Any operation you
perform on the workspace object is actually performed on the file or
folder it represents.
</Para>
<Procedure>
<Title>Workspace Objects Appear in One Workspace</Title>
<Step>
<Para>When you place an object on the workspace, it appears only in the current
workspace. If you want the object in other workspaces, you must switch
to those workspaces and put the object on them.
</Para>
</Step>
</Procedure>
<Procedure>
<Title>Using Workspace Objects</Title>
<Step>
<Para>You use workspace objects exactly like the objects inside
the File Manager or Application Manager windows.
To execute an object's default action, double-click
its icon on the desktop.</Para>
<Para>Each workspace object also has a pop-up menu containing commands
and actions for the object. To display the pop-up menu for a workspace
object
using the mouse, point to the icon, then press and hold mouse button 3.
To display the menu through the keyboard, press Alt+Tab until
the icon is highlighted, then press Shift+F10.
</Para>
</Step>
</Procedure>
</Sect1>
<Sect1 Id="MatchingPatterns">
<Title>Matching Patterns for Finding Files</Title>
<IndexTerm>
<Primary>wildcards, matching</Primary>
</IndexTerm>
<IndexTerm>
<Primary>matching wildcards</Primary>
</IndexTerm>
<Para>When you specify a file or folder name, you can include wildcard
characters such as asterisk (<ComputerOutput>*</ComputerOutput>) and question mark (<ComputerOutput>?</ComputerOutput>). The <ComputerOutput>*</ComputerOutput>
matches any string of zero or more characters, and <ComputerOutput>?</ComputerOutput>
matches any single character.
</Para>
<Procedure>
<Title>Examples</Title>
<Step>
<VariableList>
<VarListEntry>
<Term><ComputerOutput>ba*</ComputerOutput></Term>
<ListItem>
<Para>Matches all names that begin with the string <ComputerOutput>ba</ComputerOutput>
</Para>
</ListItem>
</VarListEntry>
<VarListEntry>
<Term><ComputerOutput>ba?</ComputerOutput></Term>
<ListItem>
<Para>Matches all three letter names that begin with the string <ComputerOutput>ba</ComputerOutput>
</Para>
</ListItem>
</VarListEntry>
<VarListEntry>
<Term><ComputerOutput>*.vf</ComputerOutput></Term>
<ListItem>
<Para>Matches all names that end with the <ComputerOutput>.vf</ComputerOutput> extension
</Para>
</ListItem>
</VarListEntry>
<VarListEntry>
<Term><ComputerOutput>*.???</ComputerOutput></Term>
<ListItem>
<Para>Matches all names that have a three-character dot extension
</Para>
</ListItem>
</VarListEntry>
</VariableList>
<Note>
<Para>The file name and contents can be specified using the same regular
expression syntax allowed by the <ComputerOutput>find</ComputerOutput> command. (Refer to the
<ComputerOutput>find (1)</ComputerOutput> man page for more information.)
</Para>
</Note>
</Step>
</Procedure>
</Sect1>
<Sect1 Id="IconBrowser">
<Title>Using File Manager as an Icon Browser</Title>
<Para>Files with names that end in
<ComputerOutput>.pm</ComputerOutput> or <ComputerOutput>.bm</ComputerOutput> contain icon drawings.
These are the icons that File Manager uses when it builds icons. By default,
you must open these files to see the drawings they contain. If you enable
icon browsing, File Manager will make the icon for each file look like
whatever drawing is stored inside the file.</Para>
<Para>To find out how to reconfigure File Manager for icon browsing, see:
</Para>
<ItemizedList Mark="&bull;">
<ListItem Id="HFMGR.CNCP.item.12">
<Para><XRef Linkend="ToEnableIconBrowsingTA"></Para>
</ListItem>
<ListItem Id="HFMGR.CNCP.item.13">
<Para><XRef Linkend="ToDisableIconBrowsingTA"></Para>
</ListItem>
</ItemizedList>
<!-- EOF: Concepts -->
</Sect1>
</Chapter>
<!--fickle 1.15 help-to-docbook 1.4 01/17/96 16:32:19-->

View File

@@ -0,0 +1,25 @@
<!-- $XConsortium: GEntity.sgm /main/8 1996/06/19 16:13:22 drk $ -->
<!entity FM-ChangeDirectoryDialog SYSTEM "./Filemgr/graphics/chdir.tif" NDATA TIFF>
<!entity FM-CopyDialog SYSTEM "./Filemgr/graphics/copy.tif" NDATA TIFF>
<!entity FM-CreateDialog SYSTEM "./Filemgr/graphics/create.tif" NDATA TIFF>
<!entity FM-DesktopPopupMenu SYSTEM "./Filemgr/graphics/dtpopup.tif" NDATA TIFF>
<!entity FM-DraggingAnIcon SYSTEM "./Filemgr/graphics/dragicon.pm" NDATA XPM>
<!entity FM-FilterDialog SYSTEM "./Filemgr/graphics/filter.tif" NDATA TIFF>
<!entity FM-FindDialog SYSTEM "./Filemgr/graphics/find.tif" NDATA TIFF>
<!entity FM-MainWindowOverview SYSTEM "./Filemgr/graphics/overview.tif" NDATA TIFF>
<!entity FM-PreferencesDialog SYSTEM "./Filemgr/graphics/preferen.tif" NDATA TIFF>
<!entity FM-PropertiesDialog SYSTEM "./Filemgr/graphics/property.tif" NDATA TIFF>
<!entity FM-QuickCD SYSTEM "./Filemgr/graphics/quickcd.tif" NDATA TIFF>
<!entity FM-RenameDialog SYSTEM "./Filemgr/graphics/rename.tif" NDATA TIFF>
<!entity FM-SelectedIcons SYSTEM "./Filemgr/graphics/selected.tif" NDATA TIFF>
<!entity FM-FrontPanelControl SYSTEM "./Filemgr/graphics/fpctl.tif" NDATA TIFF>
<!entity FM-CopyOverwrite SYSTEM "./Filemgr/graphics/copyovwr.tif" NDATA TIFF>
<!entity FM-CopyFoldWarnDialog SYSTEM "./Filemgr/graphics/cpfwarn.tif" NDATA TIFF>
<!entity FM-CopyWarnDialog SYSTEM "./Filemgr/graphics/copywarn.tif" NDATA TIFF>
<!entity FM-CreateFoldDialog SYSTEM "./Filemgr/graphics/createf.tif" NDATA TIFF>
<!entity FM-CopyFoldStatusDialog SYSTEM "./Filemgr/graphics/cpfstat.tif" NDATA TIFF>
<!entity FM-MoveDialog SYSTEM "./Filemgr/graphics/move.tif" NDATA TIFF>
<!entity FM-CopyLinkDialog SYSTEM "./Filemgr/graphics/copylink.tif" NDATA TIFF>
<!entity FM-ReplaceRename SYSTEM "./Filemgr/graphics/replace.tif" NDATA TIFF>
<!entity FM-Multicoll SYSTEM "./Filemgr/graphics/multicol.tif" NDATA TIFF>
<!entity FM-CopyDirError SYSTEM "./Filemgr/graphics/copydir.tif" NDATA TIFF>

View File

@@ -0,0 +1,103 @@
<!-- $XConsortium: Home.sgm /main/5 1996/09/08 21:46:30 rws $ -->
<!-- (c) Copyright 1995 Digital Equipment Corporation. -->
<!-- (c) Copyright 1995 Hewlett-Packard Company. -->
<!-- (c) Copyright 1995 International Business Machines Corp. -->
<!-- (c) Copyright 1995 Sun Microsystems, Inc. -->
<!-- (c) Copyright 1995 Novell, Inc. -->
<!-- (c) Copyright 1995 FUJITSU LIMITED. -->
<!-- (c) Copyright 1995 Hitachi. -->
<PartIntro Id="SDL-RESERVED-hometopic">
<Title>File Manager Help</Title>
<TitleAbbrev>File Manager Help</TitleAbbrev>
<!-- **** UNRESOLVED IDs **** -->
<Para><Anchor Id="VUEUsingHelp"><IndexTerm>
<Primary>introduction</Primary>
</IndexTerm>
Use File Manager to create, find, and use workspace objects: files,
folders, and applications. Each object is represented by an
icon in File Manager. File Manager allows you to do a number of
things with these objects. For example, you can move, copy, open,
and delete them.
</Para>
<Graphic Entityref="FM-MainWindowOverview" Id="HFMGR.HTOP.fig.1"></Graphic>
<VariableList>
<VarListEntry>
<Term>Menus</Term>
<ListItem>
<Para>Contains the commands for File Manager
</Para>
</ListItem>
</VarListEntry>
<VarListEntry>
<Term>Iconic Path</Term>
<ListItem>
<Para>Uses icons to show the location of the folder you are viewing
</Para>
</ListItem>
</VarListEntry>
<VarListEntry>
<Term>Text Path</Term>
<ListItem>
<Para>Uses text to show the location of the folder you are viewing
</Para>
</ListItem>
</VarListEntry>
<VarListEntry>
<Term>Status line</Term>
<ListItem>
<Para>Shows the full path name of the folder you are viewing
</Para>
</ListItem>
</VarListEntry>
<VarListEntry>
<Term>View area</Term>
<ListItem>
<Para>Shows the contents of the folder you are viewing
</Para>
</ListItem>
</VarListEntry>
<VarListEntry>
<Term>Object icons</Term>
<ListItem>
<Para>Each icon represents a file or folder in the current
folder
</Para>
</ListItem>
</VarListEntry>
<VarListEntry>
<Term>Message line</Term>
<ListItem>
<Para>This line at the bottom of the window shows how many objects
are inside the folder you are viewing. It also shows messages
when File Manager is busy doing actions such as opening a folder.</Para>
</ListItem>
</VarListEntry>
</VariableList>
<Procedure>
<Title>To Open File Manager</Title>
<Step>
<ItemizedList Mark="&bull;">
<ListItem Id="HFMGR.HTOP.item.1">
<Para>Click the File Manager control in the Front Panel.
</Para>
<Graphic Entityref="FM-FrontPanelControl" Id="HFMGR.HTOP.fig.2"></Graphic>
</ListItem>
</ItemizedList>
<ItemizedList Mark="&bull;" Role="tight">
<ListItem Id="HFMGR.HTOP.item.2">
<Para><XRef Linkend="TOC"></Para>
</ListItem>
<ListItem Id="HFMGR.HTOP.item.3">
<Para><XRef Linkend="tasks"></Para>
</ListItem>
<ListItem Id="HFMGR.HTOP.item.4">
<Para><XRef Linkend="concepts"></Para>
</ListItem>
<ListItem Id="HFMGR.HTOP.item.5">
<Para><XRef Linkend="reference"></Para>
</ListItem>
</ItemizedList>
</Step>
</Procedure>
</PartIntro>
<!--fickle 1.15 help-to-docbook 1.4 01/17/96 16:32:19-->

View File

@@ -0,0 +1,40 @@
<!-- $XConsortium: Messages.sgm /main/5 1996/09/08 21:46:39 rws $ -->
<!-- (c) Copyright 1995 Digital Equipment Corporation. -->
<!-- (c) Copyright 1995 Hewlett-Packard Company. -->
<!-- (c) Copyright 1995 International Business Machines Corp. -->
<!-- (c) Copyright 1995 Sun Microsystems, Inc. -->
<!-- (c) Copyright 1995 Novell, Inc. -->
<!-- (c) Copyright 1995 FUJITSU LIMITED. -->
<!-- (c) Copyright 1995 Hitachi. -->
<Chapter Id="Messages">
<Title>File Manager Messages</Title>
<Para>This section describes the possible causes and solutions for
File Manager error messages.
</Para>
<Sect1 Id="InvalidFileAttribute">
<Title>Invalid File Attribute Information</Title>
<ItemizedList Mark="&bull;">
<ListItem Id="HFMGR.MSG.item.1">
<Para>Possible cause: You have entered an invalid Owner Name or Group Name.</Para>
<Para>Solution: Edit the Owner Name or Group Name text fields. If
necessary, consult your system administration to learn valid values.</Para>
<Para>For more information: see <XRef Linkend="ToChangeAnObjectsOwnerTA">
</Para>
</ListItem>
</ItemizedList>
</Sect1>
<Sect1 Id="CannotCreateFile">
<Title>Cannot Create &lt;file or folder></Title>
<ItemizedList Mark="&bull;">
<ListItem Id="HFMGR.MSG.item.2">
<Para>Possible cause: You lack write permission for the folder in which you want to create the file.</Para>
<Para>Solution: Change the permission of the folder by
selecting the folder and choosing Change Permissions from the Selected
menu.</Para>
<Para>For more information: see <XRef Linkend="ToChangeAnObjectsPermissionsTA">.
</Para>
</ListItem>
</ItemizedList>
</Sect1>
</Chapter>
<!--fickle 1.15 help-to-docbook 1.4 01/17/96 16:32:19-->

View File

@@ -0,0 +1,28 @@
<!-- $XConsortium: MetaInfo.sgm /main/3 1996/09/08 21:46:48 rws $ -->
<!-- (c) Copyright 1995 Digital Equipment Corporation. -->
<!-- (c) Copyright 1995 Hewlett-Packard Company. -->
<!-- (c) Copyright 1995 International Business Machines Corp. -->
<!-- (c) Copyright 1995 Sun Microsystems, Inc. -->
<!-- (c) Copyright 1995 Novell, Inc. -->
<!-- (c) Copyright 1995 FUJITSU LIMITED. -->
<!-- (c) Copyright 1995 Hitachi. -->
<DocInfo>
<Title>File Manager Help</Title>
<AuthorGroup>
<CorpAuthor>X Consortium</CorpAuthor>
</AuthorGroup>
<Abstract Id="SDL-RESERVED-abstract">
<Para>Basic File Management Skills
* Using the Desktop
* Using the Trash Can
* Locating Files
* File Manager Reference</Para>
</Abstract>
<LegalNotice Id="SDL-RESERVED-copyright">
<BlockQuote>
<Para>&CDEcopyright;</Para>
</BlockQuote>
</LegalNotice>
</DocInfo>
<Title>File Manager Help</Title>
<!--fickle 1.15 help-to-docbook 1.4 01/17/96 16:32:19-->

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,280 @@
<!-- $XConsortium: TOC.sgm /main/5 1996/09/08 21:47:10 rws $ -->
<!-- (c) Copyright 1995 Digital Equipment Corporation. -->
<!-- (c) Copyright 1995 Hewlett-Packard Company. -->
<!-- (c) Copyright 1995 International Business Machines Corp. -->
<!-- (c) Copyright 1995 Sun Microsystems, Inc. -->
<!-- (c) Copyright 1995 Novell, Inc. -->
<!-- (c) Copyright 1995 FUJITSU LIMITED. -->
<!-- (c) Copyright 1995 Hitachi. -->
<!-- Help volume: Filemgr -->
<!-- File name: TOC -->
<Chapter Id="TOC">
<Title>Table of Contents</Title>
<Procedure>
<Title>File Manager Tasks</Title>
<Step>
<Para></Para>
</Step>
</Procedure>
<Procedure>
<Title>Basic File Management Skills</Title>
<Step>
<ItemizedList Mark="&bull;" Role="tight">
<ListItem Id="HFMGR.TOC.item.1">
<Para><XRef Linkend="ToSelectASingleObjectTA"></Para>
</ListItem>
<ListItem Id="HFMGR.TOC.item.2">
<Para><XRef Linkend="ToSelectMultipleObjectsTA"></Para>
</ListItem>
<ListItem Id="HFMGR.TOC.item.3">
<Para><XRef Linkend="ToGetHelpOnAnObjectTA"></Para>
</ListItem>
<ListItem Id="HFMGR.TOC.item.4">
<Para><XRef Linkend="ToDropAnObjectTA"></Para>
</ListItem>
</ItemizedList>
</Step>
</Procedure>
<Procedure>
<Title>Working with Files and Folders</Title>
<Step>
<ItemizedList Mark="&bull;" Role="tight">
<ListItem Id="HFMGR.TOC.item.5">
<Para><XRef Linkend="ToCreateANewObjectTA"></Para>
</ListItem>
<ListItem Id="HFMGR.TOC.item.6">
<Para><XRef Linkend="ToRenameAnObjectTA"></Para>
</ListItem>
<ListItem Id="HFMGR.TOC.item.7">
<Para><XRef Linkend="ToOpenAnObjectTA"></Para>
</ListItem>
<ListItem Id="HFMGR.TOC.item.8">
<Para><XRef Linkend="ToMoveAnObjectTA"></Para>
</ListItem>
<ListItem Id="HFMGR.TOC.item.9">
<Para><XRef Linkend="ToCopyAnObjectTA"></Para>
</ListItem>
<ListItem Id="HFMGR.TOC.item.10">
<Para><XRef Linkend="ToCreateASymbolicLinkTA"></Para>
</ListItem>
<ListItem Id="HFMGR.TOC.item.11">
<Para><XRef Linkend="ToExecuteAnObjectsActionsTA"></Para>
</ListItem>
</ItemizedList>
</Step>
</Procedure>
<Procedure>
<Title>Changing Permissions</Title>
<Step>
<ItemizedList Mark="&bull;" Role="tight">
<ListItem Id="HFMGR.TOC.item.12">
<Para><XRef Linkend="ToChangeAnObjectsOwnerTA"></Para>
</ListItem>
<ListItem Id="HFMGR.TOC.item.13">
<Para><XRef Linkend="ToChangeAnObjectsPermissionsTA"></Para>
</ListItem>
</ItemizedList>
</Step>
</Procedure>
<Procedure>
<Title>Navigating to Other Folders</Title>
<Step>
<ItemizedList Mark="&bull;" Role="tight">
<ListItem Id="HFMGR.TOC.item.14">
<Para><XRef Linkend="ToChangeToAnotherDirectoryTA"></Para>
</ListItem>
<ListItem Id="HFMGR.TOC.item.15">
<Para><XRef Linkend="ToGoHomeDirTA"></Para>
</ListItem>
<ListItem Id="HFMGR.TOC.item.16">
<Para><XRef Linkend="ToGoParentDirTA"></Para>
</ListItem>
<ListItem Id="HFMGR.TOC.item.17">
<Para><XRef Linkend="ToOpenATerminalWindowTA"></Para>
</ListItem>
</ItemizedList>
</Step>
</Procedure>
<Procedure>
<Title>Deleting Files and Folders</Title>
<Step>
<ItemizedList Mark="&bull;" Role="tight">
<ListItem Id="HFMGR.TOC.item.18">
<Para><XRef Linkend="ToDeleteAnObjectTA"></Para>
</ListItem>
<ListItem Id="HFMGR.TOC.item.19">
<Para><XRef Linkend="ToOpenTheTrashCanTA"></Para>
</ListItem>
<ListItem Id="HFMGR.TOC.item.20">
<Para><XRef Linkend="ToRestoreAnObjectFromTheTrashTA"></Para>
</ListItem>
<ListItem Id="HFMGR.TOC.item.21">
<Para><XRef Linkend="ToEmptyTheTrashTA"></Para>
</ListItem>
<ListItem Id="HFMGR.TOC.item.22">
<Para><XRef Linkend="ToPutAnObjectOnTheDesktopTA"></Para>
</ListItem>
<ListItem Id="HFMGR.TOC.item.23">
<Para><XRef Linkend="ToRemoveAnObjectFromTheDesktopTA"></Para>
</ListItem>
</ItemizedList>
</Step>
</Procedure>
<Procedure>
<Title>Locating Files</Title>
<Step>
<ItemizedList Mark="&bull;" Role="tight">
<ListItem Id="HFMGR.TOC.item.24">
<Para><XRef Linkend="ToFindAFileByNameTA"></Para>
</ListItem>
<ListItem Id="HFMGR.TOC.item.25">
<Para><XRef Linkend="ToFindAFileByContentsTA"></Para>
</ListItem>
</ItemizedList>
</Step>
</Procedure>
<Procedure>
<Title>Using Different File Manager Views</Title>
<Step>
<ItemizedList Mark="&bull;" Role="tight">
<ListItem Id="HFMGR.TOC.item.26">
<Para><XRef Linkend="BasicViewingPreferences"></Para>
</ListItem>
<ListItem Id="HFMGR.TOC.item.27">
<Para><XRef Linkend="ToUseDirectoryTree"></Para>
</ListItem>
<ListItem Id="HFMGR.TOC.item.28">
<Para><XRef Linkend="ToChangeTheSortOrderTA"></Para>
</ListItem>
<ListItem Id="HFMGR.TOC.item.29">
<Para><XRef Linkend="ToSavePreferencesAsTheDefaultTA"></Para>
</ListItem>
<ListItem Id="HFMGR.TOC.item.30">
<Para><XRef Linkend="ToShowHiddenObjectsTA"></Para>
</ListItem>
<ListItem Id="HFMGR.TOC.item.31">
<Para><XRef Linkend="ModifyFilterList"></Para>
</ListItem>
<ListItem Id="HFMGR.TOC.item.32">
<Para><XRef Linkend="ToEnableIconBrowsingTA"></Para>
</ListItem>
<ListItem Id="HFMGR.TOC.item.33">
<Para><XRef Linkend="ToDisableIconBrowsingTA"></Para>
</ListItem>
</ItemizedList>
</Step>
</Procedure>
<Procedure>
<Title>File Manager Concepts</Title>
<Step>
<ItemizedList Mark="&bull;" Role="tight">
<ListItem Id="HFMGR.TOC.item.34">
<Para><XRef Linkend="DesktopIntro"></Para>
</ListItem>
<ListItem Id="HFMGR.TOC.item.35">
<Para><XRef Linkend="TheHierarchicalFileSystemSI"></Para>
</ListItem>
<ListItem Id="HFMGR.TOC.item.36">
<Para><XRef Linkend="PathConcepts"></Para>
</ListItem>
<ListItem Id="HFMGR.TOC.item.37">
<Para><XRef Linkend="FileOwnershipAndSecuritySI"></Para>
</ListItem>
<ListItem Id="HFMGR.TOC.item.38">
<Para><XRef Linkend="MatchingPatterns"></Para>
</ListItem>
</ItemizedList>
</Step>
</Procedure>
<Procedure>
<Title>File Manager Reference</Title>
<Step>
<ItemizedList Mark="&bull;" Role="tight">
<ListItem Id="HFMGR.TOC.item.39">
<Para><XRef Linkend="FMMouseSI"></Para>
</ListItem>
<ListItem Id="HFMGR.TOC.item.40">
<Para><XRef Linkend="FMFileMenuDE"></Para>
</ListItem>
<ListItem Id="HFMGR.TOC.item.41">
<Para><XRef Linkend="FMViewMenuDE"></Para>
</ListItem>
<ListItem Id="HFMGR.TOC.item.42">
<Para><XRef Linkend="FMActionsMenuDE"></Para>
</ListItem>
<ListItem Id="HFMGR.TOC.item.43">
<Para><XRef Linkend="FMHelpMenuDE"></Para>
</ListItem>
<ListItem Id="HFMGR.TOC.item.44">
<Para><XRef Linkend="FMPopupMenuDE"></Para>
</ListItem>
<ListItem Id="HFMGR.TOC.item.45">
<Para><XRef Linkend="FMDesktopMenuDE"></Para>
</ListItem>
<ListItem Id="HFMGR.TOC.item.46">
<Para><XRef Linkend="FMDirectoryViewDE"></Para>
</ListItem>
<ListItem Id="HFMGR.TOC.item.47">
<Para><XRef Linkend="FMTrashDialogDE"></Para>
</ListItem>
<ListItem Id="HFMGR.TOC.item.48">
<Para><XRef Linkend="FMCreateFolderDialogDE"></Para>
</ListItem>
<ListItem Id="HFMGR.TOC.item.49">
<Para><XRef Linkend="FMCreateFileDialogDE">
</Para>
</ListItem>
<ListItem Id="HFMGR.TOC.item.50">
<Para><XRef Linkend="FMChangeToDialogDE"></Para>
</ListItem>
<ListItem Id="HFMGR.TOC.item.51">
<Para><XRef Linkend="FMFindDialogDE"></Para>
</ListItem>
<ListItem Id="HFMGR.TOC.item.52">
<Para><XRef Linkend="FMMoveDialogDE"></Para>
</ListItem>
<ListItem Id="HFMGR.TOC.item.53">
<Para><XRef Linkend="FMCopyDialogDE"></Para>
</ListItem>
<ListItem Id="HFMGR.TOC.item.54">
<Para><XRef Linkend="FMCopyLinkDialogDE"></Para>
</ListItem>
<ListItem Id="HFMGR.TOC.item.55">
<Para><XRef Linkend="FMCopyDirOverDialogDE"></Para>
</ListItem>
<ListItem Id="HFMGR.TOC.item.56">
<Para><XRef Linkend="FMCopyFoldWarnDialogDE"></Para>
</ListItem>
<ListItem Id="HFMGR.TOC.item.57">
<Para><XRef Linkend="FMCopyWarnDialogDE"></Para>
</ListItem>
<ListItem Id="HFMGR.TOC.item.58">
<Para><XRef Linkend="FMCopyDirDialogErrorDE"></Para>
</ListItem>
<ListItem Id="HFMGR.TOC.item.59">
<Para><XRef Linkend="FMCopyDirDialogStatusDE"></Para>
</ListItem>
<ListItem Id="HFMGR.TOC.item.60">
<Para><XRef Linkend="FMCopyWarnRenDialogDE"></Para>
</ListItem>
<ListItem Id="HFMGR.TOC.item.61">
<Para><XRef Linkend="FMCopyWarnMultiDialogDE"></Para>
</ListItem>
<ListItem Id="HFMGR.TOC.item.62">
<Para><XRef Linkend="FMNameChangeDialogDE"></Para>
</ListItem>
<ListItem Id="HFMGR.TOC.item.63">
<Para><XRef Linkend="FMPropertiesDialogDE"></Para>
</ListItem>
<ListItem Id="HFMGR.TOC.item.64">
<Para><XRef Linkend="FMPreferencesDialogDE"></Para>
</ListItem>
<ListItem Id="HFMGR.TOC.item.65">
<Para><XRef Linkend="FMFilterDialogDE"></Para>
</ListItem>
</ItemizedList>
<!-- EOF: TOC -->
</Step>
</Procedure>
</Chapter>
<!--fickle 1.15 help-to-docbook 1.4 01/17/96 16:32:19-->

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,105 @@
<!-- $XConsortium: adbook.sgm /main/6 1996/09/08 21:47:32 rws $ -->
<!DOCTYPE DocBook PUBLIC "-//HaL and O'Reilly//DTD DocBook V2.2.1//EN" [
<!ENTITY CDEcopyright "<GlossTerm Role=nogloss>Common Desktop Environment 1.x Internal Release</GlossTerm>
&copy; Copyright 1996 Digital Equipment Corp.
&copy; Copyright 1996 Fujitsu Limited
&copy; Copyright 1996 Hewlett-Packard Company
&copy; Copyright 1996 Hitachi, Ltd.
&copy; Copyright 1996 International Business Machines Corp.
&copy; Copyright 1996 Novell, Inc.
&copy; Copyright 1996 Sun Microsystems, Inc.">
<!ENTITY headerFix "&empty;">
<!ENTITY AbstractBullet "&bullet;">
<!ENTITY empty "">
<!ENTITY newline SDATA "[newlin]">
<!ENTITY emdash "&mdash;">
<!ENTITY bullet "&bull;">
<!ENTITY dquote "&rdquo;">
<!ENTITY sigspace "&nbsp;">
<!ENTITY vellipsis "&vellip;">
<!ENTITY tm "&trade;">
<!ENTITY a.m. "AM">
<!ENTITY cents "&cent;">
<!ENTITY date SDATA "[date]">
<!ENTITY div "&divide;">
<!ENTITY ellipsis "&hellip;">
<!ENTITY endash "&ndash;">
<!ENTITY geq "&ge;">
<!ENTITY leq "&le;">
<!ENTITY minutes "&prime;">
<!ENTITY neq "&ne;">
<!ENTITY p.m. "PM">
<!ENTITY pellipsis "....">
<!ENTITY pm "&plusmn;">
<!ENTITY seconds "&Prime;">
<!ENTITY squote "&rsquor;">
<!ENTITY sterling "&pound;">
<!ENTITY time SDATA "[time]">
<!ENTITY vblank SDATA "[vblank]">
<!ENTITY ProductName "CDE Desktop">
<!entity FM-ChangeDirectoryDialog SYSTEM "./graphics/chdir.tif" NDATA TIFF>
<!entity FM-CopyDialog SYSTEM "./graphics/copy.tif" NDATA TIFF>
<!entity FM-CreateDialog SYSTEM "./graphics/create.tif" NDATA TIFF>
<!entity FM-DesktopPopupMenu SYSTEM "./graphics/dtpopup.tif" NDATA TIFF>
<!entity FM-DraggingAnIcon SYSTEM "./graphics/dragicon.pm" NDATA XPM>
<!entity FM-FilterDialog SYSTEM "./graphics/filter.tif" NDATA TIFF>
<!entity FM-FindDialog SYSTEM "./graphics/find.tif" NDATA TIFF>
<!entity FM-MainWindowOverview SYSTEM "./graphics/overview.tif" NDATA TIFF>
<!entity FM-PreferencesDialog SYSTEM "./graphics/preferen.tif" NDATA TIFF>
<!entity FM-PropertiesDialog SYSTEM "./graphics/property.tif" NDATA TIFF>
<!entity FM-QuickCD SYSTEM "./graphics/quickcd.tif" NDATA TIFF>
<!entity FM-RenameDialog SYSTEM "./graphics/rename.tif" NDATA TIFF>
<!entity FM-SelectedIcons SYSTEM "./graphics/selected.tif" NDATA TIFF>
<!entity FM-FrontPanelControl SYSTEM "./graphics/fpctl.tif" NDATA TIFF>
<!entity FM-CopyOverwrite SYSTEM "./graphics/copyovwr.tif" NDATA TIFF>
<!entity FM-CopyFoldWarnDialog SYSTEM "./graphics/cpfwarn.tif" NDATA TIFF>
<!entity FM-CopyWarnDialog SYSTEM "./graphics/copywarn.tif" NDATA TIFF>
<!entity FM-CreateFoldDialog SYSTEM "./graphics/createf.tif" NDATA TIFF>
<!entity FM-CopyFoldStatusDialog SYSTEM "./graphics/cpfstat.tif" NDATA TIFF>
<!entity FM-MoveDialog SYSTEM "./graphics/move.tif" NDATA TIFF>
<!entity FM-CopyLinkDialog SYSTEM "./graphics/copylink.tif" NDATA TIFF>
<!entity FM-ReplaceRename SYSTEM "./graphics/replace.tif" NDATA TIFF>
<!entity FM-Multicoll SYSTEM "./graphics/multicol.tif" NDATA TIFF>
<!entity FM-CopyDirError SYSTEM "./graphics/copydir.tif" NDATA TIFF>
<!ENTITY % local.notations "| XPM | XBM | XWD">
<!NOTATION XPM SYSTEM "XPM">
<!NOTATION XBM SYSTEM "XBM">
<!NOTATION XWD SYSTEM "XWD">
<!entity Concepts SYSTEM "./Concepts.sgm">
<!entity HomeTopic SYSTEM "./Home.sgm">
<!entity TOC SYSTEM "./TOC.sgm">
<!entity Messages SYSTEM "./Messages.sgm">
<!entity MetaInformation SYSTEM "./MetaInfo.sgm">
<!entity Reference SYSTEM "./Ref.sgm">
<!entity Tasks SYSTEM "./Tasks.sgm">
<!entity Glossary SYSTEM "../common/glossary.sgm">
]>
<!-- __________________________________________________________________ -->
<DocBook>
<Book>
<Part>
&MetaInformation;
&HomeTopic;
&TOC;
&Tasks;
&Concepts;
&Reference;
&Messages;
&Glossary;
</Part>
</Book>
</DocBook>

View File

@@ -0,0 +1,70 @@
<!-- $XConsortium: book.sgm /main/6 1996/06/19 16:13:50 drk $ -->
<!DOCTYPE Part PUBLIC "-//HaL and O'Reilly//DTD DocBook//EN" [
<!ENTITY % ISOpublishing PUBLIC "ISO 8879:1986//ENTITIES Publishing//EN">
%ISOpublishing;
<!ENTITY % ISOnumeric PUBLIC "ISO 8879:1986//ENTITIES Numeric and Special Graphic//EN">
%ISOnumeric;
<!ENTITY % ISOdiacritical PUBLIC "ISO 8879:1986//ENTITIES Diacritical Marks//EN">
%ISOdiacritical;
<!ENTITY % ISOgeneraltech PUBLIC "ISO 8879:1986//ENTITIES General Technical//EN">
%ISOgeneraltech;
<!ENTITY % ISOalatin1 PUBLIC "ISO 8879:1986//ENTITIES Added Latin 1//EN">
%ISOalatin1;
<!ENTITY % ISOalatin2 PUBLIC "ISO 8879:1986//ENTITIES Added Latin 2//EN">
%ISOalatin2;
<!ENTITY % ISOgreek PUBLIC "ISO 8879:1986//ENTITIES Greek Symbols//EN">
%ISOgreek;
<!ENTITY % ISOboxandline PUBLIC "ISO 8879:1986//ENTITIES Box and Line Drawing//EN">
%ISOboxandline;
<!ENTITY % HEntities SYSTEM "../../common/help/HELPEnt.sgm">
%HEntities;
<!ENTITY % PEntities SYSTEM "./common/ProdEnt.sgm">
%PEntities;
<!ENTITY % Graphics SYSTEM "./Filemgr/GEntity.sgm">
%Graphics;
<!ENTITY % local.notations "| XPM | XBM | XWD">
<!NOTATION XPM SYSTEM "XPM">
<!NOTATION XBM SYSTEM "XBM">
<!NOTATION XWD SYSTEM "XWD">
<!entity Concepts SYSTEM "./Filemgr/Concepts.sgm">
<!entity HomeTopic SYSTEM "./Filemgr/Home.sgm">
<!entity TOC SYSTEM "./Filemgr/TOC.sgm">
<!entity Messages SYSTEM "./Filemgr/Messages.sgm">
<!entity MetaInformation SYSTEM "./Filemgr/MetaInfo.sgm">
<!entity Reference SYSTEM "./Filemgr/Ref.sgm">
<!entity Tasks SYSTEM "./Filemgr/Tasks.sgm">
<!entity Glossary SYSTEM "./common/glossary.sgm">
]>
<!-- __________________________________________________________________ -->
<Part>
&MetaInformation;
&HomeTopic;
&TOC;
&Tasks;
&Concepts;
&Reference;
&Messages;
&Glossary;
</Part>

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@@ -0,0 +1,105 @@
/* XPM */
/* $XConsortium: FMdragOL.pm /main/3 1995/07/18 17:24:33 drk $ */
static char * FMdragOL2_pm[] = {
/* width height ncolors cpp [x_hot y_hot] */
"169 91 7 1 0 0",
/* colors */
" s iconColor3 m black c red",
". s background m black c #949494949494",
"X s iconGray7 m black c #424242424242",
"o s iconColor1 m black c black",
"O s iconGray3 m white c #adadadadadad",
"+ s iconGray2 m white c #bdbdbdbdbdbd",
"@ s iconGray1 m white c #dededededede",
/* pixels */
" ......................................................................................................................................................................",
" ......................................................................................................................................................................",
" ......................................................................................................................................................................",
" ......................................................................................................................................................................",
" ......................................................................................................................................................................",
" ......................................................................................................................................................................",
" ......................................................................................................................................................................",
" ......................................................................................................................................................................",
" ......................................................................................................................................................................",
".........................................................................................................................................................................",
" ......................................................................................................................................................................",
" ......................................................................................................................................................................",
" ......................................................................................................................................................................",
" ......................................................................................................................................................................",
" ......................................................................................................................................................................",
" ......................................................................................................................................................................",
" ......................................................................................................................................................................",
" ......................................................................................................................................................................",
" ......................................................................................................................................................................",
".........................................................................................................................................................................",
".........................................................................................................................................................................",
".. ................................................................................. ...................................................................................",
" .............................................................................. ...................................................................................",
"... .......................................................................... ..................................................................................",
"...... ...................................................................... ..................................................................................",
".......... ...................................................................... ..................................................................................",
"................................................................................... .................................................................................",
"................ .............................................................. .................................................................................",
"................ ............................................................ ................................................................................",
".................... ......................................................... ................................................................................",
"..................... ....................................................... ...............................................................................",
"....................... ...................................................... .. ...............................................................................",
"........................ .. ............................................... .. ..................................................................................",
".............................. ................................................. ..................................................................................",
"................................. ............................................... ..................................................................................",
".................................. ............................................. ..................................................................................",
"..................................... ..............................................................................................................................",
"...................................... ......................................... ..................................................................................",
"............................................. ................................... ..................................................................................",
"............................................. ................................ ..................................................................................",
"................................................ ............................. ..................................................................................",
"................................................... .......................... ..................................................................................",
"...................................................... .......................... ..................................................................................",
"............................................................ .................... ..................................................................................",
"............................................................ ................. ..................................................................................",
"............................................................... ............. ...................XXXXXXXXX......................................................",
"................................................................... ......................oooooo..XXOOOOOOOOOXXX...................................................",
"...................................................................... .......... ........oOOOOO.o.OOOOOOOOOOOOOOXXX................................................",
".................................................................................... OXXoooOOOOOOOOOO.XOOOOOOOOOOOOOOOOXXX.............................................",
".................................................................................... XXOOOOOOOOOOOOOOOOOXXOOOOOOOOOOOOXXX+XXX.........XXXXXXXXXX.......................",
"...........................................................................XXXooo O OOXXOOOOOOOOOOOOOOOOOOXXOOOOXXXX++++++++XXX.XXXXX++++++++++XXXXX..................",
"........................................................................XXXXOOOOO O OOOOOXXOOOOOOOOOOOOOOOOXXXX++++++++++++++XXX++++++++++++++++++++XXX...............",
".......................................................................XXXOOOOOOOOOOOOOOOOOOOOXXOOOOOOOOOOXXX+++++++++++++++++XX++++++++++++++++++++++++++XX.............",
".......................................................................XOOXXOOOOOOOOOOOOOOOOOOOOOXXOXXXX++++++++++++++++++++X++++++@++++++++++++++++++++++++XX...........",
".......................................................................XOOOOXXXOOOOOOOOOOOOOOOOOXXXX++++++++++++++++++++++X+++++++++++++++++++++++++++++++++++XX.........",
".......................................................................XOOOOOOOXXOOOOOOOOOOXXX++++++++++++++++++++++++++X+++++@+@+++++++++++++++++++++++++++++++X........",
"........................................................................XOOOOOOOOXXOOOOXXXX++++++++++++++++++++++++++++X+++++@+++++++++++++++++++++++++++++++++++X.......",
".......................................................................X++oOOOOOOOOXXX++++++++++++++++++++++++++++++++X++++@++++++++++++++++@+++++++++++++++++++++X......",
".......................................................................X+oo+oOOOOOOX+XX++++++++++++++++++++++++++++++X++++++@++++++++++@+++++++++++++++++++++++++++X.....",
".......................................................................X++++o+oOOOOX+++oo+++++++++++++++++++++++++++X++++@+@++++++++@+++@+@+++@+++++++++++++++++++++X....",
".......................................................................X++++++o+oOOX+++++ooo+++++++++++++++++++++++++++++@+@+++++++++@++++@@++++++++++++++++++++@++++X...",
".......................................................................X++++++++o+XX++++++++oo+++++++++++++++++++++X+++@@@+++++++++++@++@++++++@+++++++++++++++++@+++X...",
".......................................................................XX+++++++++X+oo++++++++ooo+++++++++++++++++X+++@+@+++++++++@@++++++++++++++++++++++++++++++@+++X..",
".........................................................................XX+++++++++o+oo+++++++++oo+++++++++++++++X+++@@+@++++++++++++++++++++++++++++++++++++++++@@++X..",
"...........................................................................XX+++++++++o+oo+++++++++oo+++++++++++++++++++@@+++++++++++++++++++++++++++++++++++++++++++++X.",
".............................................................................XX+++++++++o++o+++++++++oo++++++++++X++@+@+@++++++++++++++++++++++++++++++++++++++++++@@++X.",
"...............................................................................XX+++++++++o++o+++++++++ooo+++++++X++++@@@+++++++++++++++++++++++++++++++++++++++++@+@+++X",
".................................................................................XX+++++++++oo+o++++++++++oo+++++X++++@+@+@+++++++++++++++++++++++++++++++++++++++@@@@++X",
"...................................................................................XX+++++++++o++o++++++++++oo++++X+++@++++++++++++++++++++++++++++++++++++++++++@@++++XX",
".....................................................................................XX+++++++++o++o++++++++++oo++X++++++@+@++++++++++++++++++++++++++++++++++++@@@@+++XX",
".......................................................................................XX+++++++++oo+o++++++++++oo+X+++++++++@@+++++++++++++++++++++++++++++++@+@+++++o+X",
".........................................................................................XX++++++++++o+o++++++++++XXX+++++++++++++++++++++++++++++++++++++++@++++++++X++X",
"...........................................................................................XX++++++++++o+o+++++++++++XX++++++++++++++++++++++++++++++++++++++++++++XX+++X",
".............................................................................................XX++++++++++o+oo++++++++++XX++++++++++++++++++++++++++++++++++++++++XX+++++X",
"...............................................................................................XX++++++++++o+oo+++++++++++XX++++++++++++++++++++++++++++++++++XXX+++++++X",
".................................................................................................XX++++++++++o+oo++++++++++++XX+++++++++++++++++++++++++++XXXX+++++++++XX",
"...................................................................................................XX++++++++++o+oo+++++++++++++XXXXXX++++++++++++++XXXXX+++++++++++++X+X",
".....................................................................................................XX++++++++++o++o+++++++++++++++++++XXXXXXXXX++++++++++++++++++++X++X",
".......................................................................................................XX++++++++++o++o++++++++++++++++++++++++++++++++++++++++++++XXX++X",
".........................................................................................................XX++++++++++oo+o++++++++++++++++++++++++++++++++++++++++XXXX+++X",
"...........................................................................................................XX++++++++++o++o++++++++++++++++++++++++++++++++++++XX+X+++++X",
".............................................................................................................XX++++++++++oo+XXX+++++++++++++++++++++++++++++XX+XX+++++++X",
"...............................................................................................................XX+++++++++++XX++XXXX++++++++++++++++++XXXX++XX+++++++++o.",
".................................................................................................................XX+++++++++++++XXX+++++X+XX+XXX+XX+++XXXX++++++++++++o..",
"...................................................................................................................XX+++++++++++++++++++XXXXXXXXXXX++++++++++++++++++o...",
".....................................................................................................................XX++++++++++++++++++++++++++++++++++++++++++++oo....",
".......................................................................................................................XX+++++++++++++++++++++++++++++++++++++++ooX......",
".........................................................................................................................ooo+++++++++++++++++++++++++++++++++ooo.........",
"............................................................................................................................oooo+++++++++++++++++++++++++oooo............",
"................................................................................................................................oooooo+++++++++++++oooooo................",
"......................................................................................................................................ooooooooooooo......................"};

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.