Skip to content

Commit

Permalink
People:
Browse files Browse the repository at this point in the history
Update to Peoplesoft XSL to prevent creation of Department stubs for
(null) deptIDs and addition of the Deceased type, UFEntity, and explicit
definition of all supertypes. (Person, Thing, etc)

Courses:
Fixed score data model config to point to the correct directory.
  • Loading branch information
Rene Ziede committed Jun 27, 2012
1 parent 7545085 commit ab88d9c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -107,5 +107,5 @@
-->
<Config>
<Param name="type">tdb</Param>
<Param name="dbDir">data/harvested-data/</Param>
<Param name="dbDir">data/score-data/</Param>
</Config>
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@
<core:primaryPhoneNumber><xsl:value-of select="PhoneNumber" /></core:primaryPhoneNumber>
<core:faxNumber><xsl:value-of select="FaxNumber" /></core:faxNumber>

<xsl:if test='$deptID'>
<xsl:if test="$deptID!='(null)'">
<!-- Relation to department node start -->
<ufVivo:homeDept>
<!-- Department stub node start -->
Expand Down Expand Up @@ -264,7 +264,7 @@
<core:primaryPhoneNumber><xsl:value-of select="PHONE[@type=10]" /></core:primaryPhoneNumber>
<core:faxNumber><xsl:value-of select="PHONE[@type=11]" /></core:faxNumber>

<xsl:if test='$deptID'>
<xsl:if test="$deptID!='(null)'">
<!-- Relation to department node start -->
<ufVivo:homeDept>
<!-- Department stub node start -->
Expand Down Expand Up @@ -421,7 +421,7 @@
<core:primaryPhoneNumber><xsl:value-of select="PhoneNumber" /></core:primaryPhoneNumber>
<core:faxNumber><xsl:value-of select="FaxNumber" /></core:faxNumber>

<xsl:if test='$deptID'>
<xsl:if test="$deptID!='(null)'">
<!-- Relation to department node start -->
<ufVivo:homeDept>
<!-- Department stub node start -->
Expand Down

0 comments on commit ab88d9c

Please sign in to comment.