Skip to content

Commit

Permalink
Organized dirs. Added initial website (just a logo, for now, with som…
Browse files Browse the repository at this point in the history
…e JS stubs).
  • Loading branch information
dcposch committed Nov 7, 2011
1 parent 936f2b7 commit 649bcba
Show file tree
Hide file tree
Showing 39 changed files with 112 additions and 48 deletions.
23 changes: 0 additions & 23 deletions fireflock.pro

This file was deleted.

File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
23 changes: 23 additions & 0 deletions qt/fireflock.pro
@@ -0,0 +1,23 @@
TEMPLATE = app
HEADERS = fireflock.h \
mainwindow.h \
../firesheep/backend/src/backendthread.hpp
# LIBS += -lpcap -L../firesheep/backend -lfire
LIBS += -lpcap -L/opt/local/lib -lboost_iostreams
INCLUDEPATH += ../firesheep/backend/src \
../firesheep/backend/deps \
../firesheep/backend/deps/http-parser \
../firesheep/backend/deps/json_spirit \
/usr/local/include \
/opt/local/include
SOURCES = fireflock.cpp \
main.cpp \
mainwindow.cpp \
../firesheep/backend/src/backendthread.cpp \
../firesheep/backend/src/http_sniffer.cpp \
../firesheep/backend/src/http_packet.cpp \
../firesheep/backend/deps/http-parser/http_parser.c

QT += network webkit

RESOURCES = fireflock.qrc
File renamed without changes.
File renamed without changes.
File renamed without changes.
25 changes: 0 additions & 25 deletions resources/fireflock.qrc

This file was deleted.

Binary file added web/firesheep.jpg
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added web/firesheep.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
67 changes: 67 additions & 0 deletions web/index.css
@@ -0,0 +1,67 @@
@import url(http://fonts.googleapis.com/css?family=Rammetto+One);

body {
text-align:center;
background:#003;
color:white;
}

h1 {
font:100px 'Rammetto One';
}

div.tab {
position:absolute;
width:100%;
height:100%;
left:0;
}

div.tab.selected {
display:block;
}

div.wrapper {
width:960px;
margin:0 auto;
position:relative;
}






/* HERE BE HACKS */
img#wireshark{
position:absolute;
top:100px;
left:0;
}
h1#plus {
font-size:100px;
position:absolute;
top:50px;
left:450px;
}
img#firesheep{
position:absolute;
top:0;
left:500px;
}
h1#equals {
font-size:100px;
position:absolute;
top:300px;
left:100px;
}
img#logo {
position:absolute;
top:250px;
left:250px;
}
h1#fireshark{
position:absolute;
top:530px;
left:150px;
}
22 changes: 22 additions & 0 deletions web/index.html
@@ -0,0 +1,22 @@
<!DOCTYPE html>
<html>
<head>
<title>Fireshark</title>
<script type="text/javascript" src="jquery.js" ></script>
<script type="text/javascript" src="index.js" ></script>
<link rel="stylesheet" href="index.css"></link>
</head>
<body>
<div id="tab1" class="tab selected">
<div class="wrapper">
<img id="wireshark" src="wireshark-neg.png" />
<h1 id="plus">+</h1>
<img id="firesheep" src="firesheep.png" />
<h1 id="equals">=</h1>
<img id="logo" src="logo.png" />
<h1 id="fireshark" >Fireshark</h1>
</div>
</div>
</body>
</html>

Binary file added web/logo.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added web/wireshark-neg.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added web/wireshark.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 649bcba

Please sign in to comment.