| Nooron |
(TOP)
|
status
|
know
|
templates
|
code
/ know / nooron_faq__faqs_as_html / |
||||||
|
available garments: frame_details_as_html frame_as_html faqs_as_html |
Nooron FAQLet us use the conceit of an FAQ to convey some of the basics of how to get started with Nooron. U00100Q: What is Nooron? A: I finally got really annoyed with how hard it is for people to think clearly together. So I decided to [try to] solve the problem once and for all [cue mad-scientist-music] by creating an online digital ecosystem in which knowledge, logic and presentation can all evolve in a globe-spanning, self-organizing, peer to peer system of web servers which is simultaneously the handiest, most flexible piece of software everybody uses and also the software substrate for an emergent global collective intelligence. Take your pick. See How to Build a Global Brain for an expanded form of this vision. [better keep the mad-scientist-music playing, though.] U00200 Q: I don't give a hoot about all this global brain stuff. I just need a ... A: OK, OK, lets skip the big picture for the moment. How about if we just look at the handy stuff that Nooron does right now.
U00205 Q: What other, concrete, features will it have by version 1.0.0? A: See The Nooron Pattern Language for the whole conceptual tour, but you asked for a concrete answer.
U00210 Q: What are the links at the top of the page? A: The very top line is the main menu of the site, showing links to the (TOP) or front page, a Medusa status display (where Medusa is the underlying http server library used by Nooron), and links to lists of all the templates (garments) and all the Python software which implements Nooron itself. U00211 Q: What are some immediate next steps? A: The things which will be done to Nooron ASAP are:
U00300 Q: What are the 'available garments' listed over at the left? A: Garments are the different appearances, disguises, what-have-you that the currently displayed frame can 'wear'. Each of these garments is implemented as a NooronPageTemplate or NPT. They are an adaptation of Zope Page Templates. Each different thing in Nooron (KBs, classes, individuals, slots or facets) has a different set of NPTs (or garments) available to it. Usually these are inherited from classes and superclasses up to :THING (the root of the OKBC class hierarchy). As shipped, all the attaching of NPTs to classes is going on in knowledge bases which are themselves instances of the nooron_app_wardrobe class. Individuals can also have 'garments' associated directly with them (by making the name of the garment one of the values on the own_slot 'npt_for_self' on the individual in question. U00400 Q: Why call them 'garments' instead of 'skins'? A: Well, because in Nooron there are also skins. The term 'skin' is usually used to talk about a large-scale cosmetic choice that governs details such as the colors, positions and sizes of onscreen elements. There is room for Nooron to have skins too, but nothing has been done to implement that yet. The template 'standard_master' can be thought of as the only skin currently available for Nooron. It is responsible for placing and formatting all the html screens you see when surfing a stock Nooron instance. A future direction is for programmatic selection of standard_master or some alternative skin to occur at the top of each skin. Probably the thing to do would be to rejigger standard_master so it takes responsibility for implementing the selection of a skin. Nothing stands in the way of current Nooron site operators modifying standard_master in any way they choose, including getting it to swap skins based on knowledge or cookies or something. U00500 Q: When I surf around under /know why do some links
go to a page over at the Stanford Research Institute?A: These are 'deep' links into the beautifully constructed OKBC Spec 2.03 at SRI. Since PyOKBC aims to be a faithful implementation of the OKBC Spec, the spec serves as documentation for it. U00600 Q: What is a frame? A: The term 'frame' comes from the Knowledge Representation tradition in the AI community. The term was coined by Minsky and means a data structure, capable of representing nearly anything, which has slots on it and which exists inside a knowledgebase. If you are going to use Nooron at this stage in its development you will need to understand the OKBC Knowledge Model. U00700 Q: What is an ontology? A: An ontology is a set of formal definitions of concepts and things in some domain. These machine-understandable artifacts can range in scope from narrow to universal. The Yahoo and Open Directory project's hierarchies are often mentioned as examples of ontologies, but are more properly called taxonomies because they are mostly just hierarchic classifications rather than having enough structural sophistication to provide a basis for inferences about their contents. There are several efforts to create universal ontologies, e.g. http://suo.ieee.org/http://www.opencyc.org/ U00800 Q: What are the top menu links? A:
U00900 Q: What are .pykb files? A: Hopefully, soon to be replaced. They are the only file format supported by PyOKBC 0.1.1 (the release which was bundled with Nooron 0.2.0). As a shortcut (to avoid having to write a parser) .pykb files are simply files full of python calls to the PyOKBC API. This business about executing .pykb files full of python code has a number of consequences which means that they should soon be replaced by a more conventional file format. Remember, this is Alpha code! A more lasting solution will be to support the reading and writing of files filled with OKBC 'sentences'. This ought to suffice as a basic file format for some time and provide an acceptable format for knowledge 'syndication'. U01000 Q: Will a command line version of Nooron be available? A: A command line interface to Nooron might prove handy, but for most purposes simply fetching an appropriately constructed url from a running Nooron instance will be equivalent to most anything one might want a command line for. This is thanks to the interaction of the two patterns REST and URLsHaveMeaning U01100 Q: How do I make my own pattern_language_app? A: Put a file called SOMENAME_pattern_language.pykb
in /know with contents like:
put_direct_parents(['pattern_language_wardrobe',
'SOMENAME_pattern_language_data'])
put_instance_types(current_kb(),['pattern_language_app'])
put_frame_pretty_name(current_kb(),"SOMENAME Pattern Language")
Put your data in another file called SOMENAME_pattern_language_data.pykb
with contents like:
put_direct_parents(['pattern_language_ontology'])
put_instance_types(current_kb(),['nooron_app_data'])
followed by create_individual calls that look like
those in /know/nooron_pattern_language_data.pykb
U01200 Q: How do I see the graphs Nooron generates? A: For the moment glean what you can from http://www.pinkjuice.com/howto/dot.txt U01300 Q: Is it safe to run Nooron? What with all the python in the templates? A: Umm. Yes. (but no warranty!) Notice that when Nooron starts up there is the line: Relax: NPT SAFETY is ON.
If you see Warning: NPT SAFETY is OFF and your
Nooron instance is exposed to the wilds of the internet,
then you should set SAFETY = 1 up near the top of
code/NooronPageTemplate.py. The SAFETY setting
controls whether a restricted execution environment is used
to execute the code within NooronPageTemplates (NPTs). There
probably exist a few holes in the Nooron application of the
ZPT restrictions. Please report them if you find any.
U01400 Q: Where is some documentation for Zope Page Templates (the basis of Nooron Page Templates)? A: FrontPage of ZPT ZPT Error Handling Strategies U01500 Q: What is foreseeably going to change in a backwardly incompatible way? A: Surfing to /know/somekb.pykb will soon return the raw .pykb file, while /know/somekb will be surfable
in the conventional way. This is needed to support syndication
of knowledge and to be in compliance with the coming URLsHaveMeaning
pattern where tacking a sensible sequence of extensions onto the
end of a Nooron URL will 'do the right thing'. For example
/know/somekb.xtm will return a topicmap version of
the knowledge-base and /know/somekb.dot.jpg
will return a GraphViz dotfile graph of somekb which has been
rendered as a JPEG. Likewise, frames will be subject to this
kind of treatment too,
so /know/somekb/someframe-article.dbk.rtf.gz will return
a docbook 'article' rendering of someframe converted to rtf and then
gzipped.
$Id: faqs_as_html,v 1.2 2002/11/22 21:37:03 smurp Exp $
|