diff options
author | Erlang/OTP <[email protected]> | 2009-11-20 14:54:40 +0000 |
---|---|---|
committer | Erlang/OTP <[email protected]> | 2009-11-20 14:54:40 +0000 |
commit | 84adefa331c4159d432d22840663c38f155cd4c1 (patch) | |
tree | bff9a9c66adda4df2106dfd0e5c053ab182a12bd /lib/orber/priv | |
download | otp-84adefa331c4159d432d22840663c38f155cd4c1.tar.gz otp-84adefa331c4159d432d22840663c38f155cd4c1.tar.bz2 otp-84adefa331c4159d432d22840663c38f155cd4c1.zip |
The R13B03 release.OTP_R13B03
Diffstat (limited to 'lib/orber/priv')
-rwxr-xr-x | lib/orber/priv/Makefile | 66 | ||||
-rw-r--r-- | lib/orber/priv/Orber/.gitignore | 0 | ||||
-rw-r--r-- | lib/orber/priv/bin/.gitignore | 0 | ||||
-rwxr-xr-x | lib/orber/priv/blank.html | 6 | ||||
-rwxr-xr-x | lib/orber/priv/info_frames.html | 9 | ||||
-rwxr-xr-x | lib/orber/priv/main_frame.html | 9 | ||||
-rw-r--r-- | lib/orber/priv/obj/.gitignore | 0 | ||||
-rwxr-xr-x | lib/orber/priv/orber.tool | 2 | ||||
-rwxr-xr-x | lib/orber/priv/orber_help.txt | 42 | ||||
-rwxr-xr-x | lib/orber/priv/start_info.html | 31 |
10 files changed, 165 insertions, 0 deletions
diff --git a/lib/orber/priv/Makefile b/lib/orber/priv/Makefile new file mode 100755 index 0000000000..2847727035 --- /dev/null +++ b/lib/orber/priv/Makefile @@ -0,0 +1,66 @@ +# +# %CopyrightBegin% +# +# Copyright Ericsson AB 2001-2009. All Rights Reserved. +# +# The contents of this file are subject to the Erlang Public License, +# Version 1.1, (the "License"); you may not use this file except in +# compliance with the License. You should have received a copy of the +# Erlang Public License along with this software. If not, it can be +# retrieved online at http://www.erlang.org/. +# +# Software distributed under the License is distributed on an "AS IS" +# basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See +# the License for the specific language governing rights and limitations +# under the License. +# +# %CopyrightEnd% +# +# +include $(ERL_TOP)/make/target.mk +include $(ERL_TOP)/make/$(TARGET)/otp.mk + +include ../vsn.mk +VSN = $(ORBER_VSN) + +# ---------------------------------------------------- +# Release directory specification +# ---------------------------------------------------- +RELSYSDIR = $(RELEASE_PATH)/lib/orber-$(VSN) + +# +# Macros +# +HELP_FILES = \ + orber_help.txt + +HTML_FILES = \ + orber.tool \ + blank.html \ + info_frames.html \ + main_frame.html \ + start_info.html + +# +# Rules +# + +debug opt: + +docs: + +clean: + + +# ---------------------------------------------------- +# Release Target +# ---------------------------------------------------- +include $(ERL_TOP)/make/otp_release_targets.mk + +release_spec: opt + $(INSTALL_DIR) $(RELSYSDIR)/priv + $(INSTALL_DATA) $(HELP_FILES) $(HTML_FILES) $(RELSYSDIR)/priv + +release_docs_spec: + + diff --git a/lib/orber/priv/Orber/.gitignore b/lib/orber/priv/Orber/.gitignore new file mode 100644 index 0000000000..e69de29bb2 --- /dev/null +++ b/lib/orber/priv/Orber/.gitignore diff --git a/lib/orber/priv/bin/.gitignore b/lib/orber/priv/bin/.gitignore new file mode 100644 index 0000000000..e69de29bb2 --- /dev/null +++ b/lib/orber/priv/bin/.gitignore diff --git a/lib/orber/priv/blank.html b/lib/orber/priv/blank.html new file mode 100755 index 0000000000..44e86908a0 --- /dev/null +++ b/lib/orber/priv/blank.html @@ -0,0 +1,6 @@ +<HTML> +<HEAD></HEAD> +<BODY BGCOLOR="#FFFFFF"> + +</BODY> +</HTML>
\ No newline at end of file diff --git a/lib/orber/priv/info_frames.html b/lib/orber/priv/info_frames.html new file mode 100755 index 0000000000..75456a67a4 --- /dev/null +++ b/lib/orber/priv/info_frames.html @@ -0,0 +1,9 @@ +<HTML> +<HEAD> +<TITLE>OrberWeb</TITLE> +</HEAD> +<FRAMESET ROWS="85%,15%" BORDER="0"> +<FRAME NAME="main" SRC="./start_info.html"> +<FRAME NAME="proc_data" SRC="./blank.html"> +</FRAMESET> +</HTML>
\ No newline at end of file diff --git a/lib/orber/priv/main_frame.html b/lib/orber/priv/main_frame.html new file mode 100755 index 0000000000..056a92812e --- /dev/null +++ b/lib/orber/priv/main_frame.html @@ -0,0 +1,9 @@ +<HTML> +<HEAD> +<TITLE>OrberWeb</TITLE> +</HEAD> +<FRAMESET COLS="15%,85%" > + <FRAME NAME="left" SRC="/orber_erl/orber_web_server/menu"> + <FRAME NAME="main" SRC="./info_frames.html"> +</FRAMESET> +</HTML>
\ No newline at end of file diff --git a/lib/orber/priv/obj/.gitignore b/lib/orber/priv/obj/.gitignore new file mode 100644 index 0000000000..e69de29bb2 --- /dev/null +++ b/lib/orber/priv/obj/.gitignore diff --git a/lib/orber/priv/orber.tool b/lib/orber/priv/orber.tool new file mode 100755 index 0000000000..910a7d7e45 --- /dev/null +++ b/lib/orber/priv/orber.tool @@ -0,0 +1,2 @@ +{version,"1.2"}. +[{config_func,{orber_web_server,config_data,[]}}]. diff --git a/lib/orber/priv/orber_help.txt b/lib/orber/priv/orber_help.txt new file mode 100755 index 0000000000..a6580dc30a --- /dev/null +++ b/lib/orber/priv/orber_help.txt @@ -0,0 +1,42 @@ + + + + Help for the Orber administration tool + -------------------------------------- + + + + + + The purpose of this tool is to supply an easy way to + access Orber nodes and via a GUI explore: + - NameService + - Configuration settings + - Interface Repository + + All nodes that are known to this tool is shown in the node + window, normally this is all Erlang nodes visible with the + [node()|nodes()] commands. + + +The Node window +--------------- + + The node window monitor nodes. + + +Technical Detail +---------------- + + Trouble shooting + ---------------- + + Q. Why doesn't all my nodes show up in the node window? + + A. Are the nodes visible with the [node()|nodes()] commands + in the shell? If not you must do net:ping(NodeName) to add + nodes to the Erlang distribution. + + Q. When trying to access a node I get no valid response? + + A. Make sure that Orber is running on the node. diff --git a/lib/orber/priv/start_info.html b/lib/orber/priv/start_info.html new file mode 100755 index 0000000000..0ad521c90a --- /dev/null +++ b/lib/orber/priv/start_info.html @@ -0,0 +1,31 @@ +<HTML> +<HEAD> +</HEAD> +<BODY BGCOLOR="#FFFFFF"> +<TABLE WIDTH=100% HEIGHT=100%> +<TR VALIGN="middle"> +<TD ALIGN="center"> + +<TABLE WIDTH="60%"> +<TR> +<TD ALIGN="center"> +<FONT SIZE=6>Welcome to the Web based Orber Admin Tool +</FONT></TD> +</TR> + +<TR> +<TD><BR><BR><BR><BR> +</TD> +</TR> + +<TR> +<TD ALIGN="center"> +</TD> +</TR> +</TABLE> + +</TD> +</TR> +</TABLE> +</BODY> +</HTML>
\ No newline at end of file |