logo       


r9931 - trunk/libraries/koala/sources/examples/buddha: msg#00017

Subject: r9931 - trunk/libraries/koala/sources/examples/buddha
Author: hannes
Date: Mon Aug 29 23:27:28 2005
New Revision: 9931

Modified:
   trunk/libraries/koala/sources/examples/buddha/cidr.dylan
   trunk/libraries/koala/sources/examples/buddha/config.dylan
   trunk/libraries/koala/sources/examples/buddha/host.dylan
   trunk/libraries/koala/sources/examples/buddha/html-utils.dylan
   trunk/libraries/koala/sources/examples/buddha/ipv4.dylan
   trunk/libraries/koala/sources/examples/buddha/library.dylan
   trunk/libraries/koala/sources/examples/buddha/mac.dylan
   trunk/libraries/koala/sources/examples/buddha/network.dylan
   trunk/libraries/koala/sources/examples/buddha/subnet.dylan
   trunk/libraries/koala/sources/examples/buddha/util.dylan
   trunk/libraries/koala/sources/examples/buddha/vlan.dylan
   trunk/libraries/koala/sources/examples/buddha/zone.dylan
Log:
Bug: 7257
added author


Modified: trunk/libraries/koala/sources/examples/buddha/cidr.dylan
==============================================================================
--- trunk/libraries/koala/sources/examples/buddha/cidr.dylan    (original)
+++ trunk/libraries/koala/sources/examples/buddha/cidr.dylan    Mon Aug 29 
23:27:28 2005
@@ -1,4 +1,5 @@
 module: buddha
+author: Hannes Mehnert <hannes@xxxxxxxxxxx>
 
 define class <cidr> (<object>)
   slot cidr-network-address :: <ip-address>,

Modified: trunk/libraries/koala/sources/examples/buddha/config.dylan
==============================================================================
--- trunk/libraries/koala/sources/examples/buddha/config.dylan  (original)
+++ trunk/libraries/koala/sources/examples/buddha/config.dylan  Mon Aug 29 
23:27:28 2005
@@ -1,4 +1,5 @@
 module: buddha
+author: Hannes Mehnert <hannes@xxxxxxxxxxx>
 
 define class <config> (<object>)
   slot config-name :: <string>, required-init-keyword: name:;

Modified: trunk/libraries/koala/sources/examples/buddha/host.dylan
==============================================================================
--- trunk/libraries/koala/sources/examples/buddha/host.dylan    (original)
+++ trunk/libraries/koala/sources/examples/buddha/host.dylan    Mon Aug 29 
23:27:28 2005
@@ -1,4 +1,5 @@
 module: buddha
+author: Hannes Mehnert <hannes@xxxxxxxxxxx>
 
 define class <host> (<object>)
   slot host-name :: <string>, required-init-keyword: name:;

Modified: trunk/libraries/koala/sources/examples/buddha/html-utils.dylan
==============================================================================
--- trunk/libraries/koala/sources/examples/buddha/html-utils.dylan      
(original)
+++ trunk/libraries/koala/sources/examples/buddha/html-utils.dylan      Mon Aug 
29 23:27:28 2005
@@ -1,4 +1,5 @@
 module: buddha
+author: Hannes Mehnert <hannes@xxxxxxxxxxx>
 
 define method gen-row (stream :: <stream>, list)
  => ()

Modified: trunk/libraries/koala/sources/examples/buddha/ipv4.dylan
==============================================================================
--- trunk/libraries/koala/sources/examples/buddha/ipv4.dylan    (original)
+++ trunk/libraries/koala/sources/examples/buddha/ipv4.dylan    Mon Aug 29 
23:27:28 2005
@@ -1,4 +1,5 @@
 module: buddha
+author: Hannes Mehnert <hannes@xxxxxxxxxxx>
 
 define class <ip-address> (<object>)
   slot ip :: <byte-vector>, init-keyword: ip:;

Modified: trunk/libraries/koala/sources/examples/buddha/library.dylan
==============================================================================
--- trunk/libraries/koala/sources/examples/buddha/library.dylan (original)
+++ trunk/libraries/koala/sources/examples/buddha/library.dylan Mon Aug 29 
23:27:28 2005
@@ -1,5 +1,5 @@
 module: dylan-user
-author: Hannes Mehnert
+author: Hannes Mehnert <hannes@xxxxxxxxxxx>
 
 define library buddha
   use common-dylan;

Modified: trunk/libraries/koala/sources/examples/buddha/mac.dylan
==============================================================================
--- trunk/libraries/koala/sources/examples/buddha/mac.dylan     (original)
+++ trunk/libraries/koala/sources/examples/buddha/mac.dylan     Mon Aug 29 
23:27:28 2005
@@ -1,4 +1,5 @@
 module: buddha
+author: Hannes Mehnert <hannes@xxxxxxxxxxx>
 
 define constant <mac-address> = <list>;
 

Modified: trunk/libraries/koala/sources/examples/buddha/network.dylan
==============================================================================
--- trunk/libraries/koala/sources/examples/buddha/network.dylan (original)
+++ trunk/libraries/koala/sources/examples/buddha/network.dylan Mon Aug 29 
23:27:28 2005
@@ -1,4 +1,5 @@
 module: buddha
+author: Hannes Mehnert <hannes@xxxxxxxxxxx>
 
 define class <network> (<object>)
   slot network-cidr :: <cidr>, required-init-keyword: cidr:;

Modified: trunk/libraries/koala/sources/examples/buddha/subnet.dylan
==============================================================================
--- trunk/libraries/koala/sources/examples/buddha/subnet.dylan  (original)
+++ trunk/libraries/koala/sources/examples/buddha/subnet.dylan  Mon Aug 29 
23:27:28 2005
@@ -1,4 +1,5 @@
 module: buddha
+author: Hannes Mehnert <hannes@xxxxxxxxxxx>
 
 define class <subnet> (<network>)
   slot subnet-vlan :: false-or(<vlan>) = #f, init-keyword: vlan:;

Modified: trunk/libraries/koala/sources/examples/buddha/util.dylan
==============================================================================
--- trunk/libraries/koala/sources/examples/buddha/util.dylan    (original)
+++ trunk/libraries/koala/sources/examples/buddha/util.dylan    Mon Aug 29 
23:27:28 2005
@@ -1,4 +1,5 @@
 module: buddha
+author: Hannes Mehnert <hannes@xxxxxxxxxxx>
 
 define method exclude (list, symbol) => (sequence)
   let res = make(<stretchy-vector>);

Modified: trunk/libraries/koala/sources/examples/buddha/vlan.dylan
==============================================================================
--- trunk/libraries/koala/sources/examples/buddha/vlan.dylan    (original)
+++ trunk/libraries/koala/sources/examples/buddha/vlan.dylan    Mon Aug 29 
23:27:28 2005
@@ -1,4 +1,5 @@
 module: buddha
+author: Hannes Mehnert <hannes@xxxxxxxxxxx>
 
 define class <vlan> (<object>)
   slot vlan-number :: <integer>, required-init-keyword: number:;

Modified: trunk/libraries/koala/sources/examples/buddha/zone.dylan
==============================================================================
--- trunk/libraries/koala/sources/examples/buddha/zone.dylan    (original)
+++ trunk/libraries/koala/sources/examples/buddha/zone.dylan    Mon Aug 29 
23:27:28 2005
@@ -1,4 +1,5 @@
 module: buddha
+author: Hannes Mehnert <hannes@xxxxxxxxxxx>
 
 define class <zone> (<object>)
   slot zone-name :: <string>, required-init-keyword: name:;
-- 
Gd-chatter mailing list
Gd-chatter@xxxxxxxxxxxxxxxx
https://gauss.gwydiondylan.org/mailman/listinfo/gd-chatter



Ruby Jobs
Java Jobs
Jobs in California
more...
what
job title, keywords
where
city, state, zip
jobs by job search
Search:
Java, servers, webhosting, windows, cisco ...
more...
<Prev in Thread] Current Thread [Next in Thread>
Google Custom Search

Recently Viewed:
encryption.gpg....    ietf.rfc822/199...    freebsd.devel.i...    lang.haskell.li...    mail.squirrelma...    web.zope.plone....    yellowdog.gener...    text.xml.xalan....    recreation.phot...    kde.devel.educa...    hardware.bus.ca...    printing.ghosts...    voip.peering/20...    assembly/2006-0...    org.user-groups...    culture.interne...    network.i2p/200...    boot-loaders.ya...    xfree86.render/...    qnx.openqnx.dev...    jakarta.velocit...    user-groups.pal...   
Home | blog view | USPTO Patent Archive | advertise | OSDir is an inevitable website. super tiny logo

Free Magazines

Cisco News
Receive a free quarterly e-newsletter with exclusive articles on how Cisco IT uses its own products and solutions to enable the business.
subscribe

Systems Management News, the newspaper for IT systems administration and data center managers! Each issue of Systems Management News is chock-full of news and analysis to help you understand what's happening in your field.
subscribe

The Enterprise Newsweekly eWeek is the essential technology information source for builders of e-business.
subscribe

Oracle Magazine Oracle Magazine contains technology strategy articles, sample code, tips, Oracle and partner news, how to articles for developers and DBAs, and more. Oracle (NASDAQ: ORCL) is the world's largest enterprise software company.
subscribe

Total Telecom Total Telecom is "The Economist of the communications industry".
subscribe