Changes between Version 8 and Version 9 of GSOCWebSetupImplementation
- Timestamp:
- 04/05/11 17:18:55 (14 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
GSOCWebSetupImplementation
v8 v9 142 142 143 143 }}} 144 Handling database conflicts 144 ==== Handling database conflicts ==== 145 145 There should be a list that will keep a list of databse_name and database_types of 2 eden application cannot be same at same time therefore a list of database types and databse names needs to be made 146 146 147 For this we will first have to generate a list paths .We can search for “Copyright: 2010 (c) Sahana Software Foundation” in all the LICENSE files of applications.147 * For this we will first have to generate a list paths .We can search for “Copyright: 2010 (c) Sahana Software Foundation” in all the LICENSE files of applications. 148 148 149 149 Then we will have to search in the list of paths for specific keywords like “deployment_setting.database.database” This can be done using regex command in grep 150 151 {{{ 150 152 151 153 If path(variable) is in the list of paths containing: … … 153 155 Line = subprocess.Popen(command_line); 154 156 157 }}} 158 155 159 Now search the file for deployment_settings.database.db_type .These list will help in validating for the database values. 156 160