Revision 26912a5f

b/src/gr/ebs/gss/client/VersionsList.java
114 114
			});
115 115

  
116 116
			permTable.setHTML(i, 0, "<span>" + dto.getVersion() + "</span>");
117
			permTable.setHTML(i, 1, "<span>" + formatDate(dto.getCreationDate()) + "</span>");
118
			permTable.setHTML(i, 2, "<span>" + formatDate(dto.getModificationDate()) + "</span>");
117
			permTable.setHTML(i, 1, "<span>" + formatDate(dto.getCreationDate()) + " by " + dto.getCreatedBy() + "</span>");
118
			permTable.setHTML(i, 2, "<span>" + formatDate(dto.getModificationDate()) + " by " + dto.getModifiedBy() + "</span>");
119 119
			permTable.setHTML(i, 3, "<span>" + dto.getFileSizeAsString() + "</span>");
120 120
			HTML downloadHtml = new HTML("<a class='hidden-link info' href='#'><span>"+AbstractImagePrototype.create(images.download()).getHTML()+"</span><div>View this Version</div></a>");
121 121
			downloadHtml.addClickHandler(new ClickHandler() {
b/src/gr/ebs/gss/client/rest/resource/FileResource.java
412 412
		contentType = unmarshallString(metadata, "content");
413 413
		readForAll = unmarshallBoolean(metadata, "readForAll");
414 414
		versioned = unmarshallBoolean(metadata, "versioned");
415
		createdBy = unmarshallString(metadata, "createdBy");
416
		modifiedBy = unmarshallString(metadata, "modifiedBy");
415 417

  
416 418
		if (metadata.get("version") != null)
417 419
			version = new Integer(metadata.get("version").toString());
b/src/gr/ebs/gss/client/rest/resource/FolderResource.java
336 336
		JSONObject json = (JSONObject) JSONParser.parse(text);
337 337
		name = unmarshallString(json, "name");
338 338
		owner = unmarshallString(json, "owner");
339
		createdBy = unmarshallString(json, "createdBy");
340
		modifiedBy = unmarshallString(json, "modifiedBy");
339 341
		deleted = unmarshallBoolean(json, "deleted");
340 342
		if (deleted)
341 343
			GWT.log("FOUND A DELETED FOLDER:" + name, null);

Also available in: Unified diff