[hmath-commits] org.hmath.server/WEB-INF/src mckoidb.conf,NONE,1.1 apidocs.txt,NONE,1.1 Changes.txt,
Status: Pre-Alpha
Brought to you by:
jsurfer
|
From: <js...@us...> - 2004-03-09 20:38:24
|
Update of /cvsroot/hmath/org.hmath.server/WEB-INF/src In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv21210/WEB-INF/src Added Files: mckoidb.conf apidocs.txt Changes.txt robotdetect.txt bookservices.txt intermap.txt weblogsping.txt robots.txt Todo.txt copyright.txt asinservices.txt Log Message: initial version --- NEW FILE: mckoidb.conf --- ####################################################### # # Configuration options for the Mckoi SQL Database. # # This is a configuration for the simple database # demonstrations. # # # NOTE: Lines starting with '#' are comments. # ####################################################### # # database_path - The path where the database data files # are located. # See the 'root_path' configuration property for the # details of how the engine resolves this to an # absolute path in your file system. database_path=./mckoidb/data # # log_path - The path the log files are written. # See the 'root_path' configuration property for the # details of how the engine resolves this to an # absolute path in your file system. # The log path must point to a writable directory. If # no log files are to be kept, then comment out (or # remove) the 'log_path' variable. log_path=./mckoidb/log # # root_path - If this is set to 'jvm' then the root # path of all database files is the root path of the # JVM (Java virtual machine) running the database # engine. If this property is set to 'configuration' # or if it is not present then the root path is the # path of this configuration file. # This property is useful if you are deploying a # database and need this configuration file to be the # root of the directory tree of the database files. root_path=configuration #root_path=jvm # # jdbc_server_port - The TCP/IP port on this host where # the database server is mounted. The default port # of the Mckoi SQL Database server is '9157' jdbc_server_port=9157 # # ignore_case_for_identifiers - If enabled all # identifiers are compared case insensitive. If # disabled (the default) the case of the identifier # is important. # For example, if a table called 'MyTable' contains # a column called 'my_column' and this property is # enabled, the identifier 'MYTAble.MY_COlumN' will # correctly reference the column of the table. If # this property is disable a not found error is # generated. # This property is intended for compatibility with # other database managements systems where the case # of identifiers is not important. ignore_case_for_identifiers=disabled # # socket_polling_frequency - Mckoi SQL maintains a pool # of connections on the server to manage dispatching # of commands to worker threads. All connections on # the jdbc port are polled frequently, and ping # requests are sent to determine if the TCP # connection has closed or not. This value determines # how frequently the connections are polled via the # 'available' method. # The value is the number of milliseconds between each # poll of the 'available' method of the connections # input socket stream. Different Java implementations # will undoubtedly require this value to be tweaked. # A value of '3' works great on the Sun NT Java 1.2.2 # and 1.3 Java runtimes. # # NOTE: This 'socket polling' module is a horrible hack # and will be removed at some point when the threading # performance improves or there is an API for non- # blocking IO. I'll probably write an alternative # version for use with the improved Java version. socket_polling_frequency=3 # ----- PLUG-INS ----- # # database_services - The services (as a Java class) that # are registered at database boot time. Each service # class is separated by a semi-colon (;) character. # A database service must extend # com.mckoi.database.ServerService # #database_services=mypackage.MyService # # function_factories - Registers one or more FunctionFactory # classes with the database at boot time. A # FunctionFactory allows user-defined functions to be # incorporated into the SQL language. Each factory class # is separated by a semi-colon (;) character. # #function_factories=mypackage.MyFunctionFactory # # The Java regular expression library to use. Currently # the engine supports the Apache Jakarta regular expression # library, and the GNU LGPL regular expression library. # These two regular expression libraries can be found at the # following web sites: # # GNU Regexp: http://www.cacas.org/~wes/java/ # Apache Regexp: http://jakarta.apache.org/regexp/ # # The libraries provide similar functionality, however they # are released under a different license. The GNU library # is released under the LGPL and is compatible with GPL # distributions of the database. The Apache Jakarta library # is released under the Apache Software License and must not # be linked into GPL distributions. # # Use 'regex_library=gnu.regexp' to use the GNU library, or # 'regex_library=org.apache.regexp' to use the Apache # library. # # NOTE: To use either library, you must include the # respective .jar package in the Java classpath. regex_library=gnu.regexp # ----- PERFORMANCE ----- # # data_cache_size - The maximum amount of memory (in bytes) # to allow the memory cache to grow to. If this is set # to a value < 4096 then the internal cache is disabled. # It is recommended that a database server should provide # a cache of 4 Megabytes (4194304). A stand alone # database need not have such a large cache. data_cache_size=0 # # max_cache_entry_size - The maximum size of an element # in the data cache. This is available for tuning # reasons and the value here is dependant on the type # of data being stored. If your data has more larger # fields that would benefit from being stored in the # cache then increase this value from its default of # 8192 (8k). max_cache_entry_size=8192 # # lookup_comparison_list - When this is set to 'enabled' # the database attempts to optimize sorting by generating # an internal lookup table that enables the database to # quickly calculate the order of a column without having # to look at the data directly. The column lookup # tables are only generated under certain query # conditions. Set this to 'disabled' if the memory # resources are slim. lookup_comparison_list=disabled # # lookup_comparison_cache_size - The maximum amount of # memory (in bytes) to allow for column lookup tables. # If the maximum amount of memory is reached, the lookup # table is either cached to disk so that is may be # reloaded later if necessary, or removed from memory # entirely. The decision is based on how long ago the # table was last used. # # This property only makes sense if the # 'lookup_comparison_list' property is enabled. # # NOTE: This property does nothing yet... lookup_comparison_cache_size=0 # # index_cache_size - The maximum amount of memory (in # bytes) to allow for the storage of column indices. # If the number of column indices in memory reaches # this memory threshold then the index blocks are # cached to disk. # # ISSUE: This is really an implementation of internal # memory page caching but in Java. Is it necessary? # Why not let the OS handle it with its page file? # # NOTE: This property does nothing yet... index_cache_size=0 # # max_worker_threads - The maximum number of worker # threads that can be spawned to handle incoming # requests. The higher this number, the more # 'multi-threaded' the database becomes. The # default setting is '4'. maximum_worker_threads=2 # # soft_index_storage - If this is set to 'enabled', the # database engine will keep all column indices behind a # soft reference. This enables the JVM garbage collector # to reclaim memory used by the indexing system if the # memory is needed. # # This is useful for an embedded database where requests # are rare. When the database part is idle, the index # memory (that can take up significant space for large # tables) is reclaimed for other uses. For a dedicated # database server it is recommended this is disabled. # # Enable this if you need the engine to use less memory. # I would recommend the config property # 'lookup_comparison_list' is disabled if this is enabled. # The default setting is 'disabled'. soft_index_storage=disabled # # dont_synch_filesystem - If this is enabled, the engine # will not synchronize the file handle when a table change # is committed. This will mean the data is not as # safe but the 'commit' command will work faster. If this # is enabled, there is a chance that committed changes will # not get a chance to flush to the file system if the # system crashes. # # It is recommended this property is left commented out. # #dont_synch_filesystem=enabled # # transaction_error_on_dirty_select - If this is disabled # the 4th conflict (dirty read on modified table) will # not be detected. This has transactional consequences # that will cause data modifications to sometimes be # out of syncronization. For example, one transaction # adds an entry, and another concurrent transaction # deletes all entries. If this is disabled this # conflict will not be detected. The table will end up # with the one entry added after commit. # # It is recommended this property is left commented out. # #transaction_error_on_dirty_select=disabled # ----- SPECIAL ----- # # read_only - If this is set to 'enabled' then the database # is readable and not writable. You may boot a database # in read only mode from multiple VM's. If the database # data files are stored on a read only medium such as a # CD, then the property must be enabled else it will not # be possible to boot the database. # ( Uncomment the line below for read only mode ) #read_only=enabled # ----- DEBUGGING ----- # # debug_log_file - The file that is used to log all debug # information. This file is stored in the 'log_path' # path. debug_log_file=debug.log # # debug_level - The minimum debug level of messages that # are written to the log file. Reducing this number # will cause more debug information to be written to # the log. # 10 = INFORMATION # 20 = WARNINGS # 30 = ALERTS # 40 = ERRORS debug_level=20 # # table_lock_check - If this is enabled, every time a # table is accessed a check is performed to ensure that # the table owns the correct locks. If a lock assertion # fails then an error is generated in the log file. # This should not be enabled in a production system # because the lock assertion check is expensive. However # it should be used during testing because it helps to # ensure locks are being made correctly. table_lock_check=disabled --- NEW FILE: apidocs.txt --- # API docs specification for the {api} macro. Put in your changes here. # # Examples are below. These values are in the radeox implementation by default. # J2EE http://java.sun.com/j2ee/sdk_1.3/techdocs/api/ Java # Ruby http://www.rubycentral.com/book/ref_c_ Ruby --- NEW FILE: Changes.txt --- 0.5 - Fixed bug: Backlinks and SnipLinks are escaped now - Fixed bug: RSS feed escapes XML characters now - Fixed bug: special characters in snip names and links are now detected - Added feature: ThemeImageServlet for theme style images - Added feature: FileSnipStorage und FileUserStorage to store users and snips in files (properties or XML) - Refactored Import/Export - Changed Installation and Setup - Added feature: Version history of snips - Added feature: Each post can be a single snip (with comments etc.) - Developer: Upgrade to Radeox 0.9 - Developer: Moved aspects into container - Developer: Moved the rest of the XML-RPC handlers into container - Developer: Upgrade to PicoContainer 1.0-BETA-3 - Improvement: Added edit button to weblog snips - Fixed bug: SnipSnap XML-RPC handlers are now authentication protected - Added feature: Multiple weblogs - Fixed bug: Reimplemented Weblog - Added feature: new Snip button for Snip creation - Fixed bug: removed hard coded references to 'start' with getStartSnip - Added feature: space encoding (+) is now configurable - Added feature: File system storage for Snips - Added feature: Stylesheets are now contained within the SnipSpace - Developer: Macro, Servlet and ContentRenderer for rendering inline content (PNG, ...) - Added feature: Rendering MindMaps and Organigrams - Improvement: New Installer (first time run installs a basic SnipSnap applicaton) - Fixed bug: cyclic dependency temp. fixed for component loading - Added feature: Snips can be displayed as RDF - Developer: Added interfaces for XML-RPC webservices (MetaWeblog, ...) and stuffed this in Pico - Developer: Moved more stuff to Pico - Added feature: Support for NameFormatters to change the look of snip names (like capitalize etc.) - Added feature: RenderEngineLabel allows to set a different engine for a snip - Fixed bug: display login warning instead of edit field when snip auto-create is on - Fixed bug: attachment download working with deep namespace now - Added feature: RenderEngineLabel to change rendering of content - Added feature: /robots.txt editable via Snip - Added feature: moved configuration settings into SnipSpace - Added feature: Installer for WAR (w/ Localization) - Developer: Added support for PicoContainer - Added feature: moved some messages to messages_en.properties for language packs - Added feature: target=... in image macro {image} - Added feature: parameter for Mail-To-Blog POP3 polling (app.mail.pop3.interval in minutes) - Added feature: instead of snip-notfound SnipSnap can now display a create page (see app.perm.createSnips) - Added feature: some basic labels - Added feature: path is show for snips with namespaces, e.g. SnipSnap > developer > stephan - Added feature: blog posts are now namespaces e.g. start/2003-06-02 - Added feature: made snip names slash '/' insensitive - Fixed bug: links and images no longer contain complete URLs - Fixed bug: Reworked URL detection - Developer: completely reorganized Configuration (macros need recompile!) - Developer: separated Server and AppConfiguration - Developer: JSP precompilation switch (build.properties) - Added feature: Label support (Carsten Pfeiffer, Marco Mosconi) - Added feature: Support for nested lists (Davar) - Fixed bug: commenting order beyond 10 was wrong - Added feature: name parameter to notfound snip. You can add [{$name}] to the snip to add [create name] on the page - Fixed bug: strike through with dashes, --Test-Text-- did not render - Developer: Refactored blog functionality to class Blog - Developer: Refactored missing to MissingInterceptor in SnipSpace - Developer: Added first Interceptor unit test - Fixed bug: /raw/ had problems with UTF-8 characters - Added feature: Aliases for links [alias|link] - Added feature: app.perm.register=deny prevents registering 0.4.2 - 2003-03-18 - Fixed bug: fixed a major security bug - Fixed bug: fixed shutdown behaviour to cleanly close database 0.4.1 - 2003-03-24 - Fixed bug: fixed performance bug for MacroFilter - startup message requiring JAVA_HOME removed (unnecessary) - removed -server command line option from startup scripts 0.4 - 2003-03-18 - Fixed bug: Added more methods to XML-RPC Blogger API - Added feature: XML-RPC MetaWeblog API support - Fixed bug: Some links did not detect that the snips was created (when someone changed upper/lowercase) - fixed css bugs - Removed URL detection that brakes absolute URLs behind a proxy - File Upload changed to store files relative to snips - Fixed bug: zero bytes when decoding %xx encoded urls - Fixed bug: URLs in [...] made the LinkFilter not process any [...] - Fixed bug: Sometimes comments were in wrong order - Fixed bug: Some urls (search) missed a '/' - Fixed bug: Under some circumstances SnipSnap escaped HTML - Added feature: Added {online-time} which displays a string since when the weblog was created - Added feature: Permalink for comments - Added feature: Snips from persons now have a icon in the listing - Added feature: {snip-count-by-user:stephan} macro - Fixed bug: create link did not follow [create name] format - Fixed bug: Correct date format in Dublin core dc:date - Security: Fixed posting and editing by unauthorized users - Introduced a Launcher to start SnipSnap directly from JAR - Changed Attachments file store concept (WEB-INF/files/SnipName/file.ext) 0.3.4 - 2003-02-21 - Added feature: use Java2Html instead of regex [by Zohar], currently additional as "njava" - Fixed bug: implemented getPost in BloggerAPI - Security: Added warning when weblogs ping is on - Fixed bug: SnipSnap install has now a SnipSnap snip - Fixed bug: relative Images and Links in RSS feeds - Added feature: RSS posts are now determined by headers (post titles) not by day - Fixed bug: HTML encoding and & encoding in RSS feeds - Added feature: {table} understands SUM, AVG, MAX, MIN, e.g. =SUM(A1:A3) - Fixed bug: Mail-To-Weblog didn't work because user "stephan" was used, now admin is used - Added feature: Configurable weblogs ping. Configuration is read from conf/weblogsping.txt - Fixed bug: better logging - Fixed bug: implemented getUserBlogs, getRecentPosts [by Calvin Yu] in BloggerAPI - Added Feature: Attachments for snips - WAR: introduced configuration properties for indexer and config files - Developer: Refactored the rendering engine to form sub-project Radeox - Developer: Added Service class for plugin loading (instead of undocumented sun class) - Removed Transliterate in favour of UTF-8 - Developer: Added getParamDescription() to MacroParameter - Fixed bug: RSS would display to many items - Added feature: SnipSnap has XML-RPC interface with method "generator.version()" to get SnipSnap version - Added feature: SnipSnap displays version in HTML with META generator tag - Added feature: SnipSnap displays version information about itself with .../rest/version - Fixed bug: external images didn't display 0.3.3 - 2003-01-22 - Fixed bug: web GUI import, multi-value html form parameter recognised for multipart/form-data - Fixed bug: RSS feed truncated entities, e.g. &x32... - Added feature: RFC macro {rfc:123} or {rfc:123|Great RFC} links to RFCs - Fixed bug: RSS was accidently refactored and didn't work - Added feature: "Recently changed" links comments to threads, not to individual posts - Fixed bug: always find Java under MacOS X (no need for JAVA_HOME setting) - Added feature: Increase and decrease the shown month in the calendar view - Added feature: Calendar now displays correct day names with the correct locale 0.3.2 - 2003-01-10 - Added feature: geoURL support, add app.geoCoordinates=x.x, y.y - Fixed bug: Weblog dates use app.locale (e.g. app.locale=de, default is "en") - Fixed bug: XML feeds (RSD, RSS) should no be legal UTF-8 - Developer: Refactored Snip to use interface and introduced interceptors (AOP) - Fixed bug: RSD <api> was not closed - Added feature: /raw/<snip-name> displays the raw content of a snip - Added feature: uploading of images for a snip - Added UNICODE (UTF-8 by default) support - Added feature: importing snips from web frontend - Fixed bug: referer corrected after multiple login tries - Added feature: upgraded to RSD 1.0 - Added feature: link into a snip with [sniname#anchor]. Useful for pointing to sub postings - Fixed bug: double encrypten when importing dump from 0.3a - Added feature: support for SVG files - Added feature: password reset by mailing a key - Added feature: file-path macro displays a filepath - Fixed bug: RSD <settings> was at the wrong place - Fixed bug: detection of encrypted passwords on import 0.3.1 - 2002-12-11 - Fixed bug: run.bat classpath corrected - Fixed bug: urls were double decoded (now only '+' is decoded by servlet) - Fixed bug: some regexp consumed leading/following characters - Added feature: Plugin architecture for source code formatters - Added feature: Title for sub blogpost, added permalink to each sub blogpost - Added feature: anchor Macro - Fixed bug: Preview in comments - Added feature: Preview in post blog - Fixed some smaler bugs - Refactored heavily the backend to use in-memory queries instead of SQL queries. This should allow us to move to Prevalyer easier 0.3 - 2002-11-21 - Added feature: Sky and Oranges themes - Changed to newer versions of McKoi and ORO Regex - Added feature: NullCodeFilter, {code:none} will now display the content without colorization, useful for e.g. pre formatted texts like shell examples - We use RSS/XHTML/CSS buttons from http://www.antipixel.com and icons from chris http:/www.langreiter.com , thanks. - Added feature: UserCountMacro displays number of registered users - Added feature: SnipCountMacro displays number of snips (all) - Added feature: TypographyFilter will replace "..." with ellepsis entity - Required JAR libararies are now included in snipsnap-template.war - Added feature: {api} now reads from conf/apidocs.txt so {api} can point to other online api documentation - re-validated XHTML 1.0 - Fixed bug: correct context path in cookies - Added feature: {backlinks} macro lists backlinks, e.g. {backlinks:10} - Added feature: {sniplinks} macro lists sniplinks, e.g. {sniplinks:4} - Fixed bug: escape '-' and '*' within code macro - Fixed bug: first start on a different port than 8668 - Added feature: Introduced themes for SnipSnap, using a more Weblog like theme similiar to MovableType - Added feature: Interwiki (e.g. [Wiki@MoinMoin]) reads from a standard intermap file in conf/intermap.txt - Added Feature: {isbn} macro now reads books services from conf/bookservices.txt - Changed logo/validation images - Introduced snipsnap-copyright snip for page bottom - Changed semantics of {image} macro, expect images as image-name-id - Added feature: import/export from web interface - Fixed bug: list detection - Changed macro interface: User Writer instead of StringBuffer and Refactoring "Introduce Parameter Object" - Added Feature: {image} tag allows positioned and floating images - Added snipsnap-help to default snips (contains text formatting) - Introduced: {list-of-macros} - Replaced {snips-by-recent} by {recent-changes} macro - Defaults snips are now loaded from conf/snipsnap.snip - Added feature: bullet, square, numerated (numbers, alpha, greek, japanese) - Changed feature: Post blog prepends to the post - Fixed bug: SnipSnap now uses <dc:title> in RSS and DC.Title in HTML - Added feature: Introduced portlet snip snipsnap-portlet-<number> - Added feature: VerticalListFormatter introduced - Added feature: {logins} macro - Added feature: {calendar} macro - Changed <s:snip> JSTL tag - Switched to DIV from TABLE layout - Worked on Accessibility - Fixed a lot of smaller bugs 0.2.7 - 2002-10-10 - Fixed bug: Editing users failed when email field was empty - Fixed bug: wrong manifest for snipsnap.jar - Added feature: a installed blog pings to SnipSnap.org and is featured on SnipSnap.org - Added feature: ping blog.gs with extendedPing - Added feature: weblogs.ping is now asynchron, so posting is faster with the ping on - Fixed bug: weblogs.ping now works and is default on (can be turned of in the configuration) - Added feature: Detect search engine bots (Googlebot, Fast Webcrawler) - Switched to RSS 2.0 by default - Added feature: {version} macro displays SnipSnap version. - Added feature: Added description to RSS, remove HTML from snip content - Fixed bug: AdminServer did not receive shutdown command - Fixed bug: application dirs must not contain space (replaced by _ now) - Fixed smaller bugs 0.2.6 - 2002-10-01 - Added feature: Dublin Core support - Added feature: Broader search: searching for tree will no also find treehouse - Added feature: Snip names are case insensitive - Added feature: Jabber notification for new snips and User logins - Added feature: {since-last-visit:funzel} to show all changed snips since last visit for funzel - Added feature: --strike-- for strike through text - Added feature: {quote}this is a quote{quote} - Fixed bug: # in external links didn't work, <ul><ul> was rendered in weblogs, double images in external links in weblog - Added feature: RSS Autodiscovery, RSS - Added feature: {image:http://boing.org/boing.gif} for external images - Added feature: create snip at search, when snip does not exist - Added feature: XML-RPC Blogger API newPost() - Added feature: automatic re-login via cookie - Added feature: configurable list formatter, made {index:AtoZ} for A to Z listing 0.2.5 - 2002-09-18 - Added feature: SnipSnap is multi-server capable - SnipSnap stores information about snip views, clicked links between snips and incoming snips - storing information about users, like lastlogin and creation time. Added owner to snips to seperate creator and owner - Added some macros (like {last-login:funzel}, {snips-by-hotness}) - Preview Button - Following Jakob Nielsen, start and the logo are no longer clickable on the start page - Basic RSS support - Fixed HTML to XHTML 1.0 and CSS to validated CSS 0.1a-200207241333 - 2002-07-24 - Added feature: Fulltext search now looks in titles and text - Added feature: User management improved - Added feature: Updating procedure from admin tool - Added feature: Rights management (lock/unlock, delete snips) - Fixed several bugs unknown - 2002-07-19 - Added feature: fulltext search engine - Added feature: user management unknown - 2002-07-17 - no more JDK 1.4 - run.sh start and stop unknown - 2002-07-15 - Added feature: snipsnap-index - Fixed quite a few bugs - Added feature: {image} macro 0.1 - 2002-07-12 - Initial public alpha release --- NEW FILE: robotdetect.txt --- # This file contains User-Agent mappings for robots # # WWW Search Engines Googlebot http://www.googlebot.com/bot.html FAST-WebCrawler http://fast.no/support/crawler.asp Slurp http://www.inktomi.com/slurp.html Teoma http://www.teoma.com/ # # Syndication Crawler Syndic8 http://www.syndic8.com organica http://organica.us Popdexter http://www.popdex.com # # Robots and crawler to be ignored # ZyBorg http://www.WISEnutbot.com IGNORE larbon li...@cc... IGNORE Baiduspider http://www.baidu.com/search/spider.htm IGNORE Infoseek http://www.infoseek.com/ IGNORE TurnitinBot http://www.turnitin.com/robot/crawlerinfo.html IGNORE NIF http://www.newsisfree.com/robot.php IGNORE NPBot http://www.nameprotect.com/botinfo.html IGNORE Robot ??? IGNORE Scooter ??? IGNORE Mercator ??? IGNORE EvilBot ??? IGNORE BlogBot ??? IGNORE --- NEW FILE: bookservices.txt --- # Bookservices for the {book} macro # # Examples how to specify the URL. The ISBN is appended to the URL. # Amazon.de http://www.amazon.de/exec/obidos/ASIN/ # Preistester http://www.preistester.de/cgi-bin/pt/buchs.pl?query=profi&isbn= # Book-Butler http://book-butler.com/?evt=go&in= --- NEW FILE: intermap.txt --- AbbeNormal http://www.ourpla.net/cgi-bin/pikie.cgi? AcadWiki http://xarch.tu-graz.ac.at/autocad/wiki/ Acronym http://www.acronymfinder.com/af-query.asp?String=exact&Acronym= Advogato http://www.advogato.org/ AIWiki http://www.ifi.unizh.ch/ailab/aiwiki/aiw.cgi? ALife http://news.alife.org/wiki/index.php? AndStuff http://andstuff.org/wiki.php? Annotation http://bayle.stanford.edu/crit/nph-med.cgi/ AnnotationWiki http://www.seedwiki.com/page.cfm?wikiid=368&doc= AwarenessWiki http://taoriver.net/aware/ BenefitsWiki http://www.benefitslink.com/cgi-bin/wiki.cgi? BridgesWiki http://c2.com/w2/bridges/ C2find http://c2.com/cgi/wiki?FindPage&value= Cache http://www.google.com/search?q=cache: CLiki http://ww.telent.net/cliki/ CmWiki http://www.ourpla.net/cgi-bin/wiki.pl? CreationMatters http://www.ourpla.net/cgi-bin/wiki.pl? DejaNews http://www.deja.com/=dnc/getdoc.xp?AN= DeWikiPedia http://www.wikipedia.de/wiki.cgi? Dictionary http://www.dict.org/bin/Dict?Database=*&Form=Dict1&Strategy=*&Query= DiveIntoOsx http://diveintoosx.org/ DocBook http://docbook.org/wiki/moin.cgi/ DolphinWiki http://www.object-arts.com/wiki/html/Dolphin/ EfnetCeeWiki http://purl.net/wiki/c/ EfnetCppWiki http://purl.net/wiki/cpp/ EfnetPythonWiki http://purl.net/wiki/python/ EfnetXmlWiki http://purl.net/wiki/xml/ EljWiki http://elj.sourceforge.net/phpwiki/index.php/ EmacsWiki http://www.emacswiki.org/cgi-bin/wiki.pl? FinalEmpire http://final-empire.sourceforge.net/cgi-bin/wiki.pl? Foldoc http://www.foldoc.org/foldoc/foldoc.cgi? FoxWiki http://fox.wikis.com/wc.dll?Wiki~ FreeBSDman http://www.FreeBSD.org/cgi/man.cgi?apropos=1&query= Google http://www.google.com/search?q= GoogleGroups http://groups.google.com/groups?q= GreenCheese http://www.greencheese.org/ HammondWiki http://www.dairiki.org/HammondWiki/index.php3? Haribeau http://wiki.haribeau.de/cgi-bin/wiki.pl? IAWiki http://www.IAwiki.net/ IMDB http://us.imdb.com/Title? JargonFile http://sunir.org/apps/meta.pl?wiki=JargonFile&redirect= Javangelist http://javangelist.snipsnap.org/space/ JiniWiki http://www.cdegroot.com/cgi-bin/jini? JspWiki http://www.ecyrd.com/JSPWiki/Wiki.jsp?page= KmWiki http://www.voght.com/cgi-bin/pywiki? KnowHow http://www2.iro.umontreal.ca/~paquetse/cgi-bin/wiki.cgi? LanifexWiki http://opt.lanifex.com/cgi-bin/wiki.pl? LegoWiki http://www.object-arts.com/wiki/html/Lego-Robotics/ LinuxWiki http://www.linuxwiki.de/ LugKR http://lug-kr.sourceforge.net/cgi-bin/lugwiki.pl? MathSongsWiki http://SeedWiki.com/page.cfm?wikiid=237&doc= MbTest http://www.usemod.com/cgi-bin/mbtest.pl? MeatBall http://www.usemod.com/cgi-bin/mb.pl? MetaWiki http://sunir.org/apps/meta.pl? MetaWikiPedia http://meta.wikipedia.com/wiki/ MoinMoin http://purl.net/wiki/moin/ MuWeb http://www.dunstable.com/scripts/MuWebWeb? NetVillage http://www.netbros.com/? OpenWiki http://openwiki.com/? OrgPatterns http://www.bell-labs.com/cgi-user/OrgPatterns/OrgPatterns? PangalacticOrg http://www.pangalactic.org/Wiki/ PersonalTelco http://www.personaltelco.net/index.cgi/ PhpWiki http://phpwiki.sourceforge.net/phpwiki/index.php? Pikie http://pikie.darktech.org/cgi/pikie? PPR http://c2.com/cgi/wiki? PurlNet http://purl.oclc.org/NET/ PythonInfo http://www.python.org/cgi-bin/moinmoin/ PythonWiki http://www.pythonwiki.de/ PyWiki http://www.voght.com/cgi-bin/pywiki? SeaPig http://www.seapig.org/ SeattleWireless http://seattlewireless.net/? SenseisLibrary http://senseis.xmp.net/? Shakti http://cgi.algonet.se/htbin/cgiwrap/pgd/ShaktiWiki/ SourceForge http://sourceforge.net/ Squeak http://minnow.cc.gatech.edu/squeak/ StrikiWiki http://ch.twi.tudelft.nl/~mostert/striki/teststriki.pl? SVGWiki http://www.protocol7.com/svg-wiki/default.asp? Tavi http://tavi.sourceforge.net/index.php? TmNet http://www.technomanifestos.net/? TMwiki http://www.EasyTopicMaps.com/?page= TWiki http://twiki.org/cgi-bin/view/ TwistedWiki http://purl.net/wiki/twisted/ Unreal http://wiki.beyondunreal.com/wiki/ UseMod http://www.usemod.com/cgi-bin/wiki.pl? VisualWorks http://wiki.cs.uiuc.edu/VisualWorks/ WebDevWikiNL http://www.promo-it.nl/WebDevWiki/index.php?page= WebSeitzWiki http://webseitz.fluxent.com/wiki/ Why http://clublet.com/c/c/why? Wiki http://c2.com/cgi/wiki? WikiPedia http://www.wikipedia.com/wiki/ WikiWorld http://WikiWorld.com/wiki/index.php/ YpsiEyeball http://sknkwrks.dyndns.org:1957/writewiki/wiki.pl? ZWiki http://www.zwiki.org/ --- NEW FILE: weblogsping.txt --- #default ping list org.snipsnap.xmlrpc.ping.SimplePingHandler http://rpc.weblogs.com/RPC2 org.snipsnap.xmlrpc.ping.SimplePingHandler http://www.snipsnap.org/RPC2 org.snipsnap.xmlrpc.ping.RssPingHandler http://rssrpc.weblogs.com/RPC2 org.snipsnap.xmlrpc.ping.ExtendedPingHandler http://ping.blo.gs/ --- NEW FILE: robots.txt --- # # ROBOTS.TXT -- this file is sent to robots accessing the URL /robots.txt # # *** This only works if SnipSnap is running at the top level of the server *** # Keep in mind that robots added to the robot detection with the keyword DENY # will be appended to this file and disallowed all access to SnipSnap! # # Disallow all access to the configuration part User-agent: * Disallow: /space/SnipSnap/ --- NEW FILE: Todo.txt --- @TODO: Add Timezone, e.g. +1.00 to Appconfiguration. Needed e.g. for RSS, DublinCore. @TODO: Snip with list version of all external libs, like Lucene, ORO, xml parser, ... @TODO: markup/highlighting for snipsnap macros --- NEW FILE: copyright.txt --- Copyright (c) 2000-2004 Fraunhofer Gesellschaft Fraunhofer Institute for Computer Architecture and Software Technology All Rights Reserved. See License Agreement for terms and conditions of use. Responsible Authors: Stephan J. Schmidt, Matthias L. Jugel. --- NEW FILE: asinservices.txt --- # ASIN Services specifies URLs for the {asin} macro that allows to create # links to CDROM/DVD media. # # Example, the ASIN is appended to the URL # Amazon.de http://www.amazon.de/exec/obidos/ASIN/ |