application/ship-simu/templates/de/game/building/.htaccess -text
application/ship-simu/templates/de/game/building/base_building.xml -text
application/ship-simu/templates/de/game/company/.htaccess -text
+application/ship-simu/templates/de/game/container/.htaccess -text
+application/ship-simu/templates/de/game/container/base_container.xml -text
application/ship-simu/templates/de/game/contract/.htaccess -text
application/ship-simu/templates/de/game/contract/base_contract.xml -text
application/ship-simu/templates/de/game/merchant/.htaccess -text
application/ship-simu/templates/de/game/types/contract_types.xml -text
application/ship-simu/templates/de/game/types/merchant_types.xml -text
application/ship-simu/templates/de/game/types/owner_occupants.xml -text
+application/ship-simu/templates/de/game/types/ship_types.xml -text
application/ship-simu/templates/de/game/types/signer_types.xml -text
application/ship-simu/templates/de/game/types/technology_types.xml -text
application/ship-simu/templates/de/html/.htaccess -text
--- /dev/null
+Deny from all
--- /dev/null
+<?xml version="1.0" encoding="UTF-8" ?>
+<!--
+A general container template.
+
+@author Roland Haeder <webmaster@ship-simu.org>
+@version 0.0.0
+@copyright Copyright (c) 2007, 2008 Roland Haeder, 2009 Ship-Simu Developer Team
+@license GNU GPL 3.0 or any newer version
+@link http://www.ship-simu.org
+
+This program is free software: you can redistribute it and/or modify
+it under the terms of the GNU General Public License as published by
+the Free Software Foundation, either version 3 of the License, or
+(at your option) any later version.
+
+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 General Public License for more details.
+
+You should have received a copy of the GNU General Public License
+along with this program. If not, see <http://www.gnu.org/licenses/>
+//-->
+<container>
+ <!-- The owner of the container, this should be a company, //-->
+ <owner>
+ <company id="{?owner_id?}" />
+ </owner>
+ <!-- The sender of the container, this should be a company and must not be
+ the owner. //-->
+ <sender>
+ <company id="{?sender_id?}" />
+ </sender>
+ <!-- The recipient of the container, this should be a company and can be the
+ owner. //-->
+ <recipient>
+ <company id="{?recipient_id?}" />
+ </recipient>
+ <!-- The transported content inside of the container. This can be more than one item. //-->
+ <content-list>
+ <!-- A single content of the container which should be transportated. //-->
+ <content>
+ <id>{?content_id?}</id>
+ <type>{?content_type?}</type>
+ <amount>{?content_amount?}</amount>
+ </content>
+ </content-list>
+ <!-- A system, freezer or colder or something else, which maintains a
+ constant temperature. This is useful for biological content like
+ fruits. But it is optional. //-->
+ <maintenance-system>
+ <!-- @TODO Find something for this empty tag. //-->
+ </maintenance-system>
+</container>
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>
//-->
-<contract-list>
+<contract-type-list>
<!-- A construction contract, possible signers: Construction company, customer, creditor //-->
<contract-type type="construction_contract" max-signers="3">
<!-- All valid signer types for this contract //-->
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>
//-->
-<owner-occupants>
-</owner-occupants>
+<owner-occupant-type-list>
+</owner-occupants-type-list>
--- /dev/null
+<?xml version="1.0" encoding="UTF-8" ?>
+<!--
+All known and valid types of ships.
+
+@author Roland Haeder <webmaster@ship-simu.org>
+@version 0.0.0
+@copyright Copyright (c) 2007, 2008 Roland Haeder, 2009 Ship-Simu Developer Team
+@license GNU GPL 3.0 or any newer version
+@link http://www.ship-simu.org
+@todo This is a very simmple list, extend it.
+
+This program is free software: you can redistribute it and/or modify
+it under the terms of the GNU General Public License as published by
+the Free Software Foundation, either version 3 of the License, or
+(at your option) any later version.
+
+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 General Public License for more details.
+
+You should have received a copy of the GNU General Public License
+along with this program. If not, see <http://www.gnu.org/licenses/>
+//-->
+<ship-type-list>
+ <!-- A small ship for passengers used in large habors and cities. //-->
+ <ship-type type="farry" />
+ <!-- Medium to large passenger ships, used to transportate passengers, their
+ cars and trucks or trains on long distances. //-->
+ <ship-type type="passenger" />
+ <!-- Medium to large container ships to transport their cargo on long
+ distances. //-->
+ <ship-type type="container" />
+ <!-- Medium to large oil tankers for long distances. //-->
+ <ship-type type="oiltanker" />
+ <!-- Medium to large gas tankers for long distances. //-->
+ <ship-type type="gastanker" />
+</ship-type-list>