Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 6 Dec 2019 14:10:29 +0000 (UTC)
From:      "Vanilla I. Shu" <vanilla@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r519145 - in head/www/edbrowse: . files
Message-ID:  <201912061410.xB6EATRh053099@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: vanilla
Date: Fri Dec  6 14:10:28 2019
New Revision: 519145
URL: https://svnweb.freebsd.org/changeset/ports/519145

Log:
  Fix crash issue, and bump version.
  
  PR:		242471
  Submitted by:	maintainer

Added:
  head/www/edbrowse/files/patch-src_html-tidy.c   (contents, props changed)
Modified:
  head/www/edbrowse/Makefile

Modified: head/www/edbrowse/Makefile
==============================================================================
--- head/www/edbrowse/Makefile	Fri Dec  6 14:02:34 2019	(r519144)
+++ head/www/edbrowse/Makefile	Fri Dec  6 14:10:28 2019	(r519145)
@@ -3,7 +3,7 @@
 PORTNAME=	edbrowse
 DISTVERSIONPREFIX=	v
 DISTVERSION=	3.7.6
-PORTREVISION=	1
+PORTREVISION=	2
 CATEGORIES=	www editors
 
 MAINTAINER=	alfix86@gmail.com

Added: head/www/edbrowse/files/patch-src_html-tidy.c
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/www/edbrowse/files/patch-src_html-tidy.c	Fri Dec  6 14:10:28 2019	(r519145)
@@ -0,0 +1,11 @@
+--- src/html-tidy.c.orig	2019-12-06 06:26:39 UTC
++++ src/html-tidy.c
+@@ -126,7 +126,7 @@ void html2nodes(const char *htmltext, bool startpage)
+ 	tidyOptSetBool(tdoc, TidyDropEmptyElems, no);
+ 	tidyOptSetBool(tdoc, TidyDropEmptyParas, no);
+ 	tidyOptSetBool(tdoc, TidyLiteralAttribs, yes);
+-	tidyOptSetBool(tdoc, TidyStyleTags, no);
++	//tidyOptSetBool(tdoc, TidyStyleTags, no);
+ 
+ 	tidySetCharEncoding(tdoc, (cons_utf8 ? "utf8" : "latin1"));
+ 



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201912061410.xB6EATRh053099>