Skip to content

Commit

Permalink
more tags for #12
Browse files Browse the repository at this point in the history
  • Loading branch information
tomrittervg committed Oct 21, 2011
1 parent 8161311 commit e09c131
Show file tree
Hide file tree
Showing 2 changed files with 90 additions and 3 deletions.
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -184,8 +184,9 @@
sql = 'INSERT INTO ' + DB.keyword._table + "(keyword, parent, type)\n"
components = []
for l in h:
if not l.strip(): continue
parts = l.strip().split(':')
parts = [p.strip() for p in parts]
parts = [p.strip() for p in parts if p.strip()]

if len(parts) > 1:
sql += "SELECT %s, %s, 1 UNION\n"
Expand Down
90 changes: 88 additions & 2 deletions tags.txt
Original file line number Diff line number Diff line change
Expand Up @@ -122,9 +122,86 @@ tls : ssl
ssl : tls
BEAST : ssl

openpgp :
web of trust :
trust on first use :

x509 :
public key infrastructure :
certificate authority :
notary : convergence

hmac :

dkim :
dane :
dkim :
domain keys :

ppp :
pptp :
802.11a : 802.11
802.11b : 802.11
802.11g : 802.11
802.11n : 802.11
tkip :
802.16 : wimax

ipv4 : ip
ipv6 : ip
ipsec : ip
sscp :
arp :
rarp :
bgp :
rip :
ndp :
tcp :
udp :
icmp :
ipx :
smb :
cifs : smb

pop3 :
imap :
soap :
ftp :
sftp :
ssh :
scp :
telnet :
dns :
dnssec : dns
http :
https : ssl
smtp :
starttls :
bittorrent :
dhcp :
finger :
gopher :
irc :
ldap :
mime :
netbios :
nntp :
ntp :
radius :
rsync :
sip :
snmp :
webdav :
xmpp :

fuse :

git :
svn : subversion
hg : mercurial
sourcesafe : visualsourcesafe
vss : visualsourcesafe
cvs :


md2 : hash-functions
md4 : hash-functions
Expand Down Expand Up @@ -177,8 +254,17 @@ hmac :
otr :
socks :

tahoe : tahoe-lafs

vidalia : project-tor

prng : random-number-generator
rng : random-number-generator
random number generator : random-number-generator
psuedonumber generator : random-number-generator
lfsr : random-number-generator
linear feedback shift register : random-number-generator

project-tor-arm : project-tor
project-tor-bridgedb : project-tor
project-tor-debian-polipo : project-tor
Expand All @@ -201,4 +287,4 @@ project-tor-dnsel : project-tor
project-torsocks : project-tor
project-torspec : project-tor
project-vidalia-plugins : project-vidalia
project-vidalia : project-tor'
project-vidalia : project-tor

0 comments on commit e09c131

Please sign in to comment.