This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//http://semplicewebsites.com/removing-accents-javascript | |
var Latinise={};Latinise.latin_map={"Á":"A","Ă":"A","Ắ":"A","Ặ":"A","Ằ":"A","Ẳ":"A","Ẵ":"A","Ǎ":"A","Â":"A","Ấ":"A","Ậ":"A","Ầ":"A","Ẩ":"A","Ẫ":"A","Ä":"A","Ǟ":"A","Ȧ":"A","Ǡ":"A","Ạ":"A","Ȁ":"A","À":"A","Ả":"A","Ȃ":"A","Ā":"A","Ą":"A","Å":"A","Ǻ":"A","Ḁ":"A","Ⱥ":"A","Ã":"A","Ꜳ":"AA","Æ":"AE","Ǽ":"AE","Ǣ":"AE","Ꜵ":"AO","Ꜷ":"AU","Ꜹ":"AV","Ꜻ":"AV","Ꜽ":"AY","Ḃ":"B","Ḅ":"B","Ɓ":"B","Ḇ":"B","Ƀ":"B","Ƃ":"B","Ć":"C","Č":"C","Ç":"C","Ḉ":"C","Ĉ":"C","Ċ":"C","Ƈ":"C","Ȼ":"C","Ď":"D","Ḑ":"D","Ḓ":"D","Ḋ":"D","Ḍ":"D","Ɗ":"D","Ḏ":"D","Dz":"D","Dž":"D","Đ":"D","Ƌ":"D","DZ":"DZ","DŽ":"DZ","É":"E","Ĕ":"E","Ě":"E","Ȩ":"E","Ḝ":"E","Ê":"E","Ế":"E","Ệ":"E","Ề":"E","Ể":"E","Ễ":"E","Ḙ":"E","Ë":"E","Ė":"E","Ẹ":"E","Ȅ":"E","È":"E","Ẻ":"E","Ȇ":"E","Ē":"E","Ḗ":"E","Ḕ":"E","Ę":"E","Ɇ":"E","Ẽ":"E","Ḛ":"E","Ꝫ":"ET","Ḟ":"F","Ƒ":"F","Ǵ":"G","Ğ":"G","Ǧ":"G","Ģ":"G","Ĝ":"G","Ġ":"G","Ɠ":"G","Ḡ":"G","Ǥ":"G","Ḫ":"H","Ȟ":"H","Ḩ":"H","Ĥ":"H","Ⱨ":"H","Ḧ":"H","Ḣ":"H","Ḥ":"H","Ħ":"H","Í":"I","Ĭ":" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<SPSWC:ProfilePropertyLoader runat="server"></SPSWC:ProfilePropertyLoader> | |
<SPSWC:ProfilePropertyValue PropertyName="FirstName" runat="server"></SPSWC:ProfilePropertyValue> | |
<SPSWC:ProfilePropertyValue PropertyName="LastName" runat="server"></SPSWC:ProfilePropertyValue> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var baseUrl = document.location.href.substr(0, document.location.href.indexOf('/', 8)); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* Usage http://allthatjs.com/2012/04/03/using-sharepoint-csom-in-html5-apps/ | |
* | |
* | |
var SPQH = new SPQueryHandler('/intranet/ei/docei/conceptetfonctionnement'); | |
SPQH.doWhenReady(function(){ | |
// set operations here | |
SPQH.getPages(); | |
}); | |
* | |
*/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require.config({ | |
baseUrl: 'js/', | |
shim: { | |
myPlugin: { | |
deps: ['jquery'] | |
}, | |
jquery: { | |
exports: 'jQuery' | |
} | |
}, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<xsl:template name="ListeActualites" match="Row[@Style='ListeActualites']" mode="itemstyle"> | |
<xsl:param name="CurPos" /> | |
<xsl:param name="Last" /> | |
<xsl:variable name="SafeLinkUrl"> | |
<xsl:call-template name="OuterTemplate.GetSafeLink"> | |
<xsl:with-param name="UrlColumnName" select="'LinkUrl'"/> | |
</xsl:call-template> | |
</xsl:variable> | |
<xsl:variable name="Image"> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<xsl:template name="DisplayRawData" match="Row[@Style='DisplayRawData']" mode="itemstyle"> | |
<xsl:for-each select="@*"> | |
<xsl:value-of select="name()" /> | |
<xsl:text> | |
= | |
</xsl:text> | |
<xsl:value-of select="." /> | |
<br /> | |
</xsl:for-each> | |
</xsl:template> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<xsl:variable name="URLimage"> | |
<xsl:value-of select="substring-before(substring-after(@imageEvenement,'src="'),'"')" /> | |
</xsl:variable> | |
<xsl:variable name="ImgFilename"> | |
<xsl:value-of select="substring-after($URLimage,'PublishingImages/')" /> | |
</xsl:variable> | |
<xsl:variable name="URLThumb"> | |
<xsl:value-of select="concat(substring-before($URLimage,$ImgFilename),'_t/',substring-before($ImgFilename,'.'),'_',substring-after($ImgFilename,'.'),'.',substring-after($ImgFilename,'.'))" /> | |
</xsl:variable> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- mercredi 5 août 2015 --> | |
<xsl:value-of select="ddwrt:FormatDate(@Date, 1036, 3)" /> |