| 1 | <!--- This file is part of Mura CMS. |
|---|
| 2 | |
|---|
| 3 | Mura CMS is free software: you can redistribute it and/or modify |
|---|
| 4 | it under the terms of the GNU General Public License as published by |
|---|
| 5 | the Free Software Foundation, Version 2 of the License. |
|---|
| 6 | |
|---|
| 7 | Mura CMS is distributed in the hope that it will be useful, |
|---|
| 8 | but WITHOUT ANY WARRANTY; without even the implied warranty of |
|---|
| 9 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|---|
| 10 | GNU General Public License for more details. |
|---|
| 11 | |
|---|
| 12 | You should have received a copy of the GNU General Public License |
|---|
| 13 | along with Mura CMS. If not, see <http://www.gnu.org/licenses/>. |
|---|
| 14 | |
|---|
| 15 | Linking Mura CMS statically or dynamically with other modules constitutes |
|---|
| 16 | the preparation of a derivative work based on Mura CMS. Thus, the terms and |
|---|
| 17 | conditions of the GNU General Public License version 2 (GPL) cover the entire combined work. |
|---|
| 18 | |
|---|
| 19 | However, as a special exception, the copyright holders of Mura CMS grant you permission |
|---|
| 20 | to combine Mura CMS with programs or libraries that are released under the GNU Lesser General Public License version 2.1. |
|---|
| 21 | |
|---|
| 22 | In addition, as a special exception, the copyright holders of Mura CMS grant you permission |
|---|
| 23 | to combine Mura CMS with independent software modules that communicate with Mura CMS solely |
|---|
| 24 | through modules packaged as Mura CMS plugins and deployed through the Mura CMS plugin installation API, |
|---|
| 25 | provided that these modules (a) may only modify the /trunk/www/plugins/ directory through the Mura CMS |
|---|
| 26 | plugin installation API, (b) must not alter any default objects in the Mura CMS database |
|---|
| 27 | and (c) must not alter any files in the following directories except in cases where the code contains |
|---|
| 28 | a separately distributed license. |
|---|
| 29 | |
|---|
| 30 | /trunk/www/admin/ |
|---|
| 31 | /trunk/www/tasks/ |
|---|
| 32 | /trunk/www/config/ |
|---|
| 33 | /trunk/www/requirements/mura/ |
|---|
| 34 | |
|---|
| 35 | You may copy and distribute such a combined work under the terms of GPL for Mura CMS, provided that you include |
|---|
| 36 | the source code of that other code when and as the GNU GPL requires distribution of source code. |
|---|
| 37 | |
|---|
| 38 | For clarity, if you create a modified version of Mura CMS, you are not obligated to grant this special exception |
|---|
| 39 | for your modified version; it is your choice whether to do so, or to make such modified version available under |
|---|
| 40 | the GNU General Public License version 2 without this exception. You may, if you choose, apply this exception |
|---|
| 41 | to your own modified versions of Mura CMS. |
|---|
| 42 | ---> |
|---|
| 43 | <cfif application.configBean.getSiteIDInURLS()> |
|---|
| 44 | <cfinclude template="tasks/content/redirect.cfm"> |
|---|
| 45 | <cfelse> |
|---|
| 46 | <cfif len(application.configBean.getStub())> |
|---|
| 47 | <cfinclude template="tasks/content/contentServerRootStub.cfm"> |
|---|
| 48 | <cfelse> |
|---|
| 49 | <cfinclude template="tasks/content/contentServerRoot.cfm"> |
|---|
| 50 | </cfif> |
|---|
| 51 | </cfif> |
|---|