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
| #!/bin/bash | |
| tag_prefix="client-v" | |
| # Get the highest tag number | |
| latest_tag=$(git describe --abbrev=0 --tags) | |
| # Extract the prefix and version using regular expression | |
| if [[ $latest_tag =~ ^(.*$tag_prefix)(.*)$ ]]; then | |
| prefix="${BASH_REMATCH[1]}" |
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
| /* | |
| * Customized by Misato Takahashi <misato@takahashi.name> | |
| * - fix if Html document has "<!DOCTYPE>" then parse error. | |
| * - fix if Attribute name includes "-" then parse error | |
| * - fix if Unmatch case start tag and end tag then parse error | |
| * - add function "getElementById" | |
| * | |
| * HTML Parser By John Resig (ejohn.org) | |
| * Original code by Erik Arvidsson, Mozilla Public License | |
| * http://erik.eae.net/simplehtmlparser/simplehtmlparser.js |
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
| <?php | |
| /* | |
| Made by Kudusch (blog.kudusch.de, kudusch.de, @Kudusch) | |
| --------- | |
| DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE | |
| Version 2, December 2004 | |
| Copyright (C) 2004 Sam Hocevar <sam@hocevar.net> |