Index: lams_flash/src/common/flash/org/lamsfoundation/lams/common/ws/WorkspaceDialog.as =================================================================== diff -u -r6817b7f626d411edbc6c374b654121897af344b5 -r0106561f66607d7b1f5913822e33c45944d8d72f --- lams_flash/src/common/flash/org/lamsfoundation/lams/common/ws/WorkspaceDialog.as (.../WorkspaceDialog.as) (revision 6817b7f626d411edbc6c374b654121897af344b5) +++ lams_flash/src/common/flash/org/lamsfoundation/lams/common/ws/WorkspaceDialog.as (.../WorkspaceDialog.as) (revision 0106561f66607d7b1f5913822e33c45944d8d72f) @@ -77,6 +77,7 @@ private var viewLicense_btn:Button; private var dateModified_lbl:Label; + private var authorOwner_lbl:Label; private var fm:FocusManager; //Reference to focus manager @@ -154,6 +155,7 @@ name_lbl.text = Dictionary.getValue('ws_dlg_filename'); description_lbl.text = Dictionary.getValue('ws_dlg_description'); dateModified_lbl._visible = false; + authorOwner_lbl._visible = false; //Set the text for buttons ok_btn.label = Dictionary.getValue('ws_dlg_ok_button'); @@ -667,6 +669,7 @@ var styleObj = themeManager.getStyleObject('label'); name_lbl.setStyle('styleName', styleObj); dateModified_lbl.setStyle('styleName', styleObj); + authorOwner_lbl.setStyle('stleName', styleObj); styleObj = themeManager.getStyleObject('button'); new_btn.setStyle('styleName',styleObj); @@ -1085,9 +1088,13 @@ if(node.attributes.data.resourceType == _workspaceModel.RT_LD) { dateModified_lbl.text = Dictionary.getValue('ws_dlg_date_modified_lbl', [node.attributes.data.formattedLastModifiedDateTime]); dateModified_lbl._visible = true; + authorOwner_lbl.text = Dictionary.getValue('ws_dlg_author_owner_lbl', [node.attributes.data.author]); + authorOwner_lbl._visible = true; } else { dateModified_lbl.text = ""; dateModified_lbl._visible = false; + authorOwner_lbl.text = ""; + authorOwner_lbl._visible = false; } }