Showing 1,256 changed files with 239,860 additions and 72,631 deletions.
19 changes: 19 additions & 0 deletions .clabot
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
{
"contributors": [
"dependabot-preview[bot]",
"ingenieroariel",
"jj0hns0n",
"simod",
"kalxas",
"capooti",
"pjdufour",
"afabiani",
"francbartoli",
"frafra",
"t-book",
"gannebamm",
"gioscarda",
"sjohn-atenekom",
"LiliGuimaraes"
]
}
18 changes: 0 additions & 18 deletions .github/ISSUE_TEMPLATE.md

This file was deleted.

20 changes: 20 additions & 0 deletions .github/ISSUE_TEMPLATE/feature_request.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
---
name: Feature request
about: Suggest an idea for this project
title: ''
labels: ''
assignees: ''

---

**Is your feature request related to a problem? Please describe.**
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]

**Describe the solution you'd like**
A clear and concise description of what you want to happen.

**Describe alternatives you've considered**
A clear and concise description of any alternative solutions or features you've considered.

**Additional context**
Add any other context or screenshots about the feature request here.
69 changes: 69 additions & 0 deletions .github/ISSUE_TEMPLATE/gnip.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,69 @@
---
name: GeoNode Improvement Proposal
about: Create an Improvement Proposal for this project
title: ''
labels: ''
assignees: ''

---

# GNIP <num> - <title of the GNIP here>

## Overview

Describe briefly and clearly what this proposal is meant for.

### Proposed By

<user and full name of the proponent>

### Assigned to Release

This proposal is for GeoNode <version>.

### State

* [x] Under Discussion
* [ ] In Progress
* [ ] Completed
* [ ] Rejected
* [ ] Deferred

### Motivation

Details about the motivations. Why people should accept this proposal. What are the benefits compared to the current situation.

## Proposal

Technical details for developers.

### Backwards Compatibility

Declare its Backwards Compatibility.

## Future evolution

Explain which could be future evolutions.

## Feedback

Update this section with relevant feedbacks, if any.

## Voting

Project Steering Committee:

* Alessio Fabiani:
* Francesco Bartoli:
* Paolo Corti:
* Simone Dalmasso:
* Toni Schoenbuchner:

## Links

Remove unused links below.

* [Email Discussion]()
* [Pull Request]()
* [Mail Discussion]()
* [Linked Issue]()
27 changes: 27 additions & 0 deletions .github/ISSUE_TEMPLATE/report_issue.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
---
name: Report a bug
about: Report a bug or regression for this project
title: ''
labels: ''
assignees: ''

---

## Expected Behavior


## Actual Behavior


## Steps to Reproduce the Problem

1.
2.
3.

## Specifications

- GeoNode version:
- Installation method (manual, GeoNode Docker, SPCGeoNode Docker):
- Platform:
- Additional details:
23 changes: 23 additions & 0 deletions .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
<Include a few sentences describing the overall goals for this Pull Request>

## Checklist

> Reviewing is a process done by project maintainers, mostly on a volunteer basis. We try to keep the overhead as small as possible and appreciate if you help us to do so by completing the following items. Feel free to ask in a comment if you have troubles with any of them.
For all pull requests:

- [ ] Confirm you have read the [contribution guidelines](https://github.com/GeoNode/geonode/blob/master/CONTRIBUTING.md)
- [ ] You have sent a Contribution Licence Agreement (CLA) as necessary (not required for small changes, e.g., fixing typos in documentation)
- [ ] Make sure the first PR targets the master branch, eventual backports will be managed later. This can be ignored if the PR is fixing an issue that only happens in a specific branch, but not in newer ones.

The following are required only for core and extension modules (they are welcomed, but not required, for contrib modules):
- [ ] There is a ticket in https://github.com/GeoNode/geonode/issues describing the issue/improvement/feature (a notable exemptions is, changes not visible to end users)
- [ ] The issue connected to the PR must have Labels and Milestone assigned
- [ ] PR for bug fixes and small new features are presented as a single commit
- [ ] Commit message must be in the form "[Fixes #<issue_number>] Title of the Issue"
- [ ] New unit tests have been added covering the changes, unless there are explanation on why the tests are not necessary/implemented
- [ ] This PR passes all existing unit tests (test results will be reported by travis-ci after opening this PR)
- [ ] This PR passes the QA checks: flake8 geonode
- [ ] Commits changing the **settings**, **UI**, **existing user workflows**, or adding **new functionality**, need to include documentation updates

**Submitting the PR does not require you to check all items, but by the time it gets merged, they should be either satisfied or inapplicable.**
19 changes: 19 additions & 0 deletions .github/stale.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# Number of days of inactivity before an issue becomes stale
daysUntilStale: 60
# Number of days of inactivity before a stale issue is closed
daysUntilClose: 7
# Issues with these labels will never be considered stale
exemptLabels:
- blocker
- regression
- security
- gnip
# Label to use when marking an issue as stale
staleLabel: wontfix
# Comment to post when marking an issue as stale. Set to `false` to disable
markComment: >
This issue has been automatically marked as stale because it has not had
recent activity. It will be closed if no further activity occurs. Thank you
for your contributions.
# Comment to post when closing a stale issue. Set to `false` to disable
closeComment: false
6 changes: 6 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,8 @@ geonode/static/.components/
geonode/static_root/
geonode/static/node_modules/
node_modules/
# Exception for monitoring frontend
!geonode/monitoring/static/monitoring/node_modules/
# Listing all of them instead of putting geonode/static/lib out of version control.
geonode/local_settings.py

Expand Down Expand Up @@ -86,3 +88,7 @@ geonode\.tests\.bdd\.e2e\.test_login/
/celerybeat-schedule

scripts/spcgeonode/_volume_*

/geonode/test_settings.py

/geonode/static/yarn.lock
21 changes: 16 additions & 5 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,10 +60,12 @@ matrix:
GEOSERVER_SERVER_URL: http://localhost:8080/geoserver/
GEOSERVER_SERVER_PORT: 8080
ON_TRAVIS: 'True'
TEST_RUNNER_KEEPDB: 'True'
TEST_RUN_INTEGRATION: 'True'
TEST_RUN_INTEGRATION_CSW: 'False'
TEST_RUN_INTEGRATION_BDD: 'False'
MONITORING_ENABLED: 'False'
MONITORING_ENABLED: 'True'
USER_ANALYTICS_ENABLED: 'True'
SESSION_EXPIRED_CONTROL_ENABLED: 'True'
CELERY_ALWAYS_EAGER: 'True'
- name: "GeoServer-backend Integration CSW Tests"
Expand Down Expand Up @@ -157,15 +159,20 @@ matrix:
MONITORING_ENABLED: 'False'
SESSION_EXPIRED_CONTROL_ENABLED: 'True'
CELERY_ALWAYS_EAGER: 'True'
- name: "Selenium Integration Tests"
- name: "Selenium Integration Tests Core"
python: 3.5
env:
- TEST_RUN_SELENIUM: 'True'
- name: "Selenium Integration Tests SPCGeonode"
python: 3.5
env:
- TEST_RUN_SELENIUM: 'True'
- SPCGEONODE: 'True'

branches:
only:
- master
- 2.20.x
- 2.10.1
- 2.10.x
- 2.8.x
- 2.6.x
Expand Down Expand Up @@ -214,7 +221,7 @@ install:
export JAVA_HOME=$(readlink -f /usr/bin/java | sed "s:bin/java::");
export PATH=$JAVA_HOME'bin/java':$PATH;
pip install -r requirements.txt --upgrade;
pip install -e . --upgrade;
pip install -e .;
pip install pygdal==`gdal-config --version`.*;
pip install codecov;
fi
Expand All @@ -239,8 +246,12 @@ before_script:
fi

script:
- if [ "$TEST_RUN_SELENIUM" = "True" ]; then
- if [ "$TEST_RUN_SELENIUM" = "True" ] && [ "$SPCGEONODE" = "True" ]; then
geonode-selenium/test-docker.sh;
elif [ "$TEST_RUN_SELENIUM" = "True" ]; then
docker-compose -f docker-compose.yml -f docker-compose.override.localhost.yml up --build -d;
URL="http://localhost";
GEONODE_USER=admin GEONODE_PASS=admin GEONODE_URL="$URL" geonode-selenium/test-core.sh;
else
paver run_tests --coverage --local false;
fi
Expand Down
1 change: 1 addition & 0 deletions AUTHORS
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ The PRIMARY AUTHORS are (and/or have been):
* Sasha Hart (harts-boundless)
* Francesco Frassinelli (frafra)
* Toni Schönbuchner (t-book)
* Florian Hoedt / Thünen-Institute (gannebamm)



Expand Down
Loading