forked from georf/RegHex
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
134 lines (112 loc) · 5.33 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
<!doctype html>
<!--[if lt IE 7]> <html class="no-js ie6 oldie" lang="en"> <![endif]-->
<!--[if IE 7]> <html class="no-js ie7 oldie" lang="en"> <![endif]-->
<!--[if IE 8]> <html class="no-js ie8 oldie" lang="en"> <![endif]-->
<!--[if gt IE 8]><!--> <html class="no-js" lang="en"> <!--<![endif]-->
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>regexpad</title>
<meta name="description" content="">
<meta name="author" content="">
<meta name="viewport" content="width=device-width,initial-scale=1">
<!-- <link href='http://fonts.googleapis.com/css?family=Droid+Sans+Mono' rel='stylesheet' type='text/css'>-->
<link rel="stylesheet" href="css/style.css">
<script src="js/libs/modernizr-2.0.6.min.js"></script>
</head>
<body>
<div id="container">
<header>
<p id="help-box"><a id="button-tour" href="">tour</a> | <a id="button-permalink" href="">permalink</a></p>
<h1 class="appname">regex<strong>pad</strong> <small>regex testing tool for <select name="parser-type" id="parser-type">
</select></small></h1>
<p id="no-js-warning">This service is based on Javascript.<br>Please enable it in your browser settings to go on.</p>
</header>
<div class="clearfix" id="main" role="main">
<section id="regex-section">
<div class="clearfix">
<label for="regex">regular expression</label>
<textarea tabindex="1" type="text" id="regex" class="inputWidget" rows="2" cols="20"></textarea>
</div>
<p id="regex-error" class="overlay"></p>
<ul id="regex-options">
</ul>
</section>
<section id="matching-section">
<div id="matching-blocks">
<div class="matchtext-block clearfix">
<label class="matchtext-label" for="matchtext">string to match</label>
<textarea tabindex="2" type="text" id="matchtext" class="matchtext textarea inputWidget" rows="2" cols="20"></textarea>
<div id="matchtext-div" class="matchtext-div"></div>
<div class="navigate-match-section">
<span class="match-more-info" style="float:left;display:none;"><a href="#">subexpressions</a></span>
<span class="match-info"></span><button type="button" class="previous-match arrow-button">«</button><button type="button" class="next-match arrow-button">»</button>
</div>
<div class="more-information overlay groups" style="display:none;">
<div class="less-information close-button">x</div>
<div class="more-information-content"></div>
</div>
</div>
</div>
<p id="add-matchtext-section" class="clearfix"><a id="add-matchtext" title="add another text for matching">+</a></p>
</section>
</div>
<div id="about-section" class="clearfix">
<section id="link-section">
<label>about <span class="current-parser-name"></span> regular expressions</label>
<div id="additional-parser-info"></div>
</section>
<section id="code-section">
<label for="codeblock"><span class="current-parser-name"></span> code example</label>
<textarea class="textarea inputWidget" readonly="readonly" id="codeblock" style="font-size:1.0em"></textarea>
</section>
</div>
<footer>
<p><span class="appname">Application regex<strong>pad</strong></span>, © 2012 <a href="http://www.mgvmedia.com">MGVmedia.com</a> | <a href="https://github.com/MGVmedia/regexpad/">Source</a> | <a href="http://www.mgvmedia.com/impressum">Impressum</a></p>
</footer>
</div> <!--! end of #container -->
<div id="help-current-task" class="more-information overlay"></div>
<!-- Grab Google CDN's jQuery, with a protocol relative URL; fall back to local if offline -->
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.6.2/jquery.min.js"></script>
<script>window.jQuery || document.write('<script src="js/libs/jquery-1.6.2.min.js"><\/script>')</script>
<script src="js/libs/jquery.json-2.3.min.js"></script>
<!-- some stuff -->
<script defer src="js/plugins.js"></script>
<!-- files for compiling -->
<!-- do not remove the line above -->
<!-- parser classes -->
<script defer src="js/parser/RegularExpression.js"></script>
<script defer src="js/parser/Javascript.js"></script>
<script defer src="js/parser/Ajax.js"></script>
<!-- tour classes -->
<script defer src="js/tour/Help.js"></script>
<script defer src="js/tour/HighlightStep.js"></script>
<script defer src="js/tour/LowlightStep.js"></script>
<script defer src="js/tour/MoveMessageStep.js"></script>
<script defer src="js/tour/SetMessageStep.js"></script>
<script defer src="js/tour/Step.js"></script>
<script defer src="js/tour/WaitStep.js"></script>
<script defer src="js/tour/Step.js"></script>
<script defer src="js/tour/TypeInto.js"></script>
<!-- other simple classes -->
<script defer src="js/Flag.js"></script>
<script defer src="js/UIMatchText.js"></script>
<script defer src="js/MatchText.js"></script>
<script defer src="js/UIMessageService.js"></script>
<script defer src="js/UICodeSnip.js"></script>
<script defer src="js/Permalink.js"></script>
<!-- config -->
<script defer src="js/config.js"></script>
<!-- singleton classes -->
<script defer src="js/RegularExpressionCache.js"></script>
<script defer src="js/RegHex.js"></script>
<!-- start ui -->
<script defer src="js/ui.js"></script>
<!-- do not remove the line below -->
<!-- end files for compiling -->
<!--[if lt IE 8 ]>
<script src="//ajax.googleapis.com/ajax/libs/chrome-frame/1.0.3/CFInstall.min.js"></script>
<script>window.attachEvent('onload',function(){CFInstall.check({mode:'overlay'})})</script>
<![endif]-->
</body>
</html>