You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@edgent.apache.org by dj...@apache.org on 2016/07/25 21:51:22 UTC

[5/7] incubator-quarks git commit: Rename scripts for iotp

Rename scripts for iotp


Project: http://git-wip-us.apache.org/repos/asf/incubator-quarks/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-quarks/commit/8395d162
Tree: http://git-wip-us.apache.org/repos/asf/incubator-quarks/tree/8395d162
Diff: http://git-wip-us.apache.org/repos/asf/incubator-quarks/diff/8395d162

Branch: refs/heads/master
Commit: 8395d162564270b92d8ec2e8f006b74686e578ec
Parents: 6a4dd98
Author: Daniel J. Debrunner <de...@us.ibm.com>
Authored: Fri Jul 22 17:30:48 2016 -0700
Committer: Daniel J. Debrunner <de...@us.ibm.com>
Committed: Fri Jul 22 17:30:48 2016 -0700

----------------------------------------------------------------------
 scripts/connectors/iotf/device.cfg           |  7 -----
 scripts/connectors/iotf/runiotfquickstart.sh | 34 ----------------------
 scripts/connectors/iotf/runiotfsensors.sh    | 35 -----------------------
 scripts/connectors/iotp/device.cfg           |  7 +++++
 scripts/connectors/iotp/runiotpquickstart.sh | 34 ++++++++++++++++++++++
 scripts/connectors/iotp/runiotpsensors.sh    | 35 +++++++++++++++++++++++
 6 files changed, 76 insertions(+), 76 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-quarks/blob/8395d162/scripts/connectors/iotf/device.cfg
----------------------------------------------------------------------
diff --git a/scripts/connectors/iotf/device.cfg b/scripts/connectors/iotf/device.cfg
deleted file mode 100644
index 9c67292..0000000
--- a/scripts/connectors/iotf/device.cfg
+++ /dev/null
@@ -1,7 +0,0 @@
-[device]
-org =
-type = 
-id = 
-auth-method = token
-auth-token = 
-

http://git-wip-us.apache.org/repos/asf/incubator-quarks/blob/8395d162/scripts/connectors/iotf/runiotfquickstart.sh
----------------------------------------------------------------------
diff --git a/scripts/connectors/iotf/runiotfquickstart.sh b/scripts/connectors/iotf/runiotfquickstart.sh
deleted file mode 100755
index a83f276..0000000
--- a/scripts/connectors/iotf/runiotfquickstart.sh
+++ /dev/null
@@ -1,34 +0,0 @@
-#!/bin/bash
-#
-# Licensed to the Apache Software Foundation (ASF) under one or more
-# contributor license agreements.  See the NOTICE file distributed with
-# this work for additional information regarding copyright ownership.
-# The ASF licenses this file to You under the Apache License, Version 2.0
-# (the "License"); you may not use this file except in compliance with
-# the License.  You may obtain a copy of the License at
-#
-#    http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing, software
-# distributed under the License is distributed on an "AS IS" BASIS,
-# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-# See the License for the specific language governing permissions and
-# limitations under the License.
-#
-
-edgent=../../..
-
-# Runs IBM Watson IoT Plaform Quickstart sample.
-#
-# runiotfqucikstart.sh
-#
-# This connectors to the Qucikstart IBM Watson IoT Platform service
-# which requires no registration at all.
-#
-# The application prints out a URL which allows a browser
-# to see the data being sent from this sample to
-# IBM Watson IoT Plaform Quickstart sample.
-
-export CLASSPATH=${edgent}/samples/lib/edgent.samples.connectors.jar
-
-java org.apache.edgent.samples.connectors.iotf.IotfQuickstart

http://git-wip-us.apache.org/repos/asf/incubator-quarks/blob/8395d162/scripts/connectors/iotf/runiotfsensors.sh
----------------------------------------------------------------------
diff --git a/scripts/connectors/iotf/runiotfsensors.sh b/scripts/connectors/iotf/runiotfsensors.sh
deleted file mode 100755
index 366bd3a..0000000
--- a/scripts/connectors/iotf/runiotfsensors.sh
+++ /dev/null
@@ -1,35 +0,0 @@
-#!/bin/bash
-#
-# Licensed to the Apache Software Foundation (ASF) under one or more
-# contributor license agreements.  See the NOTICE file distributed with
-# this work for additional information regarding copyright ownership.
-# The ASF licenses this file to You under the Apache License, Version 2.0
-# (the "License"); you may not use this file except in compliance with
-# the License.  You may obtain a copy of the License at
-#
-#    http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing, software
-# distributed under the License is distributed on an "AS IS" BASIS,
-# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-# See the License for the specific language governing permissions and
-# limitations under the License.
-#
-
-edgent=../../..
-
-# Runs IBM Watson IoT Plaform sample.
-#
-# runiotfsensors.sh path/device.cfg
-#
-# e.g. runiotfsensors.sh $HOME/device.cfg
-#
-# This connectors to your IBM Watson IoT Platform service
-# as the device defined in the device.cfg.
-# The format of device.cfg is the standard one for
-# IBM Watson IoT Platform and a sample is in this directory
-# (omitting values for the authorization tokens).
-
-export CLASSPATH=${edgent}/samples/lib/edgent.samples.connectors.jar
-
-java org.apache.edgent.samples.connectors.iotf.IotfSensors $1

http://git-wip-us.apache.org/repos/asf/incubator-quarks/blob/8395d162/scripts/connectors/iotp/device.cfg
----------------------------------------------------------------------
diff --git a/scripts/connectors/iotp/device.cfg b/scripts/connectors/iotp/device.cfg
new file mode 100644
index 0000000..9c67292
--- /dev/null
+++ b/scripts/connectors/iotp/device.cfg
@@ -0,0 +1,7 @@
+[device]
+org =
+type = 
+id = 
+auth-method = token
+auth-token = 
+

http://git-wip-us.apache.org/repos/asf/incubator-quarks/blob/8395d162/scripts/connectors/iotp/runiotpquickstart.sh
----------------------------------------------------------------------
diff --git a/scripts/connectors/iotp/runiotpquickstart.sh b/scripts/connectors/iotp/runiotpquickstart.sh
new file mode 100755
index 0000000..94bcffa
--- /dev/null
+++ b/scripts/connectors/iotp/runiotpquickstart.sh
@@ -0,0 +1,34 @@
+#!/bin/bash
+#
+# Licensed to the Apache Software Foundation (ASF) under one or more
+# contributor license agreements.  See the NOTICE file distributed with
+# this work for additional information regarding copyright ownership.
+# The ASF licenses this file to You under the Apache License, Version 2.0
+# (the "License"); you may not use this file except in compliance with
+# the License.  You may obtain a copy of the License at
+#
+#    http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+#
+
+edgent=../../..
+
+# Runs IBM Watson IoT Plaform Quickstart sample.
+#
+# runiotpquickstart.sh
+#
+# This connectors to the Qucikstart IBM Watson IoT Platform service
+# which requires no registration at all.
+#
+# The application prints out a URL which allows a browser
+# to see the data being sent from this sample to
+# IBM Watson IoT Plaform Quickstart sample.
+
+export CLASSPATH=${edgent}/samples/lib/edgent.samples.connectors.jar
+
+java org.apache.edgent.samples.connectors.iotp.IotpQuickstart

http://git-wip-us.apache.org/repos/asf/incubator-quarks/blob/8395d162/scripts/connectors/iotp/runiotpsensors.sh
----------------------------------------------------------------------
diff --git a/scripts/connectors/iotp/runiotpsensors.sh b/scripts/connectors/iotp/runiotpsensors.sh
new file mode 100755
index 0000000..42af686
--- /dev/null
+++ b/scripts/connectors/iotp/runiotpsensors.sh
@@ -0,0 +1,35 @@
+#!/bin/bash
+#
+# Licensed to the Apache Software Foundation (ASF) under one or more
+# contributor license agreements.  See the NOTICE file distributed with
+# this work for additional information regarding copyright ownership.
+# The ASF licenses this file to You under the Apache License, Version 2.0
+# (the "License"); you may not use this file except in compliance with
+# the License.  You may obtain a copy of the License at
+#
+#    http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+#
+
+edgent=../../..
+
+# Runs IBM Watson IoT Plaform sample.
+#
+# runiotpsensors.sh path/device.cfg
+#
+# e.g. runiotpsensors.sh $HOME/device.cfg
+#
+# This connectors to your IBM Watson IoT Platform service
+# as the device defined in the device.cfg.
+# The format of device.cfg is the standard one for
+# IBM Watson IoT Platform and a sample is in this directory
+# (omitting values for the authorization tokens).
+
+export CLASSPATH=${edgent}/samples/lib/edgent.samples.connectors.jar
+
+java org.apache.edgent.samples.connectors.iotp.IotpSensors $1