Updated example configurations
diff --git a/contiki/conf/cc-conf.h.example b/contiki/conf/cc-conf.h.example
index 455268e..c4d2fdb 100644
--- a/contiki/conf/cc-conf.h.example
+++ b/contiki/conf/cc-conf.h.example
@@ -29,7 +29,7 @@
  *
  * This file is part of the Contiki desktop OS
  *
- * $Id: cc-conf.h.example,v 1.2 2003/10/01 07:53:57 adamdunkels Exp $
+ * $Id: cc-conf.h.example,v 1.3 2004/07/04 11:37:34 adamdunkels Exp $
  *
  */
 #ifndef __CC_CONF_H__
diff --git a/contiki/conf/clock-conf.h.example b/contiki/conf/clock-conf.h.example
new file mode 100644
index 0000000..a3797e3
--- /dev/null
+++ b/contiki/conf/clock-conf.h.example
@@ -0,0 +1,8 @@
+#ifndef __CLOCK_CONF_H__
+#define __CLOCK_CONF_H___
+
+typedef unsigned short clock_time_t;
+
+#define CLOCK_CONF_SECOND CLK_TCK
+
+#endif /* __CLOCK_CONF_H__ */
diff --git a/contiki/conf/ek-conf.h.example b/contiki/conf/ek-conf.h.example
index a1fe24a..082a5b1 100644
--- a/contiki/conf/ek-conf.h.example
+++ b/contiki/conf/ek-conf.h.example
@@ -29,7 +29,7 @@
  *
  * This file is part of the "ek" event kernel.
  *
- * $Id: ek-conf.h.example,v 1.2 2004/06/06 06:04:01 adamdunkels Exp $
+ * $Id: ek-conf.h.example,v 1.3 2004/07/04 11:37:34 adamdunkels Exp $
  *
  */
 
@@ -41,29 +41,12 @@
 
 typedef void *ek_data_t;
 
-typedef unsigned char ek_signal_t;
+typedef unsigned char ek_event_t;
 typedef unsigned char ek_id_t;
 
-/* ek_ticks_t: should be defined to be the largest type that fits the
-   highest timeout value used by the system. For example, if all
-   timeouts are between 1 and 150, the ek_ticks_t can be typedef'd as
-   "unsigned char", but if the maximum timeout is over 256, "unsigned
-   short" is a better choise. */
-typedef unsigned short ek_ticks_t;
+#define EK_CONF_EVENTS   32    /* Must be 2^n */
+typedef unsigned char ek_num_events_t;
 
-/* ek_clock_t: should be defined to be the native clock ticks type
-   used by the underlying system. (Look for time_t or similar.) */
-typedef unsigned long ek_clock_t; 
-
-#define EK_CONF_NUMSIGNALS   32    /* Must be 2^n */
-typedef unsigned char ek_num_signals_t;
-
-#define EK_CONF_NUMTIMERS    4    /* Must be 2^n */
-typedef unsigned char ek_num_timers_t;
-
-#define EK_CONF_NUMLISTENERS  32    /* Must be 2^n */
-typedef unsigned char ek_num_listeners_t;
-
-#define EK_CONF_UNLISTEN 0
+#define EK_CONF_MAXPROCS 32
 
 #endif /* __EK_CONF_H__ */
diff --git a/contiki/conf/telnetd-conf.h.example b/contiki/conf/telnetd-conf.h.example
index ac4de9a..9b30ced 100644
--- a/contiki/conf/telnetd-conf.h.example
+++ b/contiki/conf/telnetd-conf.h.example
@@ -29,7 +29,7 @@
  *
  * This file is part of the Contiki Destop OS
  *
- * $Id: telnetd-conf.h.example,v 1.1 2004/02/16 20:46:04 adamdunkels Exp $
+ * $Id: telnetd-conf.h.example,v 1.2 2004/07/04 11:37:34 adamdunkels Exp $
  *
  */
 #ifndef __TELNETD_CONF_H__
diff --git a/contiki/conf/uip-conf.h.example b/contiki/conf/uip-conf.h.example
index 32db906..9c633de 100644
--- a/contiki/conf/uip-conf.h.example
+++ b/contiki/conf/uip-conf.h.example
@@ -40,7 +40,7 @@
  *
  * This file is part of the Contiki Destop OS
  *
- * $Id: uip-conf.h.example,v 1.3 2003/10/01 11:33:43 adamdunkels Exp $
+ * $Id: uip-conf.h.example,v 1.4 2004/07/04 11:37:34 adamdunkels Exp $
  *
  */
 #ifndef __UIP_CONF_H__
diff --git a/contiki/conf/www-conf.h.example b/contiki/conf/www-conf.h.example
index 9d3c2a7..374c78f 100644
--- a/contiki/conf/www-conf.h.example
+++ b/contiki/conf/www-conf.h.example
@@ -36,14 +36,12 @@
  *
  * This file is part of the Contiki desktop environment
  *
- * $Id: www-conf.h.example,v 1.3 2003/10/01 07:53:57 adamdunkels Exp $
+ * $Id: www-conf.h.example,v 1.4 2004/07/04 11:37:34 adamdunkels Exp $
  *
  */
 #ifndef __WWW_CONF_H__
 #define __WWW_CONF_H__
 
-/* The size of the HTML viewing area. */
-
 /**
  * The width of the web page viewing area, measured in characters.
  */
@@ -102,6 +100,11 @@
 /**
  * Maximum length of HTML form input value.
  */
-#define WWW_CONF_MAX_INPUTVALUELEN  34
+#define WWW_CONF_MAX_INPUTVALUELEN  (WWW_CONF_WEBPAGE_WIDTH - 1)
+
+/**
+ * The defaule home page.
+ */
+#define WWW_CONF_HOMEPAGE "http://contiki.c64.org/"
 
 #endif /* __WWW_CONF_H__ */