Difference between revisions of "EN/documentation/administration guide/adding autotext files"
From Wiki
Jump to navigationJump to searchm (1 revision) |
|||
Line 1: | Line 1: | ||
+ | <section begin=title /><noinclude>{{DISPLAYTITLE:</noinclude>Adding AutoText Files to an {{OOo}} Network Installation<noinclude>}}</noinclude><section end=title /> | ||
+ | |||
{{Documentation/AdminGuideTOC/v2 | {{Documentation/AdminGuideTOC/v2 | ||
|ShowPrevNext=block | |ShowPrevNext=block | ||
|ShowPrevPage=block | |ShowPrevPage=block | ||
|ShowNextPage=block | |ShowNextPage=block | ||
− | |PrevPage= | + | |PrevPage=EN/documentation/administration_guide/adding_template_files |
− | |NextPage= | + | |NextPage=EN/documentation/administration_guide/deactivating_registration_wizard |
}} | }} | ||
− | |||
{{OOo}} saves AutoText entries to categories in files with a <tt>*.bau</tt> extension. You can make custom AutoText files available to all users or to individual users of a network installation of {{OOo}}. | {{OOo}} saves AutoText entries to categories in files with a <tt>*.bau</tt> extension. You can make custom AutoText files available to all users or to individual users of a network installation of {{OOo}}. | ||
− | {{ | + | {{Note|For information on how to create AutoText entries, search for the keyword "AutoText" in the online help for {{OOo}} Writer}} |
===To Add AutoText Files For All Users of an {{OOo}} Network Installation=== | ===To Add AutoText Files For All Users of an {{OOo}} Network Installation=== |
Revision as of 14:47, 30 March 2012
- Custom OpenOffice.org Basic Macros and Libraries
- OpenOffice.org Extension Manager
- Adding Template Files to an OpenOffice.org Installation
- Adding AutoText Files to an OpenOffice.org Network Installation
- Deactivating the OpenOffice.org Registration Wizard
- Accessing Email Clients
- Customizing the User Interface
- Restricting Functionality in OpenOffice.org
- Accessing OpenOffice.org User Profiles on an LDAP Server
OpenOffice.org saves AutoText entries to categories in files with a *.bau extension. You can make custom AutoText files available to all users or to individual users of a network installation of OpenOffice.org.
For information on how to create AutoText entries, search for the keyword "AutoText" in the online help for OpenOffice.org Writer |
To Add AutoText Files For All Users of an OpenOffice.org Network Installation
- Become root.
- Copy the AutoText *.bau files to the network-install-dir/share/autotext/ directory.
To Add AutoText Files to a Workstation Installation of OpenOffice.org
- Become root.
- Copy the AutoText *.bau files to the install-dir/user/autotext/ directory on the workstation.
To Add an AutoText Directory to an OpenOffice.org Installation
- In any OpenOffice.org program, choose Tools → Options → OpenOffice.org → Paths.
- In the list of default paths, select AutoText, and then click Edit.
- In the Edit Paths dialog box, click Add.
- Locate the directory that contains the AutoText *.bau files that you want to add and click the Select button.
- In the Edit Paths dialog box, click OK.
- In the Options - OpenOffice.org - Paths dialog box, click OK.
- Exit OpenOffice.org.
OpenOffice.org saves the AutoText path to the ooo-user-dir/user/registry/data/org/openoffice/Office/Common.xcu configuration file. - Copy the code below into the appropriate Common.xcu file.
- To make the AutoText directory available to all users of the OpenOffice.org network installation, copy the code into the install-dir/basis<version>/share/registry/data/org/openoffice/Office/Common.xcu file.
- To make the AutoText directory available to a single user of an OpenOffice.org network installation, copy the code into the ooo-user-dir/user/registry/data/org/openoffice/Office/Common.xcu file.
<node oor:name="Path"> <node oor:name="Current"> <prop oor:name="AutoText" oor:type="oor:string-list"> <value>$(inst)/share/autotext/$(vlang) $(user)/autotext new_autotext_directory </value> </prop> </node> </node>
Content on this page is licensed under the Public Documentation License (PDL). |