Skip to content

Instantly share code, notes, and snippets.

Created August 18, 2014 22:02
Show Gist options
  • Save anonymous/43afe2335b432b123532 to your computer and use it in GitHub Desktop.
Save anonymous/43afe2335b432b123532 to your computer and use it in GitHub Desktop.
trace("#TAG_OPEN#projects#TAG_CLOSE#");
for (var i: int = 0; i < this.dataProvider.length; i++) {
var project = this.dataProvider[i];
trace("#TAG_OPEN#project#TAG_CLOSE#");
trace("#TAG_OPEN#languageUsed#TAG_CLOSE#" + project.languageUsed + "#TAG_OPEN#/languageUsed#TAG_CLOSE#");
trace("#TAG_OPEN#title#TAG_CLOSE#" + project.projectTitle + "#TAG_OPEN#/title#TAG_CLOSE#");
trace("#TAG_OPEN#description#TAG_CLOSE#" + project.projectDescription + "#TAG_OPEN#/description#TAG_CLOSE#");
trace("#TAG_OPEN#researchAreaDescription#TAG_CLOSE#" + project.researchAreaDescription + "#TAG_OPEN#/researchAreaDescription#TAG_CLOSE#");
trace("#TAG_OPEN#studentRoles#TAG_CLOSE#" + project.studentRoles + "#TAG_OPEN#/studentRoles#TAG_CLOSE#");
trace("#TAG_OPEN#studentSkills#TAG_CLOSE#" + project.studentSkills + "#TAG_OPEN#/studentSkills#TAG_CLOSE#");
trace("#TAG_OPEN#startDate#TAG_CLOSE#" + project.startDate + "#TAG_OPEN#/startDate#TAG_CLOSE#");
trace("#TAG_OPEN#endDate#TAG_CLOSE#" + project.endDate + "#TAG_OPEN#/endDate#TAG_CLOSE#");
var institution = project.institutionID;
trace("#TAG_OPEN#institution#TAG_CLOSE#");
trace("#TAG_OPEN#name#TAG_CLOSE#" + institution.institutionName + "#TAG_OPEN#/name#TAG_CLOSE#");
trace("#TAG_OPEN#province#TAG_CLOSE#" + institution.province + "#TAG_OPEN#/province#TAG_CLOSE#");
trace("#TAG_OPEN#/institution#TAG_CLOSE#");
var professor = project.professorID;
trace("#TAG_OPEN#professor#TAG_CLOSE#");
trace("#TAG_OPEN#firstName#TAG_CLOSE#" + professor.firstName + "#TAG_OPEN#/firstName#TAG_CLOSE#");
trace("#TAG_OPEN#lastName#TAG_CLOSE#" + professor.lastName + "#TAG_OPEN#/lastName#TAG_CLOSE#");
trace("#TAG_OPEN#/professor#TAG_CLOSE#");
trace("#TAG_OPEN#animalSubject#TAG_CLOSE#" + project.isAnimalSubject + "#TAG_OPEN#/animalSubject#TAG_CLOSE#");
trace("#TAG_OPEN#isIndustryPartner#TAG_CLOSE#" + project.isIndustryPartner + "#TAG_OPEN#/isIndustryPartner#TAG_CLOSE#");
trace("#TAG_OPEN#industryPartnerName#TAG_CLOSE#" + project.industryPartnerName + "#TAG_OPEN#/industryPartnerName#TAG_CLOSE#");
trace("#TAG_OPEN#/project#TAG_CLOSE#");
}
trace("#TAG_OPEN#/projects#TAG_CLOSE#");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment