Author: randy
Date: 2005-09-04 06:54:14 -0600 (Sun, 04 Sep 2005)
New Revision: 5011

Added:
   trunk/patches/tidy-050826-prevent_PRE_newlines-1.patch
Removed:
   trunk/patches/tidy-050803-prevent_PRE_newlines-1.patch
Modified:
   trunk/BOOK/general.ent
Log:
Updated HTML Tidy patch name in repository

Modified: trunk/BOOK/general.ent
===================================================================
--- trunk/BOOK/general.ent      2005-09-03 21:21:31 UTC (rev 5010)
+++ trunk/BOOK/general.ent      2005-09-04 12:54:14 UTC (rev 5011)
@@ -1,8 +1,8 @@
-<!ENTITY day          "03">
+<!ENTITY day          "04">
 <!ENTITY month        "09">
 <!ENTITY year         "2005">
 <!ENTITY version      "svn-&year;&month;&day;">
-<!ENTITY releasedate  "September &day;rd, &year;">
+<!ENTITY releasedate  "September &day;th, &year;">
 <!ENTITY pubdate      "&year;-&month;-&day;"> <!-- metadata req. by TLDP -->
 <!ENTITY blfs-version "svn">                  <!-- svn|[release #] -->
 <!ENTITY lfs-version  "development">          <!-- 
version|stable|testing|unstable|development] -->

Deleted: trunk/patches/tidy-050803-prevent_PRE_newlines-1.patch
===================================================================
--- trunk/patches/tidy-050803-prevent_PRE_newlines-1.patch      2005-09-03 
21:21:31 UTC (rev 5010)
+++ trunk/patches/tidy-050803-prevent_PRE_newlines-1.patch      2005-09-04 
12:54:14 UTC (rev 5011)
@@ -1,31 +0,0 @@
-Submitted By:            BLFS Book <[email protected]>
-Date:                    2005-03-07
-Initial Package Version: 040914
-Upstream Status:         Unknown
-Origin:                  Nico R. submitted to lfs.dev mailing list
-Description:             Fixes an issue where an extra line feed is 
incorrectly 
-                         inserted when using the <pre></pre> tags
-
-$LastChangedBy$
-$Date$
-
-diff -Naur tidy-20040914T211547+0000.orig/src/pprint.c 
tidy-20040914T211547+0000/src/pprint.c
---- tidy-20040914T211547+0000.orig/src/pprint.c        2004-09-14 
21:13:08.000000000 +0000
-+++ tidy-20040914T211547+0000/src/pprint.c     2004-09-14 22:08:08.000000000 
+0000
-@@ -1976,14 +1976,14 @@
-             PPrintTag( doc, mode, indent, node );
- 
-             indent = 0;
--            PFlushLine( doc, indent );
-+            if ( !nodeIsPRE(node) ) PFlushLine( doc, indent );
- 
-             for ( content = node->content; content; content = content->next )
-             {
-                 PPrintTree( doc, (mode | PREFORMATTED | NOWRAP),
-                             indent, content );
-             }
--            PCondFlushLine( doc, indent );
-+            if ( !nodeIsPRE(node) ) PCondFlushLine( doc, indent );
-             indent = indprev;
-             PPrintEndTag( doc, mode, indent, node );
- 

Copied: trunk/patches/tidy-050826-prevent_PRE_newlines-1.patch (from rev 5010, 
trunk/patches/tidy-050803-prevent_PRE_newlines-1.patch)

-- 
http://linuxfromscratch.org/mailman/listinfo/blfs-book
FAQ: http://www.linuxfromscratch.org/blfs/faq.html
Unsubscribe: See the above information page

Reply via email to