[Moin-devel] CVS: MoinMoin/formatter base.py,1.17,1.18 text_html.py,1.33,1.34 text_plain.py,1.13,1.14 text_xml.py,1.21,1.22

J?rgen Hermann jhermann at users.sourceforge.net
Thu Jan 24 15:11:13 EST 2002


Update of /cvsroot/moin/MoinMoin/formatter
In directory usw-pr-cvs1:/tmp/cvs-serv30251/MoinMoin/formatter

Modified Files:
	base.py text_html.py text_plain.py text_xml.py 
Log Message:
FootNote macro


Index: base.py
===================================================================
RCS file: /cvsroot/moin/MoinMoin/formatter/base.py,v
retrieving revision 1.17
retrieving revision 1.18
diff -C2 -r1.17 -r1.18
*** base.py	2002/01/24 22:14:55	1.17
--- base.py	2002/01/24 23:10:47	1.18
***************
*** 24,27 ****
--- 24,29 ----
      """
  
+     hardspace = ' '
+ 
      def __init__(self, **kw):
          self._store_pagelinks = kw.get('store_pagelinks', 0)

Index: text_html.py
===================================================================
RCS file: /cvsroot/moin/MoinMoin/formatter/text_html.py,v
retrieving revision 1.33
retrieving revision 1.34
diff -C2 -r1.33 -r1.34
*** text_html.py	2002/01/24 22:14:55	1.33
--- text_html.py	2002/01/24 23:10:47	1.34
***************
*** 26,29 ****
--- 26,31 ----
      """
  
+     hardspace = ' '
+ 
      _allowed_table_attrs = {
          'table': ['border', 'cellspacing', 'cellpadding', 'width', 'bgcolor', ],

Index: text_plain.py
===================================================================
RCS file: /cvsroot/moin/MoinMoin/formatter/text_plain.py,v
retrieving revision 1.13
retrieving revision 1.14
diff -C2 -r1.13 -r1.14
*** text_plain.py	2002/01/24 22:14:55	1.13
--- text_plain.py	2002/01/24 23:10:47	1.14
***************
*** 22,25 ****
--- 22,27 ----
      """
  
+     hardspace = ' '
+ 
      def __init__(self, **kw):
          apply(FormatterBase.__init__, (self,), kw)

Index: text_xml.py
===================================================================
RCS file: /cvsroot/moin/MoinMoin/formatter/text_xml.py,v
retrieving revision 1.21
retrieving revision 1.22
diff -C2 -r1.21 -r1.22
*** text_xml.py	2002/01/24 22:14:55	1.21
--- text_xml.py	2002/01/24 23:10:47	1.22
***************
*** 29,32 ****
--- 29,34 ----
      """
  
+     hardspace = ' '
+ 
      def __init__(self, **kw):
          apply(FormatterBase.__init__, (self,), kw)





More information about the Moin-devel mailing list