~ubuntu-branches/ubuntu/precise/kde-l10n-engb/precise

« back to all changes in this revision

Viewing changes to docs/kdebase-runtime/faq/filemng.docbook

  • Committer: Bazaar Package Importer
  • Author(s): Jonathan Riddell
  • Date: 2010-11-04 13:16:43 UTC
  • mfrom: (1.9.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20101104131643-zq2effur30inw0r0
Tags: 4:4.5.3-0ubuntu1
New upstream release

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
<!-- <?xml version="1.0" ?>
2
 
<!DOCTYPE chapter PUBLIC "-//KDE//DTD DocBook XML V4.2-Based Variant V1.1//EN"
3
 
 "dtd/kdex.dtd"
4
 
> -->
5
 
        
6
 
<chapter id="filemanager">
7
 
<title
8
 
>The File Manager and Web Browser</title>
9
 
 
10
 
<para
11
 
>The file manager and web browser of &kde; is &konqueror;. The &konqueror; home page is located at <ulink url="http://www.konqueror.org"
12
 
>http://www.konqueror.org</ulink
13
 
> where a &konqueror; specific <acronym
14
 
>FAQ</acronym
15
 
> can be found.</para>
16
 
 
17
 
<qandaset>
18
 
<qandaentry>
19
 
<question>
20
 
<para
21
 
>How do I use &konqueror; as a web browser with a proxy?</para>
22
 
</question>
23
 
<answer>
24
 
<para
25
 
>&konqueror; can be used with &HTTP; and &FTP; proxies. To set up the proxy server in &konqueror;, just select <menuchoice
26
 
><guimenu
27
 
>Settings</guimenu
28
 
><guisubmenu
29
 
>Configure &konqueror;...</guisubmenu
30
 
></menuchoice
31
 
> from the &konqueror; menu and go to the <guilabel
32
 
>Proxy</guilabel
33
 
> tab.</para>
34
 
</answer>
35
 
</qandaentry>
36
 
 
37
 
<qandaentry>
38
 
<question>
39
 
<para
40
 
>How can I change the appearance of a folder in &konqueror;?</para>
41
 
</question>
42
 
<answer>
43
 
<para
44
 
>Right-click the folder, select <guimenuitem
45
 
>Properties</guimenuitem
46
 
>, click on the large icon in the dialogue which appears and choose another icon.</para>
47
 
<para
48
 
>To change the icon displayed for entries in the <guimenu
49
 
>K Menu</guimenu
50
 
>, use the <application
51
 
>Menu Editor</application
52
 
>, located at <menuchoice
53
 
><guisubmenu
54
 
>Settings</guisubmenu
55
 
><guimenuitem
56
 
>Menu Editor</guimenuitem
57
 
></menuchoice
58
 
>. </para>
59
 
</answer>
60
 
</qandaentry>
61
 
 
62
 
<qandaentry>
63
 
<question>
64
 
<para
65
 
>How can I do non-anonymous &FTP; transfers with &konqueror;?</para>
66
 
</question>
67
 
<answer>
68
 
<para
69
 
>Normally, if you enter a &URL; like <userinput
70
 
>ftp://<replaceable
71
 
>ftp.somehost.com</replaceable
72
 
></userinput
73
 
>, &konqueror; will attempt an anonymous login to the &FTP; server. If you want to login as a particular user, enter a &URL; like <userinput
74
 
>ftp://<replaceable
75
 
>username@ftp.somehost.com</replaceable
76
 
></userinput
77
 
> instead. &konqueror; will ask for your password and connect to the server.</para>
78
 
</answer>
79
 
</qandaentry>
80
 
 
81
 
<qandaentry
82
 
> <question
83
 
> <para
84
 
>What are <option
85
 
>%i</option
86
 
> and <option
87
 
>%m</option
88
 
> in the Execute line?</para
89
 
> </question
90
 
> <answer>
91
 
<para
92
 
>They are used by all &kde; applications (since they are implemented in <classname
93
 
>KApplication</classname
94
 
> and all good &kde; programs create a <classname
95
 
>KApplication</classname
96
 
> object before they even look at the command line arguments).</para
97
 
> <para
98
 
>A standard line for a &kde; application looks like this: <userinput
99
 
><command
100
 
>foo</command
101
 
> <option
102
 
>... %i %m -caption \"%c\"</option
103
 
></userinput
104
 
>. Pretty confusing, but it has been designed in that way so that it can integrate legacy, non-&kde; applications as smoothly as possible. &konqueror;, when executing the line above, will extend the command to <userinput
105
 
><command
106
 
><replaceable
107
 
>foo</replaceable
108
 
></command
109
 
> <option
110
 
>-icon something.png -miniicon something_mini.png -caption \"The Foo\"</option
111
 
></userinput
112
 
>. Both the icon and the mini-icon as well as "The Foo" are properties defined in the <filename
113
 
>.desktop</filename
114
 
> file. If the icons are not defined, they simply default to the executable name <replaceable
115
 
>foo</replaceable
116
 
>.</para>
117
 
 
118
 
<para
119
 
>This way a user can change these things in &kmenuedit; for his or her applications. The <option
120
 
>-caption</option
121
 
> option is important, because no user will accept that the menu item <guimenuitem
122
 
>Editor</guimenuitem
123
 
> starts something called <guilabel
124
 
>kedit-0.9pl4-build47</guilabel
125
 
>. Instead, he expects a window called <guilabel
126
 
>Editor</guilabel
127
 
>. Furthermore these names are localised, <abbrev
128
 
>i.e.</abbrev
129
 
> an American user launches <guimenuitem
130
 
>CD-Player</guimenuitem
131
 
> and gets a window called <guilabel
132
 
>CD-Player</guilabel
133
 
> while a German user launches <guimenuitem
134
 
>CD-Spieler</guimenuitem
135
 
> and gets a window called <guilabel
136
 
>CD-Spieler</guilabel
137
 
>.</para>
138
 
 
139
 
</answer>
140
 
</qandaentry>
141
 
 
142
 
<qandaentry>
143
 
<question>
144
 
<para
145
 
>How do I specify the startup folder for &konqueror;?</para>
146
 
</question>
147
 
<answer>
148
 
 
149
 
<para
150
 
>Using the &RMB;, click on the Home icon and choose <guimenuitem
151
 
>Properties</guimenuitem
152
 
>. Under the <guilabel
153
 
>Application</guilabel
154
 
> tab you will probably find something like <command
155
 
>kfmclient openProfile filemanagement</command
156
 
>; just append <filename class="directory"
157
 
>file:/whereever/you/want</filename
158
 
> with the folder you would like &konqueror; to start in.</para>
159
 
 
160
 
</answer>
161
 
</qandaentry>
162
 
 
163
 
<qandaentry>
164
 
<question id="nsbookmark">
165
 
<para
166
 
>How do I import &Netscape; bookmarks?</para>
167
 
</question>
168
 
<answer>
169
 
<para
170
 
>There is no need to import anything at all. &Netscape; bookmarks are automatically available under the <guimenu
171
 
>Bookmarks</guimenu
172
 
> menu in &konqueror; with no configuration on your part necessary. The <application
173
 
>Bookmark Editor</application
174
 
> is able to convert &Netscape; bookmarks to the format used by &konqueror;, if you want this.</para>
175
 
</answer>
176
 
</qandaentry>
177
 
 
178
 
<qandaentry>
179
 
<question>
180
 
<para
181
 
>How do I fool a site into believing &konqueror; is &Netscape; or some other browser?</para>
182
 
</question>
183
 
<answer>
184
 
<para
185
 
>In &konqueror;, select <menuchoice
186
 
><guimenu
187
 
>Settings</guimenu
188
 
><guimenuitem
189
 
>Configure Konqueror...</guimenuitem
190
 
></menuchoice
191
 
> and in the configuration dialogue, select <guilabel
192
 
>Browser Identification</guilabel
193
 
>. Default and site-specific browser identifications can be set from here.</para>
194
 
</answer>
195
 
</qandaentry>
196
 
 
197
 
<qandaentry>
198
 
<question>
199
 
<para
200
 
>How do I configure &konqueror; to run &Java; applets?</para>
201
 
</question>
202
 
<answer>
203
 
<para
204
 
>Choose <menuchoice
205
 
><guimenu
206
 
>Settings</guimenu
207
 
><guimenuitem
208
 
>Configure &konqueror;...</guimenuitem
209
 
></menuchoice
210
 
> from &konqueror;'s menubar and then select <guilabel
211
 
>Java &amp; Javascript</guilabel
212
 
>. Set the <guilabel
213
 
>Path to Java executable</guilabel
214
 
> correctly. If it doesn't work, please check the <ulink url="http://www.konqueror.org/javahowto/"
215
 
>Konqueror + Java HOWTO</ulink
216
 
>.</para>
217
 
</answer>
218
 
</qandaentry>
219
 
 
220
 
<qandaentry>
221
 
<question>
222
 
<para
223
 
>What is this new <guilabel
224
 
>Smart</guilabel
225
 
> policy for JavaScript web popups?</para>
226
 
</question>
227
 
<answer>
228
 
<para
229
 
>This new policy attempts to block intrusive JavaScript popup windows. If the user does not click on a button or submit a form to trigger the popup, then the popup is not permitted. Some sites will open a second new window from within the first and in that case, the second window will not show. </para>
230
 
</answer>
231
 
</qandaentry>
232
 
 
233
 
<qandaentry>
234
 
<question>
235
 
<para
236
 
>Why doesn't my banking site work with &konqueror;? It pops up a new window with the login screen in other browsers, but not in &konqueror;.</para>
237
 
</question>
238
 
<answer>
239
 
<para
240
 
>Make sure you have Javascript enabled, and the default JavaScript web popups policy set to <guilabel
241
 
>Ask</guilabel
242
 
> or <guilabel
243
 
>Allow</guilabel
244
 
>. The <guilabel
245
 
>Smart</guilabel
246
 
> policy is not always sufficient for some banks. Many banks also require &Java; support. You can find more help on enabling this at <ulink url="http://www.konqueror.org/"
247
 
>http://www.konqueror.org/</ulink
248
 
>. </para>
249
 
</answer>
250
 
</qandaentry>
251
 
 
252
 
<qandaentry>
253
 
<question>
254
 
<para
255
 
>Why can't &konqueror; render &GIF; images?</para>
256
 
</question>
257
 
<answer>
258
 
<para
259
 
>It is because you did not enable &GIF; support in &Qt;. Please see <xref linkend="gif"/> for more details.</para>
260
 
</answer>
261
 
</qandaentry>
262
 
 
263
 
<qandaentry>
264
 
<question>
265
 
<para
266
 
>How do I rename files?</para>
267
 
</question>
268
 
<answer>
269
 
<para
270
 
>Simply <mousebutton
271
 
>right</mousebutton
272
 
> click on the file and select <guimenuitem
273
 
>Rename</guimenuitem
274
 
> or click once on an already selected file. The default keyboard shortcut to rename a file is <keycap
275
 
>F2</keycap
276
 
>.</para>
277
 
</answer>
278
 
</qandaentry>
279
 
 
280
 
<qandaentry>
281
 
<question
282
 
><para
283
 
>When I try to open a web page with &konqueror;, I get the message: <quote
284
 
>There appears to be a configuration error. You have associated Konqueror with text/html, but it cannot handle this file type.</quote
285
 
></para>
286
 
</question>
287
 
<answer>
288
 
<para
289
 
>You need to make sure that the embedding settings for the text/html <acronym
290
 
>MIME</acronym
291
 
> type are correct: <orderedlist>
292
 
<listitem
293
 
><para
294
 
>In &konqueror;, go to <menuchoice
295
 
><guimenu
296
 
>Settings</guimenu
297
 
><guimenuitem
298
 
>Configure Konqueror</guimenuitem
299
 
></menuchoice
300
 
> and then to the <guilabel
301
 
>File Associations</guilabel
302
 
> page.</para
303
 
></listitem>
304
 
<listitem
305
 
><para
306
 
>Open text->html in the tree view.</para
307
 
></listitem>
308
 
<listitem
309
 
><para
310
 
>Click on the <guilabel
311
 
>Embedding</guilabel
312
 
> tab. Make sure that <guilabel
313
 
>Left Click Action</guilabel
314
 
> is set to <guilabel
315
 
>Show file in embedded viewer</guilabel
316
 
>, and that <guilabel
317
 
>KHTML (khtml)</guilabel
318
 
> is at the top of <guilabel
319
 
>Services Preference Order.</guilabel
320
 
></para
321
 
></listitem>
322
 
</orderedlist>
323
 
</para>
324
 
<para
325
 
>Try opening a website in Konqueror. It should now work.</para>
326
 
</answer>
327
 
</qandaentry>
328
 
 
329
 
<qandaentry>
330
 
<question
331
 
><para
332
 
>How do I configure the programs that &konqueror; uses to open different types of files?</para
333
 
></question>
334
 
<answer>
335
 
<para
336
 
>In order to configure file associations, you should go to the &kcontrolcenter; and choose the item <guimenuitem
337
 
>File Associations</guimenuitem
338
 
> under the category <guimenu
339
 
>KDE Components</guimenu
340
 
>.</para>
341
 
<para
342
 
>Suppose the default <acronym
343
 
>PDF</acronym
344
 
> viewer is now &kghostview; and you would prefer to use <application
345
 
>KPDF</application
346
 
> as a viewer. You would simply type <userinput
347
 
>pdf</userinput
348
 
> in the search box at the top of the dialogue, choose <guimenuitem
349
 
>pdf</guimenuitem
350
 
> in the <guimenu
351
 
>application</guimenu
352
 
> group and move <application
353
 
>KPDF</application
354
 
> up. In the <guilabel
355
 
>Embedding</guilabel
356
 
> tab you can also choose which component other applications will use to display files (for example, when viewing files in &konqueror; or using &ark;'s embedded viewer). </para>
357
 
</answer>
358
 
</qandaentry>
359
 
 
360
 
 
361
 
</qandaset>
362
 
</chapter>
363
 
 
364
 
<!-- Keep this comment at the end of the file
365
 
Local variables:
366
 
mode: xml
367
 
sgml-omittag:nil
368
 
sgml-shorttag:nil
369
 
sgml-namecase-general:nil
370
 
sgml-general-insert-case:lower
371
 
sgml-minimize-attributes:nil
372
 
sgml-always-quote-attributes:t
373
 
sgml-indent-step:0
374
 
sgml-indent-data:true
375
 
sgml-parent-document:("index.docbook" "book" "chapter")
376
 
sgml-exposed-tags:nil
377
 
sgml-local-catalogs:nil
378
 
sgml-local-ecat-files:nil
379
 
End:
380
 
-->