From 02b214c04adaa0543e653d5c7fa39ddb42a29df0 Mon Sep 17 00:00:00 2001 From: Terry Lu Date: Thu, 20 Jun 2013 19:25:30 +0800 Subject: cleo/{app,buildroot}: port httpd and add wifi config page, closes #4210 --- cleopatre/application/spidgoahead/web/action.asp | 83 +++++ cleopatre/application/spidgoahead/web/addgroup.asp | 43 +++ cleopatre/application/spidgoahead/web/addlimit.asp | 37 ++ cleopatre/application/spidgoahead/web/adduser.asp | 51 +++ cleopatre/application/spidgoahead/web/back.png | Bin 0 -> 488 bytes cleopatre/application/spidgoahead/web/banner.asp | 9 + cleopatre/application/spidgoahead/web/br0.asp | 264 +++++++++++++++ cleopatre/application/spidgoahead/web/count.asp | 5 + cleopatre/application/spidgoahead/web/delgroup.asp | 28 ++ cleopatre/application/spidgoahead/web/dellimit.asp | 28 ++ cleopatre/application/spidgoahead/web/deluser.asp | 28 ++ cleopatre/application/spidgoahead/web/eth0.asp | 239 +++++++++++++ cleopatre/application/spidgoahead/web/footer.html | 7 + cleopatre/application/spidgoahead/web/index.asp | 27 ++ .../application/spidgoahead/web/jslib/query.js | 111 ++++++ cleopatre/application/spidgoahead/web/left.png | Bin 0 -> 2897 bytes cleopatre/application/spidgoahead/web/loadcfg.asp | 24 ++ .../application/spidgoahead/web/logo-spidcom.jpg | Bin 0 -> 2271 bytes cleopatre/application/spidgoahead/web/nav.asp | 70 ++++ cleopatre/application/spidgoahead/web/none.html | 40 +++ cleopatre/application/spidgoahead/web/pattern.png | Bin 0 -> 597 bytes cleopatre/application/spidgoahead/web/plc0.asp | 307 +++++++++++++++++ cleopatre/application/spidgoahead/web/savecfg.asp | 24 ++ cleopatre/application/spidgoahead/web/soft.asp | 15 + cleopatre/application/spidgoahead/web/spidcom.gif | Bin 0 -> 20557 bytes cleopatre/application/spidgoahead/web/stat.asp | 61 ++++ .../application/spidgoahead/web/style/doc.css | 42 +++ .../application/spidgoahead/web/style/help.htm | 40 +++ .../application/spidgoahead/web/style/menu.htm | 55 +++ .../spidgoahead/web/style/normal_ws.css | 48 +++ .../application/spidgoahead/web/style/option.htm | 28 ++ cleopatre/application/spidgoahead/web/um.htm | 10 + cleopatre/application/spidgoahead/web/wifi0.asp | 377 +++++++++++++++++++++ cleopatre/application/spidgoahead/web/ws.gif | Bin 0 -> 1373 bytes 34 files changed, 2101 insertions(+) create mode 100644 cleopatre/application/spidgoahead/web/action.asp create mode 100644 cleopatre/application/spidgoahead/web/addgroup.asp create mode 100644 cleopatre/application/spidgoahead/web/addlimit.asp create mode 100644 cleopatre/application/spidgoahead/web/adduser.asp create mode 100644 cleopatre/application/spidgoahead/web/back.png create mode 100644 cleopatre/application/spidgoahead/web/banner.asp create mode 100644 cleopatre/application/spidgoahead/web/br0.asp create mode 100644 cleopatre/application/spidgoahead/web/count.asp create mode 100644 cleopatre/application/spidgoahead/web/delgroup.asp create mode 100644 cleopatre/application/spidgoahead/web/dellimit.asp create mode 100644 cleopatre/application/spidgoahead/web/deluser.asp create mode 100644 cleopatre/application/spidgoahead/web/eth0.asp create mode 100644 cleopatre/application/spidgoahead/web/footer.html create mode 100644 cleopatre/application/spidgoahead/web/index.asp create mode 100644 cleopatre/application/spidgoahead/web/jslib/query.js create mode 100644 cleopatre/application/spidgoahead/web/left.png create mode 100644 cleopatre/application/spidgoahead/web/loadcfg.asp create mode 100644 cleopatre/application/spidgoahead/web/logo-spidcom.jpg create mode 100644 cleopatre/application/spidgoahead/web/nav.asp create mode 100644 cleopatre/application/spidgoahead/web/none.html create mode 100644 cleopatre/application/spidgoahead/web/pattern.png create mode 100644 cleopatre/application/spidgoahead/web/plc0.asp create mode 100644 cleopatre/application/spidgoahead/web/savecfg.asp create mode 100644 cleopatre/application/spidgoahead/web/soft.asp create mode 100644 cleopatre/application/spidgoahead/web/spidcom.gif create mode 100644 cleopatre/application/spidgoahead/web/stat.asp create mode 100644 cleopatre/application/spidgoahead/web/style/doc.css create mode 100644 cleopatre/application/spidgoahead/web/style/help.htm create mode 100644 cleopatre/application/spidgoahead/web/style/menu.htm create mode 100644 cleopatre/application/spidgoahead/web/style/normal_ws.css create mode 100644 cleopatre/application/spidgoahead/web/style/option.htm create mode 100644 cleopatre/application/spidgoahead/web/um.htm create mode 100644 cleopatre/application/spidgoahead/web/wifi0.asp create mode 100644 cleopatre/application/spidgoahead/web/ws.gif (limited to 'cleopatre/application/spidgoahead/web') diff --git a/cleopatre/application/spidgoahead/web/action.asp b/cleopatre/application/spidgoahead/web/action.asp new file mode 100644 index 0000000000..b3d07ce70f --- /dev/null +++ b/cleopatre/application/spidgoahead/web/action.asp @@ -0,0 +1,83 @@ + + + + + + + + + + + + +
+ +
+
+
+ +
+ + + \ No newline at end of file diff --git a/cleopatre/application/spidgoahead/web/addgroup.asp b/cleopatre/application/spidgoahead/web/addgroup.asp new file mode 100644 index 0000000000..53c8ec80f9 --- /dev/null +++ b/cleopatre/application/spidgoahead/web/addgroup.asp @@ -0,0 +1,43 @@ + + + +Add a User Group + + +<% language=javascript %> + + + +

Add a User Group

+
+ + + + + + + + + + + + + + + + + + + + +
Group Name: + +
Privilege:<% MakePrivilegeList(); %>
Access Method:<% MakeAccessMethodList(); %>
Enabled: + +
+
+ +
+ + + diff --git a/cleopatre/application/spidgoahead/web/addlimit.asp b/cleopatre/application/spidgoahead/web/addlimit.asp new file mode 100644 index 0000000000..9c2bb613e7 --- /dev/null +++ b/cleopatre/application/spidgoahead/web/addlimit.asp @@ -0,0 +1,37 @@ + + + +Add an Access Limit + + +<% language=javascript %> + + + +

Add an Access Limit

+
+ + + + + + + + + + + + + + + + + + +
URL:
Group:<% MakeGroupList(); %>
Access Method:<% MakeAccessMethodList(); %>
Secure:
+
+ +
+ + + diff --git a/cleopatre/application/spidgoahead/web/adduser.asp b/cleopatre/application/spidgoahead/web/adduser.asp new file mode 100644 index 0000000000..91f33c931b --- /dev/null +++ b/cleopatre/application/spidgoahead/web/adduser.asp @@ -0,0 +1,51 @@ + + + +Add a User + + +<% language=javascript %> + + + +

Add a User

+
+ + + + + + + + + + + + + + + + + + + + + + + + +
User ID: + +
Group:<% MakeGroupList(); %>
Enabled: + +
Password: + +
Confirm: + +
+
+ +
+ + + diff --git a/cleopatre/application/spidgoahead/web/back.png b/cleopatre/application/spidgoahead/web/back.png new file mode 100644 index 0000000000..a0dd8422b0 Binary files /dev/null and b/cleopatre/application/spidgoahead/web/back.png differ diff --git a/cleopatre/application/spidgoahead/web/banner.asp b/cleopatre/application/spidgoahead/web/banner.asp new file mode 100644 index 0000000000..9f50c4513b --- /dev/null +++ b/cleopatre/application/spidgoahead/web/banner.asp @@ -0,0 +1,9 @@ + + +

+ +
 
+

+
+ + diff --git a/cleopatre/application/spidgoahead/web/br0.asp b/cleopatre/application/spidgoahead/web/br0.asp new file mode 100644 index 0000000000..3fdf176b5a --- /dev/null +++ b/cleopatre/application/spidgoahead/web/br0.asp @@ -0,0 +1,264 @@ + + + + SPC 300 - SPiDCOM + + + + + + + + + + + +

Bridge configuration

+ + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

Network configuration

Current IP address
Current netmask
Current gateway address
MAC address
DHCP ModeONOFF
+ +

Activity statistics

+ + + + + + + + + + + +
RX:TX:
BytesBytes
PacketsPackets
ErrorsErrors
DropsDrops
FifoFifo
FrameColls
CompressedCarrier
MulticastCompressed
+
+Auto refresh +
+ +
+

+
+
+
+

+
+ + +
+ + + + + + + + + + \ No newline at end of file diff --git a/cleopatre/application/spidgoahead/web/count.asp b/cleopatre/application/spidgoahead/web/count.asp new file mode 100644 index 0000000000..f5e08e65e4 --- /dev/null +++ b/cleopatre/application/spidgoahead/web/count.asp @@ -0,0 +1,5 @@ + + +<% spidcomAspReboot(); %> + + diff --git a/cleopatre/application/spidgoahead/web/delgroup.asp b/cleopatre/application/spidgoahead/web/delgroup.asp new file mode 100644 index 0000000000..e0eab7b58b --- /dev/null +++ b/cleopatre/application/spidgoahead/web/delgroup.asp @@ -0,0 +1,28 @@ + + + +Delete a User Group + + +<% language=javascript %> + + + +

Delete a User Group

+
+ + + +<% MakeGroupList(); %> + + + + + +
+
+ +
+ + + diff --git a/cleopatre/application/spidgoahead/web/dellimit.asp b/cleopatre/application/spidgoahead/web/dellimit.asp new file mode 100644 index 0000000000..f613b60c44 --- /dev/null +++ b/cleopatre/application/spidgoahead/web/dellimit.asp @@ -0,0 +1,28 @@ + + + +Delete an Access Limit + + +<% language=javascript %> + + + +

Delete an Access Limit

+
+ + + +<% MakeAccessLimitList(); %> + + + + + +
+
+ +
+ + + diff --git a/cleopatre/application/spidgoahead/web/deluser.asp b/cleopatre/application/spidgoahead/web/deluser.asp new file mode 100644 index 0000000000..3157b3513c --- /dev/null +++ b/cleopatre/application/spidgoahead/web/deluser.asp @@ -0,0 +1,28 @@ + + + +Delete a User + + +<% language=javascript %> + + + +

Delete a User

+
+ + + +<% MakeUserList(); %> + + + + + +
+
+ +
+ + + diff --git a/cleopatre/application/spidgoahead/web/eth0.asp b/cleopatre/application/spidgoahead/web/eth0.asp new file mode 100644 index 0000000000..55a65f4d62 --- /dev/null +++ b/cleopatre/application/spidgoahead/web/eth0.asp @@ -0,0 +1,239 @@ + + + + SPC 300 - SPiDCOM + + + + + + + + + + + +

Ethernet configuration

+ + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

Network configuration

Current IP address
Current netmask
Current gateway address
MAC address
+ +

Activity statistics

+ + + + + + + + + + +
RX:TX:
BytesBytes
PacketsPackets
ErrorsErrors
DropsDrops
FifoFifo
FrameColls
CompressedCarrier
MulticastCompressed
+
+Auto refresh +
+ + +
+

+
+
+
+

+
+ + +
+ + + + + + + \ No newline at end of file diff --git a/cleopatre/application/spidgoahead/web/footer.html b/cleopatre/application/spidgoahead/web/footer.html new file mode 100644 index 0000000000..25862cea00 --- /dev/null +++ b/cleopatre/application/spidgoahead/web/footer.html @@ -0,0 +1,7 @@ + + +
+ +
+ + diff --git a/cleopatre/application/spidgoahead/web/index.asp b/cleopatre/application/spidgoahead/web/index.asp new file mode 100644 index 0000000000..ca9d07be9b --- /dev/null +++ b/cleopatre/application/spidgoahead/web/index.asp @@ -0,0 +1,27 @@ + + + SPiDCOM - SPC 300 + + + + + + + + + + + + + + + + + + diff --git a/cleopatre/application/spidgoahead/web/jslib/query.js b/cleopatre/application/spidgoahead/web/jslib/query.js new file mode 100644 index 0000000000..059bd89460 --- /dev/null +++ b/cleopatre/application/spidgoahead/web/jslib/query.js @@ -0,0 +1,111 @@ +// + + + + +
Show/Hide ASP console :

+ + + + + \ No newline at end of file diff --git a/cleopatre/application/spidgoahead/web/pattern.png b/cleopatre/application/spidgoahead/web/pattern.png new file mode 100644 index 0000000000..5159b3bbf1 Binary files /dev/null and b/cleopatre/application/spidgoahead/web/pattern.png differ diff --git a/cleopatre/application/spidgoahead/web/plc0.asp b/cleopatre/application/spidgoahead/web/plc0.asp new file mode 100644 index 0000000000..ee4e588eb6 --- /dev/null +++ b/cleopatre/application/spidgoahead/web/plc0.asp @@ -0,0 +1,307 @@ + + + + SPC 300 - SPiDCOM + + + + + + + + + + + +

PLC configuration

+ + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

Network configuration

Current IP address
Current netmask
Current gateway address
MAC address
+ +

Activity statistics

+ + + + + + + + + + +
RX:TX:
BytesBytes
PacketsPackets
ErrorsErrors
DropsDrops
FifoFifo
FrameColls
CompressedCarrier
MulticastCompressed
+
+Auto refresh +
+ + + + +

Station managment

+ +
+ + + + + + + + + +
+ +
+
+
+

+
+
+
+

+
+ + + + + + +
+ + + + + + + + + \ No newline at end of file diff --git a/cleopatre/application/spidgoahead/web/savecfg.asp b/cleopatre/application/spidgoahead/web/savecfg.asp new file mode 100644 index 0000000000..0947eb58dc --- /dev/null +++ b/cleopatre/application/spidgoahead/web/savecfg.asp @@ -0,0 +1,24 @@ + + + +Save the User Configuration + +<% language=javascript %> + + + +

Permanently save the user configuration

+
+ + + + + + +
+
+ +
+ + + diff --git a/cleopatre/application/spidgoahead/web/soft.asp b/cleopatre/application/spidgoahead/web/soft.asp new file mode 100644 index 0000000000..25ccefc945 --- /dev/null +++ b/cleopatre/application/spidgoahead/web/soft.asp @@ -0,0 +1,15 @@ + + + + + + + + + \ No newline at end of file diff --git a/cleopatre/application/spidgoahead/web/spidcom.gif b/cleopatre/application/spidgoahead/web/spidcom.gif new file mode 100644 index 0000000000..6bf1629a29 Binary files /dev/null and b/cleopatre/application/spidgoahead/web/spidcom.gif differ diff --git a/cleopatre/application/spidgoahead/web/stat.asp b/cleopatre/application/spidgoahead/web/stat.asp new file mode 100644 index 0000000000..f1919f3dd2 --- /dev/null +++ b/cleopatre/application/spidgoahead/web/stat.asp @@ -0,0 +1,61 @@ + + + + + + + + + + \ No newline at end of file diff --git a/cleopatre/application/spidgoahead/web/style/doc.css b/cleopatre/application/spidgoahead/web/style/doc.css new file mode 100644 index 0000000000..94147aac97 --- /dev/null +++ b/cleopatre/application/spidgoahead/web/style/doc.css @@ -0,0 +1,42 @@ +body { + font-family: Arial, Helvetica, sans-serif; font-size: 9pt; +; margin-right: 5px; margin-left: 10px +} +p { +; margin-left: 30px +; font-family: Arial, Helvetica, sans-serif; color: #333333 +; font-size: 9pt +} +h3 { + font-size: 10pt; font-weight: bold; +; margin-top: 8pt +; font-family: Arial, Helvetica, sans-serif; color: #0066CC +} +h2 { + font-size: 11pt; font-weight: bold; +; margin-top: 8pt +; font-family: Arial, Helvetica, sans-serif; color: #0066CC +} +h1 { + font-size: 16pt; font-weight: bold; +; font-family: Arial, Helvetica, sans-serif; color: #0066CC +} +pre { + background-color: #EEEEEE; +; color: #0A0A8C; font-family: "Courier New", Courier, mono; font-size: 9pt +; padding-left: 31px +; padding-top: 5px; padding-right: 20px; padding-bottom: 5px +} +li { +; font-family: Arial, Helvetica, sans-serif; color: #333333 +; margin-left: 30px +; font-size: 9pt +} +td { font-family: Arial, Helvetica, sans-serif; font-size: 9pt; color: #333333; vertical-align: top} + +ul { ; font-family: Arial, Helvetica, sans-serif; color: #333333; margin-left: 30px; font-size: 9pt } +.titleLeft { font-family: Arial, Helvetica, sans-serif; font-size: 10pt; font-weight: bold; width: 33%; color: #0066CC; text-align: left} +.titleCenter { font-family: Arial, Helvetica, sans-serif; font-size: 10pt; font-weight: bold; width: 33%; color: #0066CC; text-align: center} +.titleRight { font-family: Arial, Helvetica, sans-serif; font-size: 10pt; font-weight: bold; width: 33%; color: #0066CC; text-align: right} +table { padding-left: 30px} +.apiTitle { padding-left: 0px} diff --git a/cleopatre/application/spidgoahead/web/style/help.htm b/cleopatre/application/spidgoahead/web/style/help.htm new file mode 100644 index 0000000000..7b1e028131 --- /dev/null +++ b/cleopatre/application/spidgoahead/web/style/help.htm @@ -0,0 +1,40 @@ + diff --git a/cleopatre/application/spidgoahead/web/style/menu.htm b/cleopatre/application/spidgoahead/web/style/menu.htm new file mode 100644 index 0000000000..63e64fe96c --- /dev/null +++ b/cleopatre/application/spidgoahead/web/style/menu.htm @@ -0,0 +1,55 @@ + + diff --git a/cleopatre/application/spidgoahead/web/style/normal_ws.css b/cleopatre/application/spidgoahead/web/style/normal_ws.css new file mode 100644 index 0000000000..3c30e6bf22 --- /dev/null +++ b/cleopatre/application/spidgoahead/web/style/normal_ws.css @@ -0,0 +1,48 @@ +body { + font-family: Arial, Helvetica, sans-serif; font-size: 9pt; +} +p { + font-size: 9pt; +; margin-left: 10px +; font-family: Arial, Helvetica, sans-serif; color: #333333 +} +h1 { + font-size: 14pt; font-weight: bold; +; margin-left: 10px +; font-family: Arial, Helvetica, sans-serif; color: #0066CC +} +h2 { + font-size: 12pt; font-weight: bold; +; margin-left: 10px +; font-family: Arial, Helvetica, sans-serif; color: #0066CC +} +h3 { + font-size: 10pt; font-weight: bold; +; margin-left: 10px +; font-family: Arial, Helvetica, sans-serif; color: #0066CC +} +pre { +line-height: normal; +; color: #0A0A8C +; font-family: "Courier New", Courier, mono; font-size: 9pt; margin-left: 10px; background-color: #EEEEEE; padding-left: 20px +; padding-top: 5px; padding-bottom: 5px; padding-right: 20px +} +td { + font-size: 9pt; + font-family: Arial, Helvetica, sans-serif; color: #333333; + padding-top:2px; + padding-bottom:2px; + padding-left:3px; + padding-right:3px; +} +a { text-decoration: none;} + +a:focus { outline: none; } + +table { margin-left: 0px; + background: url('/pattern.png'); +} +ol { margin-left: 5px; color: #0066CC; font-family: Arial, Helvetica, sans-serif; font-size: 9pt} +li a:hover { color: #0066C0;} +ul { font-size: 9pt; margin-left: 5px; font-family: Arial, Helvetica, sans-serif; color: #0066CC} +h4 { font-size: 9pt; font-weight: bold; margin-left: 10px ; font-family: Arial, Helvetica, sans-serif; color: #0066CC} diff --git a/cleopatre/application/spidgoahead/web/style/option.htm b/cleopatre/application/spidgoahead/web/style/option.htm new file mode 100644 index 0000000000..7b1406af59 --- /dev/null +++ b/cleopatre/application/spidgoahead/web/style/option.htm @@ -0,0 +1,28 @@ + diff --git a/cleopatre/application/spidgoahead/web/um.htm b/cleopatre/application/spidgoahead/web/um.htm new file mode 100644 index 0000000000..e4d5108b5b --- /dev/null +++ b/cleopatre/application/spidgoahead/web/um.htm @@ -0,0 +1,10 @@ + + +Company Overview + + + + +
+

User Management Functions

Add User

The Add a User option calls up the URL, "adduser.asp". This Add a User data entry pane contains these fields:

User ID - enter the ID of the user in this text field
Group - select a user group from this list for the user
Enabled -ensure that the Check box is checked to enable the user
Password - secure text field (displays asterisks)
Confirm - secure text field

Delete User

The Delete a User option calls up the URL, "deluser.asp". The Delete a User data entry pane provides a list of all added users. Use this list to select the user you wish to delete.

Clicking OK deletes the selected user and updates the user list accordingly.

Add Group

The Add a User Group option calls up the URL, "addgroup.asp". The Add Group data entry pane contains these fields:

Group Name - enter the name of the group in this text field.
Privilege - select privileges from this list to assign to the group (holding down the control key allows you to select multiple privileges)
Access Method - select the default access method from the provided list that will be assigned to the group
Enabled - ensure that the check box is selected to enable the user group

Delete Group

The Delete a User Group option calls up the URL, "delgroup.asp". The Delete Group data-entry pane provides a list of all added user groups. Use this list to select the user group you wish to delete.

Clicking the OK button deletes the selected user group then updates the user group list accordingly.

Add Access Limit

The Add an Access Limit option calls up the URL, "addlimit.asp". The Add Access Limit data entry pane box provides the following fields:

URL - enter the URL path to the page or the directory in this text field
Group - select the group (optional) to assign to the URL
Access Method - select the access method from this list to assign to the URL. If a group is selected, this item is ignored.
Secure - select this check box if you require data encryption for this URL. This item will be ignored unless SSL is installed.

Delete Access Limit

The Delete an Access Limit option calls up the URL, "dellimit.asp". The Delete Group data entry pane provides a list of all access limit that have been assigned to this URL. Use this list to select the access limit you wish to delete

Clicking OK deletes the selected access limits then updates the list of existing access limits.

Save the User Configuration

This option calls up the URL, “savecfg.asp”. The Permanently Save the User Configuration data entry pane contains no data fields. Clicking OK saves the current User Management configuration. If the user configuration data had been saved previously, it will be overwritten. Data is saved in the file “umconfig.txt”.

Restore the User Configuration

This option calls up the URL, "loadcfg.asp". The Re-load the Permanently Stored User Configuration data entry pane contains no data fields. Clicking OK replaces the current User Management configuration with the user configuration data previously saved. If no data has been saved, then the user configuration data will be deleted. Data is saved in the file "umconfig.txt".

 

+ diff --git a/cleopatre/application/spidgoahead/web/wifi0.asp b/cleopatre/application/spidgoahead/web/wifi0.asp new file mode 100644 index 0000000000..bd14498d4c --- /dev/null +++ b/cleopatre/application/spidgoahead/web/wifi0.asp @@ -0,0 +1,377 @@ + + + + SPC 300 - SPiDCOM + + + + + + + + + + + +

Wifi configuration

+
+ + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

Network configuration

SSID
Wireless Mode +
Channel +

Security configuration

 
 
Authentication type
Encryption type
Key
8 ~ 63 ASCII characters
Rekey interval +(sec)
 
Authentication type
Encryption type
Radius ip
Radius port
Radius key
Rekey interval +(sec)
 
Authentication type
Key type
+ + +
+ +
+

+
+
+
+

+
+ + +
+ + + \ No newline at end of file diff --git a/cleopatre/application/spidgoahead/web/ws.gif b/cleopatre/application/spidgoahead/web/ws.gif new file mode 100644 index 0000000000..8dd2d1dc60 Binary files /dev/null and b/cleopatre/application/spidgoahead/web/ws.gif differ -- cgit v1.2.3