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
<?xml version="1.0" encoding="utf-8"?> | |
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" | |
xmlns:msxsl="urn:schemas-microsoft-com:xslt" exclude-result-prefixes="msxsl" | |
> | |
<xsl:output method="xml" indent="no"/> | |
<xsl:variable name="groups" select="'265, 256'" /> | |
<xsl:template match="root"> | |
<xsl:variable name="items"> | |
<xsl:call-template name="splitStringToItems"> |
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
<?xml version="1.0" encoding="utf-8"?> | |
<xsl:stylesheet version="1.0" | |
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"> | |
<!-- | |
ISO-8859-1 based URL-encoding demo | |
Written by Mike J. Brown, [email protected]. | |
Updated 2002-05-20. | |
No license; use freely, but credit me if reproducing in print. |
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
// This script is licensed under the MIT license. See | |
// http://opensource.org/licenses/mit-license.php for more details. | |
// ==UserScript== | |
// @name URL-in-Title | |
// @namespace http://www.aaronjwhite.org | |
// @description Adds page's URL to title bar. Works great with KeePass. | |
// @include * | |
appAPI.ready(function($) { |