You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ignite.apache.org by vo...@apache.org on 2015/10/30 09:18:16 UTC

ignite git commit: IGNITE-1282: Consistent C++ product naming.

Repository: ignite
Updated Branches:
  refs/heads/ignite-1282 6bfb7ab14 -> 85787bee8


IGNITE-1282: Consistent C++ product naming.


Project: http://git-wip-us.apache.org/repos/asf/ignite/repo
Commit: http://git-wip-us.apache.org/repos/asf/ignite/commit/85787bee
Tree: http://git-wip-us.apache.org/repos/asf/ignite/tree/85787bee
Diff: http://git-wip-us.apache.org/repos/asf/ignite/diff/85787bee

Branch: refs/heads/ignite-1282
Commit: 85787bee8b7aa0028b0b1aa787b18dbff23a9fcd
Parents: 6bfb7ab
Author: vozerov-gridgain <vo...@gridgain.com>
Authored: Fri Oct 30 11:18:17 2015 +0300
Committer: vozerov-gridgain <vo...@gridgain.com>
Committed: Fri Oct 30 11:18:17 2015 +0300

----------------------------------------------------------------------
 modules/platforms/cpp/README.txt          | 12 ++++++------
 modules/platforms/cpp/examples/README.txt |  4 ++--
 2 files changed, 8 insertions(+), 8 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/ignite/blob/85787bee/modules/platforms/cpp/README.txt
----------------------------------------------------------------------
diff --git a/modules/platforms/cpp/README.txt b/modules/platforms/cpp/README.txt
index 142295b..b71dfe7 100644
--- a/modules/platforms/cpp/README.txt
+++ b/modules/platforms/cpp/README.txt
@@ -1,11 +1,11 @@
 Apache Ignite C++
 ==================================
 
-Ignite C++ provides data grid functionality.
-Using Ignite C++ APIs you can execute perform concurrent operations on
+Apache Ignite C++ provides data grid functionality.
+Using Apache Ignite C++ APIs you can execute perform concurrent operations on
 the data stored in cache.
 
-Ignite C++ can access cluster and share data with .Net and
+Apache Ignite C++ can access cluster and share data with .Net and
 Java applications using portable object format.
 
 Support for the following will be added in next releases:
@@ -29,7 +29,7 @@ Common Requirements:
 
 Building the library:
 
- * Build Ignite C++ helper "common" library:
+ * Build Apache Ignite C++ helper "common" library:
      * Navigate to the directory $IGNITE_HOME/platforms/cpp/common
      * Execute the following commands one by one:
          * libtoolize
@@ -40,7 +40,7 @@ Building the library:
          * ./configure
          * make
          * make install
- * Build Ignite C++ library:
+ * Build Apache Ignite C++ library:
      * Navigate to the directory $IGNITE_HOME/platforms/cpp/core
      * Execute the following commands one by one:
          * libtoolize
@@ -60,7 +60,7 @@ Development:
  * IGNITE_HOME environment variable must be set to Ignite installation directory.
  * Once both libraries are built and installed, required headers are placed in the
    "/usr/local/include/ignite" directory.
- * Ignite C++ depends on jni.h file located inside ${JAVA_HOME}/include directory.
+ * Apache Ignite C++ depends on jni.h file located inside ${JAVA_HOME}/include directory.
    Add this directory to headers search path: "-I${JAVA_HOME}/include".
  * Library is placed in the "/usr/local/lib" directory. Link it to your project: "-lignite".
  * Ignite depends on "libjvm.so" library shipped with Java. Typically this library is located inside

http://git-wip-us.apache.org/repos/asf/ignite/blob/85787bee/modules/platforms/cpp/examples/README.txt
----------------------------------------------------------------------
diff --git a/modules/platforms/cpp/examples/README.txt b/modules/platforms/cpp/examples/README.txt
index a00cb3b..dafe670 100644
--- a/modules/platforms/cpp/examples/README.txt
+++ b/modules/platforms/cpp/examples/README.txt
@@ -1,4 +1,4 @@
-Ignite C++ Examples
+Apache Ignite C++ Examples
 ==================================
 
 Common requirements
@@ -7,7 +7,7 @@ Common requirements
  * JAVA_HOME environment variable must be set pointing to Java installation directory.
  * IGNITE_HOME environment variable must be set to Ignite installation directory.
  * Ignite must be build and packaged using Maven. You can use the followin Maven command: mvn clean package -DskipTests
- * Ignite C++ must be built according to instructions for your platform.
+ * Apache Ignite C++ must be built according to instructions for your platform.
 
 Running examples on Linux
 ----------------------------------