10 | | For now we have org.sophie2.author module for Sophie Author edition: |
11 | | * the dependencies for the module are in pom.xml file - dependencies section. |
12 | | * in the package are [source:/trunk/sophie2-platform/modules/org.sophie2.author/src/main/java/org/sophie2/author/Activator.java Activator] and [source:/trunk/sophie2-platform/modules/org.sophie2.author/src/main/java/org/sophie2/author/FakeAuthorMain.java FakeAuthorMain] classes. |
13 | | * !FakeAuthorMain starts our module registry for the modules and calls the old main method. |
14 | | * The Activator implements osgi !BundleActivator and is for starting and stoping the author module. In our case this means starting and stoping the whole Author Application. |
| 6 | Each edition is runnable through: |
| 7 | * Eclipse, using some fake classes that simulate plug-in behavior |
| 8 | * Apache Felix OSGI implementation. |
| 9 | |
| 10 | Every edition has the following structure: |
| 11 | * / - main application catalog |
| 12 | * /modules/ - containes plug-ins(in the form of jar-files or unpacked jar-files) that are/can be used in this edition |
| 13 | * /conf/ - contains plug-ins configuration files and global configuration files |
| 14 | * /log/ - contains application log(s) |
| 15 | * /data/ - contains mutable resources(i.e book templates). |
| 16 | * run-files |
| 17 | |
| 18 | At this time each edition has its own module. It is responsible for loading the correct set of plug-ins. |