Skip to content

Commit

Permalink
Change some more http to https
Browse files Browse the repository at this point in the history
  • Loading branch information
mariascharin committed Jan 26, 2017
1 parent 307f993 commit 3dcd19e
Show file tree
Hide file tree
Showing 11 changed files with 24 additions and 24 deletions.
12 changes: 6 additions & 6 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
# Contributing to the Neo4j Ecosystem

At [Neo Technology](http://neo4j.com/), we develop our software in the open at GitHub.
At [Neo Technology](https://neo4j.com/), we develop our software in the open at GitHub.
This provides transparency for you, our users, and allows you to fork the software to make your own additions and enhancements.
We also provide areas specifically for community contributions, in particular the [neo4j-contrib](https://github.com/neo4j-contrib) space.

There's an active [mailing list](https://groups.google.com/forum/#!forum/neo4j) and [Slack channel](http://neo4j.com/slack) where we work directly with the community.
There's an active [mailing list](https://groups.google.com/forum/#!forum/neo4j) and [Slack channel](https://neo4j.com/slack) where we work directly with the community.
If you're not already a member, sign up!

We love our community and wouldn't be where we are without you.
Expand All @@ -14,10 +14,10 @@ We love our community and wouldn't be where we are without you.

Where you raise an issue depends largely on the nature of the problem.

Firstly, if you are an Enterprise customer, you might want to head over to our [Customer Support Portal](http://support.neo4j.com/).
Firstly, if you are an Enterprise customer, you might want to head over to our [Customer Support Portal](https://support.neo4j.com/).

There are plenty of public channels available too, though.
If you simply want to get started or have a question on how to use a particular feature, drop a line to the [mailing list](https://groups.google.com/forum/#!forum/neo4j), ask a question in [Slack](http://neo4j.com/slack), or [tweet](https://twitter.com/neo4j) us.
If you simply want to get started or have a question on how to use a particular feature, drop a line to the [mailing list](https://groups.google.com/forum/#!forum/neo4j), ask a question in [Slack](https://neo4j.com/slack), or [tweet](https://twitter.com/neo4j) us.
If you think you might have hit a bug in our software (it happens occasionally!) or you have specific feature request then use the issue feature on the relevant GitHub repository.
Check first though as someone else may have already raised something similar.

Expand All @@ -44,7 +44,7 @@ If you want to contribute a pull request, we have a little bit of process you'll
- Create a branch (with a useful name) for your contribution
- Make sure you're familiar with the appropriate coding style (this varies by language so ask if you're in doubt)
- Include unit tests if appropriate (obviously not necessary for documentation changes)
- Take a moment to read and sign our [CLA](http://neo4j.com/developer/cla)
- Take a moment to read and sign our [CLA](https://neo4j.com/developer/cla)

We can't guarantee that we'll accept pull requests and may ask you to make some changes before they go in.
Occasionally, we might also have logistical, commercial, or legal reasons why we can't accept your work but we'll try to find an alternative way for you to contribute in that case.
Expand All @@ -61,6 +61,6 @@ And we'll do our best to help you promote and co-ordinate your Neo ecosystem pro

## Further reading

If you want to find out more about how you can contribute, head over to our website for [more information](http://neo4j.com/developer/contributing-code/).
If you want to find out more about how you can contribute, head over to our website for [more information](https://neo4j.com/developer/contributing-code/).


8 changes: 4 additions & 4 deletions README.asciidoc
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
= Neo4j: Graphs for Everyone =

http://neo4j.com[Neo4j] is the world's leading Graph Database. It is a high performance graph store with all the features expected of a mature and robust database, like a friendly query language and ACID transactions. The programmer works with a flexible network structure of nodes and relationships rather than static tables -- yet enjoys all the benefits of enterprise-quality database. For many applications, Neo4j offers orders of magnitude performance benefits compared to relational DBs.
https://neo4j.com[Neo4j] is the world's leading Graph Database. It is a high performance graph store with all the features expected of a mature and robust database, like a friendly query language and ACID transactions. The programmer works with a flexible network structure of nodes and relationships rather than static tables -- yet enjoys all the benefits of enterprise-quality database. For many applications, Neo4j offers orders of magnitude performance benefits compared to relational DBs.

Learn more on the http://neo4j.com[Neo4j website].
Learn more on the https://neo4j.com[Neo4j website].

== Using Neo4j ==

Neo4j is available both as a standalone server, or an embeddable component. You can http://neo4j.com/download/[download] or http://console.neo4j.org[try online].
Neo4j is available both as a standalone server, or an embeddable component. You can https://neo4j.com/download/[download] or http://console.neo4j.org[try online].

== Extending Neo4j ==

Expand Down Expand Up @@ -74,4 +74,4 @@ to start Neo4j.

== Licensing ==

Neo4j is an open source product. We support a Community edition under the GPLv3 license. The Enterprise edition is available under the AGPLv3 license for open source projects otherwise under a commercial license from http://info.neotechnology.com/contactus.html[Neo Technology].
Neo4j is an open source product. We support a Community edition under the GPLv3 license. The Enterprise edition is available under the AGPLv3 license for open source projects otherwise under a commercial license from https://info.neotechnology.com/contactus.html[Neo Technology].
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ public interface ExecutionPlanDescription
* Signifies that the query was profiled, and that statistics from the profiling can
* {@link #getProfilerStatistics() be retrieved}.
*
* The <a href="http://neo4j.com/docs/developer-manual/current/cypher/execution-plans/">{@code PROFILE}</a> directive in Cypher
* The <a href="https://neo4j.com/docs/developer-manual/current/cypher/execution-plans/">{@code PROFILE}</a> directive in Cypher
* ensures the presence of profiler statistics in the plan description.
*
* @return true, if {@link ProfilerStatistics} are available for this execution step
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ public QueryExecutionException( String message, Throwable cause, String statusCo
}

/**
* The Neo4j error <a href="http://neo4j.com/docs/developer-manual/current/reference/status-codes/">status code</a>.
* The Neo4j error <a href="https://neo4j.com/docs/developer-manual/current/reference/status-codes/">status code</a>.
*
* @return the Neo4j error status code.
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,9 @@
* In Cypher there are three different modes of execution:
* <ul>
* <li>Normal execution,</li>
* <li>execution with the <a href="http://neo4j.com/docs/developer-manual/current/cypher/execution-plans/">{@code PROFILE}</a> directive,
* <li>execution with the <a href="https://neo4j.com/docs/developer-manual/current/cypher/execution-plans/">{@code PROFILE}</a> directive,
* and</li>
* <li>execution with the <a href="http://neo4j.com/docs/developer-manual/current/cypher/execution-plans/">{@code EXPLAIN}</a>
* <li>execution with the <a href="https://neo4j.com/docs/developer-manual/current/cypher/execution-plans/">{@code EXPLAIN}</a>
* directive.</li>
* </ul>
* Instances of this class contain the required information to be able to tell these different execution modes apart.
Expand Down Expand Up @@ -123,7 +123,7 @@ public QueryType queryType()
* {@linkplain ExecutionPlanDescription#getProfilerStatistics() contains profiling information}.
*
* This is {@code true} for queries executed with the
* <a href="http://neo4j.com/docs/developer-manual/current/cypher/execution-plans/">{@code PROFILE}</a> directive.
* <a href="https://neo4j.com/docs/developer-manual/current/cypher/execution-plans/">{@code PROFILE}</a> directive.
*
* @return {@code true} if the results from this execution would contain profiling information.
*/
Expand All @@ -137,7 +137,7 @@ public boolean isProfiled()
* {@linkplain ExecutionPlanDescription description of the execution plan}.
*
* This is {@code true} for queries executed with either the
* <a href="http://neo4j.com/docs/developer-manual/current/cypher/execution-plans/">{@code EXPLAIN} or {@code PROFILE} directives</a>.
* <a href="https://neo4j.com/docs/developer-manual/current/cypher/execution-plans/">{@code EXPLAIN} or {@code PROFILE} directives</a>.
*
* @return {@code true} if a description of the plan should be presented to the user.
*/
Expand All @@ -148,7 +148,7 @@ public boolean requestedExecutionPlanDescription()

/**
* Signifies that the query was executed with the
* <a href="http://neo4j.com/docs/developer-manual/current/cypher/execution-plans/">{@code EXPLAIN} directive</a>.
* <a href="https://neo4j.com/docs/developer-manual/current/cypher/execution-plans/">{@code EXPLAIN} directive</a>.
*
* @return {@code true} if the query was executed using the {@code EXPLAIN} directive.
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ A tool to perform live backups over the network from a running Neo4j graph datab
.sp
The source(s) are given as host:port pairs, the target is a filesystem location\&.
.sp
For help regarding Windows, see the reference in \m[blue]\fBhttps://neo4j\&.com/docs/operations\-manual/current/deployment/single\-instance/windows/\fR\m[]\&.
For help regarding Windows, see the reference in \m[blue]\fBhttps://neo4j\&.com/docs/operations\-manual/current/installation/windows/\fR\m[]\&.

.SH "BACKUP TYPE"

Expand Down
2 changes: 1 addition & 1 deletion new-packaging/src/debian/skeleton/debian/package.postinst
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ case "$1" in
echo "installation."
echo
echo "You MUST read the upgrade guide before re-starting the database. The upgrade"
echo "guide can be found at http://neo4j.com/guides/upgrade/."
echo "guide can be found at https://neo4j.com/guides/upgrade/."
echo
database_count=$(find /var/lib/neo4j/data -type f |grep neostore$ | sed s,/neostore$,, | wc -l)
if [ "$database_count" -gt "0" ]; then
Expand Down
2 changes: 1 addition & 1 deletion new-packaging/src/debian/skeleton/manpages/neo4j-import.1
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ neo4j-import \- Neo4j Import Tool
.sp
\fBneo4j\-import\fR is used to create a new Neo4j database from data in CSV files\&. See the chapter "Import Tool" in the Neo4j Manual for details on the CSV file format \(em a special kind of header is required\&.
.sp
For information regarding Windows, see \m[blue]\fBhttps://neo4j\&.com/docs/operations\-manual/current/deployment/single\-instance/windows/\fR\m[]\&.
For information regarding Windows, see \m[blue]\fBhttps://neo4j\&.com/docs/operations\-manual/current/installation/windows/\fR\m[]\&.

.SH "OPTIONS"

Expand Down
2 changes: 1 addition & 1 deletion new-packaging/src/debian/skeleton/manpages/neo4j.1
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ Neo4j is a graph database, perfect for working with highly connected data\&. The
.sp
The preferred way to install Neo4j on Linux systems is by using prebuilt installation packages\&.
.sp
For information regarding Windows, see \m[blue]\fBhttps://neo4j\&.com/docs/operations\-manual/current/deployment/single\-instance/windows/\fR\m[]\&.
For information regarding Windows, see \m[blue]\fBhttps://neo4j\&.com/docs/operations\-manual/current/installation/windows/\fR\m[]\&.

.SH "COMMANDS"

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ Author = 'Network Engine for Objects'

CompanyName = 'Network Engine for Objects'

Copyright = 'http://neo4j.com/licensing/'
Copyright = 'https://neo4j.com/licensing/'

Description = 'Powershell module to manage a Neo4j instance on Windows'

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ dbms.connector.https.enabled=true
#*****************************************************************

# Uncomment and specify these lines for running Neo4j in Causal Clustering mode.
# See the Causal Clustering documentation on neo4j.com for details.
# See the Causal Clustering documentation at https://neo4j.com/docs/ for details.

# Database mode
# Allowed values:
Expand Down Expand Up @@ -235,7 +235,7 @@ dbms.connector.https.enabled=true
#*****************************************************************

# Uncomment and specify these lines for running Neo4j in High Availability mode.
# See the High Availability documentation on neo4j.com for details.
# See the High Availability documentation at https://neo4j.com/docs/ for details.

# Database mode
# Allowed values:
Expand Down

0 comments on commit 3dcd19e

Please sign in to comment.