Changes between Version 1 and Version 2 of BOOK_SEARCH_R0


Ignore:
Timestamp:
07/22/09 13:53:41 (16 years ago)
Author:
mitex
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • BOOK_SEARCH_R0

    v1 v2  
    66 
    77== Overview == 
    8 ^(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 * The Tools tab has a Search palette. It lets the user search a Sophie book. 
     10 * A text field is available at the top of the palette where a user can enter a word or phrase he wants to find in current book. 
     11 * The searching palette in the Tools tab provides a list of results with context (some words before and after the match; also the page number).  
     12 
     13Typical scenario: 
     14 
     15 * Text is typed in the field at the top of the palette 
     16 * Enter is hit 
     17 * A list of all occurrences in text are provided in the palette 
     18 * All occurrences are highlighted in the text 
     19 * To go to one of them, it is clicked in the list 
     20 * Clicking on a result displays the page of the book with the match. 
     21 * The caret is positioned at the beginning of the match. 
     22 * The match is selected.  
    923 
    1024== Task requirements == 
    11 ^(List the necessary requirements that the task must fulfill.)^ 
     25 * Add a "Search" button next to the search box in the palette. 
     26 * Make the list to display all occurrences in text. Each list item should contain: 
     27  * the page number of the match 
     28  * a ":" sign 
     29  * three (or less, if less words are available or if they are longer than 50 chars) words before the match 
     30  * the match 
     31  * and three (or less, applying the same rule) words after the match. 
     32  * If occurrences are more than 100, only first 100 should be displayed. 
     33 *  
    1234 
    1335== Task result == 
     
    1537 
    1638== Implementation idea == 
    17 ^(Provide some rough implementation idea(s).)^ 
     39 * Use {{{LogicR3Button}}} for the button. 
     40 * Use the {{{firstSelectedItem}}} property in {{{ListPalette}}}. 
     41 * Extend {{{ListPaletteItem}}} and implement there the logic for displaying a given match. 
    1842 
    1943== Related == 
    20  * [wiki:SEARCH_COMMONS_R0] 
     44 * [wiki:SEARCH_COMMONS_R0] - for highlighting 
    2145 
    2246== How to demo == 
    23 ^(Provide instructions for demonstration of the task.)^ 
     47 * Insert a text frame and write something like "dfjkfds abc jfkdjfslk-abc-fdjfslkdfs" (at least two occurrencies of "abc") 
     48 * Open the search palette 
     49 * Search for "abc"  
    2450 
    2551= Design =