Changes between Version 9 and Version 10 of Bookmarks Project


Ignore:
Timestamp:
03/03/16 23:25:18 (8 years ago)
Author:
peter
Comment:

expanded class diagram

Legend:

Unmodified
Added
Removed
Modified
  • Bookmarks Project

    v9 v10  
    2626+exists 
    2727+collection: Bookmarks 
    28 +TO_JSON() 
     28+as_hashref() 
    2929+update() 
     30+created() 
     31+updated() 
     32+created_iso() 
     33+updated_iso() 
    3034} 
    3135class Bookmarks { 
     
    3539+get_bookmark({ id : int }): Bookmark 
    3640+get_bookmark({ uri : string }): Bookmark 
     41+get_count(): int 
    3742+search(params : hashref) : Bookmarks::Search 
    3843+get_tags({ uri : string }) : array 
     
    4752+search: Bookmarks::Search 
    4853+title 
     54+ as_json() 
     55+ as_xbel() 
     56+ as_text() 
     57+ as_csv() 
     58+ as_html() 
     59+ as_atom() 
    4960} 
    5061class Bookmarks::Search <<model>> { 
     
    6273+find_or_new() 
    6374+list() 
     75+sidebar() 
    6476+feed() 
    6577+view(id : int) 
     
    6779+create_and_redirect() 
    6880+update_and_redirect(id : int) 
     81+tag_tree() 
    6982} 
    7083class BookmarksApp {