52 | | ^(Implementation results should be described and linked here (from the wiki or the repository))^ |
| 52 | * Created books.jsp, which lists all the entries in the database, with a fake(for now) download button, and if the logged user is the author of a particular book, he/she can see "edit" link, which is also fake for now. |
| 53 | * uploaded_books.jsp renamed to my_sophie.jsp, linking to upload_book.jsp. Also, there is a sample list of the titles of the books, uploaded by the user; |
| 54 | * upload_book.jsp posts information to the UploadBookServlet servlet, which adds a book entry in the database and redirects to the homepage with appropriate message. Contains an upload form, having the following fields: |
| 55 | * author - immutable, the username of the loggeed user; |
| 56 | * title - the book title to be visible by the others |
| 57 | * filename - the filename of the book object; unused for now |
| 58 | * description - short description of the book (the current implementation accepts up to 255 characters) |
| 59 | * ServerConstants updated with a BOOK_UPLOADED constant |
| 60 | * ServerModule updated with the UploadBookServlet entry |
| 61 | * Created search.jsp, which contains a simple search form with a string and a drop-down list. Posts these parameters to the search_results.jsp with the GET method, which proceeds with the search and displays the results. |