From 84adefa331c4159d432d22840663c38f155cd4c1 Mon Sep 17 00:00:00 2001 From: Erlang/OTP Date: Fri, 20 Nov 2009 14:54:40 +0000 Subject: The R13B03 release. --- lib/orber/priv/Makefile | 66 +++++++++++++++++++++++++++++++++++++++++ lib/orber/priv/Orber/.gitignore | 0 lib/orber/priv/bin/.gitignore | 0 lib/orber/priv/blank.html | 6 ++++ lib/orber/priv/info_frames.html | 9 ++++++ lib/orber/priv/main_frame.html | 9 ++++++ lib/orber/priv/obj/.gitignore | 0 lib/orber/priv/orber.tool | 2 ++ lib/orber/priv/orber_help.txt | 42 ++++++++++++++++++++++++++ lib/orber/priv/start_info.html | 31 +++++++++++++++++++ 10 files changed, 165 insertions(+) create mode 100755 lib/orber/priv/Makefile create mode 100644 lib/orber/priv/Orber/.gitignore create mode 100644 lib/orber/priv/bin/.gitignore create mode 100755 lib/orber/priv/blank.html create mode 100755 lib/orber/priv/info_frames.html create mode 100755 lib/orber/priv/main_frame.html create mode 100644 lib/orber/priv/obj/.gitignore create mode 100755 lib/orber/priv/orber.tool create mode 100755 lib/orber/priv/orber_help.txt create mode 100755 lib/orber/priv/start_info.html (limited to 'lib/orber/priv') 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 diff --git a/lib/orber/priv/bin/.gitignore b/lib/orber/priv/bin/.gitignore new file mode 100644 index 0000000000..e69de29bb2 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 @@ + + + +  + + \ 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 @@ + + +OrberWeb + + + + + + \ 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 @@ + + +OrberWeb + + + + + + \ 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 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 @@ + + + + + + + + +
+ + + + + + + + + + + + + +
+Welcome to the Web based Orber Admin Tool +




+
  +
+ +
+ + \ No newline at end of file -- cgit v1.2.3