development:speaker_ready_room:start

This is an old revision of the document!


Speaker Ready Room

Problem The SRR is not using MongoDB at all, need to change that to a local db
Solution Since SRR will be used without internet, the MongoDB must be local on the same machine. But during the development, we could use the database on 210.245.150.19 instead.
Fixed
Problem Need to convert the Session data to Topic instead
Solution
Fixed

Current Topic object, could be found in folder /data/topic

{
	"id": "114",
	"startTime": "2015-04-01T11:00:00Z",
	"endTime": "2015-04-01T12:30:00Z",
	"category": "invited",
	"subspecialty": "Glaucoma",
	"type": "symposium",
	"theme": "EGS Symposium: Cataract Surgery in Glaucoma",
	"venueId": "3",
	"venue": "Yuexiu Hall",
	"code": "GL-SS06",
	"title": "When is Clear-Lens Phacoemulsification Indicated in Primary Angle-Closure",
	"duration": "12",
	"sequence": "1",
	"abstractId": "0",
	"speakerLastName": "Husain",
	"speakerFirstName": "Rahat",
	"speakerBarcode": "59190",
	"speakerEmail": "rahat.husain@snec.com.sg"
}

New Topic Object

{
	"code": "GL-SS06",           
	"category": "Invited",
	"startTime": "11:00",
	"endTime": "12:30",
	"date": "2015-04-01",
	"subspecialty": "Glaucoma",
	"type": "Symposium",
	"theme": "EGS Symposium: Cataract Surgery in Glaucoma",
	"venueId": "3",
        "venue": "Yuexiu Hall",
	"_id": "114",
	"id": "114",
	"abstractId": 0,
	"name": "When is Clear-Lens Phacoemulsification Indicated in Primary Angle-Closure",
	"duration": 12,
	"sequence": 1,
	"speaker": {
		"id": "59190",
		"apaoId": "59190",
		"firstName": "Rahat",
		"gender": "",
		"middleName": "",
		"lastName": "Husain",
		"title": "Dr.",
		"biography": [],
		"subspecialties": [],
		"institution": {
			"name": "",
			"position": "",
			"department": ""
		},
		"displayName": "Rahat HUSAIN"
	}
}
Problem
  • development/speaker_ready_room/start.1455364860.txt.gz
  • Last modified: 2016/02/13 20:01
  • by don.lee