Changes between Version 1 and Version 2 of TEXT_SERVER_R0


Ignore:
Timestamp:
05/14/10 14:24:31 (15 years ago)
Author:
boyan
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • TEXT_SERVER_R0

    v1 v2  
    66 
    77== Overview == 
    8 ^Provide a brief overview of the whole task in its first revision. Stick to the current revision of the task, but keep an eye to the whole task progress, and stay alert for possible smells. 
     8The purpose of this task is to fix some of the bugs related to working with text on the server. Since real text collaboration will be hard to achieve, focus at this revision should be on the following things: 
     9 * Character encoding 
     10 * Caret position update 
    911 
    1012== Task requirements == 
    11 ^List the necessary requirements that the task must fulfill. 
     13The following two bugs should be fixed as part of this task: 
     14 * Currently special characters on the server coming from a Windows machine are encoded as cp1251 or cp1252 instead of Unicode. Thus a strange symbol appears on a Unix client instead of a new line for example. 
     15 * When two people work collaboratively on the server, text is updated, but caret position is not. Same is true when two views share the same model (e.g. save a book and reopen it). Last caret position should be updated together with the text. 
    1216 
    1317== Task result == 
    14 ^List the end product of the task (for example "Source code", "Wiki page", etc.) 
     18Source code 
    1519 
    1620== Implementation idea == 
    17 ^Provide some rough implementation idea(s). 
     21 * Unicode encoding on the server should fix the first problem. 
     22 * ? 
    1823 
    1924== Related == 
    20 ^Add links to related tasks that could be useful or helpful. 
     25None 
    2126 
    2227== How to demo == 
    23 ^Provide instructions for demonstration of the task. 
     28Run the scenarios that describe the bugs (see the task requirements) and show they are no longer present.+ 
    2429 
    2530= Design =