[stupidzombie~source-code-repository:152] Refactoring of old code from Ant to Maven
- From: josevnz@kenai.com
- To: commits@stupidzombie.kenai.com
- Subject: [stupidzombie~source-code-repository:152] Refactoring of old code from Ant to Maven
- Date: Sun, 5 Feb 2012 03:26:50 +0000
Project: stupidzombie
Repository: source-code-repository
Revision: 152
Author: josevnz
Date: 2012-02-05 03:26:46 UTC
Link:
Log Message:
------------
Refactoring of old code from Ant to Maven
Revisions:
----------
152
Added Paths:
------------
branches/newfeatures/ping/resources
branches/newfeatures/ping/src
branches/newfeatures/ping/src/main
branches/newfeatures/ping/src/test
branches/newfeatures/walker
branches/newfeatures/walker/src/main/java/com/stupidzombie/walker/Table.java
branches/newfeatures/pom.xml
branches/newfeatures/ping
branches/newfeatures/walker/pom.xml
branches/newfeatures
branches/newfeatures/ping/resources/img
Diffs:
------
Index:
branches/newfeatures/walker/src/test/java/com/stupidzombie/walker/AppTest.java
===================================================================
---
branches/newfeatures/walker/src/test/java/com/stupidzombie/walker/AppTest.java
(revision 0)
+++
branches/newfeatures/walker/src/test/java/com/stupidzombie/walker/AppTest.java
(revision 152)
@@ -0,0 +1,38 @@
+package com.stupidzombie.walker;
+
+import junit.framework.Test;
+import junit.framework.TestCase;
+import junit.framework.TestSuite;
+
+/**
+ * Unit test for simple App.
+ */
+public class AppTest
+ extends TestCase
+{
+ /**
+ * Create the test case
+ *
+ * @param testName name of the test case
+ */
+ public AppTest( String testName )
+ {
+ super( testName );
+ }
+
+ /**
+ * @return the suite of tests being tested
+ */
+ public static Test suite()
+ {
+ return new TestSuite( AppTest.class );
+ }
+
+ /**
+ * Rigourous Test :-)
+ */
+ public void testApp()
+ {
+ assertTrue( true );
+ }
+}
Index:
branches/newfeatures/walker/src/main/java/com/stupidzombie/walker/App.java
===================================================================
---
branches/newfeatures/walker/src/main/java/com/stupidzombie/walker/App.java
(revision 0)
+++
branches/newfeatures/walker/src/main/java/com/stupidzombie/walker/App.java
(revision 152)
@@ -0,0 +1,13 @@
+package com.stupidzombie.walker;
+
+/**
+ * Hello world!
+ *
+ */
+public class App
+{
+ public static void main( String[] args )
+ {
+ System.out.println( "Hello World!" );
+ }
+}
Index:
branches/newfeatures/walker/src/main/java/com/stupidzombie/walker/Table.java
===================================================================
---
branches/newfeatures/walker/src/main/java/com/stupidzombie/walker/Table.java
(revision 0)
+++
branches/newfeatures/walker/src/main/java/com/stupidzombie/walker/Table.java
(revision 152)
@@ -0,0 +1,146 @@
+package com.stupidzombie.walker;
+
+import javafx.application.Application;
+import javafx.beans.property.SimpleStringProperty;
+import javafx.beans.property.StringProperty;
+import javafx.collections.FXCollections;
+import javafx.collections.ObservableList;
+import javafx.event.ActionEvent;
+import javafx.event.EventHandler;
+import javafx.geometry.Insets;
+import javafx.scene.Group;
+import javafx.scene.Scene;
+import javafx.scene.control.Button;
+import javafx.scene.control.Label;
+import javafx.scene.control.TableColumn;
+import javafx.scene.control.TableView;
+import javafx.scene.control.TextField;
+import javafx.scene.control.cell.PropertyValueFactory;
+import javafx.scene.layout.HBox;
+import javafx.scene.layout.VBox;
+import javafx.scene.text.Font;
+import javafx.stage.Stage;
+
+public class Table extends Application {
+
+ public static class Person {
+
+ private final StringProperty firstName;
+ private final StringProperty lastName;
+ private final StringProperty email;
+
+ private Person(String fName, String lName, String email) {
+ this.firstName = new SimpleStringProperty(fName);
+ this.lastName = new SimpleStringProperty(lName);
+ this.email = new SimpleStringProperty(email);
+ }
+
+ public String getFirstName() {
+ return firstName.get();
+ }
+
+ public void setFirstName(String fName) {
+ firstName.set(fName);
+ }
+
+ public String getLastName() {
+ return lastName.get();
+ }
+
+ public void setLastName(String fName) {
+ lastName.set(fName);
+ }
+
+ public String getEmail() {
+ return email.get();
+ }
+
+ public void setEmail(String fName) {
+ email.set(fName);
+ }
+
+ }
+ private TableView<Person> table = new TableView<Person>();
+ private final ObservableList<Person> data =
+ FXCollections.observableArrayList(
+ new Person("Jacob", "Smith", "jacob.smith@example.com"),
+ new Person("Isabella", "Johnson",
"isabella.johnson@example.com"),
+ new Person("Ethan", "Williams", "ethan.williams@example.com"),
+ new Person("Emma", "Jones", "emma.jones@example.com"),
+ new Person("Michael", "Brown", "michael.brown@example.com")
+ );
+
+ private HBox hb = new HBox();
+
+ public static void main(String[] args) {
+ launch(args);
+ }
+
+ @Override
+ public void start(Stage stage) {
+ Scene scene = new Scene(new Group());
+ stage.setTitle("Table View Sample");
+ stage.setWidth(400);
+ stage.setHeight(500);
+
+ final Label label = new Label("Address Book");
+ label.setFont(new Font("Arial", 20));
+
+ TableColumn firstNameCol = new TableColumn("First");
+ firstNameCol.setCellValueFactory(
+ new PropertyValueFactory<Person,String>("firstName")
+ );
+
+ TableColumn lastNameCol = new TableColumn("Last");
+ lastNameCol.setCellValueFactory(
+ new PropertyValueFactory<Person,String>("lastName")
+ );
+
+ TableColumn emailCol = new TableColumn("Email");
+ emailCol.setMinWidth(200);
+ emailCol.setCellValueFactory(
+ new PropertyValueFactory<Person,String>("email")
+ );
+
+ table.setItems(data);
+ table.getColumns().addAll(firstNameCol, lastNameCol, emailCol);
+
+ final TextField addFirstName = new TextField();
+ addFirstName.setPromptText("Last Name");
+ addFirstName.setMaxWidth(firstNameCol.getPrefWidth());
+ final TextField addLastName = new TextField();
+ addLastName.setMaxWidth(lastNameCol.getPrefWidth());
+ addLastName.setPromptText("Last Name");
+ final TextField addEmail = new TextField();
+ addEmail.setMaxWidth(emailCol.getPrefWidth());
+ addEmail.setPromptText("Email");
+
+ final Button addButton = new Button("Add");
+ addButton.setOnAction(new EventHandler<ActionEvent>() {
+ @Override public void handle(ActionEvent e) {
+ data.add(new Person(
+ addFirstName.getText(),
+ addLastName.getText(),
+ addEmail.getText()
+ ));
+ addFirstName.setText("");
+ addLastName.setText("");
+ addEmail.setText("");
+ }
+ });
+
+ hb.getChildren().addAll(addFirstName, addLastName, addEmail,
addButton);
+ hb.setSpacing(3);
+
+ final VBox vbox = new VBox();
+ vbox.setSpacing(5);
+ vbox.getChildren().addAll(label, table, hb);
+ vbox.setPadding(new Insets(10, 0, 0, 10));
+
+ ((Group) scene.getRoot()).getChildren().addAll(vbox);
+
+ stage.setScene(scene);
+ stage.show();
+ }
+}
+
Index: branches/newfeatures/walker/pom.xml
===================================================================
--- branches/newfeatures/walker/pom.xml (revision 0)
+++ branches/newfeatures/walker/pom.xml (revision 152)
@@ -0,0 +1,12 @@
+<?xml version="1.0"?>
+<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
http://maven.apache.org/xsd/maven-4.0.0.xsd">
+ <parent>
+ <groupId>com.stupidzombie</groupId>
+ <artifactId>stupidzombie</artifactId>
+ <version>20120206</version>
+ </parent>
+ <modelVersion>4.0.0</modelVersion>
+ <artifactId>walker</artifactId>
+ <packaging>jar</packaging>
+ <name>walker</name>
+</project>
Index: branches/newfeatures/pom.xml
===================================================================
--- branches/newfeatures/pom.xml (revision 0)
+++ branches/newfeatures/pom.xml (revision 152)
@@ -0,0 +1,56 @@
+<?xml version="1.0"?>
+<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
http://maven.apache.org/xsd/maven-4.0.0.xsd">
+ <modelVersion>4.0.0</modelVersion>
+ <groupId>com.stupidzombie</groupId>
+ <artifactId>stupidzombie</artifactId>
+ <version>20120206</version>
+ <packaging>pom</packaging>
+ <url>http://stupidzombie.com</url>
+ <properties>
+ <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
+ <skipTests>true</skipTests>
+ </properties>
+ <distributionManagement>
+ <repository>
+ <id>stupidzombie</id>
+ <url>http://localhost:8080/archiva/repository/stupidzombie/</url>
+ <releases>
+ <enabled>true</enabled>
+ </releases>
+ <snapshots>
+ <enabled>false</enabled>
+ </snapshots>
+ </repository>
+ </distributionManagement>
+ <modules>
+ <module>walker</module>
+ <module>ping</module>
+ </modules>
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-surefire-plugin</artifactId>
+ <version>2.7.2</version>
+ <configuration>
+ <skipTests>true</skipTests>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+ <dependencies>
+ <dependency>
+ <groupId>com.oracle</groupId>
+ <artifactId>javafx</artifactId>
+ <version>2.0</version>
+ <systemPath>${fx.home}/rt/lib/jfxrt.jar</systemPath>
+ <scope>system</scope>
+ </dependency>
+ <dependency>
+ <groupId>junit</groupId>
+ <artifactId>junit</artifactId>
+ <version>3.8.1</version>
+ <scope>test</scope>
+ </dependency>
+ </dependencies>
+</project>
Index: branches/newfeatures/ping/website/contribute.html
===================================================================
--- branches/newfeatures/ping/website/contribute.html (revision 0)
+++ branches/newfeatures/ping/website/contribute.html (revision 152)
@@ -0,0 +1,107 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml"><head>
+
+<SCRIPT language="JavaScript" SRC="js/SZsiteJavascript.js"></SCRIPT>
+<link href="css/SZsiteCSS.css" rel="stylesheet" type="text/css">
+<link href="css/untitled.css" rel="stylesheet" type="text/css">
+
+<title>StupidZombie - Contribute</title>
+<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
+<meta name="Description" content="StupidZombie, the home of bloackhead, is
an opensource tool that can be used to ping several directories to notify
about a blog update but without the need of running it from a webpage like
blogger or wordpress.">
+<meta name="keywords" content="stupidzombie, blockhead, blog, blog tools,
ping, blogger, tag generator, stupidzombie home, opensource, open source,
stupid zombie, download, contribute">
+<!-- ImageReady Styles (SZwrefrm_hm_websafe_slice_08.ai - Slices: 01, 02,
03, 04, 05, 06, 07, 08, 09, 10, 11, 12, 13, 14, 15, 16, 17) -->
+<!-- End ImageReady Styles -->
+
+<script type="text/javascript">
+var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." :
"http://www.");
+document.write(unescape("%3Cscript src='" + gaJsHost +
"google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
+</script>
+<script type="text/javascript">
+try {
+var pageTracker = _gat._getTracker("UA-9007589-1");
+pageTracker._trackPageview();
+} catch(err) {}</script>
+
+<style type="text/css">
+<!--
+.style11 {color: #6699ff}
+-->
+</style>
+</head><body style="background-color: rgb(255, 255, 255);"
class="oneColFixCtr"
onload="MM_preloadImages('images/SZbluebar_Slice_2_2.png','images/SZbluebar_Slice_7_7.png','images/SZbluebar_Slice_8_8.png','images/SZbluebar_Slice_9_9.png','images/SZbluebar_Slice_10_10.png')"><div
id="container">
+
+
+
+
+<!-- ImageReady Slices (SZwrefrm_hm_websafe_slice_08.ai - Slices: 01, 02,
03, 04, 05, 06, 07, 08, 09, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19) -->
+<div id="Table_01">
+ <div id="SZv08-Slice-1-1_">
+ <img id="SZv08_Slice_1_1" src="images/SZv08_Slice_1_1.png"
alt="" height="590" width="30">
+ </div>
+ <div id="SZv08-Slice-2-2_">
+ <a href="index.html"><img src="images/SZv08_Slice_2_2.png"
alt="" id="SZv08_Slice_2_2"
onmouseover="MM_swapImage('SZv08_Slice_2_2','','images/SZbluebar_Slice_2_2.png',1)"
onmouseout="MM_swapImgRestore()" height="200" width="238"></a> </div>
+<div id="SZv08-Slice-3-3_">
+ <img id="SZv08_Slice_3_3" src="images/SZv08_Slice_3_3.png"
alt="" height="124" width="448">
+ </div>
+ <div id="SZv08-Slice-4-4_">
+ <img id="SZv08_Slice_4_4" src="images/SZv08_Slice_4_4.gif"
alt="" height="70" width="54">
+ </div>
+ <div id="SZv08-Slice-5-5_">
+ <img id="SZv08_Slice_5_5" src="images/SZv08_Slice_5_5.png"
alt="" height="590" width="30">
+ </div>
+ <div id="SZv08-Slice-6-6_">
+ <a href="http://stupidzombie.com/blog/feed/"><img
id="SZv08_Slice_6_6" src="images/SZv08_Slice_6_6.png" alt="" height="54"
width="54"></a> </div>
+<div id="SZv08-Slice-7-7_">
+ <a href="opensource.html"><img
src="images/SZv08_Slice_7_7.png" alt="" id="SZv08_Slice_7_7"
onmouseover="MM_swapImage('SZv08_Slice_7_7','','images/SZbluebar_Slice_7_7.png',1)"
onmouseout="MM_swapImgRestore()" height="36" width="140"></a> </div>
+<div id="SZv08-Slice-8-8_">
+ <a href="contribute.html"><img
src="images/SZv08_Slice_8_8.png" alt="" id="SZv08_Slice_8_8"
onmouseover="MM_swapImage('SZv08_Slice_8_8','','images/SZbluebar_Slice_8_8.png',1)"
onmouseout="MM_swapImgRestore()" height="36" width="132"></a> </div>
+<div id="SZv08-Slice-9-9_">
+ <a href="downloads.html"><img
src="images/SZv08_Slice_9_9.png" alt="" id="SZv08_Slice_9_9"
onmouseover="MM_swapImage('SZv08_Slice_9_9','','images/SZbluebar_Slice_9_9.png',1)"
onmouseout="MM_swapImgRestore()" height="36" width="136"></a> </div>
+<div id="SZv08-Slice-10-10_">
+ <a href="blog.html"><img src="images/SZv08_Slice_10_10.png"
alt="" id="SZv08_Slice_10_10"
onmouseover="MM_swapImage('SZv08_Slice_10_10','','images/SZbluebar_Slice_10_10.png',1)"
onmouseout="MM_swapImgRestore()" height="36" width="94"></a> </div>
+<div id="SZv08-Slice-11-11_">
+ <img id="SZv08_Slice_11_11"
src="images/SZv08_Slice_11_11.gif" alt="" height="40" width="374">
+ </div>
+ <div id="SZv08-Slice-12-12_">
+ <a href="downloads.html"><img id="SZv08_Slice_12_12"
src="images/SZv08_Slice_12_12.png" alt="" height="124" width="128"></a>
</div>
+<div id="SZv08-Slice-13-13_">
+ <img id="SZv08_Slice_13_13"
src="images/SZv08_Slice_13_13.gif" alt="" height="350" width="100"> </div>
+ <div id="SZv08-Slice-14-14_">
+ <div align="right"><img src="images/Contribute_logo.png" alt=""
class="logos" id="SZv08_Slice_14_14" align="absbottom" height="52"
width="267"></div>
+ </div>
+ <div id="SZv08-Slice-15-15_alt">
+ <p align="left">Blockhead needs your help. He is after all a stupid
zombie.</p>
+ <p align="left">You can contribute to <span class="style5
style11">Stupid</span><span class="style6">Zombie</span> in a number of
ways:</p>
+ <ul>
+ <li>
+ <div align="left">by sending us an email to give us
feedback</div>
+ </li>
+ <li>
+ <div align="left"> roll up your sleeves and help us with
coding</div>
+ </li>
+ <li>
+ <div align="left">if you find the <span
class="style9">S</span><span class="style10">Z</span>program has helped you
donate some money's to help support the costs associated with development and
support</div>
+ </li>
+ <li>
+ <div align="left">Even just spreading the word about <span
class="style9">Stupid</span><span class="style10">Zombie </span>can go a long
way to helping Blockhead (banners will be coming soon).</div>
+ </li>
+ </ul>
+ <p align="left">Send an email to <a
href="mailto:blockhead@stupidzombie.com">blockhead@stupidzombie.com</a></p>
+ <p align="left"><span class="oneColFixCtr">Please visit and become
friends of Blockhead on <a
href="http://www.facebook.com/topic.php?topic=8441&uid=48597864820#/group.php?gid=48597864820">Facebook</a>,
and follow us on <a href="http://twitter.com/stupidzombie">Twitter</a>
too.</span></p>
+ </div>
+<div id="SZv08-Slice-16-16_">
+ <a href="contribute.html"><img id="SZv08_Slice_16_16"
src="images/SZv08_Slice_16_16.png" alt="" height="117" width="128"></a>
</div>
+<div id="SZv08-Slice-17-17_">
+ <img id="SZv08_Slice_17_17"
src="images/SZv08_Slice_17_17.png" alt="" usemap="#SZv08_Slice_17_17_Map"
border="0" height="149" width="128"> </div>
+<div id="SZv08-Slice-18-18_">
+ <img id="SZv08_Slice_18_18"
src="images/SZv08_Slice_18_18.gif" alt="" height="40" width="740">
+ </div>
+ <div id="SZv08-Slice-19-19_">
+ <img id="SZv08_Slice_19_19"
src="images/SZv08_Slice_19_19.png" alt="" height="10" width="800">
+ </div>
+</div>
+<map name="SZv08_Slice_17_17_Map" id="SZv08_Slice_17_17_Map">
+<area shape="rect" alt="" coords="24,40,109,142"
href="http://feedburner.google.com/fb/a/mailverify?uri=Stupidzombie&loc=en_US">
+</map>
+<!-- End ImageReady Slices -->
+<!-- end #container --></div>
+</body></html>
Property changes on: branches/newfeatures/ping/website/contribute.html
___________________________________________________________________
Added: svn:executable
+ *
Index: branches/newfeatures/ping/website/images/SZv08_Slice_11_11.gif
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes on:
branches/newfeatures/ping/website/images/SZv08_Slice_11_11.gif
___________________________________________________________________
Added: svn:executable
+ *
Added: svn:mime-type
+ application/octet-stream
Index: branches/newfeatures/ping/website/images/Contribute_logo.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes on:
branches/newfeatures/ping/website/images/Contribute_logo.png
___________________________________________________________________
Added: svn:executable
+ *
Added: svn:mime-type
+ application/octet-stream
Index: branches/newfeatures/ping/website/images/SZv08_Slice_4_4.gif
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes on:
branches/newfeatures/ping/website/images/SZv08_Slice_4_4.gif
___________________________________________________________________
Added: svn:executable
+ *
Added: svn:mime-type
+ application/octet-stream
Index: branches/newfeatures/ping/website/images/SZdownload-button_04.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes on:
branches/newfeatures/ping/website/images/SZdownload-button_04.png
___________________________________________________________________
Added: svn:executable
+ *
Added: svn:mime-type
+ application/octet-stream
Index: branches/newfeatures/ping/website/images/SZv08_Slice_13_13.gif
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes on:
branches/newfeatures/ping/website/images/SZv08_Slice_13_13.gif
___________________________________________________________________
Added: svn:executable
+ *
Added: svn:mime-type
+ application/octet-stream
Index: branches/newfeatures/ping/website/images/Opensource_logo.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes on:
branches/newfeatures/ping/website/images/Opensource_logo.png
___________________________________________________________________
Added: svn:executable
+ *
Added: svn:mime-type
+ application/octet-stream
Index: branches/newfeatures/ping/website/images/SZv08_Slice_14_14.gif
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes on:
branches/newfeatures/ping/website/images/SZv08_Slice_14_14.gif
___________________________________________________________________
Added: svn:executable
+ *
Added: svn:mime-type
+ application/octet-stream
Index: branches/newfeatures/ping/website/images/SZbluebar_Slice_10_10.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes on:
branches/newfeatures/ping/website/images/SZbluebar_Slice_10_10.png
___________________________________________________________________
Added: svn:executable
+ *
Added: svn:mime-type
+ application/octet-stream
Index: branches/newfeatures/ping/website/images/SZv08_Slice_1_1.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes on:
branches/newfeatures/ping/website/images/SZv08_Slice_1_1.png
___________________________________________________________________
Added: svn:executable
+ *
Added: svn:mime-type
+ application/octet-stream
Index: branches/newfeatures/ping/website/images/SZv08_Slice_10_10.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes on:
branches/newfeatures/ping/website/images/SZv08_Slice_10_10.png
___________________________________________________________________
Added: svn:executable
+ *
Added: svn:mime-type
+ application/octet-stream
Index: branches/newfeatures/ping/website/images/SZv08_Slice_18_18.gif
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes on:
branches/newfeatures/ping/website/images/SZv08_Slice_18_18.gif
___________________________________________________________________
Added: svn:executable
+ *
Added: svn:mime-type
+ application/octet-stream
Index: branches/newfeatures/ping/website/images/SZbluebar_Slice_2_2.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes on:
branches/newfeatures/ping/website/images/SZbluebar_Slice_2_2.png
___________________________________________________________________
Added: svn:executable
+ *
Added: svn:mime-type
+ application/octet-stream
Index: branches/newfeatures/ping/website/images/SZv08_Slice_2_2.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes on:
branches/newfeatures/ping/website/images/SZv08_Slice_2_2.png
___________________________________________________________________
Added: svn:executable
+ *
Added: svn:mime-type
+ application/octet-stream
Index: branches/newfeatures/ping/website/images/SZv08_Slice_3_3.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes on:
branches/newfeatures/ping/website/images/SZv08_Slice_3_3.png
___________________________________________________________________
Added: svn:executable
+ *
Added: svn:mime-type
+ application/octet-stream
Index: branches/newfeatures/ping/website/images/SZlogo.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes on: branches/newfeatures/ping/website/images/SZlogo.png
___________________________________________________________________
Added: svn:executable
+ *
Added: svn:mime-type
+ application/octet-stream
Index: branches/newfeatures/ping/website/images/SZv08_Slice_12_12.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes on:
branches/newfeatures/ping/website/images/SZv08_Slice_12_12.png
___________________________________________________________________
Added: svn:executable
+ *
Added: svn:mime-type
+ application/octet-stream
Index: branches/newfeatures/ping/website/images/SZv08_Slice_5_5.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes on:
branches/newfeatures/ping/website/images/SZv08_Slice_5_5.png
___________________________________________________________________
Added: svn:executable
+ *
Added: svn:mime-type
+ application/octet-stream
Index: branches/newfeatures/ping/website/images/SZv08_Slice_6_6.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes on:
branches/newfeatures/ping/website/images/SZv08_Slice_6_6.png
___________________________________________________________________
Added: svn:executable
+ *
Added: svn:mime-type
+ application/octet-stream
Index: branches/newfeatures/ping/website/images/SZbluebar_Slice_7_7.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes on:
branches/newfeatures/ping/website/images/SZbluebar_Slice_7_7.png
___________________________________________________________________
Added: svn:executable
+ *
Added: svn:mime-type
+ application/octet-stream
Index: branches/newfeatures/ping/website/images/SZv08_Slice_16_16.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes on:
branches/newfeatures/ping/website/images/SZv08_Slice_16_16.png
___________________________________________________________________
Added: svn:executable
+ *
Added: svn:mime-type
+ application/octet-stream
Index: branches/newfeatures/ping/website/images/SZv08_Slice_7_7.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes on:
branches/newfeatures/ping/website/images/SZv08_Slice_7_7.png
___________________________________________________________________
Added: svn:executable
+ *
Added: svn:mime-type
+ application/octet-stream
Index: branches/newfeatures/ping/website/images/SZscreenshot.jpg
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes on: branches/newfeatures/ping/website/images/SZscreenshot.jpg
___________________________________________________________________
Added: svn:executable
+ *
Added: svn:mime-type
+ application/octet-stream
Index: branches/newfeatures/ping/website/images/SZbluebar_Slice_8_8.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes on:
branches/newfeatures/ping/website/images/SZbluebar_Slice_8_8.png
___________________________________________________________________
Added: svn:executable
+ *
Added: svn:mime-type
+ application/octet-stream
Index: branches/newfeatures/ping/website/images/Download_logo.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes on:
branches/newfeatures/ping/website/images/Download_logo.png
___________________________________________________________________
Added: svn:executable
+ *
Added: svn:mime-type
+ application/octet-stream
Index: branches/newfeatures/ping/website/images/SZv08_Slice_17_17.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes on:
branches/newfeatures/ping/website/images/SZv08_Slice_17_17.png
___________________________________________________________________
Added: svn:executable
+ *
Added: svn:mime-type
+ application/octet-stream
Index: branches/newfeatures/ping/website/images/SZv08_Slice_8_8.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes on:
branches/newfeatures/ping/website/images/SZv08_Slice_8_8.png
___________________________________________________________________
Added: svn:executable
+ *
Added: svn:mime-type
+ application/octet-stream
Index: branches/newfeatures/ping/website/images/SZbluebar_Slice_9_9.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes on:
branches/newfeatures/ping/website/images/SZbluebar_Slice_9_9.png
___________________________________________________________________
Added: svn:executable
+ *
Added: svn:mime-type
+ application/octet-stream
Index: branches/newfeatures/ping/website/images/underconstruction.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes on:
branches/newfeatures/ping/website/images/underconstruction.png
___________________________________________________________________
Added: svn:executable
+ *
Added: svn:mime-type
+ application/octet-stream
Index: branches/newfeatures/ping/website/images/SZv08_Slice_9_9.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes on:
branches/newfeatures/ping/website/images/SZv08_Slice_9_9.png
___________________________________________________________________
Added: svn:executable
+ *
Added: svn:mime-type
+ application/octet-stream
Index: branches/newfeatures/ping/website/images/SZv08_Slice_19_19.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes on:
branches/newfeatures/ping/website/images/SZv08_Slice_19_19.png
___________________________________________________________________
Added: svn:executable
+ *
Added: svn:mime-type
+ application/octet-stream
Index: branches/newfeatures/ping/website/opensource.html
===================================================================
--- branches/newfeatures/ping/website/opensource.html (revision 0)
+++ branches/newfeatures/ping/website/opensource.html (revision 152)
@@ -0,0 +1,99 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml"><head>
+
+<SCRIPT language="JavaScript" SRC="js/SZsiteJavascript.js"></SCRIPT>
+<link href="css/SZsiteCSS.css" rel="stylesheet" type="text/css">
+
+<title>StupidZombie - Opensource</title>
+<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
+<meta name="Description" content="StupidZombie, the home of bloackhead, is
an opensource tool that can be used to ping several directories to notify
about a blog update but without the need of running it from a webpage like
blogger or wordpress.">
+<meta name="keywords" content="stupidzombie, blockhead, blog, blog tools,
ping, blogger, tag generator, stupidzombie home, opensource, open source,
stupid zombie, download, contribute">
+<!-- ImageReady Styles (SZwrefrm_hm_websafe_slice_08.ai - Slices: 01, 02,
03, 04, 05, 06, 07, 08, 09, 10, 11, 12, 13, 14, 15, 16, 17) -->
+<!-- End ImageReady Styles -->
+
+<script type="text/javascript">
+var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." :
"http://www.");
+document.write(unescape("%3Cscript src='" + gaJsHost +
"google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
+</script>
+<script type="text/javascript">
+try {
+var pageTracker = _gat._getTracker("UA-9007589-1");
+pageTracker._trackPageview();
+} catch(err) {}</script>
+
+</head><body style="background-color: rgb(255, 255, 255);"
class="oneColFixCtr"
onload="MM_preloadImages('images/SZbluebar_Slice_2_2.png','images/SZbluebar_Slice_7_7.png','images/SZbluebar_Slice_8_8.png','images/SZbluebar_Slice_9_9.png','images/SZbluebar_Slice_10_10.png')"><div
id="container">
+
+
+
+
+<!-- ImageReady Slices (SZwrefrm_hm_websafe_slice_08.ai - Slices: 01, 02,
03, 04, 05, 06, 07, 08, 09, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19) -->
+<div id="Table_01">
+ <div id="SZv08-Slice-1-1_">
+ <img id="SZv08_Slice_1_1" src="images/SZv08_Slice_1_1.png"
alt="" height="590" width="30">
+ </div>
+ <div id="SZv08-Slice-2-2_">
+ <a href="index.html"><img src="images/SZv08_Slice_2_2.png"
alt="" id="SZv08_Slice_2_2"
onmouseover="MM_swapImage('SZv08_Slice_2_2','','images/SZbluebar_Slice_2_2.png',1)"
onmouseout="MM_swapImgRestore()" height="200" width="238"></a> </div>
+<div id="SZv08-Slice-3-3_">
+ <img id="SZv08_Slice_3_3" src="images/SZv08_Slice_3_3.png"
alt="" height="124" width="448">
+ </div>
+ <div id="SZv08-Slice-4-4_">
+ <img id="SZv08_Slice_4_4" src="images/SZv08_Slice_4_4.gif"
alt="" height="70" width="54">
+ </div>
+ <div id="SZv08-Slice-5-5_">
+ <img id="SZv08_Slice_5_5" src="images/SZv08_Slice_5_5.png"
alt="" height="590" width="30">
+ </div>
+ <div id="SZv08-Slice-6-6_">
+ <a href="http://stupidzombie.com/blog/feed/"><img
src="images/SZv08_Slice_6_6.png" alt="" id="SZv08_Slice_6_6"
href="http://feedburner.google.com/fb/a/mailverify?uri=Stupidzombie&loc=en_US"
height="54" width="54"></a> </div>
+<div id="SZv08-Slice-7-7_">
+ <a href="opensource.html"><img
src="images/SZv08_Slice_7_7.png" alt="" id="SZv08_Slice_7_7"
onmouseover="MM_swapImage('SZv08_Slice_7_7','','images/SZbluebar_Slice_7_7.png',1)"
onmouseout="MM_swapImgRestore()" height="36" width="140"></a> </div>
+<div id="SZv08-Slice-8-8_">
+ <a href="contribute.html"><img
src="images/SZv08_Slice_8_8.png" alt="" id="SZv08_Slice_8_8"
onmouseover="MM_swapImage('SZv08_Slice_8_8','','images/SZbluebar_Slice_8_8.png',1)"
onmouseout="MM_swapImgRestore()" height="36" width="132"></a> </div>
+<div id="SZv08-Slice-9-9_">
+ <a href="downloads.html"><img
src="images/SZv08_Slice_9_9.png" alt="" id="SZv08_Slice_9_9"
onmouseover="MM_swapImage('SZv08_Slice_9_9','','images/SZbluebar_Slice_9_9.png',1)"
onmouseout="MM_swapImgRestore()" height="36" width="136"></a> </div>
+<div id="SZv08-Slice-10-10_">
+ <a href="blog.html"><img src="images/SZv08_Slice_10_10.png"
alt="" id="SZv08_Slice_10_10"
onmouseover="MM_swapImage('SZv08_Slice_10_10','','images/SZbluebar_Slice_10_10.png',1)"
onmouseout="MM_swapImgRestore()" height="36" width="94"></a> </div>
+<div id="SZv08-Slice-11-11_">
+ <img id="SZv08_Slice_11_11"
src="images/SZv08_Slice_11_11.gif" alt="" height="40" width="374">
+ </div>
+ <div id="SZv08-Slice-12-12_">
+ <a href="downloads.html"><img id="SZv08_Slice_12_12"
src="images/SZv08_Slice_12_12.png" alt="" height="124" width="128"></a>
</div>
+<div id="SZv08-Slice-13-13_">
+ <img id="SZv08_Slice_13_13"
src="images/SZv08_Slice_13_13.gif" alt="" height="350" width="30"> </div>
+ <div id="SZv08-Slice-14-14_">
+ <div align="center"><img id="SZv08_Slice_14_14"
src="images/Opensource_logo.png" alt="" height="62" width="267"> </div>
+ </div>
+ <div id="SZv08-Slice-15-15_alt">
+ <p class="style2" align="left">Open
+source is a development method for software that harnesses the power of
+distributed peer review and transparency of process. The promise of
+open source is better quality, higher reliability, more flexibility,
+lower cost, and an end to predatory vendor lock-in. The <a
href="http://www.opensource.org/">Open Source Initiative (OSI)</a>
+is a non-profit corporation formed to educate about and advocate for
+the benefits of open source and to build bridges among different
+constituencies in the open-source community.</p>
+ <p class="style2" align="left">One of our most important activities
is as a standards body, maintaining the <a
href="http://www.opensource.org/docs/osd">Open Source Definition</a>
+for the good of the community. The Open Source Initiative Approved
+License trademark and program creates a nexus of trust around which
+developers, users, corporations and governments can organize
+open-source cooperation. <span class="style1">(taken from<a
href="http://www.opensource.org/"> opensource.org</a></span>)</p>
+ <p class="style1" align="left">Please see the java.net open source
project websource page for more detailed information on the <span
class="style4">Stupid</span><span class="style5">Zombie</span> project, <a
href="https://stupidzombie.dev.java.net/">here</a>.</p>
+ <p class="style1" align="left">Also see the Kenai.com <a
href="https://kenai.com/svn/stupidzombie~source-code-repository"> SVN
repository for the code</a>, for more detailed information on the <span
class="style4">Stupid</span><span class="style5">Zombie</span> project, visit
<a href="http://kenai.com/projects/stupidzombie">this page</a>.</p>
+ <p class="style1" align="left"> </p>
+ </div>
+<div id="SZv08-Slice-16-16_">
+ <a href="contribute.html"><img id="SZv08_Slice_16_16"
src="images/SZv08_Slice_16_16.png" alt="" height="117" width="128"></a>
</div>
+<div id="SZv08-Slice-17-17_">
+ <img id="SZv08_Slice_17_17"
src="images/SZv08_Slice_17_17.png" alt="" usemap="#SZv08_Slice_17_17_Map"
border="0" height="149" width="128"> </div>
+<div id="SZv08-Slice-18-18_">
+ <img id="SZv08_Slice_18_18"
src="images/SZv08_Slice_18_18.gif" alt="" height="40" width="740">
+ </div>
+ <div id="SZv08-Slice-19-19_">
+ <img id="SZv08_Slice_19_19"
src="images/SZv08_Slice_19_19.png" alt="" height="10" width="800">
+ </div>
+</div>
+<map name="SZv08_Slice_17_17_Map" id="SZv08_Slice_17_17_Map">
+<area shape="rect" alt="" coords="24,40,109,142"
href="http://feedburner.google.com/fb/a/mailverify?uri=Stupidzombie&loc=en_US">
+</map>
+<!-- End ImageReady Slices -->
+<!-- end #container --></div>
+</body></html>
Property changes on: branches/newfeatures/ping/website/opensource.html
___________________________________________________________________
Added: svn:executable
+ *
Index: branches/newfeatures/ping/website/blog.html
===================================================================
--- branches/newfeatures/ping/website/blog.html (revision 0)
+++ branches/newfeatures/ping/website/blog.html (revision 152)
@@ -0,0 +1,85 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml"><head>
+
+<SCRIPT language="JavaScript" SRC="js/SZsiteJavascript.js"></SCRIPT>
+<link href="css/SZsiteCSS.css" rel="stylesheet" type="text/css">
+<link href="css/untitled.css" rel="stylesheet" type="text/css">
+
+<title>StupidZombie - Blog</title>
+<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
+<meta name="Description" content="StupidZombie, the home of bloackhead, is
an opensource tool that can be used to ping several directories to notify
about a blog update but without the need of running it from a webpage like
blogger or wordpress.">
+<meta name="keywords" content="stupidzombie, blockhead, blog, blog tools,
ping, blogger, tag generator, stupidzombie home, opensource, open source,
stupid zombie, download, contribute">
+<!-- ImageReady Styles (SZwrefrm_hm_websafe_slice_08.ai - Slices: 01, 02,
03, 04, 05, 06, 07, 08, 09, 10, 11, 12, 13, 14, 15, 16, 17) -->
+<!-- End ImageReady Styles -->
+
+<script type="text/javascript">
+var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." :
"http://www.");
+document.write(unescape("%3Cscript src='" + gaJsHost +
"google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
+</script>
+<script type="text/javascript">
+try {
+var pageTracker = _gat._getTracker("UA-9007589-1");
+pageTracker._trackPageview();
+} catch(err) {}</script>
+
+</head><body style="background-color: rgb(255, 255, 255);"
class="oneColFixCtr"
onload="MM_preloadImages('images/SZbluebar_Slice_2_2.png','images/SZbluebar_Slice_7_7.png','images/SZbluebar_Slice_8_8.png','images/SZbluebar_Slice_9_9.png','images/SZbluebar_Slice_10_10.png')"><div
id="container">
+
+<!-- ImageReady Slices (SZwrefrm_hm_websafe_slice_08.ai - Slices: 01, 02,
03, 04, 05, 06, 07, 08, 09, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19) -->
+<div id="Table_01">
+ <div id="SZv08-Slice-1-1_">
+ <img id="SZv08_Slice_1_1" src="images/SZv08_Slice_1_1.png"
alt="" height="590" width="30">
+ </div>
+ <div id="SZv08-Slice-2-2_">
+ <a href="index.html"><img src="images/SZv08_Slice_2_2.png"
alt="" id="SZv08_Slice_2_2"
onmouseover="MM_swapImage('SZv08_Slice_2_2','','images/SZbluebar_Slice_2_2.png',1)"
onmouseout="MM_swapImgRestore()" height="200" width="238"></a> </div>
+<div id="SZv08-Slice-3-3_">
+ <img id="SZv08_Slice_3_3" src="images/SZv08_Slice_3_3.png"
alt="" height="124" width="448">
+ </div>
+ <div id="SZv08-Slice-4-4_">
+ <img id="SZv08_Slice_4_4" src="images/SZv08_Slice_4_4.gif"
alt="" height="70" width="54">
+ </div>
+ <div id="SZv08-Slice-5-5_">
+ <img id="SZv08_Slice_5_5" src="images/SZv08_Slice_5_5.png"
alt="" height="590" width="30">
+ </div>
+ <div id="SZv08-Slice-6-6_">
+ <a href="http://stupidzombie.com/blog/feed/"><img
id="SZv08_Slice_6_6" src="images/SZv08_Slice_6_6.png" alt="" height="54"
width="54"></a> </div>
+<div id="SZv08-Slice-7-7_">
+ <a href="opensource.html"><img
src="images/SZv08_Slice_7_7.png" alt="" id="SZv08_Slice_7_7"
onmouseover="MM_swapImage('SZv08_Slice_7_7','','images/SZbluebar_Slice_7_7.png',1)"
onmouseout="MM_swapImgRestore()" height="36" width="140"></a> </div>
+<div id="SZv08-Slice-8-8_">
+ <a href="contribute.html"><img
src="images/SZv08_Slice_8_8.png" alt="" id="SZv08_Slice_8_8"
onmouseover="MM_swapImage('SZv08_Slice_8_8','','images/SZbluebar_Slice_8_8.png',1)"
onmouseout="MM_swapImgRestore()" height="36" width="132"></a> </div>
+<div id="SZv08-Slice-9-9_">
+ <a href="downloads.html"><img
src="images/SZv08_Slice_9_9.png" alt="" id="SZv08_Slice_9_9"
onmouseover="MM_swapImage('SZv08_Slice_9_9','','images/SZbluebar_Slice_9_9.png',1)"
onmouseout="MM_swapImgRestore()" height="36" width="136"></a> </div>
+<div id="SZv08-Slice-10-10_">
+ <a href="blog.html"><img src="images/SZv08_Slice_10_10.png"
alt="" id="SZv08_Slice_10_10"
onmouseover="MM_swapImage('SZv08_Slice_10_10','','images/SZbluebar_Slice_10_10.png',1)"
onmouseout="MM_swapImgRestore()" height="36" width="94"></a> </div>
+<div id="SZv08-Slice-11-11_">
+ <img id="SZv08_Slice_11_11"
src="images/SZv08_Slice_11_11.gif" alt="" height="40" width="374">
+ </div>
+ <div id="SZv08-Slice-12-12_">
+ <a href="downloads.html"><img id="SZv08_Slice_12_12"
src="images/SZv08_Slice_12_12.png" alt="" height="124" width="128"></a>
</div>
+<div id="SZv08-Slice-13-13_">
+ <img id="SZv08_Slice_13_13"
src="images/underconstruction.png" alt="" height="350" width="306"> </div>
+<div id="SZv08-Slice-14-14_">
+ <img id="SZv08_Slice_14_14"
src="images/SZv08_Slice_14_14.gif" alt="" height="60" width="306">
+ </div>
+ <div id="SZv08-Slice-15-15_">
+ <h3>This is the blog page that is currently underconstruction.</h3>
+ <h3>We are currently integrating the <a
href="http://stupidzombie.com/blog/2009/02/01/this-is-the-blog-of-stupidzombie/">old</a>
with new, please stand by...</h3>
+ <h3>To view the blog as is now, please vist <a
href="http://stupidzombie.com/blog/2009/02/01/this-is-the-blog-of-stupidzombie/">here</a>.</h3>
+ <p align="left"> </p>
+ </div>
+<div id="SZv08-Slice-16-16_">
+ <a href="contribute.html"><img id="SZv08_Slice_16_16"
src="images/SZv08_Slice_16_16.png" alt="" height="117" width="128"></a>
</div>
+<div id="SZv08-Slice-17-17_">
+ <img id="SZv08_Slice_17_17"
src="images/SZv08_Slice_17_17.png" alt="" usemap="#SZv08_Slice_17_17_Map"
border="0" height="149" width="128"> </div>
+<div id="SZv08-Slice-18-18_">
+ <img id="SZv08_Slice_18_18"
src="images/SZv08_Slice_18_18.gif" alt="" height="40" width="740">
+ </div>
+ <div id="SZv08-Slice-19-19_">
+ <img id="SZv08_Slice_19_19"
src="images/SZv08_Slice_19_19.png" alt="" height="10" width="800">
+ </div>
+</div>
+<map name="SZv08_Slice_17_17_Map" id="SZv08_Slice_17_17_Map">
+<area shape="rect" alt="" coords="24,40,109,142"
href="http://feedburner.google.com/fb/a/mailverify?uri=Stupidzombie&loc=en_US">
+</map>
+<!-- End ImageReady Slices -->
+<!-- end #container --></div>
+</body></html>
Property changes on: branches/newfeatures/ping/website/blog.html
___________________________________________________________________
Added: svn:executable
+ *
Index: branches/newfeatures/ping/website/css/SZsiteCSS.css
===================================================================
--- branches/newfeatures/ping/website/css/SZsiteCSS.css (revision 0)
+++ branches/newfeatures/ping/website/css/SZsiteCSS.css (revision 152)
@@ -0,0 +1,240 @@
+@charset "ISO-8859-1";
+.style3 {
+ font-family: Verdana, Arial, Helvetica, sans-serif;
+ font-size: medium;
+ font-style: normal;
+ font-weight: normal;
+ color: #000000;
+ text-align: left;
+ margin-top: 0px;
+ margin-bottom: 0px;
+}
+
+body {
+ font: 100% Verdana, Arial, Helvetica, sans-serif;
+ background: #666666;
+ margin: 0; /* a zero the margin and padding of the body element to
account for differing browser defaults */
+ padding: 0;
+ text-align: center; /* this centers the container in IE 5* browsers.
The text is then set to the left aligned default in the #container selector */
+ color: #000000;
+ background-color: #FFFFFF;
+}
+
+img {
+ border:0px;
+}
+
+.oneColFixCtr #container {
+ width: 780px; /* using 20px less than a full 800px width allows for
browser chrome and avoids a horizontal scroll bar */
+ background: #FFFFFF;
+ margin: 0 auto;
+ text-align: left; /* this overrides the text-align: center on the
body element. */
+}
+
+.oneColFixCtr #mainContent {
+ padding: 0 20px; /* remember that padding is the space inside the
div box and margin is the space outside the div box */
+}
+
+#Table_01 {
+ position:relative;
+ left:0px;
+ top:0px;
+ width:800px;
+ height:600px;
+}
+#SZv08-Slice-1-1_ {
+ position:absolute;
+ left:0px;
+ top:0px;
+ width:30px;
+ height:590px;
+}
+
+#SZv08-Slice-2-2_ {
+ position:absolute;
+ left:30px;
+ top:0px;
+ width:238px;
+ height:200px;
+}
+
+#SZv08-Slice-3-3_ {
+ position:absolute;
+ left:268px;
+ top:0px;
+ width:448px;
+ height:124px;
+}
+
+#SZv08-Slice-4-4_ {
+ position:absolute;
+ left:716px;
+ top:0px;
+ width:54px;
+ height:70px;
+}
+
+#SZv08-Slice-5-5_ {
+ position:absolute; left:770px;
+ top:0px;
+ width:30px;
+ height:590px;
+}
+
+#SZv08-Slice-6-6_ {
+ position:absolute;
+ left:716px; top:70px;
+ width:54px;
+ height:54px;
+}
+
+#SZv08-Slice-7-7_ {
+ position:absolute;
+ left:268px;
+ top:124px;
+ width:140px;
+ height:36px;
+}
+
+#SZv08-Slice-8-8_ {
+ position:absolute;
+ left:408px;
+ top:124px;
+ width:132px;
+ height:36px;
+}
+
+#SZv08-Slice-9-9_ {
+ position:absolute;
+ left:540px;
+ top:124px;
+ width:136px;
+ height:36px;
+}
+
+#SZv08-Slice-10-10_ {
+ position:absolute;
+ left:676px;
+ top:124px;
+ width:94px;
+ height:36px;
+}
+
+#SZv08-Slice-11-11_ {
+ position:absolute;
+ left:268px;
+ top:160px;
+ width:374px;
+ height:40px;
+}
+
+#SZv08-Slice-12-12_ {
+ position:absolute;
+ left:642px;
+ top:160px;
+ width:128px;
+ height:124px;
+}
+
+#SZv08-Slice-13-13_ {
+ position:absolute;
+ left:30px;
+ top:200px;
+ width:286px;
+ height:330px;
+ padding-top: 20px;
+ padding-right: 10px;
+ padding-left: 10px;
+}
+
+#SZv08-Slice-14-14_ {
+ position:absolute;
+ left:336px;
+ top:200px;
+ width:300px;
+ height:60px;
+}
+
+#SZv08-Slice-15-15_{
+ position:absolute;
+ left:337px;
+ top:260px;
+ width:302px;
+ height:291px;
+}
+
+
+#SZv08-Slice-15-15_alt {
+ position:absolute;
+ left:46px;
+ top:260px;
+ width:593px;
+ height:322px;
+}
+
+
+#SZv08-Slice-16-16_ {
+ position:absolute;
+ left:642px;
+ top:284px;
+ width:128px;
+ height:117px;
+}
+
+#SZv08-Slice-17-17_ {
+ position:absolute;
+ left:642px;
+ top:401px;
+ width:128px;
+ height:149px;
+}
+
+#SZv08-Slice-18-18_ {
+ position:absolute;
+ left:30px;
+ top:550px;
+ width:740px;
+ height:40px;
+}
+
+#SZv08-Slice-19-19_ {
+ position:absolute;
+ left:0px;
+ top:590px;
+ width:800px;
+ height:10px;
+}
+
+.style1 {
+ font-size: 90%
+}
+
+.style2 {
+ font-size: 75%;
+}
+
+.style4 {
+ color: #66CCFF;
+ font-weight: bold;
+}
+
+.style5 {
+ color: #8cc63f;
+ font-weight: bold;
+}
+
+.style6 {
+ color: #8cc63f;
+ font-weight: bold;}
+
+.style9 {color: #6699ff; font-weight: bold; }
+
+.style10 {
+ color: #8cc83f;
+ font-weight: bold;
+}
+.logos {
+ top: 10px;
+ right: auto;
+ left: auto;
+}
Property changes on: branches/newfeatures/ping/website/css/SZsiteCSS.css
___________________________________________________________________
Added: svn:executable
+ *
Index: branches/newfeatures/ping/website/index.html
===================================================================
--- branches/newfeatures/ping/website/index.html (revision 0)
+++ branches/newfeatures/ping/website/index.html (revision 152)
@@ -0,0 +1,91 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml"><head>
+
+<SCRIPT language="JavaScript" SRC="js/SZsiteJavascript.js"></SCRIPT>
+
+<link href="css/SZsiteCSS.css" rel="stylesheet" type="text/css">
+<link href="css/untitled.css" rel="stylesheet" type="text/css">
+
+<title>StupidZombie.com - Home of Blockhead</title>
+<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
+<meta name="Description" content="StupidZombie, the home of bloackhead, is
an opensource tool that can be used to ping several dire
[truncated due to length]
|
[stupidzombie~source-code-repository:152] Refactoring of old code from Ant to Maven |
josevnz | 02/05/2012 |





