Changeset 2550
- Timestamp:
- 07/19/10 16:11:29 (7 weeks ago)
- Location:
- branches/5.2/www
- Files:
-
- 11 modified
-
admin/Application.cfc (modified) (1 diff)
-
admin/view/layouts/compact.cfm (modified) (3 diffs)
-
admin/view/layouts/template.cfm (modified) (2 diffs)
-
admin/view/vArchitecture/ajax/dsp_javascript.cfm (modified) (2 diffs)
-
admin/view/vCategory/ajax/dsp_javascript.cfm (modified) (2 diffs)
-
admin/view/vDashboard/ajax/dsp_javascript.cfm (modified) (2 diffs)
-
admin/view/vEmail_Broadcaster/ajax/dsp_javascript.cfm (modified) (2 diffs)
-
admin/view/vExtend/ajax/dsp_javascript.cfm (modified) (2 diffs)
-
admin/view/vFeed/ajax/dsp_javascript.cfm (modified) (2 diffs)
-
admin/view/vPublicUsers/ajax/dsp_javascript.cfm (modified) (2 diffs)
-
config/appcfc/onRequestStart_include.cfm (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
branches/5.2/www/admin/Application.cfc
r2511 r2550 76 76 77 77 <cfinclude template="../config/appcfc/onRequestStart_include.cfm"> 78 78 79 79 <cfif right(cgi.script_name, Len("index.cfm")) NEQ "index.cfm" and right(cgi.script_name, Len("error.cfm")) NEQ "error.cfm" AND right(cgi.script_name, 3) NEQ "cfc"> 80 80 <cflocation url="index.cfm" addtoken="false"> -
branches/5.2/www/admin/view/layouts/compact.cfm
r2543 r2550 41 41 to your own modified versions of Mura CMS. 42 42 ---> 43 44 43 <cfoutput> 45 44 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> … … 52 51 <meta http-equiv="cache control" content="no-cache, no-store, must-revalidate" /> 53 52 <script src="js/admin.js" type="text/javascript" language="Javascript"></script> 54 <script src="#application.configBean.getContext()#/admin/js/jquery/jquery.js " type="text/javascript"></script>55 <script src="#application.configBean.getContext()#/admin/js/jquery/jquery-ui.js " type="text/javascript"></script>56 <script src="#application.configBean.getContext()#/admin/js/jquery/jquery-ui-i18n.js " type="text/javascript"></script>57 <link href="#application.configBean.getContext()#/admin/css/jquery/default/jquery.ui.all.css " rel="stylesheet" type="text/css" />53 <script src="#application.configBean.getContext()#/admin/js/jquery/jquery.js?coreversion=#application.coreversion#" type="text/javascript"></script> 54 <script src="#application.configBean.getContext()#/admin/js/jquery/jquery-ui.js?coreversion=#application.coreversion#" type="text/javascript"></script> 55 <script src="#application.configBean.getContext()#/admin/js/jquery/jquery-ui-i18n.js?coreversion=#application.coreversion#" type="text/javascript"></script> 56 <link href="#application.configBean.getContext()#/admin/css/jquery/default/jquery.ui.all.css?coreversion=#application.coreversion#" rel="stylesheet" type="text/css" /> 58 57 <script src="js/prototype.js" type="text/javascript" language="Javascript"></script> 59 58 <script type="text/javascript" src="#application.configBean.getContext()#/wysiwyg/fckeditor.js"></script> … … 89 88 </script> 90 89 </cfif> 91 <link href="css/admin.css " rel="stylesheet" type="text/css" />90 <link href="css/admin.css?coreversion=#application.coreversion#" rel="stylesheet" type="text/css" /> 92 91 <!--[if IE]> 93 <link href="css/ie.css " rel="stylesheet" type="text/css" />92 <link href="css/ie.css?coreversion=#application.coreversion#" rel="stylesheet" type="text/css" /> 94 93 <![endif]--> 95 94 <!--[if IE 6]> 96 <link href="css/ie6.cs s" rel="stylesheet" type="text/css" />95 <link href="css/ie6.cs?coreversion=#application.coreversion#" rel="stylesheet" type="text/css" /> 97 96 <![endif]--> 98 97 <!---<cfif myfusebox.originalcircuit eq "cArch" and (myfusebox.originalfuseaction eq "list" or myfusebox.originalfuseaction eq "search") and (attributes.moduleid eq '00000000000000000000000000000000000' or attributes.moduleid eq '')> -
branches/5.2/www/admin/view/layouts/template.cfm
r2543 r2550 131 131 <meta name="robots" content="noindex, nofollow, noarchive" /> 132 132 <meta http-equiv="cache control" content="no-cache, no-store, must-revalidate" /> 133 <script src="#application.configBean.getContext()#/admin/js/jquery/jquery.js " type="text/javascript"></script>134 <script src="#application.configBean.getContext()#/admin/js/jquery/jquery-ui.js " type="text/javascript"></script>135 <script src="#application.configBean.getContext()#/admin/js/jquery/jquery-ui-i18n.js " type="text/javascript"></script>136 <link href="#application.configBean.getContext()#/admin/css/jquery/default/jquery.ui.all.css " rel="stylesheet" type="text/css" />133 <script src="#application.configBean.getContext()#/admin/js/jquery/jquery.js?coreversion=#application.coreversion#" type="text/javascript"></script> 134 <script src="#application.configBean.getContext()#/admin/js/jquery/jquery-ui.js?coreversion=#application.coreversion#" type="text/javascript"></script> 135 <script src="#application.configBean.getContext()#/admin/js/jquery/jquery-ui-i18n.js?coreversion=#application.coreversion#" type="text/javascript"></script> 136 <link href="#application.configBean.getContext()#/admin/css/jquery/default/jquery.ui.all.css?coreversion=#application.coreversion#" rel="stylesheet" type="text/css" /> 137 137 <cfif not attributes.jsLibLoaded and attributes.jsLib eq "prototype"> 138 138 <script src="#application.configBean.getContext()#/admin/js/prototype.js" type="text/javascript" language="Javascript"></script> 139 139 </cfif> 140 <script src="#application.configBean.getContext()#/admin/js/admin.js " type="text/javascript" language="Javascript"></script>140 <script src="#application.configBean.getContext()#/admin/js/admin.js?coreversion=#application.coreversion#" type="text/javascript" language="Javascript"></script> 141 141 <script type="text/javascript" src="#application.configBean.getContext()#/wysiwyg/fckeditor.js"></script> 142 142 #session.dateKey# … … 180 180 181 181 </cfif> 182 <link href="#application.configBean.getContext()#/admin/css/admin.css " rel="stylesheet" type="text/css" />182 <link href="#application.configBean.getContext()#/admin/css/admin.css?coreversion=#application.coreversion#" rel="stylesheet" type="text/css" /> 183 183 <!--[if LTE IE 7]> 184 <link href="#application.configBean.getContext()#/admin/css/ie.css " rel="stylesheet" type="text/css" />184 <link href="#application.configBean.getContext()#/admin/css/ie.css?coreversion=#application.coreversion#" rel="stylesheet" type="text/css" /> 185 185 <![endif]--> 186 186 <cfif myfusebox.originalcircuit eq "cArch" and (myfusebox.originalfuseaction eq "list" or myfusebox.originalfuseaction eq "search") and (attributes.moduleid eq '00000000000000000000000000000000000' or attributes.moduleid eq '')> -
branches/5.2/www/admin/view/vArchitecture/ajax/dsp_javascript.cfm
r2203 r2550 7 7 Mura CMS is distributed in the hope that it will be useful, 8 8 but WITHOUT ANY WARRANTY; without even the implied warranty of 9 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the9 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. ᅵSee the 10 10 GNU General Public License for more details. 11 11 12 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/>.13 along with Mura CMS. ᅵIf not, see <http://www.gnu.org/licenses/>. 14 14 15 15 Linking Mura CMS statically or dynamically with other modules constitutes 16 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.17 conditions of the GNU General Public License version 2 (ᅵGPLᅵ) cover the entire combined work. 18 18 19 19 However, as a special exception, the copyright holders of Mura CMS grant you permission 20 20 to combine Mura CMS with programs or libraries that are released under the GNU Lesser General Public License version 2.1. 21 21 22 In addition, as a special exception, the copyright holders of Mura CMS grant you permission23 to combine Mura CMS with independent software modules that communicate with Mura CMS solely22 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 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 CMS25 provided that these modules (a) may only modify the ᅵ/trunk/www/plugins/ directory through the Mura CMS 26 26 plugin installation API, (b) must not alter any default objects in the Mura CMS database 27 27 and (c) must not alter any files in the following directories except in cases where the code contains … … 38 38 For clarity, if you create a modified version of Mura CMS, you are not obligated to grant this special exception 39 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 exception40 the GNU General Public License version 2 ᅵwithout this exception. ᅵYou may, if you choose, apply this exception 41 41 to your own modified versions of Mura CMS. 42 42 ---> 43 44 <script src="js/architecture.js" type="text/javascript" language="Javascript" ></script> 43 <cfoutput> 44 <script src="js/architecture.js?coreversion=#application.coreversion#" type="text/javascript" language="Javascript" ></script> 45 </cfoutput> 45 46 <cfif myfusebox.originalfuseaction eq 'edit'> 46 47 <script type="text/javascript"> -
branches/5.2/www/admin/view/vCategory/ajax/dsp_javascript.cfm
r2203 r2550 7 7 Mura CMS is distributed in the hope that it will be useful, 8 8 but WITHOUT ANY WARRANTY; without even the implied warranty of 9 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the9 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. ᅵSee the 10 10 GNU General Public License for more details. 11 11 12 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/>.13 along with Mura CMS. ᅵIf not, see <http://www.gnu.org/licenses/>. 14 14 15 15 Linking Mura CMS statically or dynamically with other modules constitutes 16 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.17 conditions of the GNU General Public License version 2 (ᅵGPLᅵ) cover the entire combined work. 18 18 19 19 However, as a special exception, the copyright holders of Mura CMS grant you permission 20 20 to combine Mura CMS with programs or libraries that are released under the GNU Lesser General Public License version 2.1. 21 21 22 In addition, as a special exception, the copyright holders of Mura CMS grant you permission23 to combine Mura CMS with independent software modules that communicate with Mura CMS solely22 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 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 CMS25 provided that these modules (a) may only modify the ᅵ/trunk/www/plugins/ directory through the Mura CMS 26 26 plugin installation API, (b) must not alter any default objects in the Mura CMS database 27 27 and (c) must not alter any files in the following directories except in cases where the code contains … … 38 38 For clarity, if you create a modified version of Mura CMS, you are not obligated to grant this special exception 39 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 exception40 the GNU General Public License version 2 ᅵwithout this exception. ᅵYou may, if you choose, apply this exception 41 41 to your own modified versions of Mura CMS. 42 42 ---> 43 <script src="js/category.js" type="text/javascript" language="Javascript"> 43 <cfoutput> 44 <script src="js/category.js?coreversion=#application.coreversion#" type="text/javascript" language="Javascript"> 45 </cfoutput> 44 46 <!-- 45 47 //--> -
branches/5.2/www/admin/view/vDashboard/ajax/dsp_javascript.cfm
r130 r2550 7 7 Mura CMS is distributed in the hope that it will be useful, 8 8 but WITHOUT ANY WARRANTY; without even the implied warranty of 9 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the9 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. ᅵSee the 10 10 GNU General Public License for more details. 11 11 12 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/>.13 along with Mura CMS. ᅵIf not, see <http://www.gnu.org/licenses/>. 14 14 15 15 Linking Mura CMS statically or dynamically with other modules constitutes 16 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.17 conditions of the GNU General Public License version 2 (ᅵGPLᅵ) cover the entire combined work. 18 18 19 19 However, as a special exception, the copyright holders of Mura CMS grant you permission 20 20 to combine Mura CMS with programs or libraries that are released under the GNU Lesser General Public License version 2.1. 21 21 22 In addition, as a special exception, the copyright holders of Mura CMS grant you permission23 to combine Mura CMS with independent software modules that communicate with Mura CMS solely22 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 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 CMS25 provided that these modules (a) may only modify the ᅵ/trunk/www/plugins/ directory through the Mura CMS 26 26 plugin installation API, (b) must not alter any default objects in the Mura CMS database 27 27 and (c) must not alter any files in the following directories except in cases where the code contains … … 38 38 For clarity, if you create a modified version of Mura CMS, you are not obligated to grant this special exception 39 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 exception40 the GNU General Public License version 2 ᅵwithout this exception. ᅵYou may, if you choose, apply this exception 41 41 to your own modified versions of Mura CMS. 42 42 ---> 43 44 <script src="js/searchParams.js" type="text/javascript" language="Javascript" ></script> 45 <script src="js/dashboard.js" type="text/javascript" language="Javascript" ></script> 43 <cfoutput> 44 <script src="js/searchParams.js?coreversion=#application.coreversion#" type="text/javascript" language="Javascript" ></script> 45 <script src="js/dashboard.js?coreversion=#application.coreversion#" type="text/javascript" language="Javascript" ></script> 46 </cfoutput> -
branches/5.2/www/admin/view/vEmail_Broadcaster/ajax/dsp_javascript.cfm
r130 r2550 7 7 Mura CMS is distributed in the hope that it will be useful, 8 8 but WITHOUT ANY WARRANTY; without even the implied warranty of 9 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the9 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. ᅵSee the 10 10 GNU General Public License for more details. 11 11 12 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/>.13 along with Mura CMS. ᅵIf not, see <http://www.gnu.org/licenses/>. 14 14 15 15 Linking Mura CMS statically or dynamically with other modules constitutes 16 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.17 conditions of the GNU General Public License version 2 (ᅵGPLᅵ) cover the entire combined work. 18 18 19 19 However, as a special exception, the copyright holders of Mura CMS grant you permission 20 20 to combine Mura CMS with programs or libraries that are released under the GNU Lesser General Public License version 2.1. 21 21 22 In addition, as a special exception, the copyright holders of Mura CMS grant you permission23 to combine Mura CMS with independent software modules that communicate with Mura CMS solely22 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 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 CMS25 provided that these modules (a) may only modify the ᅵ/trunk/www/plugins/ directory through the Mura CMS 26 26 plugin installation API, (b) must not alter any default objects in the Mura CMS database 27 27 and (c) must not alter any files in the following directories except in cases where the code contains … … 38 38 For clarity, if you create a modified version of Mura CMS, you are not obligated to grant this special exception 39 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 exception40 the GNU General Public License version 2 ᅵwithout this exception. ᅵYou may, if you choose, apply this exception 41 41 to your own modified versions of Mura CMS. 42 42 ---> 43 44 <script src="js/email.js" type="text/javascript" language="Javascript" ></script> 43 <cfoutput> 44 <script src="js/email.js?coreversion=#application.coreversion#" type="text/javascript" language="Javascript" ></script> 45 </cfoutput> -
branches/5.2/www/admin/view/vExtend/ajax/dsp_javascript.cfm
r2203 r2550 7 7 Mura CMS is distributed in the hope that it will be useful, 8 8 but WITHOUT ANY WARRANTY; without even the implied warranty of 9 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the9 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. ᅵSee the 10 10 GNU General Public License for more details. 11 11 12 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/>.13 along with Mura CMS. ᅵIf not, see <http://www.gnu.org/licenses/>. 14 14 15 15 Linking Mura CMS statically or dynamically with other modules constitutes 16 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.17 conditions of the GNU General Public License version 2 (ᅵGPLᅵ) cover the entire combined work. 18 18 19 19 However, as a special exception, the copyright holders of Mura CMS grant you permission 20 20 to combine Mura CMS with programs or libraries that are released under the GNU Lesser General Public License version 2.1. 21 21 22 In addition, as a special exception, the copyright holders of Mura CMS grant you permission23 to combine Mura CMS with independent software modules that communicate with Mura CMS solely22 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 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 CMS25 provided that these modules (a) may only modify the ᅵ/trunk/www/plugins/ directory through the Mura CMS 26 26 plugin installation API, (b) must not alter any default objects in the Mura CMS database 27 27 and (c) must not alter any files in the following directories except in cases where the code contains … … 38 38 For clarity, if you create a modified version of Mura CMS, you are not obligated to grant this special exception 39 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 exception40 the GNU General Public License version 2 ᅵwithout this exception. ᅵYou may, if you choose, apply this exception 41 41 to your own modified versions of Mura CMS. 42 42 ---> 43 <script src="js/extend.js" type="text/javascript" language="Javascript"></script> 43 <cfoutput> 44 <script src="js/extend.js?coreversion=#application.coreversion#" type="text/javascript" language="Javascript"></script> 45 </cfoutput> -
branches/5.2/www/admin/view/vFeed/ajax/dsp_javascript.cfm
r130 r2550 7 7 Mura CMS is distributed in the hope that it will be useful, 8 8 but WITHOUT ANY WARRANTY; without even the implied warranty of 9 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the9 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. ᅵSee the 10 10 GNU General Public License for more details. 11 11 12 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/>.13 along with Mura CMS. ᅵIf not, see <http://www.gnu.org/licenses/>. 14 14 15 15 Linking Mura CMS statically or dynamically with other modules constitutes 16 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.17 conditions of the GNU General Public License version 2 (ᅵGPLᅵ) cover the entire combined work. 18 18 19 19 However, as a special exception, the copyright holders of Mura CMS grant you permission 20 20 to combine Mura CMS with programs or libraries that are released under the GNU Lesser General Public License version 2.1. 21 21 22 In addition, as a special exception, the copyright holders of Mura CMS grant you permission23 to combine Mura CMS with independent software modules that communicate with Mura CMS solely22 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 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 CMS25 provided that these modules (a) may only modify the ᅵ/trunk/www/plugins/ directory through the Mura CMS 26 26 plugin installation API, (b) must not alter any default objects in the Mura CMS database 27 27 and (c) must not alter any files in the following directories except in cases where the code contains … … 38 38 For clarity, if you create a modified version of Mura CMS, you are not obligated to grant this special exception 39 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 exception40 the GNU General Public License version 2 ᅵwithout this exception. ᅵYou may, if you choose, apply this exception 41 41 to your own modified versions of Mura CMS. 42 42 ---> 43 44 <script src="js/feed.js" type="text/javascript" language="javascript1.2" ></script> 45 <script src="js/searchParams.js" type="text/javascript" language="Javascript" ></script> 43 <cfoutput> 44 <script src="js/feed.js?coreversion=#application.coreversion#" type="text/javascript" language="javascript1.2" ></script> 45 <script src="js/searchParams.js?coreversion=#application.coreversion#" type="text/javascript" language="Javascript" ></script> 46 </cfoutput> -
branches/5.2/www/admin/view/vPublicUsers/ajax/dsp_javascript.cfm
r130 r2550 7 7 Mura CMS is distributed in the hope that it will be useful, 8 8 but WITHOUT ANY WARRANTY; without even the implied warranty of 9 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the9 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. ᅵSee the 10 10 GNU General Public License for more details. 11 11 12 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/>.13 along with Mura CMS. ᅵIf not, see <http://www.gnu.org/licenses/>. 14 14 15 15 Linking Mura CMS statically or dynamically with other modules constitutes 16 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.17 conditions of the GNU General Public License version 2 (ᅵGPLᅵ) cover the entire combined work. 18 18 19 19 However, as a special exception, the copyright holders of Mura CMS grant you permission 20 20 to combine Mura CMS with programs or libraries that are released under the GNU Lesser General Public License version 2.1. 21 21 22 In addition, as a special exception, the copyright holders of Mura CMS grant you permission23 to combine Mura CMS with independent software modules that communicate with Mura CMS solely22 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 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 CMS25 provided that these modules (a) may only modify the ᅵ/trunk/www/plugins/ directory through the Mura CMS 26 26 plugin installation API, (b) must not alter any default objects in the Mura CMS database 27 27 and (c) must not alter any files in the following directories except in cases where the code contains … … 38 38 For clarity, if you create a modified version of Mura CMS, you are not obligated to grant this special exception 39 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 exception40 the GNU General Public License version 2 ᅵwithout this exception. ᅵYou may, if you choose, apply this exception 41 41 to your own modified versions of Mura CMS. 42 42 ---> 43 44 <script src="js/searchParams.js" type="text/javascript" language="Javascript" ></script> 43 <cfoutput> 44 <script src="js/searchParams.js?coreversion=#application.coreversion#" type="text/javascript" language="Javascript" ></script> 45 </cfoutput> -
branches/5.2/www/config/appcfc/onRequestStart_include.cfm
r2479 r2550 125 125 </cfif> 126 126 <cfset application.pluginManager.executeScripts('onGlobalRequestStart')> 127 <cfparam name="application.coreversion" default="#application.serviceFactory.getBean('autoUpdater').getCurrentVersion()#"> 128
