WARNING - OLD ARCHIVES

This is an archived copy of the Xen.org mailing list, which we have preserved to ensure that existing links to archives are not broken. The live archive, which contains the latest emails, can be found at http://lists.xen.org/
   
 
 
Xen 
 
Home Products Support Community News
 
   
 

xen-devel

[Xen-devel] Documentation Project

To: xen-devel@xxxxxxxxxxxxxxxxxxxxx
Subject: [Xen-devel] Documentation Project
From: Nicholas Lee <nic-lists@xxxxxxxxxxxxxx>
Date: Fri, 4 Mar 2005 08:17:31 +1300
Delivery-date: Thu, 03 Mar 2005 19:26:37 +0000
Envelope-to: xen+James.Bulpin@xxxxxxxxxxxx
List-archive: <http://sourceforge.net/mailarchive/forum.php?forum=xen-devel>
List-help: <mailto:xen-devel-request@lists.sourceforge.net?subject=help>
List-id: List for Xen developers <xen-devel.lists.sourceforge.net>
List-post: <mailto:xen-devel@lists.sourceforge.net>
List-subscribe: <https://lists.sourceforge.net/lists/listinfo/xen-devel>, <mailto:xen-devel-request@lists.sourceforge.net?subject=subscribe>
List-unsubscribe: <https://lists.sourceforge.net/lists/listinfo/xen-devel>, <mailto:xen-devel-request@lists.sourceforge.net?subject=unsubscribe>
Mail-followup-to: xen-devel@xxxxxxxxxxxxxxxxxxxxx
Sender: xen-devel-admin@xxxxxxxxxxxxxxxxxxxxx
User-agent: Mutt/1.5.6+20040907i
Has there been any thoughts to setting up a community oriented
documentation project. Wiki, blog or fom?


While the current documentation is reasonable, it is somewhat tense.
Much of xend and the config files seem like black magic.

I know its possible to read the python source files to figure out what
is going on.  Unfortunately this is not easy.


Also seems to me that xend should layer more with library
and application code. For instance the code to change the
interface on which console ports for domUs listen seems to be in
python/xen/xend/server/console.py:

class ConsoleController(controller.Controller):
    """Console controller for a domain.
    Does not poll for i/o itself, but relies on the notifier to post console
    output and the connected TCP sockets to post console input.
    """
def __init__(self, factory, dom, console_port):
        controller.Controller.__init__(self, factory, dom)
        self.addMethod(CMSG_CONSOLE, 0, None)
        self.status = self.STATUS_NEW
        self.addr = None
        self.conn = None
        self.rbuf = xu.buffer()
        self.wbuf = xu.buffer()
        self.console_port = console_port


self.addr I'd guess.  


However its not easy to confirm this as I don't really understand
twisted, I'm not sure were to look up the syntax for "self.addr", and
there really isn't much documentation.


Nicholas


-------------------------------------------------------
SF email is sponsored by - The IT Product Guide
Read honest & candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595&alloc_id=14396&op=click
_______________________________________________
Xen-devel mailing list
Xen-devel@xxxxxxxxxxxxxxxxxxxxx
https://lists.sourceforge.net/lists/listinfo/xen-devel

<Prev in Thread] Current Thread [Next in Thread>
  • [Xen-devel] Documentation Project, Nicholas Lee <=