added Perl / Irssi category · feherke/feherke.github.com@b01ae90 · GitHub
Skip to content

Commit b01ae90

Browse files
author
feherke
committed
added Perl / Irssi category
1 parent 132897f commit b01ae90

24 files changed

Lines changed: 1521 additions & 122 deletions

.nojekyll

Lines changed: 0 additions & 1 deletion
This file was deleted.

about.html

Lines changed: 12 additions & 4 deletions

index.html

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@
77
<meta name=description content="Feherke's site">
88
<meta name=keywords content="feherke, site, project">
99
<meta name=author content="Feherke">
10-
<meta name=copyright content="copyright (c) 2012, Feherke">
1110
<meta name=generator content="Jekyll 0.11.2">
1211
<!--[if IE]>
1312
<script src="/html5fordummies.js"></script>
@@ -58,12 +57,18 @@ <h1 id="welcome-to-my-site">Welcome to my site</h1>
5857
<nav>
5958

6059
<ul>
60+
<li><a href="/bash/">Bash</a></li>
6161
<li><a href="/javascript/">JavaScript</a>
6262
<ul>
6363
<li><a href="/javascript/firegestures/">FireGestures</a></li>
6464
<li><a href="/javascript/greasemonkey/">Greasemonkey</a></li>
6565
</ul>
6666
</li>
67+
<li><a href="/perl/">Perl</a>
68+
<ul>
69+
<li><a href="/perl/irssi/">Irssi</a></li>
70+
</ul>
71+
</li>
6772
<li><a href="/ruby/">Ruby</a>
6873
<ul>
6974
<li><a href="/ruby/jekyll/">Jekyll</a></li>
@@ -75,8 +80,11 @@ <h1 id="welcome-to-my-site">Welcome to my site</h1>
7580
</nav>
7681

7782
<div id=tagcloud title="Tag cloud">
78-
<p><a href="/tag.html#search" title="1" style="font-size: 8pt">search</a>
79-
<a href="/tag.html#tipmaster" title="2" style="font-size: 18pt">tipmaster</a></p>
83+
<p><a href="/tag.html#BitlBee" title="1" style="font-size: 8pt">BitlBee</a>
84+
<a href="/tag.html#TipMaster" title="2" style="font-size: 13pt">TipMaster</a>
85+
<a href="/tag.html#cleanup" title="3" style="font-size: 18pt">cleanup</a>
86+
<a href="/tag.html#notification" title="2" style="font-size: 13pt">notification</a>
87+
<a href="/tag.html#search" title="2" style="font-size: 13pt">search</a></p>
8088

8189
</div>
8290

javascript/firegestures/1-click-2-search-4-word.html

Lines changed: 26 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -6,16 +6,12 @@
66
<title>1 Click 2 Search 4 Word</title>
77
<meta name=description content="Searches for the previously single-clicked word">
88
<meta name=author content="Feherke">
9-
<meta name=copyright content="copyright (c) 2012, Feherke">
109
<meta name=generator content="Jekyll 0.11.2">
1110
<!--[if IE]>
1211
<script src="/html5fordummies.js"></script>
1312
<![endif]-->
1413
<link rel=stylesheet href="/style.css">
1514
<style>
16-
table.nowrap1 td:first-child {
17-
white-space: nowrap;
18-
}
1915
strong.cursor {
2016
color: red;
2117
}
@@ -129,21 +125,30 @@ <h2 id="configuration">Configuration</h2>
129125

130126
<p>Configuration not really supported.</p>
131127

132-
<p>But changing the list of separators is pretty simple. Just locate the following fragment in the stript and change the string value :</p>
128+
<p>But changing the list of separators is pretty simple. Just locate the following fragment in the script and change the string value :</p>
129+
130+
<p class="precaption">1-click-2-search-4-word.js - configuration fragment</p>
133131

134132
<div class="highlight"><pre><code class="javascript"><span class="nx">FireGestures</span><span class="p">.</span><span class="nx">API_1click2search4word</span><span class="o">=</span><span class="p">{</span>
135133
<span class="nx">separator</span><span class="o">:</span> <span class="s1">&#39; .‧…!¡?¿,;:\&#39;&quot;`´¨“”„‹›«»/\\\\|¦+±\\-–—*×÷=()\\[\\]{}&lt;&gt;@#$%‰‱^&amp;&#39;</span><span class="p">,</span>
136134
<span class="p">}</span>
137135
</code></pre>
138136
</div>
139137

140-
<p><!-- _ --></p>
141-
142138
<h2 id="versions">Versions</h2>
143139

144-
<ul>
145-
<li>0.0 - May 2011 - Initial release.</li>
146-
<li>0.1 - February 2012 - Use better regular expression than <code>\W</code> for word separator. <kbd>Shift</kbd>-gesture copy the term into the search bar.</li>
140+
<ul class="changelog">
141+
<li>0.0 - May 2011
142+
<ul>
143+
<li class="added">Initial release.</li>
144+
</ul>
145+
</li>
146+
<li>0.1 - February 2012
147+
<ul>
148+
<li class="changed">Use better regular expression than <code>\W</code> for word separator.</li>
149+
<li class="added"><kbd>Shift</kbd>-gesture copy the term into the search bar.</li>
150+
</ul>
151+
</li>
147152
</ul>
148153

149154
<h2 id="plans">Plans</h2>
@@ -171,12 +176,18 @@ <h2 id="download">Download</h2>
171176
<nav>
172177

173178
<ul>
179+
<li><a href="/bash/">Bash</a></li>
174180
<li><a href="/javascript/">JavaScript</a>
175181
<ul>
176182
<li><a href="/javascript/firegestures/">FireGestures</a></li>
177183
<li><a href="/javascript/greasemonkey/">Greasemonkey</a></li>
178184
</ul>
179185
</li>
186+
<li><a href="/perl/">Perl</a>
187+
<ul>
188+
<li><a href="/perl/irssi/">Irssi</a></li>
189+
</ul>
190+
</li>
180191
<li><a href="/ruby/">Ruby</a>
181192
<ul>
182193
<li><a href="/ruby/jekyll/">Jekyll</a></li>
@@ -188,8 +199,11 @@ <h2 id="download">Download</h2>
188199
</nav>
189200

190201
<div id=tagcloud title="Tag cloud">
191-
<p><a href="/tag.html#search" title="1" style="font-size: 8pt">search</a>
192-
<a href="/tag.html#tipmaster" title="2" style="font-size: 18pt">tipmaster</a></p>
202+
<p><a href="/tag.html#BitlBee" title="1" style="font-size: 8pt">BitlBee</a>
203+
<a href="/tag.html#TipMaster" title="2" style="font-size: 13pt">TipMaster</a>
204+
<a href="/tag.html#cleanup" title="3" style="font-size: 18pt">cleanup</a>
205+
<a href="/tag.html#notification" title="2" style="font-size: 13pt">notification</a>
206+
<a href="/tag.html#search" title="2" style="font-size: 13pt">search</a></p>
193207

194208
</div>
195209

javascript/firegestures/change-http-https.html

Lines changed: 17 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@
77
<meta name=description content="Changes the protocol between plain and secure HTTP">
88
<meta name=keyword content="switch, protocol, http, httpd">
99
<meta name=author content="Feherke">
10-
<meta name=copyright content="copyright (c) 2012, Feherke">
1110
<meta name=generator content="Jekyll 0.11.2">
1211
<!--[if IE]>
1312
<script src="/html5fordummies.js"></script>
@@ -57,8 +56,12 @@ <h1 id="change-http--https">Change http: / https:</h1>
5756

5857
<h2 id="versions">Versions</h2>
5958

60-
<ul>
61-
<li>0.0 - May 2011 - Initial release.</li>
59+
<ul class="changelog">
60+
<li>0.0 - May 2011
61+
<ul>
62+
<li class="added">Initial release</li>
63+
</ul>
64+
</li>
6265
</ul>
6366

6467
<h2 id="plans">Plans</h2>
@@ -84,12 +87,18 @@ <h2 id="download">Download</h2>
8487
<nav>
8588

8689
<ul>
90+
<li><a href="/bash/">Bash</a></li>
8791
<li><a href="/javascript/">JavaScript</a>
8892
<ul>
8993
<li><a href="/javascript/firegestures/">FireGestures</a></li>
9094
<li><a href="/javascript/greasemonkey/">Greasemonkey</a></li>
9195
</ul>
9296
</li>
97+
<li><a href="/perl/">Perl</a>
98+
<ul>
99+
<li><a href="/perl/irssi/">Irssi</a></li>
100+
</ul>
101+
</li>
93102
<li><a href="/ruby/">Ruby</a>
94103
<ul>
95104
<li><a href="/ruby/jekyll/">Jekyll</a></li>
@@ -101,8 +110,11 @@ <h2 id="download">Download</h2>
101110
</nav>
102111

103112
<div id=tagcloud title="Tag cloud">
104-
<p><a href="/tag.html#search" title="1" style="font-size: 8pt">search</a>
105-
<a href="/tag.html#tipmaster" title="2" style="font-size: 18pt">tipmaster</a></p>
113+
<p><a href="/tag.html#BitlBee" title="1" style="font-size: 8pt">BitlBee</a>
114+
<a href="/tag.html#TipMaster" title="2" style="font-size: 13pt">TipMaster</a>
115+
<a href="/tag.html#cleanup" title="3" style="font-size: 18pt">cleanup</a>
116+
<a href="/tag.html#notification" title="2" style="font-size: 13pt">notification</a>
117+
<a href="/tag.html#search" title="2" style="font-size: 13pt">search</a></p>
106118

107119
</div>
108120

javascript/firegestures/index.html

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@
77
<meta name=description content="">
88
<meta name=keyword content="javascript, firegestures, firefox, extension">
99
<meta name=author content="Feherke">
10-
<meta name=copyright content="copyright (c) 2012, Feherke">
1110
<meta name=generator content="Jekyll 0.11.2">
1211
<!--[if IE]>
1312
<script src="/html5fordummies.js"></script>
@@ -87,12 +86,18 @@ <h1 id="firegestures-scripts">FireGestures Scripts</h1>
8786
<nav>
8887

8988
<ul>
89+
<li><a href="/bash/">Bash</a></li>
9090
<li><a href="/javascript/">JavaScript</a>
9191
<ul>
9292
<li><a href="/javascript/firegestures/">FireGestures</a></li>
9393
<li><a href="/javascript/greasemonkey/">Greasemonkey</a></li>
9494
</ul>
9595
</li>
96+
<li><a href="/perl/">Perl</a>
97+
<ul>
98+
<li><a href="/perl/irssi/">Irssi</a></li>
99+
</ul>
100+
</li>
96101
<li><a href="/ruby/">Ruby</a>
97102
<ul>
98103
<li><a href="/ruby/jekyll/">Jekyll</a></li>
@@ -104,8 +109,11 @@ <h1 id="firegestures-scripts">FireGestures Scripts</h1>
104109
</nav>
105110

106111
<div id=tagcloud title="Tag cloud">
107-
<p><a href="/tag.html#search" title="1" style="font-size: 8pt">search</a>
108-
<a href="/tag.html#tipmaster" title="2" style="font-size: 18pt">tipmaster</a></p>
112+
<p><a href="/tag.html#BitlBee" title="1" style="font-size: 8pt">BitlBee</a>
113+
<a href="/tag.html#TipMaster" title="2" style="font-size: 13pt">TipMaster</a>
114+
<a href="/tag.html#cleanup" title="3" style="font-size: 18pt">cleanup</a>
115+
<a href="/tag.html#notification" title="2" style="font-size: 13pt">notification</a>
116+
<a href="/tag.html#search" title="2" style="font-size: 13pt">search</a></p>
109117

110118
</div>
111119

javascript/firegestures/popup-change-protocol.html

Lines changed: 23 additions & 6 deletions

0 commit comments

Comments
 (0)