Changes between Version 6 and Version 7 of AppVersionNew
- Timestamp:
- May 11, 2011, 8:54:14 PM (14 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
AppVersionNew
v6 v7 1 = update_versions remodel=1 = Creating application versions = 2 2 3 The current app version model has become a complex kludge. 4 This is a proposal for a new design. 3 The create new applications versions: 5 4 6 Directory structure: 5 * Create the directory structure described below 6 to store applications files 7 * From the project's root directory, run '''./bin/update_versions'''. 8 9 == Application directory hierarchy == 10 11 Application versions are stored in a directory hierarchy 12 under '''apps/''' in the project root directory. 13 The hierarchy has the following structure: 14 7 15 {{{ 8 16 apps/ … … 35 43 <file> 36 44 <physical_name>PNAME</physical_name> 37 [ <logical_name>LNAME</logical_name> ]38 45 [ <main_program/> ] 39 46 [ <copy_file/> ] 47 [ <logical_name>LNAME</logical_name> ] 48 [ <url>URL0</url> ] 49 [ <url>URLn</url> ] 40 50 </file> 41 51 ... … … 43 53 }}} 44 54 55 File attributes include: 56 57 * '''physical_name''': the name of the file on disk. 58 * '''main_program''': designates the main program. 59 * '''copy_file''': the file is to be copied into the runtime directory 60 on the client, rather than being linked to. 61 * '''logical_name''': if '''copy_file''' is present, then name of the file 62 in the runtime directory. 63 * '''url''': URLs from which the file can be downloaded. 64 Use this if you want to mirror your executables on separate servers. 65 The executables must be present on the main server, 66 at least while '''update_versions''' is run. 45 67 You only need to list files that have a '''main_program''' or '''copy_file''' attribute, 46 68 or whose logical name is different from its physical name. … … 48 70 If the application has only one file (the main program), 49 71 you don't need a '''version.xml''' file. 72 73 If your application includes executable files other than the main program, 74 make sure that their user execute (u+x) flag is set 75 (relevant for Unix and Mac versions).