~rdoering/ubuntu/karmic/erlang/fix-535090

« back to all changes in this revision

Viewing changes to lib/webtool/doc/src/start_webtool.xml

  • Committer: Bazaar Package Importer
  • Author(s): Sergei Golovan
  • Date: 2009-02-15 16:42:52 UTC
  • mfrom: (3.1.2 squeeze)
  • Revision ID: james.westby@ubuntu.com-20090215164252-q5x4rcf8a5pbesb1
Tags: 1:12.b.5-dfsg-2
Upload to unstable after lenny is released.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<?xml version="1.0" encoding="latin1" ?>
 
2
<!DOCTYPE comref SYSTEM "comref.dtd">
 
3
 
 
4
<comref>
 
5
  <header>
 
6
    <copyright>
 
7
      <year>2003</year>
 
8
      <year>2007</year>
 
9
      <holder>Ericsson AB, All Rights Reserved</holder>
 
10
    </copyright>
 
11
    <legalnotice>
 
12
  The contents of this file are subject to the Erlang Public License,
 
13
  Version 1.1, (the "License"); you may not use this file except in
 
14
  compliance with the License. You should have received a copy of the
 
15
  Erlang Public License along with this software. If not, it can be
 
16
  retrieved online at http://www.erlang.org/.
 
17
 
 
18
  Software distributed under the License is distributed on an "AS IS"
 
19
  basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See
 
20
  the License for the specific language governing rights and limitations
 
21
  under the License.
 
22
 
 
23
  The Initial Developer of the Original Code is Ericsson AB.
 
24
    </legalnotice>
 
25
 
 
26
    <title>start_webtool</title>
 
27
    <prepared></prepared>
 
28
    <responsible></responsible>
 
29
    <docno>1</docno>
 
30
    <approved></approved>
 
31
    <checked></checked>
 
32
    <date>2003-06-18</date>
 
33
    <rev></rev>
 
34
    <file>start_webtool.sgml</file>
 
35
  </header>
 
36
  <com>start_webtool</com>
 
37
  <comsummary>WebTool Start Script</comsummary>
 
38
  <description>
 
39
    <p>The <c>start_webtool</c> script starts WebTool, a WebTool
 
40
      application and a web browser pointing to this application.</p>
 
41
  </description>
 
42
  <funcs>
 
43
    <func>
 
44
      <name>start_webtool application [ browser ]</name>
 
45
      <fsummary>Start a WebTool Application</fsummary>
 
46
      <desc>
 
47
        <p>Starts WebTool, the given WebTool Application and a web
 
48
          browser pointing to this application.
 
49
          </p>
 
50
        <p>If no argument is given, a list of available applications
 
51
          is displayed, e.g.</p>
 
52
        <pre>
 
53
>start_webtool
 
54
Starting webtool...
 
55
WebTool is available at http://localhost:8888/
 
56
Or  http://127.0.0.1:8888/
 
57
 
 
58
Usage: start_webtool application [ browser ]
 
59
 
 
60
Available applications are: [orber,appmon,crashdump_viewer,webcover]
 
61
Default browser is 'iexplore' (Internet Explorer) on Windows or else 'netscape'        </pre>
 
62
        <p>To start any of the listed applications, give the
 
63
          application name as the first argument, e.g.</p>
 
64
        <pre>
 
65
>start_webtool webcover
 
66
Starting webtool...
 
67
WebTool is available at http://localhost:8888/
 
68
Or  http://127.0.0.1:8888/
 
69
Starting webcover...
 
70
Sending URL to netscape...done        </pre>
 
71
        <p>The WebTool application WebCover is then started and the
 
72
          default browser is used. The default broser is Internet
 
73
          Explorer on Windows or else Netscape.
 
74
          </p>
 
75
        <p>To use another browser, give the browser's start command
 
76
          as the second argument, e.g.</p>
 
77
        <pre>
 
78
>start_webtool webcover mozilla
 
79
Starting webtool...
 
80
WebTool is available at http://localhost:8888/
 
81
Or  http://127.0.0.1:8888/
 
82
Starting webcover...
 
83
Sending URL to mozilla...done        </pre>
 
84
        <p>If the given browser name is not known to WebTool, WebTool
 
85
          will run it as a command with the start URL as the only
 
86
          argument, e.g.</p>
 
87
        <pre>
 
88
>start_webtool webcover mybrowser
 
89
Starting webtool...
 
90
WebTool is available at http://localhost:8888/
 
91
Or  http://127.0.0.1:8888/
 
92
Starting webcover...
 
93
Starting mybrowser...        </pre>
 
94
        <p>Here the command <c>"mybrowser http://localhost:8888/webcover"</c> is executed.
 
95
          </p>
 
96
      </desc>
 
97
    </func>
 
98
  </funcs>
 
99
 
 
100
  <section>
 
101
    <title>See Also</title>
 
102
    <p><seealso marker="webtool">webtool(3)</seealso></p>
 
103
  </section>
 
104
</comref>
 
105