Mini Kabibi Habibi

Current Path : C:/Program Files/Microsoft Office/root/Office16/Bibliography/
Upload File :
Current File : C:/Program Files/Microsoft Office/root/Office16/Bibliography/Author2XML.XSL

<?xml version="1.0" encoding="ISO-8859-1"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:msxsl="urn:schemas-microsoft-com:xslt" xmlns:b="http://schemas.openxmlformats.org/officeDocument/2006/bibliography">
	<xsl:output method="xml" encoding="us-ascii"/>
	<xsl:template match="Field">
		<xsl:variable name="Authors"><xsl:value-of select="."/></xsl:variable>

		<b:NameList>
			<xsl:call-template name="ParseNames">
				<xsl:with-param name="Source" select="$Authors"/>
			</xsl:call-template>
		</b:NameList>
	</xsl:template>

	<xsl:template name="ParseNames">
		<xsl:param name="Source"/>

		<xsl:variable name="OneName">
			<xsl:value-of select="normalize-space(substring-before($Source, ';'))"/>
		</xsl:variable>
		<xsl:variable name="RestName">
			<xsl:value-of select="normalize-space(substring-after($Source, ';'))"/>
		</xsl:variable>

		<xsl:call-template name="ParseName">
			<xsl:with-param name="Source" select="normalize-space($OneName)"/>
		</xsl:call-template>

		<xsl:if test="string-length($RestName) > 0">
			<xsl:call-template name="ParseNames">
				<xsl:with-param name="Source" select="normalize-space($RestName)"/>
			</xsl:call-template>
		</xsl:if>
	</xsl:template>

	<xsl:template name="LastOf">
		<xsl:param name="Source"/>
		<xsl:choose>
			<xsl:when test="contains($Source, ' ')">
				<xsl:call-template name="LastOf">
					<xsl:with-param name="Source" select="substring-after($Source, ' ')"/>
				</xsl:call-template>
			</xsl:when>
			<xsl:otherwise>
				<xsl:value-of select="$Source"/>
			</xsl:otherwise>
		</xsl:choose>
	</xsl:template>


	<xsl:template name="ParseName">
		<xsl:param name="Source"/>

			<xsl:variable name="Last">
				<xsl:choose>
					<xsl:when test="contains($Source, ',')">
						<xsl:value-of select="normalize-space(substring-before($Source, ','))"/>
					</xsl:when>
					<xsl:when test="contains($Source, ' ') and string-length(normalize-space(substring-after($Source, ' '))) > 0">
						<xsl:call-template name="LastOf">
							<xsl:with-param name="Source" select="$Source"/>
						</xsl:call-template>
					</xsl:when>
					<xsl:otherwise>
						<xsl:value-of select="normalize-space($Source)"/>
					</xsl:otherwise>
				</xsl:choose>
			</xsl:variable>
			
			<xsl:variable name="FirstMiddle">
				<xsl:choose>
					<xsl:when test="contains($Source, ',') and string-length(normalize-space(substring-after($Source, ','))) > 0">
						<xsl:value-of select="normalize-space(substring-after($Source, ','))"/>
					</xsl:when>
					<xsl:when test="contains($Source, ' ') and string-length(normalize-space(substring-before($Source, ' '))) > 0">
						<xsl:value-of select="normalize-space(substring($Source, 1, string-length($Source) - string-length($Last) - 1))"/>
					</xsl:when>
				</xsl:choose>
			</xsl:variable>
			
			<xsl:variable name="First">
				<xsl:choose>
					<xsl:when test="contains($FirstMiddle, ' ')">
						<xsl:value-of select="normalize-space(substring-before($FirstMiddle, ' '))"/>
					</xsl:when>
					<xsl:otherwise>
						<xsl:value-of select="$FirstMiddle"/>
					</xsl:otherwise>
				</xsl:choose>
			</xsl:variable>
			
			<xsl:variable name="Middle">
				<xsl:choose>
					<xsl:when test="contains($FirstMiddle, ' ')">
						<xsl:value-of select="normalize-space(substring-after($FirstMiddle, ' '))"/>
					</xsl:when>
				</xsl:choose>
			</xsl:variable>

		<xsl:if test="string-length($Last) > 0">
			<b:Person>
				<b:Last><xsl:value-of select="$Last"/></b:Last>
				<b:First><xsl:value-of select="$First"/></b:First>
				<b:Middle><xsl:value-of select="$Middle"/></b:Middle>
			</b:Person>
		</xsl:if>
		<xsl:if test="string-length($Last) = 0 and (string-length($First) > 0 or string-length($Middle) > 0 )">
			<b:Person>
				<b:Last></b:Last>
				<b:First><xsl:value-of select="$First"/></b:First>
				<b:Middle><xsl:value-of select="$Middle"/></b:Middle>
			</b:Person>
		</xsl:if>
	</xsl:template>
</xsl:stylesheet>