mhonarc-commits
[Top] [All Lists]

CVS: mhonarc/MHonArc/doc Makefile,1.11,1.12 app-rcidx.html,1.17,1.18 rcvars...

2002-07-26 22:13:57
Update of /cvsroot/mhonarc/mhonarc/MHonArc/doc
In directory subversions:/tmp/cvs-serv18499/doc

Modified Files:
	Makefile app-rcidx.html rcvars.html resources.html 
Log Message:
* Added TEXTCLIPFUNC resource: Defines the text clipping function
  that should be used by MHonArc.  This function is mainly used
  in resource variable expansion where clipping has been specified,
  for example, "$SUBJECT:72$".

* Added clip() function in MHonArc::UTF8 that can be registed via
  TEXTCLIPFUNC resource to handling clipping of UTF-8 text.

* Example utf-8.mrc updated to include some corrections and to
  define TEXTCLIPFUNC resource.

* Improved navigation links to resource reference pages which should
  help their usability.


Index: Makefile
===================================================================
RCS file: /cvsroot/mhonarc/mhonarc/MHonArc/doc/Makefile,v
retrieving revision 1.11
retrieving revision 1.12
diff -C2 -r1.11 -r1.12
*** Makefile	4 May 2002 04:59:14 -0000	1.11
--- Makefile	27 Jul 2002 05:13:10 -0000	1.12
***************
*** 1,5 ****
  # $Id$
  
! .PHONY: default residx toc pagetocs buttons rcfileexs utildocs vim
  
  TOP	  = ..
--- 1,5 ----
  # $Id$
  
! .PHONY: default rcpages residx toc pagetocs buttons rcfileexs utildocs vim
  
  TOP	  = ..
***************
*** 36,40 ****
  
  
! default: residx rcfileexs toc pagetocs buttons utildocs vim
  
  residx:
--- 36,43 ----
  
  
! default: rcpages residx rcfileexs toc pagetocs buttons utildocs vim
! 
! rcpages:
! 	$(MAKE) -C resources all
  
  residx:

Index: app-rcidx.html
===================================================================
RCS file: /cvsroot/mhonarc/mhonarc/MHonArc/doc/app-rcidx.html,v
retrieving revision 1.17
retrieving revision 1.18
diff -C2 -r1.17 -r1.18
*** app-rcidx.html	29 Jun 2002 00:57:07 -0000	1.17
--- app-rcidx.html	27 Jul 2002 05:13:10 -0000	1.18
***************
*** 253,256 ****
--- 253,257 ----
  <tr valign="top"><td align="right"><b><a href="resources/tcontbegin.html"><tt>&lt;TCONTBEGIN&gt;</tt></a></b></td><td>&nbsp;Markup before the continuation of a broken thread.</td></tr>
  <tr valign="top"><td align="right"><b><a href="resources/tcontend.html"><tt>&lt;TCONTEND&gt;</tt></a></b></td><td>&nbsp;Markup after the continuation of a broken thread.</td></tr>
+ <tr valign="top"><td align="right"><b><a href="resources/textclipfunc.html"><tt>&lt;TEXTCLIPFUNC&gt;</tt></a></b></td><td>&nbsp;Perl function to use for text clipping operations.</td></tr>
  <tr valign="top"><td align="right"><b><a href="resources/tfirstpglink.html"><tt>&lt;TFIRSTPGLINK&gt;</tt></a></b></td><td>&nbsp;Link markup for first page of thread index.</td></tr>
  <tr valign="top"><td align="right"><b><a href="resources/tfoot.html"><tt>&lt;TFOOT&gt;</tt></a></b></td><td>&nbsp;Footer markup for thread index page.</td></tr>

Index: rcvars.html
===================================================================
RCS file: /cvsroot/mhonarc/mhonarc/MHonArc/doc/rcvars.html,v
retrieving revision 1.19
retrieving revision 1.20
diff -C2 -r1.19 -r1.20
*** rcvars.html	7 Jun 2002 17:43:18 -0000	1.19
--- rcvars.html	27 Jul 2002 05:13:10 -0000	1.20
***************
*** 133,152 ****
  modifiers.  The definition of each modifier is as follows:
  </p>
!     <dl compact>
!     <dt><i>N</i></dt>
!     <dd>Length specification.  MHonArc will clip the expanded text
      to <i>N</i> if the text length is greater than <i>N</i>.
!     </dd>
!     <dt><tt>U</tt></dt>
!     <dd>Treat the text as part of a URL string.  MHonArc will escape
      any characters that are considered special in a URL.
!     </dd>
!     <dt><tt>J</tt></dt>
!     <dd>Treat the text as a JavaScript string.  MHonArc will escape
      any quote characters so the text can be part of a JavaScript
      string.
!     </dd>
!     </dl>
! <p></p>
  
  <dt><tt>(<i>arglist</i>)</tt> <em>(optional)</em></dt>
--- 133,172 ----
  modifiers.  The definition of each modifier is as follows:
  </p>
! <table border=0 cellpadding=4>
! <tr valign="top">
!     <td><i>N</i></td>
!     <td><p>Length specification.  MHonArc will clip the expanded text
      to <i>N</i> if the text length is greater than <i>N</i>.
!     </p>
!     <table border=0 cellpadding=4>
!     <tr valign=top>
!     <td><strong>NOTE</strong></td>
!     <td>Not all resource variables support clipping.
! 	If a length specification is given for these variables, then
! 	it will be ignored.
!     </td></tr>
!     </table>
!     <p>How MHonArc clips text is determined by the
!     <a href="resources/textclipfunc.html">TEXTCLIPFUNC</a> resource.
!     </p>
!     </td>
! </tr>
! <tr valign="top">
!     <td><tt>U</tt></td>
!     <td><p>Treat the text as part of a URL string.  MHonArc will escape
      any characters that are considered special in a URL.
!     </p>
!     </td>
! </tr>
! <tr valign="top">
!     <td><tt>J</tt></td>
!     <td><p>Treat the text as a JavaScript string.  MHonArc will escape
      any quote characters so the text can be part of a JavaScript
      string.
!     </p>
!     </td>
! </tr>
! </table>
! </dd>
  
  <dt><tt>(<i>arglist</i>)</tt> <em>(optional)</em></dt>

Index: resources.html
===================================================================
RCS file: /cvsroot/mhonarc/mhonarc/MHonArc/doc/resources.html,v
retrieving revision 1.21
retrieving revision 1.22
diff -C2 -r1.21 -r1.22
*** resources.html	29 Jun 2002 00:57:07 -0000	1.21
--- resources.html	27 Jul 2002 05:13:10 -0000	1.22
***************
*** 300,303 ****
--- 300,304 ----
  <tr valign="top"><td align="right"><b><a name="tcontbegin" href="resources/tcontbegin.html">TCONTBEGIN</a></b></td><td>&nbsp;Markup before the continuation of a broken thread.</td></tr>
  <tr valign="top"><td align="right"><b><a name="tcontend" href="resources/tcontend.html">TCONTEND</a></b></td><td>&nbsp;Markup after the continuation of a broken thread.</td></tr>
+ <tr valign="top"><td align="right"><b><a name="textclipfunc" href="resources/textclipfunc.html">TEXTCLIPFUNC</a></b></td><td>&nbsp;Perl function to use for text clipping operations.</td></tr>
  <tr valign="top"><td align="right"><b><a name="tfirstpglink" href="resources/tfirstpglink.html">TFIRSTPGLINK</a></b></td><td>&nbsp;Link markup for first page of thread index.</td></tr>
  <tr valign="top"><td align="right"><b><a name="tfoot" href="resources/tfoot.html">TFOOT</a></b></td><td>&nbsp;Footer markup for thread index page.</td></tr>

---------------------------------------------------------------------
To sign-off this list, send email to majordomo(_at_)mhonarc(_dot_)org with the
message text UNSUBSCRIBE MHONARC-DEV