Changes between Version 6 and Version 7 of BASE_RESOURCE_LOCATOR_R0
- Timestamp:
- 01/27/09 10:44:25 (16 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
TabularUnified BASE_RESOURCE_LOCATOR_R0
v6 v7 9 9 == Overview == 10 10 11 Need to be able to find a resource. Find a resource within a resource. Resource could be local or remote but the user doesn't care. 11 We need a module that helps in finding resources. Create a module that allows the user to give a resource ID and find the resource. We also need to provide a cache for offline access, or for performance related to remote objects, 12 13 The client should not care if the resource is local or remote, it simply wants to be able to find a resource. This task also needs to handle resources within resources (A book is a resource after all). 12 14 13 15 == Task requirements == 14 ^(Necessary requirements that the task must fulfill.)^ 16 17 * Write a module that provides an interface for finding resources 18 * Cache the resources in the workspace if neccessary 19 * Be able to find resources in the workspace or on a server 20 * Document how resources are found and utilized 15 21 16 22 == Task result == 17 ^(The Analysis should contain strict requirements about the end product of the task (for example the result must be source code, the result must be google doc, etc.))^ 23 24 * Demo how the resource lookup works 25 * Demo how the cache works 18 26 19 27 == Implementation idea == 20 ^(It is advisable to include some rough implementations ideas.)^ 28 29 * The key is making it simple to resolve resources from resource IDs 30 * You might have blocking issues trying to load a resource which eventually loads a resource on a remote server 31 * Need to be able to handle failed resource lookups gracefully, but this task may be too low level for that 21 32 22 33 == Related == 23 34 24 [wiki:FRAME_CONTENT] 25 26 [wiki:PRO_LIB_MODEL] 35 * [wiki:PRO_LIB_CONNECTION_INTERFACES_R0] 36 * [wiki:PRO_LIB_REMOTE_OBJECTS_R0] 27 37 28 38 == How to demo == 29 ^(In this section you must add instructions for the demo of the task.)^ 39 40 * Demo looking up resources 41 * Share the documentation and implementation with the team 30 42 31 43 = Design =