Skip to content

Commit

Permalink
Merge branch 'hotfix-10.8.71' into stable
Browse files Browse the repository at this point in the history
  • Loading branch information
DominicWatson committed Feb 1, 2018
2 parents 6d086ef + 0d60ed7 commit 21cd7a3
Show file tree
Hide file tree
Showing 654 changed files with 9 additions and 54,431 deletions.
1 change: 0 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ jdk:
node_js:
- "4.2.6"
services:
- docker
- mysql
before_install:
- mkdir /tmp/bin
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,6 @@ PresideCMS

PresideCMS is an open source CMS for the [Lucee Server](http://lucee.org) built on the [ColdBox MVC Framework](http://www.coldbox.org). It is developed and maintained by [Pixl8 Interactive](http://www.pixl8.co.uk).

[Website (http://www.presidecms.com)](http://www.presidecms.com)
[Website (https://www.preside.org)](https://www.preside.org)

[Documentation and quick start guide (http://docs.presidecms.com)](http://docs.presidecms.com)
[Documentation and quick start guide (https://docs.presidecms.org)](https://docs.preside.org)
4 changes: 2 additions & 2 deletions box.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"createPackageDirectory":true,
"packageDirectory":"preside",
"homepage":"https://www.presidecms.com",
"documentation":"https://docs.presidecms.com",
"documentation":"https://docs.preside.org",
"repository":{
"type":"github",
"URL":"https://github.com/pixl8/Preside-CMS"
Expand All @@ -14,7 +14,7 @@
"slug":"presidecms",
"shortDescription":"The PresideCMS platform by Pixl8 Interactive",
"description":"",
"instructions":"https://docs.presidecms.com/quickstart.html",
"instructions":"https://docs.preside.org/quickstart.html",
"changelog":"https://www.presidecms.com/release-notes.html",
"keywords":"CMS,ColdBox,FOSS",
"private":false,
Expand Down
4 changes: 2 additions & 2 deletions box.json.no.deps
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"createPackageDirectory":true,
"packageDirectory":"preside",
"homepage":"https://www.presidecms.com",
"documentation":"https://docs.presidecms.com",
"documentation":"https://docs.preside.org",
"repository":{
"type":"github",
"URL":"https://github.com/pixl8/Preside-CMS"
Expand All @@ -14,7 +14,7 @@
"slug":"presidecms",
"shortDescription":"The PresideCMS platform by Pixl8 Interactive",
"description":"",
"instructions":"https://docs.presidecms.com/quickstart.html",
"instructions":"https://docs.preside.org/quickstart.html",
"changelog":"https://www.presidecms.com/release-notes.html",
"keywords":"CMS,ColdBox,FOSS",
"private":false,
Expand Down
31 changes: 2 additions & 29 deletions build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,12 @@ echo "--------------------------------------------------------";
echo "Welcome to the PresideCMS Test runner and build suite :)";
echo "--------------------------------------------------------";
echo "";
echo "This script will install dependencies, run tests, and conditionally build docs and package preside into a ZIP file.";
echo "This script will install dependencies, run tests, and conditionally package preside into a ZIP file.";
echo "Each of these operations can be run independently with the following commands:";
echo "";
echo "box install - installs dependencies";
echo "cd system/assets/ && npm install && grunt all - builds static assets";
echo "./test.sh - runs tests";
echo "./support/docs/build.sh - builds documentation";
echo "ant -f ./support/build/build.xml - packages PresideCMS into a zip file";
echo "";
echo "The script has dependencies on CommandBox, ant + an accessible database for running the test suite.";
Expand Down Expand Up @@ -51,18 +50,10 @@ if [[ $TRAVIS_JDK_VERSION == 'openjdk7' ]] ; then
fi

if [[ $TRAVIS_PULL_REQUEST == 'true' ]] ; then
echo "Finished (not packaging up docs or source due to running in a pull request)."
echo "Finished (not packaging up source due to running in a pull request)."
exit 0;
fi

if [[ $TRAVIS_TAG == v* ]] ; then
./support/docs/build.sh

echo "";
echo "";
else
echo "Skipping docs build, not on a release tag in a travis build. To build the docs yourself, run ./support/docs/build.sh"
fi
if [[ $TRAVIS_TAG == v* ]] || [[ $TRAVIS_BRANCH == release* ]] ; then
if [[ $TRAVIS_TAG == v* ]] ; then
VERSION_NUMBER="${TRAVIS_TAG//v}"
Expand All @@ -77,24 +68,6 @@ if [[ $TRAVIS_TAG == v* ]] || [[ $TRAVIS_BRANCH == release* ]] ; then
echo "";

ant -f support/build/build.xml -Dbranch=$TRAVIS_BRANCH -Dtag=$TRAVIS_TAG -Dversionnumber=$VERSION_NUMBER

echo "";
echo "";
echo "Creating and registering docker image";

if [[ $TRAVIS_TAG == v* ]] ; then
DOCKER_TAG=${TRAVIS_TAG:1}
else
DOCKER_TAG=bleeding-edge
fi

docker build -t pixl8/preside-cms:$DOCKER_TAG ./support/build
docker login -e $DOCKER_EMAIL -u $DOCKER_USER -p $DOCKER_PASS
docker push pixl8/preside-cms:$DOCKER_TAG

if [[ $TRAVIS_TAG == v* ]] ; then
docker push pixl8/preside-cms:latest
fi
else
echo "Skipping packaging, not on stable or release branch in a travis build. To package preside yourself, run ant -f ./support/build/build.xml"
fi
Expand Down
11 changes: 0 additions & 11 deletions support/build/Dockerfile

This file was deleted.

32 changes: 0 additions & 32 deletions support/build/docker/dummysite/Application.cfc

This file was deleted.

29 changes: 0 additions & 29 deletions support/build/docker/dummysite/index.cfm

This file was deleted.

0 comments on commit 21cd7a3

Please sign in to comment.