From 1f9846f157bf4c17419f316783f3b30fa3405f9a Mon Sep 17 00:00:00 2001 From: stefanp Date: Mon, 2 Dec 2002 12:23:19 +0000 Subject: [PATCH] two formatting fixes --- DocPrototype/list.skin | 2 +- DocPrototype/macros.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/DocPrototype/list.skin b/DocPrototype/list.skin index afb66787..b9a23cc5 100644 --- a/DocPrototype/list.skin +++ b/DocPrototype/list.skin @@ -1,4 +1,4 @@ -

Prototype " target="main"><% this.name %>

+Prototype " target="main"><% this.name %>
<% this.inheritance action="list" %> <% this.inheritance deep="true" hopobject="true" action="main" target="main" onClick="parent.changePrototypeList(this);" separator=", " prefix="extends: " suffix="
" %>
diff --git a/DocPrototype/macros.js b/DocPrototype/macros.js index f47045bc..53472148 100644 --- a/DocPrototype/macros.js +++ b/DocPrototype/macros.js @@ -123,7 +123,7 @@ function typeProperties_macro (param) { // look up in mappings table if line matches: for (var e = mappings.keys (); e.hasMoreElements (); ) { var key = e.nextElement (); - var reg = new RegExp ('^' + key + '\\W'); + var reg = new RegExp ('^' + key + '\\s'); if (arr[i].match (reg)) { // it matched, wrap line in a link to that prototype: var docProtoObj = this.getApplication ().getPrototype (mappings.getProperty (key));