Changes between Initial Version and Version 1 of iPhone/BBS-Prototype


Ignore:
Timestamp:
04/20/2011 09:51:07 AM (15 years ago)
Author:
lee
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • iPhone/BBS-Prototype

    v1 v1  
     1[[TOC]] 
     2 
     3= Project BBS Prototype = 
     4 
     5== 架构 == 
     6 
     7 - 基于 json/xml/html over http 
     8 - 设想框架 
     9  *backend service -> adaptor proxy -> client agent 
     10 
     11== 移动BBS系统 == 
     12 
     13目标,垂直prototype ,主要功能: 
     14 
     15- 用户管理 
     16 - 注册 
     17 - 登陆 
     18 - 保存帐号,下次不用重新登陆 
     19 - 管理帐号(删除、更换、更换密码) 
     20 - 不能修改密码 
     21 
     22- 看帖(板块)、发帖,回帖 
     23- 上传图片(支持四种方式) 
     24 - 在媒体库浏览图片时,上传到系统 
     25 - 拍照后立刻上传到系统 
     26 - 编辑时,调用媒体库选择照片上传 
     27 - 编辑时,调用相机拍照上传 
     28- session 需要登陆访问的资源,游客访问时拒绝 
     29 
     30== 图片系统 == 
     31 
     32独立一个移动专用的图片服务器,存储尺寸是500的图片 
     33 
     34|||| || 传统图片服务器 || || || 
     35|| || || |      || || || 
     36|| Web 应用 || ───── || Adaptor proxy || ──── || 移动应用 || 
     37|| || || | || || || 
     38|| || ||移动图片服务器 || || || 
     39 
     40 
     41{{{ 
     42#!graphviz 
     43digraph picServerArch { 
     44TraditionPictureServer -> AdaptorProxy; 
     45WebApplication -> AdaptorProxy; 
     46AdaptorProxy -> MobileApplication; 
     47AdaptorProxy -> MobilePictureServer; 
     48} 
     49}}} 
     50 
     51 
     52== 支持Open Platform  == 
     53 
     54支持新浪微博、开心、人人、QQ等开放平台,有 Oauth 或者 OpenID 协议。