Skip to content

Commit a955197

Browse files
committed
Added issues-help.md
JAVA-1726
1 parent 734c5ff commit a955197

File tree

4 files changed

+54
-12
lines changed

4 files changed

+54
-12
lines changed

docs/landing/config.toml

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,3 @@ title = "MongoDB Java Driver"
44
canonifyurls = false
55

66
githubRepo = "mongo-java-driver"
7-
8-
[params.authors]
9-
[params.authors.Derek]
10-
"firstName" = "Derek"
11-
"lastName" = "Perkins"
12-
[params.authors.Joe]
13-
"firstName" = "Joe"
14-
"lastName" = "Bergevin"
15-
[params.authors.Tanner]
16-
"firstName" = "Tanner"
17-
"lastName" = "Linsley"

docs/landing/layouts/partials/hero.html

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,10 @@ <h2>MongoDB Java Driver</h2>
77
<p>
88
The next generation Java driver for MongoDB
99
</p>
10+
<p>
11+
<a href="{{.Site.BaseUrl}}/{{$.Site.Data.releases.current}}" class="btn btn-success btn-dark btn-mongo">Latest documentation</a>
12+
</p>
13+
1014
</div>
1115
<div class="col-md-2" id="mongodbJVMlogo"></div>
1216
</div>

docs/landing/layouts/partials/quickStart.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ <h2 id="quickStart">Quick Start</h2>
55
Select the driver, version and dependency management system below and the snippet can be copied and pasted into your build.
66
</p>
77
<p>
8-
Alternatively, head over to our documentation to learn more about getting started with Java and MongoDB.
8+
Alternatively, head over to our <a href="{{.Site.BaseUrl}}/{{$.Site.Data.releases.current}}">documentation</a> to learn more about getting started with Java and MongoDB.
99
</p>
1010

1111
{{ range where $.Site.Data.releases.versions "version" $.Site.Data.releases.current }}{{ $.Scratch.Set "qs.currentReleasedVersion" . }}{{end }}

docs/reference/content/issues-help.md

Lines changed: 49 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
+++
2+
date = "2015-03-18T16:56:14Z"
3+
title = "Issues & Help"
4+
[menu.main]
5+
weight = 100
6+
pre = "<i class='fa fa-life-ring'></i>"
7+
+++
8+
9+
# Issues & Help
10+
11+
We are lucky to have a vibrant MongoDB Java community with lots of varying
12+
experience of using the Java driver. We often find the quickest way to get support for
13+
general questions is through the [mongodb-user google group](http://groups.google.com/group/mongodb-user)
14+
or through [stackoverflow](http://stackoverflow.com/questions/tagged/mongodb+java). Please also
15+
refer to our own [support channels](http://www.mongodb.org/about/support) documentation.
16+
17+
## Bugs / Feature Requests
18+
19+
If you think you’ve found a bug or want to see a new feature in the Java driver,
20+
please open a case in our issue management tool, JIRA:
21+
22+
- [Create an account and login](https://jira.mongodb.org).
23+
- Navigate to [the JAVA project](https://jira.mongodb.org/browse/JAVA).
24+
- Click **Create Issue** - Please provide as much information as possible about the issue type and how to reproduce it.
25+
26+
Bug reports in JIRA for the Java driver and the Core Server (i.e. SERVER) project are **public**.
27+
28+
If you’ve identified a security vulnerability in a driver or any other
29+
MongoDB project, please report it according to the [instructions here](http://docs.mongodb.org/manual/tutorial/create-a-vulnerability-report).
30+
31+
## Pull Requests
32+
33+
We are happy to accept contributions to help improve the driver.
34+
We will guide user contributions to ensure they meet the standards of the codebase.
35+
Please ensure that any pull requests include documentation, tests and also pass
36+
a the gradle checks.
37+
38+
To get started check out the source and work on a branch:
39+
40+
```bash
41+
$ git clone https://github.com/mongodb/mongo-java-driver.git
42+
$ cd mongo-java-driver
43+
$ git checkout -b myNewFeature
44+
```
45+
46+
Finally, ensure that the code passes gradle checks.
47+
```bash
48+
$ ./gradlew check
49+
```

0 commit comments

Comments
 (0)