Changes between Version 2 and Version 3 of CORE_MVC_BASE_R1


Ignore:
Timestamp:
01/23/09 11:29:04 (16 years ago)
Author:
peko
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • CORE_MVC_BASE_R1

    v2 v3  
    55 
    66== Overview == 
    7  
     7 The aim of this revision of the task is to adjust the current MVC wiki page to the real situation in Sophie 2.0 as well as improve the MVC itself in the source code. 
    88 
    99== Task requirements == 
    10  
     10 * Review the [wiki:CORE_MVC_BASE] wiki page and fix to correspond to the current source code. 
     11  * provide the name of the module and a link to the source code of the library part of the MVC. 
     12  * explain why other part is not possible to put in the library part (Logics and View are tightly connected with one another and separating them will cause dependency troubles). 
     13 * For every functionality in the model, provide corresponding methods to control from the Logics. '''Some''' of them include the following: 
     14  * frame bounds things - margins, paddings etc. 
     15  * frame close. 
     16  * frame move. 
     17  * frame text settings. 
     18  * background and border stuff both for frame and page. 
     19  * '''Note that this is not a full list of the things - some more may have been added till the start of this task...''' 
     20  
    1121== Task result == 
     22 * Source code. 
     23 * Integration tests - creating model, dummy views to keep the reference to the model and the real Logics methods tests base upon changing thing by access from the view and into the model. 
    1224 
    1325== Implementation idea == 
     26 * review the model part and think of all current possible functionalities that are not changed through the logic. 
     27 * create methods in the Logics => !FrameLogic, !BookLogic and !AppLogic where needed. DO NOT implement the methods - only declarations. 
     28 * write unit tests for the scenarios. 
     29 * implement the methods in the Logics and test. 
    1430 
    1531== Related == 
    1632 * [wiki:CORE_MVC_BASE_R0] 
    17  
     33 * current implementation result => [wiki:CORE_MVC_BASE] 
    1834== How to demo == 
     35 * Run the unit tests created. 
    1936 
    2037= Design =