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
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 Need to convert the Session data to Topic instead
Solution
Fixed
Problem
  • development/speaker_ready_room/start.1455364795.txt.gz
  • Last modified: 2016/02/13 19:59
  • by don.lee