Index: head/editors/xmlcopyeditor/Makefile =================================================================== --- head/editors/xmlcopyeditor/Makefile (revision 391844) +++ head/editors/xmlcopyeditor/Makefile (revision 391845) @@ -1,36 +1,34 @@ # Created by: José García Juanino # $FreeBSD$ PORTNAME= xmlcopyeditor -PORTVERSION= 1.2.0.11 -PORTREVISION= 4 +PORTVERSION= 1.2.1.3 CATEGORIES= editors MASTER_SITES= SF/xml-copy-editor/${PORTNAME}-linux/${PORTVERSION} MAINTAINER= jjuanino@gmail.com COMMENT= Fast validating XML editor LICENSE= GPLv2 -USE_WX= 2.8+ -WX_COMPS= wx contrib -WX_CONF_ARGS= absolute -WX_UNICODE= yes -USES= gettext iconv dos2unix libtool -GNU_CONFIGURE= yes - -BUILD_DEPENDS+= ${LOCALBASE}/include/boost/shared_ptr.hpp:${PORTSDIR}/devel/boost-libs +BUILD_DEPENDS= ${LOCALBASE}/include/boost/shared_ptr.hpp:${PORTSDIR}/devel/boost-libs LIB_DEPENDS= libxerces-c.so.3:${PORTSDIR}/textproc/xerces-c3 \ libxslt.so:${PORTSDIR}/textproc/libxslt \ libaspell.so:${PORTSDIR}/textproc/aspell \ libpcre.so:${PORTSDIR}/devel/pcre \ libxml2.so:${PORTSDIR}/textproc/libxml2 \ libexpat.so:${PORTSDIR}/textproc/expat2 -WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION} +USE_WX= 2.8+ +WX_COMPS= wx contrib +WX_CONF_ARGS= absolute +WX_UNICODE= yes +USES= dos2unix gettext gmake iconv libtool +USE_GNOME= intltool +GNU_CONFIGURE= yes CPPFLAGS+= -I${LOCALBASE}/include \ -I${LOCALBASE}/include/libxml2 LDFLAGS+= -lpthread -L${LOCALBASE}/lib ${ICONV_LIB} .include Index: head/editors/xmlcopyeditor/distinfo =================================================================== --- head/editors/xmlcopyeditor/distinfo (revision 391844) +++ head/editors/xmlcopyeditor/distinfo (revision 391845) @@ -1,2 +1,2 @@ -SHA256 (xmlcopyeditor-1.2.0.11.tar.gz) = b63a1f5c124d163cf93760fd60cc86c179d4d2b474a875132648f305bc44757b -SIZE (xmlcopyeditor-1.2.0.11.tar.gz) = 1965438 +SHA256 (xmlcopyeditor-1.2.1.3.tar.gz) = 9b684b5042b4af85d3626fd55108bd1d63c0007b5c794ef7cc4b026012b29d2f +SIZE (xmlcopyeditor-1.2.1.3.tar.gz) = 4266907 Index: head/editors/xmlcopyeditor/files/patch-src_wrapxerces.cpp =================================================================== --- head/editors/xmlcopyeditor/files/patch-src_wrapxerces.cpp (revision 391844) +++ head/editors/xmlcopyeditor/files/patch-src_wrapxerces.cpp (nonexistent) @@ -1,17 +0,0 @@ ---- src/wrapxerces.cpp.orig 2013-11-21 15:51:13.000000000 +0100 -+++ src/wrapxerces.cpp 2013-11-21 16:01:41.000000000 +0100 -@@ -201,12 +201,12 @@ - return wxConvUTF8; - case 2: - { -- const static wxMBConvUTF16 conv; -+ static wxMBConvUTF16 conv; - return conv; - } - case 4: - { -- const static wxMBConvUTF32 conv; -+ static wxMBConvUTF32 conv; - return conv; - } - default: Property changes on: head/editors/xmlcopyeditor/files/patch-src_wrapxerces.cpp ___________________________________________________________________ Deleted: fbsd:nokeywords ## -1 +0,0 ## -yes \ No newline at end of property Deleted: svn:eol-style ## -1 +0,0 ## -native \ No newline at end of property Deleted: svn:mime-type ## -1 +0,0 ## -text/plain \ No newline at end of property Index: head/editors/xmlcopyeditor/files/patch-src_xmlcopyeditor.cpp =================================================================== --- head/editors/xmlcopyeditor/files/patch-src_xmlcopyeditor.cpp (revision 391844) +++ head/editors/xmlcopyeditor/files/patch-src_xmlcopyeditor.cpp (nonexistent) @@ -1,45 +0,0 @@ ---- src/xmlcopyeditor.cpp.orig 2013-08-07 15:31:32.000000000 +0200 -+++ src/xmlcopyeditor.cpp 2013-08-07 15:35:13.000000000 +0200 -@@ -2887,7 +2887,7 @@ - - const int arraySize = templateArray.GetCount(); - -- wxString choiceArray[arraySize + 1]; -+ wxString *choiceArray = new wxString[arraySize + 1]; - for ( int i = 0; i < arraySize; ++i ) - * ( choiceArray + i ) = templateArray.Item ( i ); - -@@ -2901,6 +2901,7 @@ - return; - } - typeSelection = scd.GetStringSelection(); -+ delete [] choiceArray; - } - - if ( typeSelection == defaultSelection ) -@@ -4384,20 +4385,23 @@ - encodingVector.push_back ( _T ( "ISO-8859-1" ) ); - encodingVector.push_back ( _T ( "US-ASCII" ) ); - const int vectorSize = encodingVector.size(); -- wxString choiceArray[vectorSize + 1]; -+ wxString *choiceArray = new wxString[vectorSize + 1]; - for ( int i = 0; i < vectorSize; ++i ) - * ( choiceArray + i ) = encodingVector.at ( i ); - wxSingleChoiceDialog scd ( - this, _ ( "Choose an encoding:" ), _ ( "Encoding" ), vectorSize, choiceArray ); - -- if ( scd.ShowModal() == wxID_CANCEL ) -+ if ( scd.ShowModal() == wxID_CANCEL ) { -+ delete [] choiceArray; - return; -+ } - - wxString selection; - std::string selectionUtf8, bufferUtf8; - - selection = scd.GetStringSelection(); - selectionUtf8 = selection.mb_str ( wxConvUTF8 ); -+ delete [] choiceArray; - - getRawText ( doc, bufferUtf8 ); - XmlEncodingHandler::setUtf8 ( bufferUtf8, true ); Property changes on: head/editors/xmlcopyeditor/files/patch-src_xmlcopyeditor.cpp ___________________________________________________________________ Deleted: fbsd:nokeywords ## -1 +0,0 ## -yes \ No newline at end of property Deleted: svn:eol-style ## -1 +0,0 ## -native \ No newline at end of property Deleted: svn:mime-type ## -1 +0,0 ## -text/plain \ No newline at end of property Index: head/editors/xmlcopyeditor/files/patch-src_styledialog.cpp =================================================================== --- head/editors/xmlcopyeditor/files/patch-src_styledialog.cpp (revision 391844) +++ head/editors/xmlcopyeditor/files/patch-src_styledialog.cpp (nonexistent) @@ -1,11 +0,0 @@ ---- src/styledialog.cpp.orig 2013-11-21 15:48:45.000000000 +0100 -+++ src/styledialog.cpp 2013-11-21 15:50:28.000000000 +0100 -@@ -705,7 +705,7 @@ - - WrapExpat we; - ofs << ""; -- std::map::iterator mapIterator; -+ std::map::iterator mapIterator; - int matchTotal = 0; - - for ( Property changes on: head/editors/xmlcopyeditor/files/patch-src_styledialog.cpp ___________________________________________________________________ Deleted: fbsd:nokeywords ## -1 +0,0 ## -yes \ No newline at end of property Deleted: svn:eol-style ## -1 +0,0 ## -native \ No newline at end of property Deleted: svn:mime-type ## -1 +0,0 ## -text/plain \ No newline at end of property Index: head/editors/xmlcopyeditor/files/patch-po_Makefile.in.in.diff =================================================================== --- head/editors/xmlcopyeditor/files/patch-po_Makefile.in.in.diff (nonexistent) +++ head/editors/xmlcopyeditor/files/patch-po_Makefile.in.in.diff (revision 391845) @@ -0,0 +1,10 @@ ++++ po/Makefile.in.in +@@ -34,7 +34,7 @@ + datarootdir = @datarootdir@ + libdir = @libdir@ + DATADIRNAME = @DATADIRNAME@ +-itlocaledir = $(prefix)/$(DATADIRNAME)/locale ++itlocaledir = @localedir@ + subdir = po + install_sh = @install_sh@ + # Automake >= 1.8 provides @mkdir_p@. Property changes on: head/editors/xmlcopyeditor/files/patch-po_Makefile.in.in.diff ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/editors/xmlcopyeditor/files/patch-src_Makefile.in.diff =================================================================== --- head/editors/xmlcopyeditor/files/patch-src_Makefile.in.diff (revision 391844) +++ head/editors/xmlcopyeditor/files/patch-src_Makefile.in.diff (revision 391845) @@ -1,33 +1,12 @@ ---- src/Makefile.in.orig 2012-10-07 15:20:23.000000000 +0200 -+++ src/Makefile.in 2012-12-02 17:24:51.000000000 +0100 -@@ -260,8 +260,8 @@ ++++ src/Makefile.in +@@ -283,8 +283,8 @@ # these are the headers for your project noinst_HEADERS = $(srcdir)/*.h xmlcopyeditordir = ${prefix}/share/xmlcopyeditor -pixmapdir = /usr/share/pixmaps -applicationsdir = /usr/share/applications +pixmapdir = ${prefix}/share/pixmaps +applicationsdir = ${prefix}/share/applications # the application source, library search path, and link libraries - xmlcopyeditor_SOURCES = xmlcopyeditor.cpp associatedialog.cpp casehandler.cpp \ -@@ -287,19 +287,6 @@ - -lexpat -lxslt -lxml2 -lpcre -lxerces-c $(ASPELL_LIBS) $(ENCHANT_LIBS) - - nobase_dist_xmlcopyeditor_DATA = $(srcdir)/catalog/catalog \ -- $(srcdir)/copying/*.txt \ -- $(srcdir)/copying/Apache/LICENSE-2.0 \ -- $(srcdir)/copying/Apache/LICENSE-2_files/* \ -- $(srcdir)/copying/Aspell/* \ -- $(srcdir)/copying/boost_shared_ptr/* \ -- $(srcdir)/copying/Expat/* \ -- $(srcdir)/copying/libxml2/* \ -- $(srcdir)/copying/libxslt/* \ -- $(srcdir)/copying/PCRE/* \ -- $(srcdir)/copying/Scintilla/* \ -- $(srcdir)/copying/wxStEditor/* \ -- $(srcdir)/copying/wxStyledTextCtrl/* \ -- $(srcdir)/copying/xmlcopyeditor/* \ - $(srcdir)/dtd/*.* \ - $(srcdir)/dtd/dita/*.* \ - $(srcdir)/dtd/docbook/4.4/*.* \ + xmlcopyeditor_SOURCES = aboutdialog.cpp associatedialog.cpp binaryfile.cpp \ Index: head/editors/xmlcopyeditor/pkg-plist =================================================================== --- head/editors/xmlcopyeditor/pkg-plist (revision 391844) +++ head/editors/xmlcopyeditor/pkg-plist (revision 391845) @@ -1,337 +1,345 @@ bin/xmlcopyeditor +man/man1/xmlcopyeditor.1.gz +share/appdata/xmlcopyeditor.appdata.xml share/applications/xmlcopyeditor.desktop +share/locale/ca/LC_MESSAGES/xmlcopyeditor.mo +share/locale/de/LC_MESSAGES/xmlcopyeditor.mo +share/locale/en_US/LC_MESSAGES/xmlcopyeditor.mo +share/locale/es/LC_MESSAGES/xmlcopyeditor.mo +share/locale/fr/LC_MESSAGES/xmlcopyeditor.mo +share/locale/it/LC_MESSAGES/xmlcopyeditor.mo +share/locale/km/LC_MESSAGES/xmlcopyeditor.mo +share/locale/nl/LC_MESSAGES/xmlcopyeditor.mo +share/locale/ru/LC_MESSAGES/xmlcopyeditor.mo +share/locale/sk/LC_MESSAGES/xmlcopyeditor.mo +share/locale/sv/LC_MESSAGES/xmlcopyeditor.mo +share/locale/uk_UA/LC_MESSAGES/xmlcopyeditor.mo +share/locale/zh_CN/LC_MESSAGES/xmlcopyeditor.mo +share/locale/zh_TW/LC_MESSAGES/xmlcopyeditor.mo share/pixmaps/xmlcopyeditor.png %%DATADIR%%/catalog/catalog %%DATADIR%%/dtd/NewsML_1.2.dtd %%DATADIR%%/dtd/OUGenericFull.dtd %%DATADIR%%/dtd/dita/catalog-dita.txt %%DATADIR%%/dtd/dita/catalog-dita.xml %%DATADIR%%/dtd/dita/concept.dtd %%DATADIR%%/dtd/dita/concept.mod %%DATADIR%%/dtd/dita/ditabase.dtd %%DATADIR%%/dtd/dita/highlight-domain.ent %%DATADIR%%/dtd/dita/highlight-domain.mod %%DATADIR%%/dtd/dita/map.dtd %%DATADIR%%/dtd/dita/map.mod %%DATADIR%%/dtd/dita/mapgroup.ent %%DATADIR%%/dtd/dita/mapgroup.mod %%DATADIR%%/dtd/dita/meta_xml.mod %%DATADIR%%/dtd/dita/meta_xml.mod.old %%DATADIR%%/dtd/dita/programming-domain.ent %%DATADIR%%/dtd/dita/programming-domain.mod %%DATADIR%%/dtd/dita/reference.dtd %%DATADIR%%/dtd/dita/reference.mod %%DATADIR%%/dtd/dita/software-domain.ent %%DATADIR%%/dtd/dita/software-domain.mod %%DATADIR%%/dtd/dita/task.dtd %%DATADIR%%/dtd/dita/task.mod %%DATADIR%%/dtd/dita/tbl_xml.mod %%DATADIR%%/dtd/dita/topic.dtd %%DATADIR%%/dtd/dita/topic.mod %%DATADIR%%/dtd/dita/topic_class.ent %%DATADIR%%/dtd/dita/topic_defn.ent %%DATADIR%%/dtd/dita/ui-domain.ent %%DATADIR%%/dtd/dita/ui-domain.mod %%DATADIR%%/dtd/dita/utilities-domain.ent %%DATADIR%%/dtd/dita/utilities-domain.mod %%DATADIR%%/dtd/docbook.dtd %%DATADIR%%/dtd/docbook/4.4/calstblx.dtd %%DATADIR%%/dtd/docbook/4.4/catalog.xml %%DATADIR%%/dtd/docbook/4.4/dbcentx.mod %%DATADIR%%/dtd/docbook/4.4/dbgenent.mod %%DATADIR%%/dtd/docbook/4.4/dbhierx.mod %%DATADIR%%/dtd/docbook/4.4/dbnotnx.mod %%DATADIR%%/dtd/docbook/4.4/dbpoolx.mod %%DATADIR%%/dtd/docbook/4.4/docbook.cat %%DATADIR%%/dtd/docbook/4.4/docbookx.dtd %%DATADIR%%/dtd/docbook/4.4/ent/isoamsa.ent %%DATADIR%%/dtd/docbook/4.4/ent/isoamsb.ent %%DATADIR%%/dtd/docbook/4.4/ent/isoamsc.ent %%DATADIR%%/dtd/docbook/4.4/ent/isoamsn.ent %%DATADIR%%/dtd/docbook/4.4/ent/isoamso.ent %%DATADIR%%/dtd/docbook/4.4/ent/isoamsr.ent %%DATADIR%%/dtd/docbook/4.4/ent/isobox.ent %%DATADIR%%/dtd/docbook/4.4/ent/isocyr1.ent %%DATADIR%%/dtd/docbook/4.4/ent/isocyr2.ent %%DATADIR%%/dtd/docbook/4.4/ent/isodia.ent %%DATADIR%%/dtd/docbook/4.4/ent/isogrk1.ent %%DATADIR%%/dtd/docbook/4.4/ent/isogrk2.ent %%DATADIR%%/dtd/docbook/4.4/ent/isogrk3.ent %%DATADIR%%/dtd/docbook/4.4/ent/isogrk4.ent %%DATADIR%%/dtd/docbook/4.4/ent/isolat1.ent %%DATADIR%%/dtd/docbook/4.4/ent/isolat2.ent %%DATADIR%%/dtd/docbook/4.4/ent/isonum.ent %%DATADIR%%/dtd/docbook/4.4/ent/isopub.ent %%DATADIR%%/dtd/docbook/4.4/ent/isotech.ent %%DATADIR%%/dtd/docbook/4.4/htmltblx.mod %%DATADIR%%/dtd/docbook/4.4/soextblx.dtd %%DATADIR%%/dtd/docbook/5.0/docbook.dtd %%DATADIR%%/dtd/lzx.dtd %%DATADIR%%/dtd/moodle_glossary.dtd %%DATADIR%%/dtd/moodle_xml.dtd %%DATADIR%%/dtd/rss2.dtd %%DATADIR%%/dtd/tei/p4/catalog.tei %%DATADIR%%/dtd/tei/p4/dummy.dtd %%DATADIR%%/dtd/tei/p4/index.xml %%DATADIR%%/dtd/tei/p4/tei2.dtd %%DATADIR%%/dtd/tei/p4/teiana2.dtd %%DATADIR%%/dtd/tei/p4/teiana2.ent %%DATADIR%%/dtd/tei/p4/teiback2.dtd %%DATADIR%%/dtd/tei/p4/teicatalog.xml %%DATADIR%%/dtd/tei/p4/teicert2.dtd %%DATADIR%%/dtd/tei/p4/teiclas2.ent %%DATADIR%%/dtd/tei/p4/teicore2.dtd %%DATADIR%%/dtd/tei/p4/teicorp2.dtd %%DATADIR%%/dtd/tei/p4/teidict2.dtd %%DATADIR%%/dtd/tei/p4/teidict2.ent %%DATADIR%%/dtd/tei/p4/teidram2.dtd %%DATADIR%%/dtd/tei/p4/teidram2.ent %%DATADIR%%/dtd/tei/p4/teifig2.dtd %%DATADIR%%/dtd/tei/p4/teifig2.ent %%DATADIR%%/dtd/tei/p4/teifron2.dtd %%DATADIR%%/dtd/tei/p4/teifs2.dtd %%DATADIR%%/dtd/tei/p4/teifsd2.dtd %%DATADIR%%/dtd/tei/p4/teigen2.dtd %%DATADIR%%/dtd/tei/p4/teigis2.ent %%DATADIR%%/dtd/tei/p4/teihdr2.dtd %%DATADIR%%/dtd/tei/p4/teikey2.ent %%DATADIR%%/dtd/tei/p4/teilink2.dtd %%DATADIR%%/dtd/tei/p4/teilink2.ent %%DATADIR%%/dtd/tei/p4/teilite.dec %%DATADIR%%/dtd/tei/p4/teilitex.dtd %%DATADIR%%/dtd/tei/p4/teilitex.ent %%DATADIR%%/dtd/tei/p4/teimix2.dtd %%DATADIR%%/dtd/tei/p4/teind2.dtd %%DATADIR%%/dtd/tei/p4/teind2.ent %%DATADIR%%/dtd/tei/p4/teinet2.dtd %%DATADIR%%/dtd/tei/p4/teipl2.dtd %%DATADIR%%/dtd/tei/p4/teipros2.dtd %%DATADIR%%/dtd/tei/p4/teisgml.dec %%DATADIR%%/dtd/tei/p4/teishd2.dtd %%DATADIR%%/dtd/tei/p4/teispok2.dtd %%DATADIR%%/dtd/tei/p4/teispok2.ent %%DATADIR%%/dtd/tei/p4/teistr2.dtd %%DATADIR%%/dtd/tei/p4/teitc2.dtd %%DATADIR%%/dtd/tei/p4/teitc2.ent %%DATADIR%%/dtd/tei/p4/teite2f.dtd %%DATADIR%%/dtd/tei/p4/teite2n.dtd %%DATADIR%%/dtd/tei/p4/teiterm2.dtd %%DATADIR%%/dtd/tei/p4/teiterm2.ent %%DATADIR%%/dtd/tei/p4/teitran2.dtd %%DATADIR%%/dtd/tei/p4/teitran2.ent %%DATADIR%%/dtd/tei/p4/teitsd2.dtd %%DATADIR%%/dtd/tei/p4/teivers2.dtd %%DATADIR%%/dtd/tei/p4/teivers2.ent %%DATADIR%%/dtd/tei/p4/teiwsd2.dtd %%DATADIR%%/dtd/tei/p4/teixlite.dec %%DATADIR%%/dtd/tei/p5/tei_all.dtd %%DATADIR%%/dtd/xhtml-lat1.ent %%DATADIR%%/dtd/xhtml-special.ent %%DATADIR%%/dtd/xhtml-symbol.ent %%DATADIR%%/dtd/xhtml1-frameset.dtd %%DATADIR%%/dtd/xhtml1-strict.dtd %%DATADIR%%/dtd/xhtml1-transitional.dtd %%DATADIR%%/dtd/xliff.dtd %%DATADIR%%/dtd/xslt10.dtd %%DATADIR%%/dtd/xtm1.dtd %%DATADIR%%/dtd/xtm2.dtd %%DATADIR%%/help/Table_of_Contents.hhc %%DATADIR%%/help/html/appendix.html %%DATADIR%%/help/html/association.html %%DATADIR%%/help/html/attribute_hiding.html %%DATADIR%%/help/html/completion.html %%DATADIR%%/help/html/creating_filters.html %%DATADIR%%/help/html/creating_rulesets.html %%DATADIR%%/help/html/default_rulesets.html %%DATADIR%%/help/html/editor.html %%DATADIR%%/help/html/features.html %%DATADIR%%/help/html/folding.html %%DATADIR%%/help/html/font_size.html %%DATADIR%%/help/html/general.html %%DATADIR%%/help/html/generic.css %%DATADIR%%/help/html/getting_started.html %%DATADIR%%/help/html/large_documents.html %%DATADIR%%/help/html/printing.html %%DATADIR%%/help/html/processing.html %%DATADIR%%/help/html/spelling.html %%DATADIR%%/help/html/spelling_intro.html %%DATADIR%%/help/html/syntax.html %%DATADIR%%/help/html/tag_locking.html %%DATADIR%%/help/html/templates.html %%DATADIR%%/help/html/validation.html %%DATADIR%%/help/html/word.html %%DATADIR%%/help/html/word_integration.html %%DATADIR%%/help/html/xml.html %%DATADIR%%/help/html/xmlcopyeditor.html %%DATADIR%%/help/xmlcopyeditor.chm %%DATADIR%%/help/xmlcopyeditor.hhp %%DATADIR%%/png/stock_calc-accept-green.png %%DATADIR%%/png/stock_calc-accept.png %%DATADIR%%/png/stock_close.png -%%DATADIR%%/png/stock_copy-16.png -%%DATADIR%%/png/stock_cut-16.png +%%DATADIR%%/png/stock_copy_16.png +%%DATADIR%%/png/stock_cut_16.png %%DATADIR%%/png/stock_dialog-info-32.png %%DATADIR%%/png/stock_dialog-question-32.png %%DATADIR%%/png/stock_dialog-stop-32.png %%DATADIR%%/png/stock_dialog-warning-32.png %%DATADIR%%/png/stock_filters.png -%%DATADIR%%/png/stock_help-16.png +%%DATADIR%%/png/stock_help_16.png %%DATADIR%%/png/stock_hyperlink.png -%%DATADIR%%/png/stock_internet-16.png %%DATADIR%%/png/stock_internet.png -%%DATADIR%%/png/stock_new-16.png +%%DATADIR%%/png/stock_internet_16.png %%DATADIR%%/png/stock_new.png -%%DATADIR%%/png/stock_open-16.png +%%DATADIR%%/png/stock_new_16.png +%%DATADIR%%/png/stock_next.png +%%DATADIR%%/png/stock_next_16.png %%DATADIR%%/png/stock_open.png -%%DATADIR%%/png/stock_paste-16.png -%%DATADIR%%/png/stock_print-16.png -%%DATADIR%%/png/stock_print-preview-16.png +%%DATADIR%%/png/stock_open_16.png +%%DATADIR%%/png/stock_paste_16.png +%%DATADIR%%/png/stock_previous.png +%%DATADIR%%/png/stock_previous_16.png %%DATADIR%%/png/stock_print.png -%%DATADIR%%/png/stock_redo-16.png +%%DATADIR%%/png/stock_print_16.png +%%DATADIR%%/png/stock_print_preview_16.png %%DATADIR%%/png/stock_redo.png -%%DATADIR%%/png/stock_save-16.png +%%DATADIR%%/png/stock_redo_16.png %%DATADIR%%/png/stock_save.png -%%DATADIR%%/png/stock_search-16.png -%%DATADIR%%/png/stock_spellcheck-16.png +%%DATADIR%%/png/stock_save_16.png +%%DATADIR%%/png/stock_search_16.png %%DATADIR%%/png/stock_spellcheck.png -%%DATADIR%%/png/stock_undo-16.png +%%DATADIR%%/png/stock_spellcheck_16.png %%DATADIR%%/png/stock_undo.png -%%DATADIR%%/po/ca/messages.mo -%%DATADIR%%/po/de/messages.mo -%%DATADIR%%/po/es/messages.mo -%%DATADIR%%/po/fr/messages.mo -%%DATADIR%%/po/it/messages.mo -%%DATADIR%%/po/nl/messages.mo -%%DATADIR%%/po/ru/messages.mo -%%DATADIR%%/po/sk/messages.mo -%%DATADIR%%/po/sv/messages.mo -%%DATADIR%%/po/uk_UA/messages.mo -%%DATADIR%%/po/zh_CN/messages.mo -%%DATADIR%%/po/zh_TW/messages.mo +%%DATADIR%%/png/stock_undo_16.png %%DATADIR%%/rng/docbook.rnc %%DATADIR%%/rng/docbook.rng %%DATADIR%%/rng/docbookxi.rnc %%DATADIR%%/rng/docbookxi.rng %%DATADIR%%/rng/exclude/basic-table.rng %%DATADIR%%/rng/exclude/basic.rng %%DATADIR%%/rng/exclude/form.rng %%DATADIR%%/rng/modules/applet.rng %%DATADIR%%/rng/modules/attribs.rng %%DATADIR%%/rng/modules/base.rng %%DATADIR%%/rng/modules/basic-form.rng %%DATADIR%%/rng/modules/basic-table.rng %%DATADIR%%/rng/modules/bdo.rng %%DATADIR%%/rng/modules/csismap.rng %%DATADIR%%/rng/modules/datatypes.rng %%DATADIR%%/rng/modules/edit.rng %%DATADIR%%/rng/modules/events.rng %%DATADIR%%/rng/modules/form.rng %%DATADIR%%/rng/modules/frames.rng %%DATADIR%%/rng/modules/hypertext.rng %%DATADIR%%/rng/modules/iframe.rng %%DATADIR%%/rng/modules/image.rng %%DATADIR%%/rng/modules/inlstyle.rng %%DATADIR%%/rng/modules/legacy.rng %%DATADIR%%/rng/modules/link.rng %%DATADIR%%/rng/modules/list.rng %%DATADIR%%/rng/modules/meta.rng %%DATADIR%%/rng/modules/nameident.rng %%DATADIR%%/rng/modules/object.rng %%DATADIR%%/rng/modules/param.rng %%DATADIR%%/rng/modules/pres.rng %%DATADIR%%/rng/modules/ruby.rng %%DATADIR%%/rng/modules/script.rng %%DATADIR%%/rng/modules/ssismap.rng %%DATADIR%%/rng/modules/struct.rng %%DATADIR%%/rng/modules/style.rng %%DATADIR%%/rng/modules/table.rng %%DATADIR%%/rng/modules/target.rng %%DATADIR%%/rng/modules/text.rng %%DATADIR%%/rng/relaxng.rng %%DATADIR%%/rng/tei_all.rnc %%DATADIR%%/rng/tei_all.rng %%DATADIR%%/rng/tei_minimal.rnc %%DATADIR%%/rng/tei_minimal.rng %%DATADIR%%/rng/xhtml-strict.rng %%DATADIR%%/rng/xhtml.rng %%DATADIR%%/rng/xmlschema.rng %%DATADIR%%/rng/xslt.rng %%DATADIR%%/rulesets/American.xml %%DATADIR%%/rulesets/Commonwealth.xml %%DATADIR%%/rulesets/Contractions.xml %%DATADIR%%/rulesets/Default_dictionary.xml %%DATADIR%%/rulesets/Default_dictionary_and_style.xml %%DATADIR%%/rulesets/Default_style.xml %%DATADIR%%/rulesets/Disability.xml %%DATADIR%%/rulesets/Diversity.xml %%DATADIR%%/rulesets/Ethnicity.xml %%DATADIR%%/rulesets/Gender.xml %%DATADIR%%/rulesets/Hyphenation.xml %%DATADIR%%/rulesets/Ise.xml %%DATADIR%%/rulesets/Ize.xml %%DATADIR%%/rulesets/Ize_and_yse.xml %%DATADIR%%/rulesets/Postcolonial.xml %%DATADIR%%/rulesets/Punctuation.xml %%DATADIR%%/rulesets/Query.xml %%DATADIR%%/rulesets/Religion.xml %%DATADIR%%/rulesets/Repetition.xml %%DATADIR%%/rulesets/White_space.xml %%DATADIR%%/rulesets/ruleset.css %%DATADIR%%/rulesets/ruleset.ctm %%DATADIR%%/rulesets/ruleset.rld %%DATADIR%%/rulesets/ruleset.xsd %%DATADIR%%/templates/Custom_rule_set.xml %%DATADIR%%/templates/DITA_Concept.xml %%DATADIR%%/templates/DITA_Map.xml %%DATADIR%%/templates/DITA_Task.xml %%DATADIR%%/templates/DITA_Topic.xml %%DATADIR%%/templates/DTD.dtd %%DATADIR%%/templates/DocBook_4.4_article.xml %%DATADIR%%/templates/DocBook_4.4_book.xml %%DATADIR%%/templates/DocBook_5.0_article.xml %%DATADIR%%/templates/DocBook_5.0_book.xml %%DATADIR%%/templates/Moodle_glossary.xml %%DATADIR%%/templates/Moodle_quiz.xml %%DATADIR%%/templates/NewsML_1.2.xml %%DATADIR%%/templates/OpenLaszlo.lzx %%DATADIR%%/templates/OpenLearn_document.xml %%DATADIR%%/templates/RELAX_NG_grammar.rng %%DATADIR%%/templates/RSS_2.0.rss %%DATADIR%%/templates/TEI_document.xml %%DATADIR%%/templates/WordprocessingML_document.xml %%DATADIR%%/templates/XHTML_1.0_Strict_document.html %%DATADIR%%/templates/XLIFF_document.xlf %%DATADIR%%/templates/XML_Schema.xsd %%DATADIR%%/templates/XML_Topic_Map_1.0.xtm %%DATADIR%%/templates/XML_Topic_Map_2.0.xtm %%DATADIR%%/templates/XSL_stylesheet.xsl %%DATADIR%%/xpm/appicon.xpm %%DATADIR%%/xpm/stock_copy_16.xpm %%DATADIR%%/xpm/stock_cut_16.xpm %%DATADIR%%/xpm/stock_help_16.xpm %%DATADIR%%/xpm/stock_hyperlink.xpm %%DATADIR%%/xpm/stock_internet.xpm %%DATADIR%%/xpm/stock_internet_16.xpm %%DATADIR%%/xpm/stock_new.xpm %%DATADIR%%/xpm/stock_new_16.xpm %%DATADIR%%/xpm/stock_open.xpm %%DATADIR%%/xpm/stock_open_16.xpm %%DATADIR%%/xpm/stock_paste_16.xpm %%DATADIR%%/xpm/stock_print-preview_16.xpm %%DATADIR%%/xpm/stock_print.xpm %%DATADIR%%/xpm/stock_print_16.xpm %%DATADIR%%/xpm/stock_print_preview_16.xpm %%DATADIR%%/xpm/stock_redo_16.xpm %%DATADIR%%/xpm/stock_save.xpm %%DATADIR%%/xpm/stock_save_16.xpm %%DATADIR%%/xpm/stock_search_16.xpm %%DATADIR%%/xpm/stock_spellcheck.xpm %%DATADIR%%/xpm/stock_spellcheck_16.xpm %%DATADIR%%/xpm/stock_undo_16.xpm %%DATADIR%%/xsl/openlearn2daisyhtml/heading.xsl %%DATADIR%%/xsl/openlearn2daisyhtml/inline.xsl %%DATADIR%%/xsl/openlearn2daisyhtml/item.xsl %%DATADIR%%/xsl/openlearn2daisyhtml/lang.xsl %%DATADIR%%/xsl/openlearn2daisyhtml/object.xsl %%DATADIR%%/xsl/openlearn2daisyhtml/openlearn2daisyhtml.xsl %%DATADIR%%/xsl/openlearn2daisyhtml/structure.xsl
TermFrequency