Skip to content

Commit ca58301

Browse files
committed
Merge branch '1.0-master' of github.com:marklogic/marklogic-data-hub into 1.0-master
2 parents 8aa77ac + 45297da commit ca58301

File tree

11 files changed

+419
-419
lines changed

11 files changed

+419
-419
lines changed

CHANGELOG.md

Lines changed: 400 additions & 400 deletions
Large diffs are not rendered by default.

CONTRIBUTING.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -111,13 +111,13 @@ features, by not reporting duplicate issues. Please fill out the issue template
111111

112112
#### Fork marklogic-data-hub
113113

114-
Fork the project [on GitHub](https://github.com/marklogic/marklogic-data-hub/fork) and clone
114+
Fork the project [on GitHub](https://github.com/marklogic-community/marklogic-data-hub/fork) and clone
115115
your copy.
116116

117117
```sh
118118
$ git clone [email protected]:username/marklogic-data-hub.git
119119
$ cd marklogic-data-hub
120-
$ git remote add upstream git://github.com/marklogic/marklogic-data-hub.git
120+
$ git remote add upstream git://github.com/marklogic-community/marklogic-data-hub.git
121121
```
122122

123123
We ask that you open an issue in the [issue tracker][] and get agreement from
@@ -248,5 +248,5 @@ from the main (upstream) repository:
248248
git pull --ff upstream 1.0-develop
249249
```
250250

251-
[issue tracker]: https://github.com/marklogic/marklogic-data-hub/issues
251+
[issue tracker]: https://github.com/marklogic-community/marklogic-data-hub/issues
252252
[.editorconfig]: http://editorconfig.org/

examples/healthcare/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ The sample data is located in the input/ folder.
1515
```
1616

1717
# TLDR; How do I run it?
18-
1. Download the latest quick-start jar from the [releases page](https://github.com/marklogic/marklogic-data-hub/releases) into this folder.
18+
1. Download the latest quick-start jar from the [releases page](https://github.com/marklogic-community/marklogic-data-hub/releases) into this folder.
1919

2020
1. Run the quick-start jar `java -jar quick-start.jar`
2121

examples/load-binaries/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
This example shows how to load binary documents with the Hub Framework.
33

44
# TLDR; How do I run it?
5-
1. Download the latest quick-start jar from the [releases page](https://github.com/marklogic/marklogic-data-hub/releases) into this folder.
5+
1. Download the latest quick-start jar from the [releases page](https://github.com/marklogic-community/marklogic-data-hub/releases) into this folder.
66

77
1. Run the quick-start jar `java -jar quick-start.jar`
88

examples/spring-batch/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,10 @@ Learning [Spring Batch](http://docs.spring.io/spring-batch/reference/html/spring
77
Now you want to use Spring Batch to load a bunch of data into MarkLogic. Maybe that data is coming from a message queue. Maybe it's a bunch of files in a folder. It can be anything really.
88

99
## What's the Big Idea?
10-
The idea is pretty simple. You read the data, do a little processing (maybe), and then write it into MarkLogic. But to properly integrate with the Data Hub Framework you will want to run your data through an [input flow](https://github.com/marklogic/marklogic-data-hub/wiki/The-MarkLogic-Data-Hub-Overview#ingest).
10+
The idea is pretty simple. You read the data, do a little processing (maybe), and then write it into MarkLogic. But to properly integrate with the Data Hub Framework you will want to run your data through an [input flow](https://github.com/marklogic-community/marklogic-data-hub/wiki/The-MarkLogic-Data-Hub-Overview#ingest).
1111

1212
## How does it work?
13-
This example includes a sample Spring Boot Configuration [LoadAndRunFlow.java](https://github.com/marklogic/marklogic-data-hub/blob/develop/examples/spring-batch/src/main/java/example/LoadAndRunFlow.java) that configures a job to ingest some xml files and run a flow.
13+
This example includes a sample Spring Boot Configuration [LoadAndRunFlow.java](https://github.com/marklogic-community/marklogic-data-hub/blob/develop/examples/spring-batch/src/main/java/example/LoadAndRunFlow.java) that configures a job to ingest some xml files and run a flow.
1414

1515
This example depends on a runtime class **com.marklogic.spring.batch.hub.HubJobRunner** that is responsible for reading command line parameters and connects to the Data Hub by reading your gradle project files.
1616

@@ -62,6 +62,6 @@ Then drop in your custom Java Config class in src/main/java/.....
6262

6363
Next you simply Compile your code with `gradle installDist`.
6464

65-
Then you can run take a look at the [run.sh script](https://github.com/marklogic/marklogic-data-hub/blob/develop/examples/spring-batch/run.sh) to see how to run your custom config.
65+
Then you can run take a look at the [run.sh script](https://github.com/marklogic-community/marklogic-data-hub/blob/develop/examples/spring-batch/run.sh) to see how to run your custom config.
6666

67-
Note that this is not the only way to run it. It's merely the easiest. Java Ninjas can directly call the main() function of the [HubJobRunner class](https://github.com/marklogic/marklogic-data-hub/blob/develop/marklogic-data-hub/src/main/java/com/marklogic/spring/batch/hub/HubJobRunner.java). Or you can make your own class to start up Spring Batch by reading the HubJobRunner code and doing something similar.
67+
Note that this is not the only way to run it. It's merely the easiest. Java Ninjas can directly call the main() function of the [HubJobRunner class](https://github.com/marklogic-community/marklogic-data-hub/blob/develop/marklogic-data-hub/src/main/java/com/marklogic/spring/batch/hub/HubJobRunner.java). Or you can make your own class to start up Spring Batch by reading the HubJobRunner code and doing something similar.

marklogic-data-hub/build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ Node pomCustomizations = new NodeBuilder(). project {
101101
name 'marklogic-data-hub'
102102
packaging 'jar'
103103
textdescription 'Library for Creating an Operational Data Hub on MarkLogic'
104-
url 'https://github.com/marklogic/marklogic-data-hub'
104+
url 'https://github.com/marklogic-community/marklogic-data-hub'
105105

106106
scm {
107107
url '[email protected]:marklogic/marklogic-data-hub.git'
@@ -127,7 +127,7 @@ Node pomCustomizations = new NodeBuilder(). project {
127127
name 'MarkLogic Github Contributors'
128128
129129
organization 'Github Contributors'
130-
organizationUrl 'https://github.com/marklogic/marklogic-data-hub/graphs/contributors'
130+
organizationUrl 'https://github.com/marklogic-community/marklogic-data-hub/graphs/contributors'
131131
}
132132
}
133133
}
@@ -163,7 +163,7 @@ bintray {
163163
licenses = ['Apache-2.0']
164164
websiteUrl = pomCustomizations.url
165165
vcsUrl = pomCustomizations.scm.url
166-
issueTrackerUrl = 'https://github.com/marklogic/marklogic-data-hub/issues'
166+
issueTrackerUrl = 'https://github.com/marklogic-community/marklogic-data-hub/issues'
167167
}
168168
}
169169

marklogic-data-hub/src/trace-ui/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "trace-ui",
33
"version": "1.1.3",
44
"license": "APACHE",
5-
"homepage": "https://github.com/marklogic/marklogic-data-hub",
5+
"homepage": "https://github.com/marklogic-community/marklogic-data-hub",
66
"scripts": {
77
"rimraf": "rimraf",
88
"ng": "ng",

ml-data-hub-plugin/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,8 +64,8 @@ bintray {
6464
name = 'ml-data-hub'
6565
desc = 'A gradle plugin for Data Hub tasks'
6666
licenses = ['Apache-2.0']
67-
websiteUrl = 'https://github.com/marklogic/marklogic-data-hub'
68-
issueTrackerUrl = 'https://github.com/marklogic/marklogic-data-hub/issues'
67+
websiteUrl = 'https://github.com/marklogic-community/marklogic-data-hub'
68+
issueTrackerUrl = 'https://github.com/marklogic-community/marklogic-data-hub/issues'
6969
}
7070
}
7171

quick-start/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "data-hub-quickstart",
33
"version": "1.1.3",
44
"license": "APACHE",
5-
"homepage": "https://github.com/marklogic/marklogic-data-hub",
5+
"homepage": "https://github.com/marklogic-community/marklogic-data-hub",
66
"scripts": {
77
"rimraf": "rimraf",
88
"ng": "ng",

quick-start/src/main/ui/app/login/login.component.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ <h3 class="md-primary">Other</h3>
149149
<h3>Project Initialized <i class="fa fa-thumbs-up"></i></h3>
150150
<p>Project files have been created in</p>
151151
<p class="project-path">{{currentProject.path}}</p>
152-
<p>Read more about the project structure on the <a target="_blank" href="https://github.com/marklogic/marklogic-data-hub/wiki/Project-Directory-Structure">github wiki</a>.</p>
152+
<p>Read more about the project structure on the <a target="_blank" href="https://github.com/marklogic-community/marklogic-data-hub/wiki/Project-Directory-Structure">github wiki</a>.</p>
153153
</section>
154154
<div layout="row" layout-align="end center" class="init-buttons">
155155
<button type="button" mdl-button (click)="back()">&lt; Back</button>
@@ -166,7 +166,7 @@ <h3>Choose Your Project Environment</h3>
166166
<p class="help-text">Each Hub Project can be deployed to multiple environments. Environments are
167167
determined by the presence of a gradle-env.properties file in your hub project
168168
directory. By default the Quick Start only creates a local environment file.
169-
Read more <a target="_blank" href="https://github.com/marklogic/marklogic-data-hub/wiki/Data-Hub-QuickStart-Project-Environments">on the Data Hub Framework Wiki</a>.
169+
Read more <a target="_blank" href="https://github.com/marklogic-community/marklogic-data-hub/wiki/Data-Hub-QuickStart-Project-Environments">on the Data Hub Framework Wiki</a>.
170170
</p>
171171
<app-select-list
172172
[items]="currentProject.environments"

0 commit comments

Comments
 (0)