Changeset 48 in bookmarks for trunk


Ignore:
Timestamp:
06/04/13 12:17:57 (11 years ago)
Author:
peter
Message:
  • updated TODOs
  • tags are returned as space-separated plain text
Location:
trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/BookmarkApp.pm

    r46 r48  
    351351            -charset => 'UTF-8', 
    352352        ); 
    353         return ref $value eq 'ARRAY' ? join(',', @{ $value }) : $value; 
     353        return ref $value eq 'ARRAY' ? join(' ', @{ $value }) : $value; 
    354354    } else { 
    355355        $self->header_props( 
  • trunk/api

    r30 r48  
    2020  Create or update a bookmark 
    2121 
     22POST /{id} 
     23  Update a bookmark 
    2224 
    2325== TODO == 
    24  
    25 POST /{id} 
    26   Update a bookmark 
    2726 
    2827PUT /{id} 
Note: See TracChangeset for help on using the changeset viewer.