From joshua.dorothy@ndsu.nodak.edu Sat Jul 3 00:08:37 2004 Received: with ECARTIS (v1.0.0; list encore); Sat, 03 Jul 2004 00:08:38 -0500 (CDT) Return-Path: X-Original-To: encore@nobel.utdallas.edu Delivered-To: encore@nobel.utdallas.edu Received: from iq1.utdallas.edu (iq1-pmn.utdallas.edu [192.168.1.7]) by nobel.utdallas.edu (Postfix) with ESMTP id AE24E5BAA for ; Sat, 3 Jul 2004 00:08:37 -0500 (CDT) Received: from localhost (mf1-pmn.utdallas.edu [192.168.1.8]) by iq1.utdallas.edu (Postfix) with ESMTP id 7FEDC25A9 for ; Sat, 3 Jul 2004 00:08:37 -0500 (CDT) Received: from mx2.utdallas.edu ([192.168.1.6]) by localhost (mf1 [192.168.1.8]) (amavisd-new, port 10024) with LMTP id 09932-01-72 for ; Sat, 3 Jul 2004 00:08:30 -0500 (CDT) Received: from mail.cableone.net (scanmail2.cableone.net [24.116.0.122]) by mx2.utdallas.edu (Postfix) with ESMTP id EE909355B for ; Sat, 3 Jul 2004 00:08:26 -0500 (CDT) Received: from ndsu.nodak.edu (unverified [24.119.211.24]) by smail2.cableone.net (SurgeMail 1.9b) with ESMTP id 7914733 for multiple; Fri, 02 Jul 2004 21:55:02 -0700 Message-ID: <40E63F11.1060203@ndsu.nodak.edu> Date: Sat, 03 Jul 2004 00:07:29 -0500 From: Josh Dorothy User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.5b) Gecko/20030901 Thunderbird/0.2 X-Accept-Language: en-us, en MIME-Version: 1.0 To: alexborgia@hotmail.com Cc: enCore Subject: [encore] Re: enCore and the command parser References: In-Reply-To: Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit X-Server: High Performance Mail Server - http://surgemail.com X-Virus-Scanned: by amavisd-new-20030616-p9 at utdallas.edu X-archive-position: 1153 X-ecartis-version: Ecartis v1.0.0 Sender: encore-bounce@utdallas.edu Errors-to: encore-bounce@utdallas.edu X-original-sender: joshua.dorothy@ndsu.nodak.edu Precedence: bulk Reply-to: joshua.dorothy@ndsu.nodak.edu List-help: List-unsubscribe: List-software: Ecartis version 1.0.0 List-Id: X-List-ID: X-list: encore This is perfect! I had already created two custom sockets, one for our web-based registration server, and another for a graphical Java map applet, launched from enCore. Creating a custom socket for our basic communication back and forth from our GUI client seemed overkill, and this info is just what I was looking for. I have a few ideas, and I'm sure I'll let the list know if I run into any problems. Thanks Alexandre (and ShadowDragon too). :) -Josh Alexandre Borgia wrote: >Hi Josh, > > Depending on what you want to do, this question has many answers. I >have 3 in mind:) But before going in depth about how the MOO handles >connections I just want to make clear that the MOO uses a plain TCP/IP >socket with very loose protocol on which you can send and receive text (or >any kind of data for that matter). The enCore java client is directly >connected to this socket, and this is the most basic way log on to a MOO >(you can connect to it directly by using a standard telnet client). > > Now let's see different ways to make a specialized client interact >with the MOO. > > >Answer #1: Out-of-band commands >=============================== > > The simplest way to perform client-MOO communication (and the one >most used by specialized clients) is to use the built-in "out-of-band" >command handling mechanism of the MOO Server. It has been designed for this >exact purpose: permitting client-to-MOO communication on top of the >player-to-MOO communication. > > Out-of-band commands start with a special prefix (which is >configurable when compiling the server, but usually it is these three >characters: #$#). Every input received by the MOO that starts with this >prefix is handled specially. It is sent to the #0:do_out_of_band_command() >verb as arguments. Also, the "player" variable in this context has the >value of the player from whose connection originated the input. You then >have all the tools needed to interact transparently with the client (if you >want to send information back to it, just filter out this information from >what you want to display to the player - for instance, using a similar >prefix). > > >Answer #2: Taking control over the login process >================================================ > > If you want to have even more control over the connection I suggest >you read the "Associating Network Connections with Players" chapter from the >LambdaMOO Programmer's Manual. Basically, when a network connection is >first established with the MOO it is treated as coming from an unconnected >player (identified by an unique negative object #) and all arguments are >send to the #0:do_login_command() verb (again, with the "player" variable >set to this object number so you can interact with it). If this verb >returns a positive object #, the connection is from now on associated with >that object and the player is logged in as such. Further commands sent to >the MOO from this connection are parsed in the context of the player. > > When a player is connected, the server automatically does the >parsing of arguments and matching of commands for you (it tries to find >matching verbs first on the player itself, then the room, the direct object >and finally the indirect object if any specified - also matching other >objects and prepositions found in the arguments). You don't have much >control over this process. If the matching fails, the "huh" verb is called >on the player object (if such a verb exists). Again, there is a whole >chapter devoted to this process in the Programmer's Manual. > > > Two points of interest: > > - don't forget that you can "notify" and "read" from >un-logged connections (negative object numbers) just like you can do with >player objects. > > - there are a lot more verbs associated with the login >process that are triggered on various events. For instance, >#0:user_connected is called once the connection is associated with a player, >the "confunc" verb is called on the player upon connection, etc. They are >all documented in the Programmer's Manual. > > >Answer #3: Establishing a custom socket >======================================= > > Here is an alternative method: > > Once the MOO is started up, it is possible to listen for network >connections on other ports than the main MOO port (this is how, for >instance, you can create a web server that serves web pages off the MOO). >To do so, use the "listen()" built-in function. It permits you to associate >an arbitrary port with a MOO object. The login mechanism is the very same >than the standard one described above, except that commands are handled by >the do_login_command() verb found on *your* object instead of the one found >on #0. > > So here's the trick: if you never log the player, you can use this >object as a standard connection socket. All text sent to the MOO via this >port will be processed by the object's do_login_command() from which you can >delegate various tasks. > > Note that this method would most likely require that you build your >own authentication mechanism since the connection will not be associated >with any player by default. > > > > There are a lot of subtleties in what I explained above, but I think >it covers most basic approaches to the problem. > > > I hope this helps! > - Alexandre Borgia > > >-----Original Message----- >From: encore-bounce@utdallas.edu [mailto:encore-bounce@utdallas.edu] On >Behalf Of joshua.dorothy@ndsu.nodak.edu >Sent: 28 juin 2004 18:43 >To: encore@utdallas.edu >Subject: [encore] enCore and the command parser > >Hey all, just a quick question I hope someone can answer for me. In fact, >it might be a LambdaMOO question instead, but I'm not sure. > >When commands are entered into enCore, how exactly are they sent to the >MOO? I assume it's to a command parser of some kind, but I'm having a >heck of a time tracking it down. We're currently in the beginning stages >of creating a graphical client for our MOO, but being able to send the MOO >information back and forth is the first step. I figured the easiest way >would be just to mimic an existing client, i.e. send the commands to the >same spot in the MOO. Any ideas? > >Thanks, >Josh Dorothy >Research Assistant, NDSU >http://fishhook.ndsu.edu > > > > From djg25@psu.edu Tue Jul 6 16:54:43 2004 Received: with ECARTIS (v1.0.0; list encore); Tue, 06 Jul 2004 16:54:44 -0500 (CDT) Return-Path: X-Original-To: encore@nobel.utdallas.edu Delivered-To: encore@nobel.utdallas.edu Received: from iq1.utdallas.edu (iq1-pmn.utdallas.edu [192.168.1.7]) by nobel.utdallas.edu (Postfix) with ESMTP id CEBA35BE0 for ; Tue, 6 Jul 2004 16:54:43 -0500 (CDT) Received: from localhost (mf1-pmn.utdallas.edu [192.168.1.8]) by iq1.utdallas.edu (Postfix) with ESMTP id BB7422906 for ; Tue, 6 Jul 2004 16:54:43 -0500 (CDT) Received: from mx2.utdallas.edu ([192.168.1.6]) by localhost (mf1 [192.168.1.8]) (amavisd-new, port 10024) with LMTP id 25214-01-54 for ; Tue, 6 Jul 2004 16:54:39 -0500 (CDT) Received: from f04n01.cac.psu.edu (f04s01.cac.psu.edu [128.118.141.31]) by mx2.utdallas.edu (Postfix) with ESMTP id 69AE835C3 for ; Tue, 6 Jul 2004 16:54:38 -0500 (CDT) Received: from faclapdjg.psu.edu (edhcp19.ds.psu.edu [146.186.61.149]) by f04n01.cac.psu.edu (8.12.11/8.12.11) with ESMTP id i66Lsatn375366 for ; Tue, 6 Jul 2004 17:54:37 -0400 Message-Id: <5.1.0.14.2.20040706174036.02d841b0@email.psu.edu> X-Sender: djg25@email.psu.edu X-Mailer: QUALCOMM Windows Eudora Version 5.1 Date: Tue, 06 Jul 2004 17:56:15 -0400 To: encore@utdallas.edu From: Deborah Gill Subject: [encore] Creation of characters in enCore 4.0.1 Mime-Version: 1.0 Content-Type: text/html; charset="us-ascii" X-Virus-Scanned: by amavisd-new X-Virus-Scanned: by amavisd-new-20030616-p9 at utdallas.edu X-archive-position: 1154 X-ecartis-version: Ecartis v1.0.0 Sender: encore-bounce@utdallas.edu Errors-to: encore-bounce@utdallas.edu X-original-sender: djg25@psu.edu Precedence: bulk Reply-to: djg25@psu.edu List-help: List-unsubscribe: List-software: Ecartis version 1.0.0 List-Id: X-List-ID: X-list: encore Hello all,

Has anyone been having problems creating characters in 4.0.1?  One of the reasons that I upgraded was because I could only manually create characters (i.e., @make-character...) and not use the Encore feature to make multiple characters (or single characters for that matter).  I seem to be getting a traceback.  The message I'm getting is:
#72:open, line 19: Task ran out of seconds ... called from #72:raw_sendmail, line 32 ... called from #155:sendmail, line 15 ... called from #24:send_new_player_mail, line 29 ... called from #158:make_player, line 41 ... called from #158:create update delete, line 31 ... called from #32:get, line 55 ... called from #32:do_login_command, line 11 (End of traceback)

If I am creating a single character, although I get the message, it will usually create the character.  However, if I am creating multiple characters, it will usually create the first one and then forget all of the others.

Ideas?

Thanks in advance!

Debbie

Deborah Gill, Ph.D.
Assistant Professor of Spanish
Pennsylvania State University-DuBois
College Place
DuBois, PA 15801
(814) 375-4783
Email: djg25@psu.edu, msdgill@aol.com
From alexborgia@hotmail.com Tue Jul 6 18:34:32 2004 Received: with ECARTIS (v1.0.0; list encore); Tue, 06 Jul 2004 18:34:32 -0500 (CDT) Return-Path: X-Original-To: encore@nobel.utdallas.edu Delivered-To: encore@nobel.utdallas.edu Received: from iq1.utdallas.edu (iq1-pmn.utdallas.edu [192.168.1.7]) by nobel.utdallas.edu (Postfix) with ESMTP id 667B75BE6 for ; Tue, 6 Jul 2004 18:34:32 -0500 (CDT) Received: from localhost (mf1-pmn.utdallas.edu [192.168.1.8]) by iq1.utdallas.edu (Postfix) with ESMTP id 5DB464DE9 for ; Tue, 6 Jul 2004 18:34:32 -0500 (CDT) Received: from mx2.utdallas.edu ([192.168.1.6]) by localhost (mf1 [192.168.1.8]) (amavisd-new, port 10024) with LMTP id 21184-01-45 for ; Tue, 6 Jul 2004 18:34:23 -0500 (CDT) Received: from hotmail.com (bay13-dav46.bay13.hotmail.com [64.4.31.220]) by mx2.utdallas.edu (Postfix) with ESMTP id 3F1CE34A7 for ; Tue, 6 Jul 2004 18:34:18 -0500 (CDT) Received: from mail pickup service by hotmail.com with Microsoft SMTPSVC; Tue, 6 Jul 2004 16:34:11 -0700 Received: from 66.36.135.34 by bay13-dav46.bay13.hotmail.com with DAV; Tue, 06 Jul 2004 23:34:11 +0000 X-Originating-IP: [66.36.135.34] X-Originating-Email: [alexborgia@hotmail.com] X-Sender: alexborgia@hotmail.com From: "Alexandre Borgia" To: Subject: [encore] Re: Creation of characters in enCore 4.0.1 Date: Tue, 6 Jul 2004 19:34:40 -0400 MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_NextPart_000_0000_01C46390.479EDAD0" X-Mailer: Microsoft Office Outlook, Build 11.0.5510 Thread-Index: AcRjo+XVIRNeMbDUTBWv4n4CVUc67AACg9Qg In-Reply-To: <5.1.0.14.2.20040706174036.02d841b0@email.psu.edu> X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1409 Message-ID: X-OriginalArrivalTime: 06 Jul 2004 23:34:11.0681 (UTC) FILETIME=[BDBC4510:01C463B1] X-Virus-Scanned: by amavisd-new-20030616-p9 at utdallas.edu X-archive-position: 1155 X-ecartis-version: Ecartis v1.0.0 Sender: encore-bounce@utdallas.edu Errors-to: encore-bounce@utdallas.edu X-original-sender: alexborgia@hotmail.com Precedence: bulk Reply-to: alexborgia@hotmail.com List-help: List-unsubscribe: List-software: Ecartis version 1.0.0 List-Id: X-List-ID: X-list: encore This is a multi-part message in MIME format. ------=_NextPart_000_0000_01C46390.479EDAD0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Hi Deborah, The task runs out of time when trying to send the notification mail message to the player, so my guess is that your MOO is not configured correctly with your mail server. Make sure that the value of the "maildrop" property on the $network object (#72) is set to a valid address and that a mail server is reachable on this machine. Hope this helps:-) - Alexandre Borgia _____ From: encore-bounce@utdallas.edu [mailto:encore-bounce@utdallas.edu] On Behalf Of Deborah Gill Sent: 6 juillet 2004 17:56 To: encore@utdallas.edu Subject: [encore] Creation of characters in enCore 4.0.1 Hello all, Has anyone been having problems creating characters in 4.0.1? One of the reasons that I upgraded was because I could only manually create characters (i.e., @make-character...) and not use the Encore feature to make multiple characters (or single characters for that matter). I seem to be getting a traceback. The message I'm getting is: #72:open, line 19: Task ran out of seconds ... called from #72:raw_sendmail, line 32 ... called from #155:sendmail, line 15 ... called from #24:send_new_player_mail, line 29 ... called from #158:make_player, line 41 .. called from #158:create update delete, line 31 ... called from #32:get, line 55 ... called from #32:do_login_command, line 11 (End of traceback) If I am creating a single character, although I get the message, it will usually create the character. However, if I am creating multiple characters, it will usually create the first one and then forget all of the others. Ideas? Thanks in advance! Debbie Deborah Gill, Ph.D. Assistant Professor of Spanish Pennsylvania State University-DuBois College Place DuBois, PA 15801 (814) 375-4783 Email: djg25@psu.edu, msdgill@aol.com ------=_NextPart_000_0000_01C46390.479EDAD0 Content-Type: text/html; charset="us-ascii" Content-Transfer-Encoding: quoted-printable

Hi Deborah,

 

         =    The task runs out of time when trying to send the notification mail message = to the player, so my guess is that your MOO is not configured correctly with = your mail server.  Make sure that the value of the “maildrop” = property on the $network object (#72) is set to a valid address and that a mail = server is reachable on this machine.

 

        = ;    Hope this helpsJ

        = ;    =             - Alexandre Borgia

 =


From: encore-bounce@utdallas.edu [mailto:encore-bounce@utdallas.edu] On Behalf Of Deborah Gill
Sent: 6 juillet 2004 = 17:56
To: = encore@utdallas.edu
Subject: [encore] = Creation of characters in enCore = 4.0.1

 

Hello all,

Has anyone been having problems creating characters in 4.0.1?  One = of the reasons that I upgraded was because I could only manually create = characters (i.e., @make-character...) and not use the Encore feature to make = multiple characters (or single characters for that matter).  I seem to be = getting a traceback.  The message I'm getting = is:

#72:open, line 19: Task ran out of seconds = .. called from #72:raw_sendmail, line 32 ... called from #155:sendmail, line 15 = .. called from #24:send_new_player_mail, line 29 ... called from #158:make_player, = line 41 ... called from #158:create update delete, line 31 ... called from = #32:get, line 55 ... called from #32:do_login_command, line 11 (End of traceback) =

If I am creating a single character, although I get the message, = it will usually create the character.  However, if I am creating = multiple characters, it will usually create the first one and then forget all of = the others.

Ideas?

Thanks in advance!

Debbie

Deborah = Gill, Ph.D.
Assistant Professor of Spanish
Pennsylvania State University-DuBois
College Place
DuBois, PA 15801
(814) 375-4783
Email: djg25@psu.edu, msdgill@aol.com

------=_NextPart_000_0000_01C46390.479EDAD0-- From jung@uib.no Wed Jul 7 19:23:28 2004 Received: with ECARTIS (v1.0.0; list encore); Wed, 07 Jul 2004 19:23:28 -0500 (CDT) Return-Path: X-Original-To: encore@nobel.utdallas.edu Delivered-To: encore@nobel.utdallas.edu Received: from iq1.utdallas.edu (iq1-pmn.utdallas.edu [192.168.1.7]) by nobel.utdallas.edu (Postfix) with ESMTP id 7D66E5BD1 for ; Wed, 7 Jul 2004 19:23:28 -0500 (CDT) Received: from localhost (mf1-pmn.utdallas.edu [192.168.1.8]) by iq1.utdallas.edu (Postfix) with ESMTP id 57D8729EB for ; Wed, 7 Jul 2004 19:23:28 -0500 (CDT) Received: from mx2.utdallas.edu ([192.168.1.6]) by localhost (mf1 [192.168.1.8]) (amavisd-new, port 10024) with LMTP id 13351-01-51 for ; Wed, 7 Jul 2004 19:23:22 -0500 (CDT) Received: from noralf.uib.no (noralf.uib.no [129.177.30.12]) by mx2.utdallas.edu (Postfix) with ESMTP id 513BD35A7 for ; Wed, 7 Jul 2004 19:23:20 -0500 (CDT) Received: from alfred.uib.no (smtp.uib.no) [129.177.30.120] by noralf.uib.no with esmtp (Exim 4.34) id 1BiMh5-0005ix-4M; Thu, 08 Jul 2004 02:23:20 +0200 Received: from tunnel-45-55.vpn.uib.no (Daniel2667.uib.no) [129.177.45.55] by smtp.uib.no for encore@utdallas.edu with esmtp (Exim 4.34) id 1BiMh4-0001gx-Jo; Thu, 08 Jul 2004 02:23:18 +0200 Message-Id: <5.2.0.8.2.20040708021618.02009358@alf.uib.no> X-Sender: fafdj@alf.uib.no X-Mailer: QUALCOMM Windows Eudora Version 5.2.0.8 Date: Thu, 08 Jul 2004 02:23:11 +0200 To: encore@utdallas.edu From: Daniel Jung Subject: [encore] bug and fix for sending email from moo Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii"; format=flowed X-checked-clean: by exiscan on noralf X-Scanner: 4a858815504f598df3207066474376f5 http://tjinfo.uib.no/virus.html X-UiB-SpamFlag: NO UIB: 0.0 hits, 11.0 required X-Virus-Scanned: by amavisd-new-20030616-p9 at utdallas.edu X-archive-position: 1156 X-ecartis-version: Ecartis v1.0.0 Sender: encore-bounce@utdallas.edu Errors-to: encore-bounce@utdallas.edu X-original-sender: jung@uib.no Precedence: bulk Reply-to: jung@uib.no List-help: List-unsubscribe: List-software: Ecartis version 1.0.0 List-Id: X-List-ID: X-list: encore Hi all (1) Email sent from the MOO server never had the right timestamp, meaning the date wouldn't display in most GUI mail clients. Have you experienced that? (2) After upgrading to a faster machine, we got stuck with our email via the MOO. It wouldn't send anything to the outside, we always got an 554 Synchronization Error as a response. Seen that before? I have fixed both bugs now, and written a patchable file for that. Let me know if you are interested. Cheers, - Daniel From Lirvin@accdvm.accd.edu Thu Jul 8 05:29:30 2004 Received: with ECARTIS (v1.0.0; list encore); Thu, 08 Jul 2004 05:29:31 -0500 (CDT) Return-Path: X-Original-To: encore@nobel.utdallas.edu Delivered-To: encore@nobel.utdallas.edu Received: from iq1.utdallas.edu (iq1-pmn.utdallas.edu [192.168.1.7]) by nobel.utdallas.edu (Postfix) with ESMTP id C30D65BC5 for ; Thu, 8 Jul 2004 05:29:30 -0500 (CDT) Received: from localhost (mf1-pmn.utdallas.edu [192.168.1.8]) by iq1.utdallas.edu (Postfix) with ESMTP id B0BC42CD9 for ; Thu, 8 Jul 2004 05:29:30 -0500 (CDT) Received: from mx2.utdallas.edu ([192.168.1.6]) by localhost (mf1 [192.168.1.8]) (amavisd-new, port 10024) with LMTP id 27620-01-100 for ; Thu, 8 Jul 2004 05:29:26 -0500 (CDT) Received: from ACCDVM.ACCD.EDU (accdvm.accd.edu [209.184.119.1]) by mx2.utdallas.edu (Postfix) with SMTP id BE08035AC for ; Thu, 8 Jul 2004 05:29:25 -0500 (CDT) Received: from irvin.accdvm.accd.edu [10.1.11.18] by ACCDVM.ACCD.EDU (IBM VM SMTP V2R4a) via TCP with SMTP ; Thu, 08 Jul 2004 05:28:44 CST Message-Id: <5.2.1.1.0.20040708052711.00ab9c40@accdvm.accd.edu> X-Sender: Lirvin@accdvm.accd.edu X-Mailer: QUALCOMM Windows Eudora Version 5.2.1 Date: Thu, 08 Jul 2004 05:29:41 -0500 To: encore@utdallas.edu From: Lennie Irvin Subject: [encore] Re: bug and fix for sending email from moo In-Reply-To: <5.2.0.8.2.20040708021618.02009358@alf.uib.no> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii"; format=flowed X-Virus-Scanned: by amavisd-new-20030616-p9 at utdallas.edu X-archive-position: 1157 X-ecartis-version: Ecartis v1.0.0 Sender: encore-bounce@utdallas.edu Errors-to: encore-bounce@utdallas.edu X-original-sender: Lirvin@accdvm.accd.edu Precedence: bulk Reply-to: Lirvin@accdvm.accd.edu List-help: List-unsubscribe: List-software: Ecartis version 1.0.0 List-Id: X-List-ID: X-list: encore Hi Daniel, As someone who could never get the email working in AlaMOO (I think I got a 550 error), I am very interested in this patch for Nouspace (my new moo home). Also, if you send me the information, I will add it to The Barn (the enCore MOO code repository) until it gets integrated into a new patch or release of enCore. Good work and thanks, Lennie At 02:23 AM 7/8/04 +0200, you wrote: >Hi all > > >(1) Email sent from the MOO server never had the right timestamp, meaning >the date wouldn't display in most GUI mail clients. Have you experienced that? > >(2) After upgrading to a faster machine, we got stuck with our email via >the MOO. It wouldn't send anything to the outside, we always got an 554 >Synchronization Error as a response. Seen that before? > > >I have fixed both bugs now, and written a patchable file for that. Let me >know if you are interested. > >Cheers, >- Daniel > > L. Lennie Irvin Department of English, San Antonio College San Antonio, TX http://www.accd.edu/sac/english/lirvin/ AlaMOO: http://www.accd.edu/sac/english/lirvin/AlaMOO/ From Lirvin@accdvm.accd.edu Fri Jul 9 06:32:54 2004 Received: with ECARTIS (v1.0.0; list encore); Fri, 09 Jul 2004 06:32:55 -0500 (CDT) Return-Path: X-Original-To: encore@nobel.utdallas.edu Delivered-To: encore@nobel.utdallas.edu Received: from iq1.utdallas.edu (iq1-pmn.utdallas.edu [192.168.1.7]) by nobel.utdallas.edu (Postfix) with ESMTP id C5D405BCC for ; Fri, 9 Jul 2004 06:32:54 -0500 (CDT) Received: from localhost (mf1-pmn.utdallas.edu [192.168.1.8]) by iq1.utdallas.edu (Postfix) with ESMTP id B407B1D91 for ; Fri, 9 Jul 2004 06:32:54 -0500 (CDT) Received: from mx2.utdallas.edu ([192.168.1.6]) by localhost (mf1 [192.168.1.8]) (amavisd-new, port 10024) with LMTP id 15642-01-41 for ; Fri, 9 Jul 2004 06:32:51 -0500 (CDT) Received: from ACCDVM.ACCD.EDU (accdvm.accd.edu [209.184.119.1]) by mx2.utdallas.edu (Postfix) with SMTP id D85B23523 for ; Fri, 9 Jul 2004 06:32:50 -0500 (CDT) Received: from irvin.accdvm.accd.edu [10.1.11.22] by ACCDVM.ACCD.EDU (IBM VM SMTP V2R4a) via TCP with SMTP ; Fri, 09 Jul 2004 06:32:09 CST Message-Id: <5.2.1.1.0.20040709062801.00ab9970@accdvm.accd.edu> X-Sender: Lirvin@accdvm.accd.edu X-Mailer: QUALCOMM Windows Eudora Version 5.2.1 Date: Fri, 09 Jul 2004 06:32:47 -0500 To: encore@utdallas.edu From: Lennie Irvin Subject: [encore] Submit to The Barn! Mime-Version: 1.0 Content-Type: multipart/alternative; boundary="=====================_91501874==.ALT" X-Virus-Scanned: by amavisd-new-20030616-p9 at utdallas.edu X-archive-position: 1158 X-ecartis-version: Ecartis v1.0.0 Sender: encore-bounce@utdallas.edu Errors-to: encore-bounce@utdallas.edu X-original-sender: Lirvin@accdvm.accd.edu Precedence: bulk Reply-to: Lirvin@accdvm.accd.edu List-help: List-unsubscribe: List-software: Ecartis version 1.0.0 List-Id: X-List-ID: X-list: encore --=====================_91501874==.ALT Content-Type: text/plain; charset="us-ascii"; format=flowed The Barn A Repository of MOO Code and Resources for EnCore needs your submissions. I have just included Daniel's patch to the moo mail into The Barn: http://www.accd.edu/sac/english/lirvin/barn/core.htm If you have other materials you would like to make publically available to other enCore users, please send them to me. I plan to submit a few social objects I created, as well as the new enCore v.4 User Guide myself. What could you send? The more the merrier. Cheers, Lennie L. Lennie Irvin Department of English, San Antonio College San Antonio, TX http://www.accd.edu/sac/english/lirvin/ AlaMOO: http://www.accd.edu/sac/english/lirvin/AlaMOO/ --=====================_91501874==.ALT Content-Type: text/html; charset="us-ascii"

The Barn

A Repository of MOO Code and Resources for EnCore needs your submissions.

I have just included Daniel's patch to the moo mail into The Barn:
http://www.accd.edu/sac/english/lirvin/barn/core.htm

If you have other materials you would like to make publically available to other enCore users, please send them to me.  I plan to submit a few social objects I created, as well as the new enCore v.4 User Guide myself.  What could you send?

The more the merrier.

Cheers,

Lennie


L. Lennie Irvin
Department of English, San Antonio College
San Antonio, TX

http://www.accd.edu/sac/english/lirvin/
AlaMOO: http://www.accd.edu/sac/english/lirvin/AlaMOO/
--=====================_91501874==.ALT-- From djh@dmu.ac.uk Wed Jul 14 07:56:49 2004 Received: with ECARTIS (v1.0.0; list encore); Wed, 14 Jul 2004 07:56:49 -0500 (CDT) Return-Path: X-Original-To: encore@nobel.utdallas.edu Delivered-To: encore@nobel.utdallas.edu Received: from iq1.utdallas.edu (iq1-pmn.utdallas.edu [192.168.1.7]) by nobel.utdallas.edu (Postfix) with ESMTP id 6DACE5BAA for ; Wed, 14 Jul 2004 07:56:45 -0500 (CDT) Received: from localhost (mf1-pmn.utdallas.edu [192.168.1.8]) by iq1.utdallas.edu (Postfix) with ESMTP id F3CEF4D14 for ; Wed, 14 Jul 2004 07:56:44 -0500 (CDT) Received: from mx2.utdallas.edu ([192.168.1.6]) by localhost (mf1 [192.168.1.8]) (amavisd-new, port 10024) with LMTP id 10178-01-28 for ; Wed, 14 Jul 2004 07:56:40 -0500 (CDT) Received: from dmu.ac.uk (motown.dmu.ac.uk [146.227.1.21]) by mx2.utdallas.edu (Postfix) with ESMTP id 90DB73523 for ; Wed, 14 Jul 2004 07:56:40 -0500 (CDT) Received: from vinku.hum.dmu.ac.uk (vinku.hum.dmu.ac.uk [146.227.40.53]) by dmu.ac.uk (8.12.11/8.12.11) with ESMTP id i6ECrqGf014559 for ; Wed, 14 Jul 2004 13:53:53 +0100 (BST) Received: from localhost (djh@localhost) by vinku.hum.dmu.ac.uk (8.12.10/8.12.10/Submit) with ESMTP id i6ECkw6s030847 for ; Wed, 14 Jul 2004 13:46:58 +0100 X-Authentication-Warning: vinku.hum.dmu.ac.uk: djh owned process doing -bs Date: Wed, 14 Jul 2004 13:46:57 +0100 (BST) From: David James Houghton X-X-Sender: djh@vinku.hum.dmu.ac.uk To: encore@utdallas.edu Subject: [encore] Moo on Mac OSX 10.1 Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII X-DMU-MailScanner-Information: Please contact the ISP for more information X-DMU-MailScanner: Found to be clean X-MailScanner-From: djh@dmu.ac.uk X-Virus-Scanned: by amavisd-new-20030616-p9 at utdallas.edu X-archive-position: 1159 X-ecartis-version: Ecartis v1.0.0 Sender: encore-bounce@utdallas.edu Errors-to: encore-bounce@utdallas.edu X-original-sender: djh@dmu.ac.uk Precedence: bulk Reply-to: djh@dmu.ac.uk List-help: List-unsubscribe: List-software: Ecartis version 1.0.0 List-Id: X-List-ID: X-list: encore Hello Has anybody successfully made LamdaMoo and encore to work on Macosx 10.1 ? When I try and make LambdaMOO-1.8.1 .... gcc -g -O -c -o name_lookup.o name_lookup.c my-signal.h:34: syntax error, found `*' my-signal.h:34: illegal external declaration, missing `;' after `,' my-signal.h:35: syntax error, found `*' my-signal.h:35: illegal external declaration, missing `;' after `)' my-signal.h:35: illegal external declaration, missing `;' after `int' my-signal.h:35: illegal method selector, found `1' my-signal.h:35: illegal method definition, missing `{' after `)' best regards -- Dave Houghton djh@dmu.ac.uk System Manager Faculty of Humanities Work Tel. No. 0116 2506125 Clephan Building, Room 0.35 De Montfort University Leicester LE1 9BH From olin.bjork@mail.utexas.edu Wed Jul 21 16:54:46 2004 Received: with ECARTIS (v1.0.0; list encore); Wed, 21 Jul 2004 16:54:46 -0500 (CDT) Return-Path: X-Original-To: encore@nobel.utdallas.edu Delivered-To: encore@nobel.utdallas.edu Received: from iq1.utdallas.edu (iq1-pmn.utdallas.edu [192.168.1.7]) by nobel.utdallas.edu (Postfix) with ESMTP id CC8555BAA for ; Wed, 21 Jul 2004 16:54:45 -0500 (CDT) Received: from localhost (mf1-pmn.utdallas.edu [192.168.1.8]) by iq1.utdallas.edu (Postfix) with ESMTP id 9F0FF2145 for ; Wed, 21 Jul 2004 16:54:45 -0500 (CDT) Received: from mx2.utdallas.edu ([192.168.1.6]) by localhost (mf1 [192.168.1.8]) (amavisd-new, port 10024) with LMTP id 01278-01-18 for ; Wed, 21 Jul 2004 16:54:40 -0500 (CDT) Received: from mail.utexas.edu (fb1-a.its.utexas.edu [128.83.126.200]) by mx2.utdallas.edu (Postfix) with ESMTP id EAD7938D3 for ; Wed, 21 Jul 2004 16:54:26 -0500 (CDT) Received: (qmail 49380 invoked by uid 80); 21 Jul 2004 21:54:26 -0000 Received: from dhcp-128-83-125-111.cwrl.utexas.edu (dhcp-128-83-125-111.cwrl.utexas.edu [128.83.125.111]) by webmailapp1.cc.utexas.edu (IMP) with HTTP for ; Wed, 21 Jul 2004 16:54:26 -0500 Message-ID: <1090446866.40fee612c845e@webmailapp1.cc.utexas.edu> Date: Wed, 21 Jul 2004 16:54:26 -0500 From: Olin Bjork To: encore@utdallas.edu Subject: [encore] web links in object descriptions MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 8bit User-Agent: Internet Messaging Program (IMP) 3.2.2 X-Originating-IP: 128.83.125.111 X-Virus-Scanned: by amavisd-new-20030616-p9 at utdallas.edu X-archive-position: 1160 X-ecartis-version: Ecartis v1.0.0 Sender: encore-bounce@utdallas.edu Errors-to: encore-bounce@utdallas.edu X-original-sender: olin.bjork@mail.utexas.edu Precedence: bulk Reply-to: olin.bjork@mail.utexas.edu List-help: List-unsubscribe: List-software: Ecartis version 1.0.0 List-Id: X-List-ID: X-list: encore Dear encore folks, I received the following question from one of our MOO developers recently: I was wondering if you knew how I could go about including a web link in the description of an object. I know that I can do this by just typing in the URL, and the MOO automatically converts it to a link. But, I'd like the text for the link (that the user clicks on) to be different from the URL itself. Something like Click here. That kind of thing. Do any of you know of a way to include html in an object description without making it a child of the generic web page class? thanks for reading and for any suggestions you might have, Olin -- Olin Bjork Assistant Director Computer Writing and Research Lab Division of Rhetoric and Composition University of Texas at Austin From fox@vader.aacc.cc.md.us Thu Jul 22 01:12:25 2004 Received: with ECARTIS (v1.0.0; list encore); Thu, 22 Jul 2004 01:12:25 -0500 (CDT) Return-Path: X-Original-To: encore@nobel.utdallas.edu Delivered-To: encore@nobel.utdallas.edu Received: from iq1.utdallas.edu (iq1-pmn.utdallas.edu [192.168.1.7]) by nobel.utdallas.edu (Postfix) with ESMTP id 4EB215BAA for ; Thu, 22 Jul 2004 01:12:25 -0500 (CDT) Received: from localhost (mf1-pmn.utdallas.edu [192.168.1.8]) by iq1.utdallas.edu (Postfix) with ESMTP id 1D7EB4D72 for ; Thu, 22 Jul 2004 01:12:25 -0500 (CDT) Received: from mx2.utdallas.edu ([192.168.1.6]) by localhost (mf1 [192.168.1.8]) (amavisd-new, port 10024) with LMTP id 09922-01-57 for ; Thu, 22 Jul 2004 01:12:21 -0500 (CDT) Received: from vader.aacc.edu (vader.aacc.edu [12.167.138.28]) by mx2.utdallas.edu (Postfix) with ESMTP id 14A4734CC for ; Thu, 22 Jul 2004 01:12:20 -0500 (CDT) Received: from vader.aacc.edu (IDENT:UAKVpzh36s5u4EHJmqcDhdjx1vFi64sY@localhost [127.0.0.1]) by vader.aacc.edu (8.12.8/8.12.8) with ESMTP id i6M6CIuU001158; Thu, 22 Jul 2004 02:12:18 -0400 Received: from localhost (fox@localhost) by vader.aacc.edu (8.12.8/8.12.8/Submit) with ESMTP id i6M6CIZb001154; Thu, 22 Jul 2004 02:12:18 -0400 X-Authentication-Warning: vader.aacc.edu: fox owned process doing -bs Date: Thu, 22 Jul 2004 02:12:17 -0400 (EDT) From: "PauAmma@Falcon" X-X-Sender: fox@vader.aacc.edu To: Olin Bjork Cc: encore@utdallas.edu Subject: [encore] Re: web links in object descriptions In-Reply-To: <1090446866.40fee612c845e@webmailapp1.cc.utexas.edu> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII X-Virus-Scanned: by amavisd-new-20030616-p9 at utdallas.edu X-archive-position: 1161 X-ecartis-version: Ecartis v1.0.0 Sender: encore-bounce@utdallas.edu Errors-to: encore-bounce@utdallas.edu X-original-sender: fox@vader.aacc.cc.md.us Precedence: bulk Reply-to: fox@vader.aacc.cc.md.us List-help: List-unsubscribe: List-software: Ecartis version 1.0.0 List-Id: X-List-ID: X-list: encore On Wed, 21 Jul 2004, Olin Bjork wrote: > Do any of you know of a way to include html in an object description without > making it a child of the generic web page class? If $encore_web_utils:detect_urls (which implements the behavior you refer to and is called in :_html for most objects) is called with 3 parameters instead of 2 and the 3rd parameter is true (not zero), it will skip translating URLs to links. (Aside to JRH: it could be optimized. What it does in that case is go through each line and say to itself: "Is there something here that looks like a URL? Yes, there is. Oh, wait, I'm not supposed to translate them. Never mind, I'll check the next line." This could (and IMHO should) be rewritten for performance by lifting the treat_as_HTML test out of the loop. Patch upon request.) -- "I'd ask if you'd found the right sort of isolated wasteland for your citadel of dread yet, but that would be a silly question; you're in Utah, after all." --ESR to Darl McBride (Chief Excessive Ossifier of Squandered Clues Obstination), in http://www.catb.org/~esr/writings/mcbride.html From Lirvin@accdvm.accd.edu Thu Jul 22 05:48:52 2004 Received: with ECARTIS (v1.0.0; list encore); Thu, 22 Jul 2004 05:48:52 -0500 (CDT) Return-Path: X-Original-To: encore@nobel.utdallas.edu Delivered-To: encore@nobel.utdallas.edu Received: from iq1.utdallas.edu (iq1-pmn.utdallas.edu [192.168.1.7]) by nobel.utdallas.edu (Postfix) with ESMTP id 4EA6F5BAA for ; Thu, 22 Jul 2004 05:48:52 -0500 (CDT) Received: from localhost (mf1-pmn.utdallas.edu [192.168.1.8]) by iq1.utdallas.edu (Postfix) with ESMTP id 1EEA64E0B for ; Thu, 22 Jul 2004 05:48:52 -0500 (CDT) Received: from mx2.utdallas.edu ([192.168.1.6]) by localhost (mf1 [192.168.1.8]) (amavisd-new, port 10024) with LMTP id 29029-01-29 for ; Thu, 22 Jul 2004 05:48:49 -0500 (CDT) Received: from ACCDVM.ACCD.EDU (accdvm.accd.edu [209.184.119.1]) by mx2.utdallas.edu (Postfix) with SMTP id 6C4AF34CC for ; Thu, 22 Jul 2004 05:48:49 -0500 (CDT) Received: from irvin.accdvm.accd.edu [10.1.11.18] by ACCDVM.ACCD.EDU (IBM VM SMTP V2R4a) via TCP with SMTP ; Thu, 22 Jul 2004 05:48:07 CST Message-Id: <5.2.1.1.0.20040722053835.00a9aaf0@accdvm.accd.edu> X-Sender: Lirvin@accdvm.accd.edu X-Mailer: QUALCOMM Windows Eudora Version 5.2.1 Date: Thu, 22 Jul 2004 05:48:54 -0500 To: encore@utdallas.edu From: Lennie Irvin Subject: [encore] Nouspace problem Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii"; format=flowed X-Virus-Scanned: by amavisd-new-20030616-p9 at utdallas.edu X-archive-position: 1162 X-ecartis-version: Ecartis v1.0.0 Sender: encore-bounce@utdallas.edu Errors-to: encore-bounce@utdallas.edu X-original-sender: Lirvin@accdvm.accd.edu Precedence: bulk Reply-to: Lirvin@accdvm.accd.edu List-help: List-unsubscribe: List-software: Ecartis version 1.0.0 List-Id: X-List-ID: X-list: encore Hi Everyone, I am now "mooliving" in Dene Grigar's Nouspace, and we have recently experienced a problem that we are unsure how to fix. I thought if I described what happened that one of you might have seen it before and have have some insight into what is going on: 1) The problem appeared suddenly. No apparent changes to the MOO or server were made (though I think there might have been something that we are overlooking). 2) You could still access the login page. When you would begin the login process, the MOO client would begin to load. The second MOO window would open and the Xpress Button bar would load completely. However, nothing else would load after this point. Nothing on the textside of the moo (blank screen) and nothing on the graphical side (except the moving arrows endlessly trying to load). 3) Now, we can not even access the login page 4) I attempted telnet access but was unsuccessful (world not available) 5) Curious coincidence--Dene says she suddenly had difficulties using Mozilla about the same time the MOO went down. I believe Nouspace lives on a UNIX box. I'm not sure about the webserver, but I would guess it is Apache, and we were up to the latest encore version 4.01. If anyone has a theory about what it going on and what we might do to fix this problem, we would be eternally grateful. Thanks, Lennie L. Lennie Irvin Department of English, San Antonio College San Antonio, TX http://www.accd.edu/sac/english/lirvin/ AlaMOO: http://www.accd.edu/sac/english/lirvin/AlaMOO/ From olin.bjork@mail.utexas.edu Tue Jul 20 17:18:41 2004 Received: with ECARTIS (v1.0.0; list encore); Thu, 22 Jul 2004 08:45:57 -0500 (CDT) Return-Path: X-Original-To: encore@nobel.utdallas.edu Delivered-To: encore@nobel.utdallas.edu Received: from iq1.utdallas.edu (iq1-pmn.utdallas.edu [192.168.1.7]) by nobel.utdallas.edu (Postfix) with ESMTP id 8ED895BAA for ; Tue, 20 Jul 2004 17:18:41 -0500 (CDT) Received: from localhost (mf1-pmn.utdallas.edu [192.168.1.8]) by iq1.utdallas.edu (Postfix) with ESMTP id 5F24A1F69 for ; Tue, 20 Jul 2004 17:18:41 -0500 (CDT) Received: from mx2.utdallas.edu ([192.168.1.6]) by localhost (mf1 [192.168.1.8]) (amavisd-new, port 10024) with LMTP id 17223-01-31 for ; Tue, 20 Jul 2004 17:18:37 -0500 (CDT) Received: from mail.utexas.edu (fb3-a.its.utexas.edu [128.83.126.204]) by mx2.utdallas.edu (Postfix) with ESMTP id CE3DF3581 for ; Tue, 20 Jul 2004 17:18:36 -0500 (CDT) Received: (qmail 74303 invoked by uid 80); 20 Jul 2004 22:18:36 -0000 Received: from dhcp-128-83-125-149.cwrl.utexas.edu (dhcp-128-83-125-149.cwrl.utexas.edu [128.83.125.149]) by webmailapp4.cc.utexas.edu (IMP) with HTTP for ; Tue, 20 Jul 2004 17:18:36 -0500 Message-ID: <1090361916.40fd9a3ca9b6c@webmailapp4.cc.utexas.edu> Date: Tue, 20 Jul 2004 17:18:36 -0500 From: Olin Bjork To: encore@utdallas.edu Subject: [encore] adding web links to object descriptions MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 8bit User-Agent: Internet Messaging Program (IMP) 3.2.2 X-Originating-IP: 128.83.125.149 X-Virus-Scanned: by amavisd-new-20030616-p9 at utdallas.edu X-archive-position: 1163 X-Approved-By: cynthiah@utdallas.edu X-ecartis-version: Ecartis v1.0.0 Sender: encore-bounce@utdallas.edu Errors-to: encore-bounce@utdallas.edu X-original-sender: olin.bjork@mail.utexas.edu Precedence: bulk Reply-to: olin.bjork@mail.utexas.edu List-help: List-unsubscribe: List-software: Ecartis version 1.0.0 List-Id: X-List-ID: X-list: encore Dear encore folks, Here is a question from one of our MOO developers: I was wondering if you knew how I could go about including a web link in the description of an object. I know that I can do this by just typing in the URL, and the MOO automatically converts it to a link. But, I'd like the text for the link (that the user clicks on) to be different from the URL itself. Something like Click here. That kind of thing. Is there some other way to write html for an object description other than using @chparent object# to $webpage, which would wipe out many of the attributes of that object? thanks, Olin -- Olin Bjork Assistant Director Computer Writing and Research Lab Division of Rhetoric and Composition University of Texas at Austin From sir.van@uol.com.br Thu Jul 22 08:55:52 2004 Received: with ECARTIS (v1.0.0; list encore); Thu, 22 Jul 2004 08:55:53 -0500 (CDT) Return-Path: X-Original-To: encore@nobel.utdallas.edu Delivered-To: encore@nobel.utdallas.edu Received: from iq1.utdallas.edu (iq1-pmn.utdallas.edu [192.168.1.7]) by nobel.utdallas.edu (Postfix) with ESMTP id B4C175BF3 for ; Thu, 22 Jul 2004 08:55:52 -0500 (CDT) Received: from localhost (mf1-pmn.utdallas.edu [192.168.1.8]) by iq1.utdallas.edu (Postfix) with ESMTP id 797B64629 for ; Thu, 22 Jul 2004 08:55:52 -0500 (CDT) Received: from mx2.utdallas.edu ([192.168.1.6]) by localhost (mf1 [192.168.1.8]) (amavisd-new, port 10024) with LMTP id 13562-01-75 for ; Thu, 22 Jul 2004 08:55:47 -0500 (CDT) Received: from smtp.uol.com.br (smtpout1.uol.com.br [200.221.11.54]) by mx2.utdallas.edu (Postfix) with ESMTP id 3B96E358F for ; Thu, 22 Jul 2004 08:55:29 -0500 (CDT) Received: from Hal9000 (200-158-201-159.dsl.telesp.net.br [200.158.201.159]) by scorpion1.uol.com.br (Postfix) with ESMTP id D618BDE3D for ; Thu, 22 Jul 2004 10:55:16 -0300 (BRT) Message-ID: <003201c46ff3$72dbccc0$a500a8c0@Hal9000> From: "Sir Van" To: Subject: [encore] Two MOOs, one problem... Date: Thu, 22 Jul 2004 10:54:43 -0300 MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_NextPart_000_002F_01C46FDA.4B657330" X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2741.2600 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2742.200 X-Virus-Scanned: by amavisd-new-20030616-p9 at utdallas.edu X-Spam-Status: No, hits=5.1 tagged_above=3.0 required=8.0 tests=BAYES_50, HTML_MESSAGE, RCVD_IN_DSBL X-Spam-Level: ***** X-archive-position: 1164 X-ecartis-version: Ecartis v1.0.0 Sender: encore-bounce@utdallas.edu Errors-to: encore-bounce@utdallas.edu X-original-sender: sir.van@uol.com.br Precedence: bulk Reply-to: sir.van@uol.com.br List-help: List-unsubscribe: List-software: Ecartis version 1.0.0 List-Id: X-List-ID: X-list: encore This is a multi-part message in MIME format. ------=_NextPart_000_002F_01C46FDA.4B657330 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Hi all-- We have our FatecMOO running in a win2k server and always tried to implement accents there without succes. So, a few weeks ago we decided to start a brand new MOO in our Linux server and since then the=20 accents are working well in the text interface. The problem is: when we log in using the Xpress client the new MOO works well but the wrong=20 MOOtcan starts. So I have a hybrid MOO, part (graphics) New, part Old (MOOtcan) old. Summarizing: I can't acess the new MOO using MOOtcan. I will try to explain how they are installed in our servers: The two servers (win2k & Linux) work together in the following way: Win2k controls the Domains, Linux router and the mail server, it is also the web server (IIS). Linux is the Internet server. The old MOO is installed in the win2k and the Encore is in a IIS folder . On Linux server we have a route to 7000 and 777 ports pointing to win2k server. win2k is the primary DNS and Linux secondary. The Firewall is on Linux also and so is the New MOO. Ports 8000 and 8888 are also open. The new MOO Encore folder is also on IIS with a=20 different name (Encore2) and different data-base. We work with a subdomain: moo.fatecid.com.br pointing=20 to win2k (Old MOO) and another subdomain: brasilmoo.fatecid.com.br, pointing to linux. We have defined this last subdomain as the domain in the new MOO @configure program. Can anyone help us? Van ------=_NextPart_000_002F_01C46FDA.4B657330 Content-Type: text/html; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable
Hi all--
 
We have our FatecMOO running in a win2k = server
and always tried to implement accents=20 there
without succes.
 
So, a few weeks ago we decided to start = a=20 brand
new MOO in our Linux server and since = then the=20
accents are working=20 well in the text interface.
 
The problem is: when we log in using = the=20 Xpress
client the new MOO works well but the = wrong=20
MOOtcan starts. So I have a hybrid MOO, = part
(graphics) New, part Old (MOOtcan)=20 old.
 
Summarizing: I can't acess the new = MOO
using MOOtcan.
 
I will try to explain how they are=20 installed
in our servers:
 
The two servers (win2k & Linux) = work=20 together
in the following way:
 
Win2k controls the Domains, Linux = router and=20 the
mail server, it is also the web server=20 (IIS).
 
Linux is the Internet = server.
 
The old MOO is installed in the win2k = and the=20 Encore
is in a IIS folder .
 
On Linux server we have a route to 7000 = and 777=20 ports
pointing to win2k server.
 
win2k is the primary DNS and Linux=20 secondary.
 
The Firewall is on Linux also and so is = the New=20 MOO.
Ports 8000 and 8888 are also = open.
 
The new MOO Encore folder is also on = IIS with a=20
different name (Encore2) and different=20 data-base.
 
We work with a subdomain: = moo.fatecid.com.br=20 pointing
to win2k (Old MOO) and another=20 subdomain:
brasilmoo.fatecid.com.br, pointing to=20 linux.
 
We have defined this last subdomain as = the=20 domain
in the new MOO @configure = program.
 
Can anyone help us?
 
Van
 
 
------=_NextPart_000_002F_01C46FDA.4B657330-- From sir.van@uol.com.br Thu Jul 22 09:26:52 2004 Received: with ECARTIS (v1.0.0; list encore); Thu, 22 Jul 2004 09:26:52 -0500 (CDT) Return-Path: X-Original-To: encore@nobel.utdallas.edu Delivered-To: encore@nobel.utdallas.edu Received: from iq1.utdallas.edu (iq1-pmn.utdallas.edu [192.168.1.7]) by nobel.utdallas.edu (Postfix) with ESMTP id E45715BE0 for ; Thu, 22 Jul 2004 09:26:48 -0500 (CDT) Received: from localhost (mf1-pmn.utdallas.edu [192.168.1.8]) by iq1.utdallas.edu (Postfix) with ESMTP id A006017BB for ; Thu, 22 Jul 2004 09:26:48 -0500 (CDT) Received: from mx2.utdallas.edu ([192.168.1.6]) by localhost (mf1 [192.168.1.8]) (amavisd-new, port 10024) with LMTP id 17176-01-97 for ; Thu, 22 Jul 2004 09:26:44 -0500 (CDT) Received: from smtp.uol.com.br (smtpout4.uol.com.br [200.221.11.57]) by mx2.utdallas.edu (Postfix) with ESMTP id 4C8443523 for ; Thu, 22 Jul 2004 09:26:43 -0500 (CDT) Received: from Hal9000 (200-158-201-159.dsl.telesp.net.br [200.158.201.159]) by scorpion4.uol.com.br (Postfix) with ESMTP id 4A2DD13FCC for ; Thu, 22 Jul 2004 11:26:40 -0300 (BRT) Message-ID: <005101c46ff7$d6065140$a500a8c0@Hal9000> From: "Sir Van" To: Subject: [encore] Two MOOs, one problem... Date: Thu, 22 Jul 2004 11:26:09 -0300 MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_NextPart_000_004C_01C46FDE.AFE01E60" X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2741.2600 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2742.200 X-Virus-Scanned: by amavisd-new-20030616-p9 at utdallas.edu X-Spam-Status: No, hits=5.2 tagged_above=3.0 required=8.0 tests=BAYES_50, HTML_60_70, HTML_MESSAGE, RCVD_IN_DSBL X-Spam-Level: ***** X-archive-position: 1165 X-ecartis-version: Ecartis v1.0.0 Sender: encore-bounce@utdallas.edu Errors-to: encore-bounce@utdallas.edu X-original-sender: sir.van@uol.com.br Precedence: bulk Reply-to: sir.van@uol.com.br List-help: List-unsubscribe: List-software: Ecartis version 1.0.0 List-Id: X-List-ID: X-list: encore This is a multi-part message in MIME format. ------=_NextPart_000_004C_01C46FDE.AFE01E60 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Just correcting some pieces of information in my last email: Win2k controls the Domains and web server. Linux has the routes and the mail server. Van ------=_NextPart_000_004C_01C46FDE.AFE01E60 Content-Type: text/html; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable
Just correcting some pieces of=20 information
in my last email:
 
Win2k controls the Domains and web=20 server.
Linux has the routes  and the mail = server.
 
 
Van
 
 
------=_NextPart_000_004C_01C46FDE.AFE01E60-- From Lirvin@accdvm.accd.edu Sat Jul 24 09:57:40 2004 Received: with ECARTIS (v1.0.0; list encore); Sat, 24 Jul 2004 09:57:40 -0500 (CDT) Return-Path: X-Original-To: encore@nobel.utdallas.edu Delivered-To: encore@nobel.utdallas.edu Received: from iq1.utdallas.edu (iq1-pmn.utdallas.edu [192.168.1.7]) by nobel.utdallas.edu (Postfix) with ESMTP id 627565BCB for ; Sat, 24 Jul 2004 09:57:40 -0500 (CDT) Received: from localhost (mf1-pmn.utdallas.edu [192.168.1.8]) by iq1.utdallas.edu (Postfix) with ESMTP id 31EE655CB for ; Sat, 24 Jul 2004 09:57:40 -0500 (CDT) Received: from mx2.utdallas.edu ([192.168.1.6]) by localhost (mf1 [192.168.1.8]) (amavisd-new, port 10024) with LMTP id 18032-01-5 for ; Sat, 24 Jul 2004 09:57:36 -0500 (CDT) Received: from ACCDVM.ACCD.EDU (accdvm.accd.edu [209.184.119.1]) by mx2.utdallas.edu (Postfix) with SMTP id D7B9A358F for ; Sat, 24 Jul 2004 09:57:36 -0500 (CDT) Received: from irvin.accdvm.accd.edu [10.1.11.8] by ACCDVM.ACCD.EDU (IBM VM SMTP V2R4a) via TCP with SMTP ; Sat, 24 Jul 2004 09:56:55 CST Message-Id: <5.2.1.1.0.20040724095704.00aa1bc0@accdvm.accd.edu> X-Sender: Lirvin@accdvm.accd.edu X-Mailer: QUALCOMM Windows Eudora Version 5.2.1 Date: Sat, 24 Jul 2004 09:58:00 -0500 To: encore@utdallas.edu From: Lennie Irvin Subject: [encore] Nouspace fixed Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii"; format=flowed X-Virus-Scanned: by amavisd-new-20030616-p9 at utdallas.edu X-archive-position: 1166 X-ecartis-version: Ecartis v1.0.0 Sender: encore-bounce@utdallas.edu Errors-to: encore-bounce@utdallas.edu X-original-sender: Lirvin@accdvm.accd.edu Precedence: bulk Reply-to: Lirvin@accdvm.accd.edu List-help: List-unsubscribe: List-software: Ecartis version 1.0.0 List-Id: X-List-ID: X-list: encore I just wanted to follow up that Nouspace is back online. Our theory is that a security patch from Apache or Mozilla caused the problem. Has anyone else encountered a similar problem? Lennie L. Lennie Irvin Department of English, San Antonio College San Antonio, TX http://www.accd.edu/sac/english/lirvin/ AlaMOO: http://www.accd.edu/sac/english/lirvin/AlaMOO/ From ewgoff@comcast.net Sat Jul 24 10:13:48 2004 Received: with ECARTIS (v1.0.0; list encore); Sat, 24 Jul 2004 11:02:04 -0500 (CDT) Return-Path: X-Original-To: encore@nobel.utdallas.edu Delivered-To: encore@nobel.utdallas.edu Received: from iq1.utdallas.edu (iq1-pmn.utdallas.edu [192.168.1.7]) by nobel.utdallas.edu (Postfix) with ESMTP id 9EA5C5BCB for ; Sat, 24 Jul 2004 10:13:48 -0500 (CDT) Received: from localhost (mf1-pmn.utdallas.edu [192.168.1.8]) by iq1.utdallas.edu (Postfix) with ESMTP id 878CB1FD4 for ; Sat, 24 Jul 2004 10:13:48 -0500 (CDT) Received: from mx2.utdallas.edu ([192.168.1.6]) by localhost (mf1 [192.168.1.8]) (amavisd-new, port 10024) with LMTP id 17985-01-65 for ; Sat, 24 Jul 2004 10:13:43 -0500 (CDT) Received: from sccrmhc13.comcast.net (sccrmhc13.comcast.net [204.127.202.64]) by mx2.utdallas.edu (Postfix) with ESMTP id 95E933574 for ; Sat, 24 Jul 2004 10:13:43 -0500 (CDT) Received: from master (pcp03504071pcs.elictc01.md.comcast.net[68.54.161.232]) by comcast.net (sccrmhc13) with SMTP id <2004072415134101600of9e5e>; Sat, 24 Jul 2004 15:13:42 +0000 From: "Edward Goff" To: "Lennie Irvin" Cc: Subject: [encore] Re: Nouspace problem Date: Sat, 24 Jul 2004 11:11:38 -0400 Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook IMO, Build 9.0.2416 (9.0.2911.0) In-Reply-To: <5.2.1.1.0.20040724095524.00a9f9d0@accdvm.accd.edu> Importance: Normal X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1441 X-Virus-Scanned: by amavisd-new-20030616-p9 at utdallas.edu X-archive-position: 1167 X-Approved-By: cynthiah@utdallas.edu X-ecartis-version: Ecartis v1.0.0 Sender: encore-bounce@utdallas.edu Errors-to: encore-bounce@utdallas.edu X-original-sender: ewgoff@comcast.net Precedence: bulk Reply-to: ewgoff@comcast.net List-help: List-unsubscribe: List-software: Ecartis version 1.0.0 List-Id: X-List-ID: X-list: encore Actually the problem I've run into is I can get into the moo text 100% and I even get the main "login" page. When I click login, as a guest or user, I get a popup box that "says" its loading the encore interface but nothing ever happens. I'm open to suggestions from anyone at this point. Since I know the 3.x one we have is working. I'm also going to do some digging on the servers themselves and talk to a friend maybe we'll figure something out. :) -----Original Message----- From: Lennie Irvin [mailto:Lirvin@accdvm.accd.edu] Sent: Saturday, July 24, 2004 10:57 AM To: Edward Goff Subject: RE: [encore] Nouspace problem Hey Ed, Bummer. Our problem is fixed. The theory is that it was something in the latest security fix from Apache or Mozilla that caused the complication, but I wasn't there so see what Dene did to correct the problem. You can't get the MOO up at all from an installation? You should query the list or Jan. Good luck, Lennie At 04:45 PM 7/23/04 -0400, you wrote: >Actually I'm having the same problem. I was running 3.something and decided >to do a clean install with 4.x and bam nada. > > > >-----Original Message----- >From: encore-bounce@utdallas.edu [mailto:encore-bounce@utdallas.edu]On >Behalf Of Lennie Irvin >Sent: Thursday, July 22, 2004 6:49 AM >To: encore@utdallas.edu >Subject: [encore] Nouspace problem > > >Hi Everyone, > >I am now "mooliving" in Dene Grigar's Nouspace, and we have recently >experienced a problem that we are unsure how to fix. I thought if I >described what happened that one of you might have seen it before and have >have some insight into what is going on: > >1) The problem appeared suddenly. No apparent changes to the MOO or server >were made (though I think there might have been something that we are >overlooking). > >2) You could still access the login page. When you would begin the login >process, the MOO client would begin to load. The second MOO window would >open and the Xpress Button bar would load completely. > >However, nothing else would load after this point. Nothing on the textside >of the moo (blank screen) and nothing on the graphical side (except the >moving arrows endlessly trying to load). > >3) Now, we can not even access the login page > >4) I attempted telnet access but was unsuccessful (world not available) > >5) Curious coincidence--Dene says she suddenly had difficulties using >Mozilla about the same time the MOO went down. > >I believe Nouspace lives on a UNIX box. I'm not sure about the webserver, >but I would guess it is Apache, and we were up to the latest encore version >4.01. > >If anyone has a theory about what it going on and what we might do to fix >this problem, we would be eternally grateful. > >Thanks, > >Lennie > > >L. Lennie Irvin >Department of English, San Antonio College >San Antonio, TX > >http://www.accd.edu/sac/english/lirvin/ >AlaMOO: http://www.accd.edu/sac/english/lirvin/AlaMOO/ L. Lennie Irvin Department of English, San Antonio College San Antonio, TX http://www.accd.edu/sac/english/lirvin/ AlaMOO: http://www.accd.edu/sac/english/lirvin/AlaMOO/ From ewgoff@comcast.net Sat Jul 24 10:18:59 2004 Received: with ECARTIS (v1.0.0; list encore); Sat, 24 Jul 2004 11:02:09 -0500 (CDT) Return-Path: X-Original-To: encore@nobel.utdallas.edu Delivered-To: encore@nobel.utdallas.edu Received: from iq1.utdallas.edu (iq1-pmn.utdallas.edu [192.168.1.7]) by nobel.utdallas.edu (Postfix) with ESMTP id 766F45BCB for ; Sat, 24 Jul 2004 10:18:59 -0500 (CDT) Received: from localhost (mf1-pmn.utdallas.edu [192.168.1.8]) by iq1.utdallas.edu (Postfix) with ESMTP id 3C03F1FDC for ; Sat, 24 Jul 2004 10:18:59 -0500 (CDT) Received: from mx2.utdallas.edu ([192.168.1.6]) by localhost (mf1 [192.168.1.8]) (amavisd-new, port 10024) with LMTP id 18005-01-80 for ; Sat, 24 Jul 2004 10:18:58 -0500 (CDT) Received: from sccrmhc13.comcast.net (sccrmhc13.comcast.net [204.127.202.64]) by mx2.utdallas.edu (Postfix) with ESMTP id 1114E34CC for ; Sat, 24 Jul 2004 10:18:58 -0500 (CDT) Received: from master (pcp03504071pcs.elictc01.md.comcast.net[68.54.161.232]) by comcast.net (sccrmhc13) with SMTP id <2004072415185601600ogl0de>; Sat, 24 Jul 2004 15:18:56 +0000 From: "Edward Goff" To: "Encore" Subject: [encore] Just to further confuse everyone on my ENCORE 4.x Problem Date: Sat, 24 Jul 2004 11:16:52 -0400 Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook IMO, Build 9.0.2416 (9.0.2911.0) Importance: Normal X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1441 X-Virus-Scanned: by amavisd-new-20030616-p9 at utdallas.edu X-archive-position: 1168 X-Approved-By: cynthiah@utdallas.edu X-ecartis-version: Ecartis v1.0.0 Sender: encore-bounce@utdallas.edu Errors-to: encore-bounce@utdallas.edu X-original-sender: ewgoff@comcast.net Precedence: bulk Reply-to: ewgoff@comcast.net List-help: List-unsubscribe: List-software: Ecartis version 1.0.0 List-Id: X-List-ID: X-list: encore All the other buttons work. Browse, Telnet, Create a character. There is just NO way to login via the HTTP interface. YAY! :) Edward From KEustace@csu.edu.au Sun Jul 25 00:26:35 2004 Received: with ECARTIS (v1.0.0; list encore); Sun, 25 Jul 2004 00:26:35 -0500 (CDT) Return-Path: X-Original-To: encore@nobel.utdallas.edu Delivered-To: encore@nobel.utdallas.edu Received: from iq1.utdallas.edu (iq1-pmn.utdallas.edu [192.168.1.7]) by nobel.utdallas.edu (Postfix) with ESMTP id 288D25BAA for ; Sun, 25 Jul 2004 00:26:35 -0500 (CDT) Received: from localhost (mf1-pmn.utdallas.edu [192.168.1.8]) by iq1.utdallas.edu (Postfix) with ESMTP id EB4E01FF6 for ; Sun, 25 Jul 2004 00:26:34 -0500 (CDT) Received: from mx2.utdallas.edu ([192.168.1.6]) by localhost (mf1 [192.168.1.8]) (amavisd-new, port 10024) with LMTP id 01866-01-30 for ; Sun, 25 Jul 2004 00:26:31 -0500 (CDT) Received: from csunb.mit.csu.edu.au (csunb.mit.csu.edu.au [137.166.16.1]) by mx2.utdallas.edu (Postfix) with ESMTP id 196823574 for ; Sun, 25 Jul 2004 00:26:24 -0500 (CDT) Received: from XCWW01.CSUMain.csu.edu.au (xcww01.riv.csu.edu.au [137.166.69.22]) by csunb.mit.csu.edu.au (8.12.11/8.12.11) with ESMTP id i6P5QMw2002593 for ; Sun, 25 Jul 2004 15:26:22 +1000 (EST) X-MimeOLE: Produced By Microsoft Exchange V6.0.6487.1 content-class: urn:content-classes:message MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable Subject: [encore] Re: Nouspace fixed Date: Sun, 25 Jul 2004 15:26:22 +1000 Message-ID: <8C2D9A2B9988B342BD8BAABEF0C83DB6BFB49C@xcww01.riv.csu.edu.au> X-MS-Has-Attach: X-MS-TNEF-Correlator: Thread-Topic: [encore] Nouspace fixed Thread-Index: AcRxjqgJuQS3kb5pSxaM6RUamjL+XQAdngXg From: "Eustace, Ken" To: X-Virus-Scanned: by amavisd-new-20030616-p9 at utdallas.edu X-archive-position: 1169 X-ecartis-version: Ecartis v1.0.0 Sender: encore-bounce@utdallas.edu Errors-to: encore-bounce@utdallas.edu X-original-sender: KEustace@csu.edu.au Precedence: bulk Reply-to: KEustace@csu.edu.au List-help: List-unsubscribe: List-software: Ecartis version 1.0.0 List-Id: X-List-ID: X-list: encore Hi Lennie, I have such "nuances" like Nouspace. In our small research group using MOO we tried Mozilla, but had some similar problems with the encore Java applets, especially the Java telnet window. As a result of the Office of Home Security recommendation to use a non IE browers until Microsoft releases a security patch, we started looking elsewhere. Just this week we have begun trialling with the Firefox version of Mozilla under Windows XP and after one week am pleased with its stability for users, apart from the occasional login cookie/cache problem. Firefox can apply all current IE links, so the changeover is smooth. A flash installer program is also needed for flash files. The ability of Firefox the create new tabs and modify the interface is handy for MOO users. This was coupled to installation of a second video card and drivers for running a second monitor. Since our MOO classes resume this week, it will be interesting to see how using 2 monitors can enhance encore MOO usability. Since the Mozilla source code and XUL are available, we could loos at a dedicated encore MOO browser. At the moment Firefox is quick to load seems to work well, but it is early days yet. Regards, Ken Eustace Lecturer (Information Systems) Study Group Program Manager (IT) School of Information Studies Charles Sturt University Wagga Wagga NSW 2678 Email: keustace@csu.edu,.au Web: farrer.csu.edu.au/~keustace -----Original Message----- From: encore-bounce@utdallas.edu [mailto:encore-bounce@utdallas.edu] On Behalf Of Lennie Irvin Sent: Sunday, 25 July 2004 12:58 AM To: encore@utdallas.edu Subject: [encore] Nouspace fixed I just wanted to follow up that Nouspace is back online. Our theory is=20 that a security patch from Apache or Mozilla caused the problem. Has=20 anyone else encountered a similar problem? Lennie L. Lennie Irvin Department of English, San Antonio College San Antonio, TX http://www.accd.edu/sac/english/lirvin/ AlaMOO: http://www.accd.edu/sac/english/lirvin/AlaMOO/ From dbisig@ifi.unizh.ch Mon Jul 26 15:35:46 2004 Received: with ECARTIS (v1.0.0; list encore); Mon, 26 Jul 2004 15:35:46 -0500 (CDT) Return-Path: X-Original-To: encore@nobel.utdallas.edu Delivered-To: encore@nobel.utdallas.edu Received: from iq1.utdallas.edu (iq1-pmn.utdallas.edu [192.168.1.7]) by nobel.utdallas.edu (Postfix) with ESMTP id E9A515BAA for ; Mon, 26 Jul 2004 15:35:45 -0500 (CDT) Received: from localhost (mf1-pmn.utdallas.edu [192.168.1.8]) by iq1.utdallas.edu (Postfix) with ESMTP id BBEB227A4 for ; Mon, 26 Jul 2004 15:35:45 -0500 (CDT) Received: from mx2.utdallas.edu ([192.168.1.6]) by localhost (mf1 [192.168.1.8]) (amavisd-new, port 10024) with LMTP id 08785-01-33 for ; Mon, 26 Jul 2004 15:35:44 -0500 (CDT) Received: from bela.ifi.unizh.ch (bela.ifi.unizh.ch [130.60.48.10]) by mx2.utdallas.edu (Postfix) with ESMTP id 79FEA3523 for ; Mon, 26 Jul 2004 15:35:44 -0500 (CDT) Received: from [130.60.75.204] (unknown [130.60.75.204]) by bela.ifi.unizh.ch (Postfix) with ESMTP id E03D016C9F for ; Mon, 26 Jul 2004 22:35:43 +0200 (CEST) Mime-Version: 1.0 (Apple Message framework v618) Content-Transfer-Encoding: 7bit Message-Id: <7D9AE568-DF43-11D8-85CF-000A95AB9446@ifi.unizh.ch> Content-Type: text/plain; charset=US-ASCII; format=flowed To: encore@utdallas.edu From: Daniel Bisig Subject: [encore] repeated automated actions in moo Date: Mon, 26 Jul 2004 22:36:37 +0200 X-Mailer: Apple Mail (2.618) X-Virus-Scanned: by amavisd-new-20030616-p9 at utdallas.edu X-archive-position: 1170 X-ecartis-version: Ecartis v1.0.0 Sender: encore-bounce@utdallas.edu Errors-to: encore-bounce@utdallas.edu X-original-sender: dbisig@ifi.unizh.ch Precedence: bulk Reply-to: dbisig@ifi.unizh.ch List-help: List-unsubscribe: List-software: Ecartis version 1.0.0 List-Id: X-List-ID: X-list: encore Hi all, I'm very new to the moo system but have some tiny little background in mud's which dates several years back. I recently started playing around with moo's and tried to figure out how I can create objects which possess some autonomy (e.g. they do stuff by themselves at particular intervals). I remember having used the heartbeat facility in mud to achieve this effects. So far I haven't been able to figure out how to do something similar in moo. Any advice on this will be highly appreciated. Thanks a lot and best regards Daniel From fox@vader.aacc.cc.md.us Mon Jul 26 16:52:13 2004 Received: with ECARTIS (v1.0.0; list encore); Mon, 26 Jul 2004 16:52:13 -0500 (CDT) Return-Path: X-Original-To: encore@nobel.utdallas.edu Delivered-To: encore@nobel.utdallas.edu Received: from iq1.utdallas.edu (iq1-pmn.utdallas.edu [192.168.1.7]) by nobel.utdallas.edu (Postfix) with ESMTP id 8E08E5BAA for ; Mon, 26 Jul 2004 16:52:13 -0500 (CDT) Received: from localhost (mf1-pmn.utdallas.edu [192.168.1.8]) by iq1.utdallas.edu (Postfix) with ESMTP id 5E8B12800 for ; Mon, 26 Jul 2004 16:52:13 -0500 (CDT) Received: from mx2.utdallas.edu ([192.168.1.6]) by localhost (mf1 [192.168.1.8]) (amavisd-new, port 10024) with LMTP id 17703-01-79 for ; Mon, 26 Jul 2004 16:52:10 -0500 (CDT) Received: from vader.aacc.edu (vader.aacc.cc.md.us [12.167.138.28]) by mx2.utdallas.edu (Postfix) with ESMTP id 97FEE342B for ; Mon, 26 Jul 2004 16:52:08 -0500 (CDT) Received: from vader.aacc.edu (IDENT:qafdgpmix4l7UcOlo9P+eN3gS6hKNvgJ@localhost [127.0.0.1]) by vader.aacc.edu (8.12.8/8.12.8) with ESMTP id i6QLq1uU024720; Mon, 26 Jul 2004 17:52:01 -0400 Received: from localhost (fox@localhost) by vader.aacc.edu (8.12.8/8.12.8/Submit) with ESMTP id i6QLq1GP024716; Mon, 26 Jul 2004 17:52:01 -0400 X-Authentication-Warning: vader.aacc.edu: fox owned process doing -bs Date: Mon, 26 Jul 2004 17:52:01 -0400 (EDT) From: fox@vader.aacc.cc.md.us X-X-Sender: fox@vader.aacc.edu To: Daniel Bisig Cc: encore@utdallas.edu Subject: [encore] Re: repeated automated actions in moo In-Reply-To: <7D9AE568-DF43-11D8-85CF-000A95AB9446@ifi.unizh.ch> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII X-Virus-Scanned: by amavisd-new-20030616-p9 at utdallas.edu X-archive-position: 1171 X-ecartis-version: Ecartis v1.0.0 Sender: encore-bounce@utdallas.edu Errors-to: encore-bounce@utdallas.edu X-original-sender: fox@vader.aacc.cc.md.us Precedence: bulk Reply-to: fox@vader.aacc.cc.md.us List-help: List-unsubscribe: List-software: Ecartis version 1.0.0 List-Id: X-List-ID: X-list: encore On Mon, 26 Jul 2004, Daniel Bisig wrote: > intervals). I remember having used the heartbeat facility in mud to > achieve this effects. So far I haven't been able to figure out how to > do something similar in moo. fork ... endfork. If you have a copy of the lambdamoo programmer's reference, that should get you started. Otherwise, ask for more help on the list. (Sorry for the curt answer - falling alseep at the keyboard.) -- "I'd ask if you'd found the right sort of isolated wasteland for your citadel of dread yet, but that would be a silly question; you're in Utah, after all." --ESR to Darl McBride (Chief Excessive Ossifier of Squandered Clues Obstination), in http://www.catb.org/~esr/writings/mcbride.html From alexborgia@hotmail.com Mon Jul 26 17:56:14 2004 Received: with ECARTIS (v1.0.0; list encore); Mon, 26 Jul 2004 17:56:14 -0500 (CDT) Return-Path: X-Original-To: encore@nobel.utdallas.edu Delivered-To: encore@nobel.utdallas.edu Received: from iq1.utdallas.edu (iq1-pmn.utdallas.edu [192.168.1.7]) by nobel.utdallas.edu (Postfix) with ESMTP id 381B85BAA for ; Mon, 26 Jul 2004 17:56:14 -0500 (CDT) Received: from localhost (mf1-pmn.utdallas.edu [192.168.1.8]) by iq1.utdallas.edu (Postfix) with ESMTP id 08B6421E0 for ; Mon, 26 Jul 2004 17:56:14 -0500 (CDT) Received: from mx2.utdallas.edu ([192.168.1.6]) by localhost (mf1 [192.168.1.8]) (amavisd-new, port 10024) with LMTP id 24009-01-97 for ; Mon, 26 Jul 2004 17:56:08 -0500 (CDT) Received: from hotmail.com (bay13-dav64.bay13.hotmail.com [64.4.31.238]) by mx2.utdallas.edu (Postfix) with ESMTP id 1CC2736A9 for ; Mon, 26 Jul 2004 17:56:08 -0500 (CDT) Received: from mail pickup service by hotmail.com with Microsoft SMTPSVC; Mon, 26 Jul 2004 15:56:07 -0700 Received: from 66.36.129.95 by bay13-dav64.bay13.hotmail.com with DAV; Mon, 26 Jul 2004 22:56:07 +0000 X-Originating-IP: [66.36.129.95] X-Originating-Email: [alexborgia@hotmail.com] X-Sender: alexborgia@hotmail.com From: "Alexandre Borgia" To: Subject: [encore] Re: repeated automated actions in moo Date: Mon, 26 Jul 2004 18:56:20 -0400 MIME-Version: 1.0 Content-Type: text/plain; charset="US-ASCII" Content-Transfer-Encoding: 7bit X-Mailer: Microsoft Office Outlook, Build 11.0.5510 In-Reply-To: <7D9AE568-DF43-11D8-85CF-000A95AB9446@ifi.unizh.ch> Thread-Index: AcRzUC4GvakjPUbxRvqH7dylz3RnrQAEmb8g X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1409 Message-ID: X-OriginalArrivalTime: 26 Jul 2004 22:56:07.0534 (UTC) FILETIME=[BC8A18E0:01C47363] X-Virus-Scanned: by amavisd-new-20030616-p9 at utdallas.edu X-archive-position: 1172 X-ecartis-version: Ecartis v1.0.0 Sender: encore-bounce@utdallas.edu Errors-to: encore-bounce@utdallas.edu X-original-sender: alexborgia@hotmail.com Precedence: bulk Reply-to: alexborgia@hotmail.com List-help: List-unsubscribe: List-software: Ecartis version 1.0.0 List-Id: X-List-ID: X-list: encore Hi Daniel, You can take a look at the following verb which is used to clean-up the MOO in the background: @list $housekeeper:continuous The idea is to "fork" an infinite loop out of the normal flow of code (ie: create a new thread). Using suspend() you can set an interval at which the code it contains will be executed. To see forked tasks you can used the @forked command (and kill them using @kill, very useful when testing). Also, check out how the "continuous" verb validates that the task is not already running by keeping a reference to its TaskID. Useful if you don't want to spawn hundreds processes by mistake ;) - Alexandre Borgia -----Original Message----- From: encore-bounce@utdallas.edu [mailto:encore-bounce@utdallas.edu] On Behalf Of Daniel Bisig Sent: 26 juillet 2004 16:37 To: encore@utdallas.edu Subject: [encore] repeated automated actions in moo Hi all, I'm very new to the moo system but have some tiny little background in mud's which dates several years back. I recently started playing around with moo's and tried to figure out how I can create objects which possess some autonomy (e.g. they do stuff by themselves at particular intervals). I remember having used the heartbeat facility in mud to achieve this effects. So far I haven't been able to figure out how to do something similar in moo. Any advice on this will be highly appreciated. Thanks a lot and best regards Daniel From beuja@iinet.net.au Fri Jul 30 12:57:20 2004 Received: with ECARTIS (v1.0.0; list encore); Fri, 30 Jul 2004 12:57:20 -0500 (CDT) Return-Path: X-Original-To: encore@nobel.utdallas.edu Delivered-To: encore@nobel.utdallas.edu Received: from iq1.utdallas.edu (iq1-pmn.utdallas.edu [192.168.1.7]) by nobel.utdallas.edu (Postfix) with ESMTP id 422125BAA for ; Fri, 30 Jul 2004 12:57:16 -0500 (CDT) Received: from localhost (mf1-pmn.utdallas.edu [192.168.1.8]) by iq1.utdallas.edu (Postfix) with ESMTP id 948ED4EE4 for ; Fri, 30 Jul 2004 12:57:16 -0500 (CDT) Received: from mx2.utdallas.edu ([192.168.1.6]) by localhost (mf1 [192.168.1.8]) (amavisd-new, port 10024) with LMTP id 23003-01-48 for ; Fri, 30 Jul 2004 12:57:12 -0500 (CDT) Received: from mail.iinet.net.au (mail-04.iinet.net.au [203.59.3.36]) by mx2.utdallas.edu (Postfix) with SMTP id 26E743556 for ; Fri, 30 Jul 2004 12:57:09 -0500 (CDT) Received: (qmail 19843 invoked from network); 30 Jul 2004 17:57:07 -0000 Received: from unknown (HELO mercury.iinet.net.au) (203.59.178.215) by mail.iinet.net.au with SMTP; 30 Jul 2004 17:57:06 -0000 Message-Id: <5.1.0.14.2.20040731014628.023e0e38@203.0.178.192> X-Sender: beuja@203.0.178.192 X-Mailer: QUALCOMM Windows Eudora Version 5.1 Date: Sat, 31 Jul 2004 01:56:34 +0800 To: encore@utdallas.edu From: Scott DC Subject: [encore] alert2 not defined in $xpress_program_editor:editor Mime-Version: 1.0 Content-Type: multipart/mixed; x-avg-checked=avg-ok-12DB2113; boundary="=======322618=======" X-Virus-Scanned: by amavisd-new-20030616-p9 at utdallas.edu X-archive-position: 1173 X-ecartis-version: Ecartis v1.0.0 Sender: encore-bounce@utdallas.edu Errors-to: encore-bounce@utdallas.edu X-original-sender: beuja@iinet.net.au Precedence: bulk Reply-to: beuja@iinet.net.au List-help: List-unsubscribe: List-software: Ecartis version 1.0.0 List-Id: X-List-ID: X-list: encore --=======322618======= Content-Type: text/plain; x-avg-checked=avg-ok-12DB2113; charset=us-ascii; format=flowed Content-Transfer-Encoding: 8bit Hi I just got a traceback in the program editor due to some funky matching verbs in a room... but the traceback was related to variable alert2 being used without being defined. In $xpress_program_editor:editor I suggest line 9: error_msg = onload = ""; Should be changed to: 9: error_msg = onload = alert2 = ""; The code now shows the alert box it is intended to. Scott DC beuja@iinet.net.au ---------------------------------------------------------------------------- http://members.iinet.net.au/~beuja/ ---------------------------------------------------------------------------- --=======322618======= Content-Type: text/plain; charset=us-ascii; x-avg=cert; x-avg-checked=avg-ok-12DB2113 Content-Disposition: inline --- Outgoing mail is certified Virus Free. Checked by AVG anti-virus system (http://www.grisoft.com). Version: 6.0.725 / Virus Database: 480 - Release Date: 19/07/2004 --=======322618=======--