diff src/main/java/de/mpiwg/gazetteer/utils/FileManager.java @ 58:b8ad346e39a0

new: modify based on doc 'Improving LGServices interface.docx': user workflow improvement, functions like adding task into a topic and search suggestions.
author Zoe Hong <zhong@mpiwg-berlin.mpg.de>
date Mon, 02 May 2016 12:03:30 +0200
parents a00efd5d9e77
children 824b808a7481
line wrap: on
line diff
--- a/src/main/java/de/mpiwg/gazetteer/utils/FileManager.java	Wed Feb 17 14:58:19 2016 +0100
+++ b/src/main/java/de/mpiwg/gazetteer/utils/FileManager.java	Mon May 02 12:03:30 2016 +0200
@@ -156,6 +156,14 @@
 						+ "<td class='tableTitle'>content id</td>"
 						+ "<td class='tableTitle'>isRemoved</td>"
 						
+						// TODO add Author, edition, volume, place name, coordinates (x,y)
+						+ "<td class='tableTitle'>Author</td>"
+						+ "<td class='tableTitle'>edition</td>"
+						+ "<td class='tableTitle'>volume</td>"
+						+ "<td class='tableTitle'>place name</td>"
+						+ "<td class='tableTitle'>cooridnates(x,y)</td>"
+
+		 			
 		 			+ "<tr>";
 		for (DBContents c : list) {			
 		
@@ -178,6 +186,15 @@
 							"<td class='content'>" + c.getContent() + "</td>" +
 							"<td>" + c.getId() + "</td>" +
 							"<td>" + c.isRemoved() + "</td>" +
+							
+							// TODO 
+							"<td>" + book.getAuthor() + "</td>" +
+							"<td>" + book.getEdition() + "</td>" +
+							"<td>" + book.getVolume() + "</td>" +
+							"<td>" + c.getCoordinatesBook().getPlace_name() + "</td>" +
+							"<td> (" + c.getCoordinatesBook().getX() + "," + c.getCoordinatesBook().getY() + ")</td>" +
+						
+						
 						"</tr>";
 			}
 		}