Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changes between Version 39 and Version 40 of code


Ignore:
Timestamp:
Oct 6, 2008, 5:10:13 AM (16 years ago)
Author:
landauf
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • code

    v39 v40  
    55
    66=== Guides and Standards ===
    7  * [wiki:c++_styleguide Style Sheet] - Writing consistent code according to a style definition.
     7 * [wiki:c++_styleguide Styleguide] - Writing consistent code according to a style definition.
     8 * [wiki:PerformanceTips Performance] - Make fast and efficient code.
    89 * [wiki:Doxygen Documenting] - How to write documentation that can be read by Doxygen for HTML view.
    910 * [wiki:Error_handling Error handling] - What to do when facing a error situation?
    10  * [wiki:PerformanceTips Fast Code] - make fast and efficient code.
     11 * [wiki:howto/STL Standard C++ library] - Have a look at the standard C++ library, strings and STL containers are very useful
    1112
    1213=== Coding Tools ===
    13  * [wiki:LinuxCodingTools Open Source Tools] - Purposed coding environment for Linux with which we also support your problems.
     14 * [wiki:SVN] - Our revision control tool. You should know how to use it
     15 * [wiki:CMake] - Our build tool (forget about makefiles)
     16 * [wiki:KDevelop3] - An open source IDE
     17 * [wiki:Doxygen] - Autogenerates an API
     18 * [wiki:LinuxCodingTools Open Source Tools] - A list of other development tools
    1419
    15 === Orxonox Framework ===
    16  * [wiki:ModulesDescription] - Description of the existing Orxonox code
     20=== Framework ===
     21 * [wiki:ModulesDescription Modules] - Get an overview of our Framework
     22 * [wiki:Documentation] - A documentation of all our libraries and classes
     23 * [wiki:Libraries] - An overview of the external libraries
     24 * [doxygen:index.html API Reference] - An automatically generated reference of classes, functions, macros and other stuff
     25 * [wiki:HowTo_coding HowTo] - This page covers several topics and explains how to do things
     26 * [wiki:FAQ_coding FAQ] - Check out the FAQ to get answers on frequent questions
    1727
    1828=== Misc ===
    19  * [wiki:ProgramerFAQ Programers FAQ] - The questions, the answers
    2029 * [wiki:DevelopmentResources Links] - A collection of useful stuff.
    2130
     
    2635 1. '''Planning''': In this phase, the development goals for the next cycle are stated.
    2736 2. '''Implementation''': The plan is being implemented in code.
    28  3. '''Review''': A code freeze is initiated and the work is being analyzed to ensure, that the goals set in the planning phase have been reached. If not, the implementation phase has to be repeated.
     37 3. '''Review''': A code freeze is initiated and the work is being analyzed to ensure that the goals set in the planning phase have been reached. If not, the implementation phase has to be repeated.
    2938
    30 The development process itself can be split into different stages which are repeated as necessary:
     39The development process itself can be split into different stages which are repeated if necessary:
    3140 1. Finding ideas & planning
    3241 2. Frameworking