/// <summary> Constructor for a new instance of the SobekCM_Item class </summary> public SobekCM_Item() { metsInfo = new METS_Header_Info(); behaviorInfo = new Behaviors_Info(); divInfo = new Division_Info(); BIBInfo = new Bibliographic_Info(); web = new Web_Info(behaviorInfo); analyzed_for_complex_content = false; contains_complex_content = false; using_complex_template = false; DiskSize_KB = 0; // main_thumbnail = String.Empty; // If there is a metadata configuration which calls for a metadata // extension module to always be used, add it now if (Metadata_Configuration.Metadata_Modules_To_Include.Count > 0) { foreach (Additional_Metadata_Module_Config thisConfig in Metadata_Configuration.Metadata_Modules_To_Include) { iMetadata_Module toInclude = thisConfig.Get_Module(); if (toInclude != null) { Add_Metadata_Module( thisConfig.Key, toInclude ); } } } }
/// <summary> Constructor for a new instance of the Behaviors_Info class </summary> public Web_Info( Behaviors_Info Behaviors ) { show_validation_errors = false; itemID = -1; groupID = -1; pageCount = 0; divCount = 0; behaviors = Behaviors; Additional_Work_Needed = false; }
/// <summary> Constructor for a new instance of the SobekCM_Item class, which imports values from a OAI record </summary> public SobekCM_Item(OAI_Repository_DublinCore_Record OAI_Record) { metsInfo = new METS_Header_Info(); behaviorInfo = new Behaviors_Info(); divInfo = new Division_Info(); BIBInfo = new Bibliographic_Info(); web = new Web_Info(behaviorInfo); analyzed_for_complex_content = false; contains_complex_content = false; using_complex_template = false; DiskSize_KB = 0; // Copy over all the data if (OAI_Record.hasCreators) { foreach (string thisCreator in OAI_Record.Creators) { Bib_Info.Add_Named_Entity(thisCreator); } } if (OAI_Record.hasContributors) { foreach (string thisContributor in OAI_Record.Contributors) { Bib_Info.Add_Named_Entity(thisContributor, "Contributor"); } } if (OAI_Record.hasCoverages) { foreach (string thisCoverage in OAI_Record.Coverages) { Subject_Info_Standard thisSubject = new Subject_Info_Standard(); thisSubject.Add_Geographic(thisCoverage); Bib_Info.Add_Subject(thisSubject); } } if (OAI_Record.hasDates) { foreach (string thisDate in OAI_Record.Dates) { Bib_Info.Origin_Info.Date_Issued = thisDate; } } if (OAI_Record.hasDescriptions) { foreach (string thisDescription in OAI_Record.Descriptions) { Bib_Info.Add_Note(thisDescription); } } if (OAI_Record.hasFormats) { foreach (string thisFormat in OAI_Record.Formats) { Bib_Info.Original_Description.Extent = thisFormat; } } if (OAI_Record.hasIdentifiers) { foreach (string thisIdentifier in OAI_Record.Identifiers) { if (thisIdentifier.IndexOf("http://") == 0) { Bib_Info.Location.Other_URL = thisIdentifier; } else { Bib_Info.Add_Identifier(thisIdentifier); } } } if (OAI_Record.hasLanguages) { foreach (string thisLanguage in OAI_Record.Languages) { Bib_Info.Add_Language(thisLanguage); } } if (OAI_Record.hasPublishers) { foreach (string thisPublisher in OAI_Record.Publishers) { Bib_Info.Add_Publisher(thisPublisher); } } if (OAI_Record.hasRelations) { foreach (string thisRelation in OAI_Record.Relations) { Related_Item_Info newRelatedItem = new Related_Item_Info(); newRelatedItem.Main_Title.Title = thisRelation; Bib_Info.Add_Related_Item(newRelatedItem); } } if (OAI_Record.hasRights) { foreach (string thisRights in OAI_Record.Rights) { Bib_Info.Access_Condition.Text = thisRights; } } //if (OAI_Record.hasSources) //{ // foreach (string thisSource in OAI_Record.Sources) // { // this.Bib_Info.Source.Statement = r.Value.Trim() = thisSource; // } //} if (OAI_Record.hasSubjects) { foreach (string thisSubject in OAI_Record.Subjects) { if (thisSubject.IndexOf(";") > 0) { string[] splitter = thisSubject.Split(";".ToCharArray()); foreach (string thisSplit in splitter) { Bib_Info.Add_Subject(thisSplit.Trim(), String.Empty); } } else { Bib_Info.Add_Subject(thisSubject, String.Empty); } } } if (OAI_Record.hasTitles) { foreach (string thistitle in OAI_Record.Titles) { if (Bib_Info.Main_Title.ToString().Length > 0) { Bib_Info.Add_Other_Title(thistitle, Title_Type_Enum.Alternative); } else { Bib_Info.Main_Title.Clear(); Bib_Info.Main_Title.Title = thistitle; } } } if (OAI_Record.hasTypes) { foreach (string thisType in OAI_Record.Types) { Bib_Info.SobekCM_Type_String = thisType; } } // If there is a metadata configuration which calls for a metadata // extension module to always be used, add it now if (Metadata_Configuration.Metadata_Modules_To_Include.Count > 0) { foreach (Additional_Metadata_Module_Config thisConfig in Metadata_Configuration.Metadata_Modules_To_Include) { iMetadata_Module toInclude = thisConfig.Get_Module(); if (toInclude != null) { Add_Metadata_Module(thisConfig.Key, toInclude); } } } }