init
This commit is contained in:
76
jssource/src_files/install/dbConfig.js
Normal file
76
jssource/src_files/install/dbConfig.js
Normal file
@@ -0,0 +1,76 @@
|
||||
/*********************************************************************************
|
||||
* SugarCRM is a customer relationship management program developed by
|
||||
* SugarCRM, Inc. Copyright (C) 2004-2010 SugarCRM Inc.
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or modify it under
|
||||
* the terms of the GNU Affero General Public License version 3 as published by the
|
||||
* Free Software Foundation with the addition of the following permission added
|
||||
* to Section 15 as permitted in Section 7(a): FOR ANY PART OF THE COVERED WORK
|
||||
* IN WHICH THE COPYRIGHT IS OWNED BY SUGARCRM, SUGARCRM DISCLAIMS THE WARRANTY
|
||||
* OF NON INFRINGEMENT OF THIRD PARTY RIGHTS.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful, but WITHOUT
|
||||
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
|
||||
* FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for more
|
||||
* details.
|
||||
*
|
||||
* You should have received a copy of the GNU Affero General Public License along with
|
||||
* this program; if not, see http://www.gnu.org/licenses or write to the Free
|
||||
* Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
|
||||
* 02110-1301 USA.
|
||||
*
|
||||
* You can contact SugarCRM, Inc. headquarters at 10050 North Wolfe Road,
|
||||
* SW2-130, Cupertino, CA 95014, USA. or at email address contact@sugarcrm.com.
|
||||
*
|
||||
* The interactive user interfaces in modified source and object code versions
|
||||
* of this program must display Appropriate Legal Notices, as required under
|
||||
* Section 5 of the GNU Affero General Public License version 3.
|
||||
*
|
||||
* In accordance with Section 7(b) of the GNU Affero General Public License version 3,
|
||||
* these Appropriate Legal Notices must retain the display of the "Powered by
|
||||
* SugarCRM" logo. If the display of the logo is not reasonably feasible for
|
||||
* technical reasons, the Appropriate Legal Notices must display the words
|
||||
* "Powered by SugarCRM".
|
||||
********************************************************************************/
|
||||
|
||||
|
||||
function togglePasswordRetypeRequired() {
|
||||
var theForm = document.forms[0];
|
||||
var elem = document.getElementById('password_retype_required');
|
||||
|
||||
if( theForm.setup_db_create_sugarsales_user.checked ){
|
||||
elem.style.display = '';
|
||||
// theForm.setup_db_sugarsales_user.focus();
|
||||
theForm.setup_db_username_is_privileged.checked = "";
|
||||
theForm.setup_db_username_is_privileged.disabled = "disabled";
|
||||
toggleUsernameIsPrivileged();
|
||||
}
|
||||
else {
|
||||
elem.style.display = 'none';
|
||||
theForm.setup_db_username_is_privileged.disabled = "";
|
||||
}
|
||||
}
|
||||
|
||||
function toggleDropTables(){
|
||||
var theForm = document.forms[0];
|
||||
|
||||
if( theForm.setup_db_create_database.checked ){
|
||||
theForm.setup_db_drop_tables.checked = '';
|
||||
theForm.setup_db_drop_tables.disabled = "disabled";
|
||||
}
|
||||
else {
|
||||
theForm.setup_db_drop_tables.disabled = '';
|
||||
}
|
||||
}
|
||||
|
||||
function toggleUsernameIsPrivileged(){
|
||||
var theForm = document.forms[0];
|
||||
var elem = document.getElementById('privileged_user_info');
|
||||
|
||||
if( theForm.setup_db_username_is_privileged.checked ){
|
||||
elem.style.display = 'none';
|
||||
}
|
||||
else {
|
||||
elem.style.display = '';
|
||||
}
|
||||
}
|
||||
47
jssource/src_files/install/installCommon.js
Normal file
47
jssource/src_files/install/installCommon.js
Normal file
@@ -0,0 +1,47 @@
|
||||
/*********************************************************************************
|
||||
* SugarCRM is a customer relationship management program developed by
|
||||
* SugarCRM, Inc. Copyright (C) 2004-2010 SugarCRM Inc.
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or modify it under
|
||||
* the terms of the GNU Affero General Public License version 3 as published by the
|
||||
* Free Software Foundation with the addition of the following permission added
|
||||
* to Section 15 as permitted in Section 7(a): FOR ANY PART OF THE COVERED WORK
|
||||
* IN WHICH THE COPYRIGHT IS OWNED BY SUGARCRM, SUGARCRM DISCLAIMS THE WARRANTY
|
||||
* OF NON INFRINGEMENT OF THIRD PARTY RIGHTS.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful, but WITHOUT
|
||||
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
|
||||
* FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for more
|
||||
* details.
|
||||
*
|
||||
* You should have received a copy of the GNU Affero General Public License along with
|
||||
* this program; if not, see http://www.gnu.org/licenses or write to the Free
|
||||
* Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
|
||||
* 02110-1301 USA.
|
||||
*
|
||||
* You can contact SugarCRM, Inc. headquarters at 10050 North Wolfe Road,
|
||||
* SW2-130, Cupertino, CA 95014, USA. or at email address contact@sugarcrm.com.
|
||||
*
|
||||
* The interactive user interfaces in modified source and object code versions
|
||||
* of this program must display Appropriate Legal Notices, as required under
|
||||
* Section 5 of the GNU Affero General Public License version 3.
|
||||
*
|
||||
* In accordance with Section 7(b) of the GNU Affero General Public License version 3,
|
||||
* these Appropriate Legal Notices must retain the display of the "Powered by
|
||||
* SugarCRM" logo. If the display of the logo is not reasonably feasible for
|
||||
* technical reasons, the Appropriate Legal Notices must display the words
|
||||
* "Powered by SugarCRM".
|
||||
********************************************************************************/
|
||||
|
||||
|
||||
function showHelp(step)
|
||||
{
|
||||
url = 'http://www.sugarcrm.com/forums/';
|
||||
name = 'helpWindowPopup';
|
||||
window.open(url,name);
|
||||
}
|
||||
|
||||
function setFocus() {
|
||||
focus = document.getElementById('defaultFocus');
|
||||
focus.focus();
|
||||
}
|
||||
61
jssource/src_files/install/license.js
Normal file
61
jssource/src_files/install/license.js
Normal file
@@ -0,0 +1,61 @@
|
||||
/*********************************************************************************
|
||||
* SugarCRM is a customer relationship management program developed by
|
||||
* SugarCRM, Inc. Copyright (C) 2004-2010 SugarCRM Inc.
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or modify it under
|
||||
* the terms of the GNU Affero General Public License version 3 as published by the
|
||||
* Free Software Foundation with the addition of the following permission added
|
||||
* to Section 15 as permitted in Section 7(a): FOR ANY PART OF THE COVERED WORK
|
||||
* IN WHICH THE COPYRIGHT IS OWNED BY SUGARCRM, SUGARCRM DISCLAIMS THE WARRANTY
|
||||
* OF NON INFRINGEMENT OF THIRD PARTY RIGHTS.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful, but WITHOUT
|
||||
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
|
||||
* FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for more
|
||||
* details.
|
||||
*
|
||||
* You should have received a copy of the GNU Affero General Public License along with
|
||||
* this program; if not, see http://www.gnu.org/licenses or write to the Free
|
||||
* Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
|
||||
* 02110-1301 USA.
|
||||
*
|
||||
* You can contact SugarCRM, Inc. headquarters at 10050 North Wolfe Road,
|
||||
* SW2-130, Cupertino, CA 95014, USA. or at email address contact@sugarcrm.com.
|
||||
*
|
||||
* The interactive user interfaces in modified source and object code versions
|
||||
* of this program must display Appropriate Legal Notices, as required under
|
||||
* Section 5 of the GNU Affero General Public License version 3.
|
||||
*
|
||||
* In accordance with Section 7(b) of the GNU Affero General Public License version 3,
|
||||
* these Appropriate Legal Notices must retain the display of the "Powered by
|
||||
* SugarCRM" logo. If the display of the logo is not reasonably feasible for
|
||||
* technical reasons, the Appropriate Legal Notices must display the words
|
||||
* "Powered by SugarCRM".
|
||||
********************************************************************************/
|
||||
|
||||
|
||||
function toggleLicenseAccept(){
|
||||
var theForm = document.forms[0];
|
||||
|
||||
if( theForm.setup_license_accept.checked ){
|
||||
theForm.setup_license_accept.checked = "";
|
||||
}
|
||||
else {
|
||||
theForm.setup_license_accept.checked = "yes";
|
||||
}
|
||||
|
||||
toggleNextButton();
|
||||
}
|
||||
|
||||
function toggleNextButton(){
|
||||
var theForm = document.forms[0];
|
||||
var nextButton = document.getElementById( "button_next" );
|
||||
|
||||
if( theForm.setup_license_accept.checked ){
|
||||
nextButton.disabled = '';
|
||||
nextButton.focus();
|
||||
}
|
||||
else {
|
||||
nextButton.disabled = "disabled";
|
||||
}
|
||||
}
|
||||
40
jssource/src_files/install/oc_convert.js
Normal file
40
jssource/src_files/install/oc_convert.js
Normal file
@@ -0,0 +1,40 @@
|
||||
/*********************************************************************************
|
||||
* SugarCRM is a customer relationship management program developed by
|
||||
* SugarCRM, Inc. Copyright (C) 2004-2010 SugarCRM Inc.
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or modify it under
|
||||
* the terms of the GNU Affero General Public License version 3 as published by the
|
||||
* Free Software Foundation with the addition of the following permission added
|
||||
* to Section 15 as permitted in Section 7(a): FOR ANY PART OF THE COVERED WORK
|
||||
* IN WHICH THE COPYRIGHT IS OWNED BY SUGARCRM, SUGARCRM DISCLAIMS THE WARRANTY
|
||||
* OF NON INFRINGEMENT OF THIRD PARTY RIGHTS.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful, but WITHOUT
|
||||
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
|
||||
* FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for more
|
||||
* details.
|
||||
*
|
||||
* You should have received a copy of the GNU Affero General Public License along with
|
||||
* this program; if not, see http://www.gnu.org/licenses or write to the Free
|
||||
* Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
|
||||
* 02110-1301 USA.
|
||||
*
|
||||
* You can contact SugarCRM, Inc. headquarters at 10050 North Wolfe Road,
|
||||
* SW2-130, Cupertino, CA 95014, USA. or at email address contact@sugarcrm.com.
|
||||
*
|
||||
* The interactive user interfaces in modified source and object code versions
|
||||
* of this program must display Appropriate Legal Notices, as required under
|
||||
* Section 5 of the GNU Affero General Public License version 3.
|
||||
*
|
||||
* In accordance with Section 7(b) of the GNU Affero General Public License version 3,
|
||||
* these Appropriate Legal Notices must retain the display of the "Powered by
|
||||
* SugarCRM" logo. If the display of the logo is not reasonably feasible for
|
||||
* technical reasons, the Appropriate Legal Notices must display the words
|
||||
* "Powered by SugarCRM".
|
||||
********************************************************************************/
|
||||
|
||||
|
||||
function toggleIsFirstTime(){
|
||||
var theForm = document.forms[0];
|
||||
theForm.first_time.value = "false";
|
||||
}
|
||||
50
jssource/src_files/install/oc_install.js
Normal file
50
jssource/src_files/install/oc_install.js
Normal file
@@ -0,0 +1,50 @@
|
||||
/*********************************************************************************
|
||||
* SugarCRM is a customer relationship management program developed by
|
||||
* SugarCRM, Inc. Copyright (C) 2004-2010 SugarCRM Inc.
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or modify it under
|
||||
* the terms of the GNU Affero General Public License version 3 as published by the
|
||||
* Free Software Foundation with the addition of the following permission added
|
||||
* to Section 15 as permitted in Section 7(a): FOR ANY PART OF THE COVERED WORK
|
||||
* IN WHICH THE COPYRIGHT IS OWNED BY SUGARCRM, SUGARCRM DISCLAIMS THE WARRANTY
|
||||
* OF NON INFRINGEMENT OF THIRD PARTY RIGHTS.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful, but WITHOUT
|
||||
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
|
||||
* FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for more
|
||||
* details.
|
||||
*
|
||||
* You should have received a copy of the GNU Affero General Public License along with
|
||||
* this program; if not, see http://www.gnu.org/licenses or write to the Free
|
||||
* Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
|
||||
* 02110-1301 USA.
|
||||
*
|
||||
* You can contact SugarCRM, Inc. headquarters at 10050 North Wolfe Road,
|
||||
* SW2-130, Cupertino, CA 95014, USA. or at email address contact@sugarcrm.com.
|
||||
*
|
||||
* The interactive user interfaces in modified source and object code versions
|
||||
* of this program must display Appropriate Legal Notices, as required under
|
||||
* Section 5 of the GNU Affero General Public License version 3.
|
||||
*
|
||||
* In accordance with Section 7(b) of the GNU Affero General Public License version 3,
|
||||
* these Appropriate Legal Notices must retain the display of the "Powered by
|
||||
* SugarCRM" logo. If the display of the logo is not reasonably feasible for
|
||||
* technical reasons, the Appropriate Legal Notices must display the words
|
||||
* "Powered by SugarCRM".
|
||||
********************************************************************************/
|
||||
|
||||
|
||||
function toggleOfflineClientInstallation(){
|
||||
var theForm = document.forms[0];
|
||||
|
||||
if(!theForm.oc_install.checked ){
|
||||
theForm.oc_server_url.disabled = "disabled";
|
||||
theForm.oc_username.disabled = "disabled";
|
||||
theForm.oc_password.disabled = "disabled";
|
||||
}
|
||||
else {
|
||||
theForm.oc_server_url.disabled = '';
|
||||
theForm.oc_username.disabled = '';
|
||||
theForm.oc_password.disabled = '';
|
||||
}
|
||||
}
|
||||
82
jssource/src_files/install/register.js
Normal file
82
jssource/src_files/install/register.js
Normal file
@@ -0,0 +1,82 @@
|
||||
/*********************************************************************************
|
||||
* SugarCRM is a customer relationship management program developed by
|
||||
* SugarCRM, Inc. Copyright (C) 2004-2010 SugarCRM Inc.
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or modify it under
|
||||
* the terms of the GNU Affero General Public License version 3 as published by the
|
||||
* Free Software Foundation with the addition of the following permission added
|
||||
* to Section 15 as permitted in Section 7(a): FOR ANY PART OF THE COVERED WORK
|
||||
* IN WHICH THE COPYRIGHT IS OWNED BY SUGARCRM, SUGARCRM DISCLAIMS THE WARRANTY
|
||||
* OF NON INFRINGEMENT OF THIRD PARTY RIGHTS.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful, but WITHOUT
|
||||
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
|
||||
* FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for more
|
||||
* details.
|
||||
*
|
||||
* You should have received a copy of the GNU Affero General Public License along with
|
||||
* this program; if not, see http://www.gnu.org/licenses or write to the Free
|
||||
* Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
|
||||
* 02110-1301 USA.
|
||||
*
|
||||
* You can contact SugarCRM, Inc. headquarters at 10050 North Wolfe Road,
|
||||
* SW2-130, Cupertino, CA 95014, USA. or at email address contact@sugarcrm.com.
|
||||
*
|
||||
* The interactive user interfaces in modified source and object code versions
|
||||
* of this program must display Appropriate Legal Notices, as required under
|
||||
* Section 5 of the GNU Affero General Public License version 3.
|
||||
*
|
||||
* In accordance with Section 7(b) of the GNU Affero General Public License version 3,
|
||||
* these Appropriate Legal Notices must retain the display of the "Powered by
|
||||
* SugarCRM" logo. If the display of the logo is not reasonably feasible for
|
||||
* technical reasons, the Appropriate Legal Notices must display the words
|
||||
* "Powered by SugarCRM".
|
||||
********************************************************************************/
|
||||
|
||||
|
||||
function submitbutton()
|
||||
{
|
||||
var form = document.mosForm;
|
||||
var r = new RegExp("[^0-9A-Za-z]", "i");
|
||||
|
||||
if (form.email1.value != "")
|
||||
{
|
||||
var myString = form.email1.value;
|
||||
var pattern = /(\W)|(_)/g;
|
||||
var adate = new Date();
|
||||
var ms = adate.getMilliseconds();
|
||||
var sec = adate.getSeconds();
|
||||
var mins = adate.getMinutes();
|
||||
ms = ms.toString();
|
||||
sec = sec.toString();
|
||||
mins = mins.toString();
|
||||
newdate = ms + sec + mins;
|
||||
|
||||
var newString = myString.replace(pattern,"");
|
||||
newString = newString + newdate;
|
||||
//form.username.value = newString;
|
||||
//form.password.value = newString;
|
||||
//form.password2.value = newString;
|
||||
}
|
||||
|
||||
// do field validation
|
||||
if (form.name.value == "")
|
||||
{
|
||||
form.name.focus();
|
||||
alert( "Please provide your name" );
|
||||
return false;
|
||||
}
|
||||
else if (form.email1.value == "")
|
||||
{
|
||||
form.email1.focus();
|
||||
alert( "Please provide your email address" );
|
||||
return false;
|
||||
}
|
||||
else
|
||||
{
|
||||
form.submit();
|
||||
}
|
||||
|
||||
document.appform.submit();
|
||||
window.focus();
|
||||
}
|
||||
92
jssource/src_files/install/siteConfig.js
Normal file
92
jssource/src_files/install/siteConfig.js
Normal file
@@ -0,0 +1,92 @@
|
||||
/*********************************************************************************
|
||||
* SugarCRM is a customer relationship management program developed by
|
||||
* SugarCRM, Inc. Copyright (C) 2004-2010 SugarCRM Inc.
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or modify it under
|
||||
* the terms of the GNU Affero General Public License version 3 as published by the
|
||||
* Free Software Foundation with the addition of the following permission added
|
||||
* to Section 15 as permitted in Section 7(a): FOR ANY PART OF THE COVERED WORK
|
||||
* IN WHICH THE COPYRIGHT IS OWNED BY SUGARCRM, SUGARCRM DISCLAIMS THE WARRANTY
|
||||
* OF NON INFRINGEMENT OF THIRD PARTY RIGHTS.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful, but WITHOUT
|
||||
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
|
||||
* FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for more
|
||||
* details.
|
||||
*
|
||||
* You should have received a copy of the GNU Affero General Public License along with
|
||||
* this program; if not, see http://www.gnu.org/licenses or write to the Free
|
||||
* Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
|
||||
* 02110-1301 USA.
|
||||
*
|
||||
* You can contact SugarCRM, Inc. headquarters at 10050 North Wolfe Road,
|
||||
* SW2-130, Cupertino, CA 95014, USA. or at email address contact@sugarcrm.com.
|
||||
*
|
||||
* The interactive user interfaces in modified source and object code versions
|
||||
* of this program must display Appropriate Legal Notices, as required under
|
||||
* Section 5 of the GNU Affero General Public License version 3.
|
||||
*
|
||||
* In accordance with Section 7(b) of the GNU Affero General Public License version 3,
|
||||
* these Appropriate Legal Notices must retain the display of the "Powered by
|
||||
* SugarCRM" logo. If the display of the logo is not reasonably feasible for
|
||||
* technical reasons, the Appropriate Legal Notices must display the words
|
||||
* "Powered by SugarCRM".
|
||||
********************************************************************************/
|
||||
|
||||
|
||||
function toggleSiteDefaults(){
|
||||
var theForm = document.forms[0];
|
||||
var elem = document.getElementById('setup_site_session');
|
||||
|
||||
if( theForm.setup_site_defaults.checked ){
|
||||
document.getElementById('setup_site_session_section_pre').style.display = 'none';
|
||||
document.getElementById('setup_site_session_section').style.display = 'none';
|
||||
document.getElementById('setup_site_log_dir_pre').style.display = 'none';
|
||||
document.getElementById('setup_site_log_dir').style.display = 'none';
|
||||
document.getElementById('setup_site_guid_section_pre').style.display = 'none';
|
||||
document.getElementById('setup_site_guid_section').style.display = 'none';
|
||||
}
|
||||
else {
|
||||
document.getElementById('setup_site_session_section_pre').style.display = '';
|
||||
document.getElementById('setup_site_log_dir_pre').style.display = '';
|
||||
document.getElementById('setup_site_guid_section_pre').style.display = '';
|
||||
toggleSession();
|
||||
toggleGUID();
|
||||
}
|
||||
}
|
||||
|
||||
function toggleSession(){
|
||||
var theForm = document.forms[0];
|
||||
var elem = document.getElementById('setup_site_session_section');
|
||||
|
||||
if( theForm.setup_site_custom_session_path.checked ){
|
||||
elem.style.display = '';
|
||||
}
|
||||
else {
|
||||
elem.style.display = 'none';
|
||||
}
|
||||
}
|
||||
|
||||
function toggleLogDir(){
|
||||
var theForm = document.forms[0];
|
||||
var elem = document.getElementById('setup_site_log_dir');
|
||||
|
||||
if( theForm.setup_site_custom_log_dir.checked ){
|
||||
elem.style.display = '';
|
||||
}
|
||||
else {
|
||||
elem.style.display = 'none';
|
||||
}
|
||||
}
|
||||
|
||||
function toggleGUID(){
|
||||
var theForm = document.forms[0];
|
||||
var elem = document.getElementById('setup_site_guid_section');
|
||||
|
||||
if( theForm.setup_site_specify_guid.checked ){
|
||||
elem.style.display = '';
|
||||
}
|
||||
else {
|
||||
elem.style.display = 'none';
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user