9 | | ^(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.)^ |
| 8 | |
| 9 | Provide a local change server. Simulate multi-user actions and if possible get the concept about how we're going to deal with collaboration. |
| 10 | |
| 11 | Common approach is to have remote proxy objects, when you set them and the server recieves it. Instead of this, we won't have proxy objects, but real objects. We won't transfer just the values, we'll transfer changes, instead of setting the frame to 5, we'll have a change server that will collect the changes and periodically sync the changes. |
| 12 | |
| 13 | Change server is on client and server, merges changes. This task is the server that is on the client, should work without internet connectivity. |
| 14 | |
| 15 | Modify resource, it generates changes, the change manager adds them to the change server. |
| 16 | |
18 | | ^(Provide some rough implementation idea(s).)^ |
| 29 | |
| 30 | * Determine if the change server should record all changes, or if the user needs to specify the use of the change server |
| 31 | * Connection to a remote server should be book specific. |
| 32 | * Connecting to a remote server may cause the connection to the local server to be implied |
| 33 | * All changes go through the local server, which are then synced to the the connected remote server. This allows for offline editing |
| 34 | * Maybe this is a book property edited via some book settings |
| 35 | * Pay attention to how changes should be coalesced, if at all. (for example if the user sets the frame size 50 times, there should only be one change record for the frame size) |
37 | | provide a local change server |
38 | | simulate multi-user actions if possible |
39 | | get the concept about how we're going to deal with collaboration |
40 | | common approach is to have remote proxy objects, when you set them and the server recieves it |
41 | | instead of this, we won't have proxy objects, but real objects. We won't transfer just he values, we'll transfer changes, instead of setting the frame to 5, we'll have a change server that will collect the changes and periodically sync the changes, change server is on client and server, merges changes, this is the server that is on the client, should work without internet connectivity. |
42 | | Modify resource, generates changes, change manager adds them to the change server |