merge of develop-500 into master
24
.gitignore
vendored
|
@ -1,19 +1,3 @@
|
|||
/build/gmake/obj/
|
||||
/bin/
|
||||
/build/msvc2010/Obj/
|
||||
/build/msvc2010/Debugtidydll/
|
||||
/build/msvc2010/Debugtidylib/
|
||||
/build/msvc2010/Debug/
|
||||
/build/msvc2010/Releasetidydll/
|
||||
/build/msvc2010/Releasetidylib/
|
||||
/build/msvc2010/Release/
|
||||
/build/msvc2010/ipch/
|
||||
/build/msvc2010/tidy.opensdf
|
||||
/htmldoc/tidy-config.xml
|
||||
/htmldoc/tidy-help.xml
|
||||
/htmldoc/tidy.1
|
||||
/htmldoc/quickref.html
|
||||
/lib/
|
||||
/autom4te.cache/
|
||||
/console/.deps/
|
||||
/console/.libs/
|
||||
|
@ -22,3 +6,11 @@
|
|||
*.user
|
||||
*.suo
|
||||
*.sdf
|
||||
/test/testall.log
|
||||
/test/tmp/
|
||||
/test/tmp2/
|
||||
*~
|
||||
temp*
|
||||
*.bak
|
||||
.DS_Store
|
||||
.idea
|
||||
|
|
173
CMakeLists.txt
Normal file
|
@ -0,0 +1,173 @@
|
|||
# CMakeLists.txt - 20150130 - 20140801 - for github htacg/tidy-html5
|
||||
cmake_minimum_required (VERSION 2.8)
|
||||
|
||||
project (tidy5)
|
||||
|
||||
# ### NOTE: *** Adjust version.txt when required ***
|
||||
# read 'version' file into a variable (stripping any newlines or spaces)
|
||||
file(READ version.txt versionFile)
|
||||
if (NOT versionFile)
|
||||
message(FATAL_ERROR "Unable to determine libtidy version. version.txt file is missing.")
|
||||
endif()
|
||||
string(STRIP "${versionFile}" LIBTIDY_VERSION)
|
||||
string(REPLACE "." ";" VERSION_LIST ${LIBTIDY_VERSION})
|
||||
list(GET VERSION_LIST 0 TIDY_MAJOR_VERSION)
|
||||
list(GET VERSION_LIST 1 TIDY_MINOR_VERSION)
|
||||
list(GET VERSION_LIST 2 TIDY_POINT_VERSION)
|
||||
|
||||
# Allow developer to select is Dynamic or static library built
|
||||
set( LIB_TYPE STATIC ) # set default static
|
||||
option( BUILD_SHARED_LIB "Set ON to build Shared (DLL) Library" OFF )
|
||||
option( BUILD_TAB2SPACE "Set ON to build utility app, tab2space" OFF )
|
||||
option( BUILD_SAMPLE_CODE "Set ON to build the sample code" OFF )
|
||||
|
||||
if (CMAKE_SIZEOF_VOID_P EQUAL 8)
|
||||
message(STATUS "*** Have SIZEOF void * = 8, so 64-bit")
|
||||
set( IS_64_BIT 1 )
|
||||
else ()
|
||||
message(STATUS "*** SIZEOF void * != 8, so not 64-bit")
|
||||
endif ()
|
||||
|
||||
if(CMAKE_COMPILER_IS_GNUCXX)
|
||||
set( WARNING_FLAGS -Wall )
|
||||
endif(CMAKE_COMPILER_IS_GNUCXX)
|
||||
|
||||
if (CMAKE_CXX_COMPILER_ID STREQUAL "Clang")
|
||||
set( WARNING_FLAGS "-Wall -Wno-overloaded-virtual" )
|
||||
endif()
|
||||
|
||||
if(WIN32 AND MSVC)
|
||||
# turn off various warnings
|
||||
set(WARNING_FLAGS "${WARNING_FLAGS} /wd4996")
|
||||
# C4090: 'function' : different 'const' qualifiers
|
||||
# C4244: '=' : conversion from '__int64' to 'uint', possible loss of data
|
||||
# C4267: 'function' : conversion from 'size_t' to 'uint', possible loss of data
|
||||
# foreach(warning 4244 4251 4267 4275 4290 4786 4305)
|
||||
foreach(warning 4090 4244 4267)
|
||||
set(WARNING_FLAGS "${WARNING_FLAGS} /wd${warning}")
|
||||
endforeach()
|
||||
set( MSVC_FLAGS "-DNOMINMAX -D_USE_MATH_DEFINES -D_CRT_SECURE_NO_WARNINGS -D_SCL_SECURE_NO_WARNINGS -D__CRT_NONSTDC_NO_WARNINGS" )
|
||||
if (IS_64_BIT)
|
||||
set( MSVC_FLAGS "${MSVC_FLAGS} -DWIN64" )
|
||||
endif ()
|
||||
# if (${MSVC_VERSION} EQUAL 1600)
|
||||
# set( MSVC_LD_FLAGS "/FORCE:MULTIPLE" )
|
||||
# endif (${MSVC_VERSION} EQUAL 1600)
|
||||
# set( NOMINMAX 1 )
|
||||
# to distinguish between debug and release lib in windows
|
||||
set( CMAKE_DEBUG_POSTFIX "d" ) # little effect in unix
|
||||
else()
|
||||
# add any gcc flags
|
||||
endif()
|
||||
|
||||
set( CMAKE_C_FLAGS "${CMAKE_C_FLAGS} ${WARNING_FLAGS} ${MSVC_FLAGS} -D_REENTRANT" )
|
||||
set( CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} ${WARNING_FLAGS} ${MSVC_FLAGS} -D_REENTRANT" )
|
||||
set( CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} ${MSVC_LD_FLAGS}" )
|
||||
|
||||
add_definitions ( -DHAVE_CONFIG_H )
|
||||
add_definitions ( -DSUPPORT_UTF16_ENCODINGS=1 )
|
||||
add_definitions ( -DSUPPORT_ASIAN_ENCODINGS=1 )
|
||||
add_definitions ( -DSUPPORT_ACCESSIBILITY_CHECKS=1 )
|
||||
add_definitions ( -DLIBTIDY_VERSION="${LIBTIDY_VERSION}" )
|
||||
|
||||
if(BUILD_SHARED_LIB)
|
||||
set(LIB_TYPE SHARED)
|
||||
message("*** Building DLL library ${LIB_TYPE}, version ${LIBTIDY_VERSION}")
|
||||
else(BUILD_SHARED_LIB)
|
||||
message("*** Building static library ${LIB_TYPE}, version ${LIBTIDY_VERSION}")
|
||||
endif(BUILD_SHARED_LIB)
|
||||
|
||||
include_directories ( "${PROJECT_SOURCE_DIR}/include" "${PROJECT_SOURCE_DIR}/src" )
|
||||
|
||||
##############################################################################
|
||||
### tidy library
|
||||
# file locations
|
||||
set ( SRCDIR src )
|
||||
set ( INCDIR include )
|
||||
# file lists
|
||||
set ( CFILES
|
||||
${SRCDIR}/access.c ${SRCDIR}/attrs.c ${SRCDIR}/istack.c
|
||||
${SRCDIR}/parser.c ${SRCDIR}/tags.c ${SRCDIR}/entities.c
|
||||
${SRCDIR}/lexer.c ${SRCDIR}/pprint.c ${SRCDIR}/charsets.c ${SRCDIR}/clean.c
|
||||
${SRCDIR}/localize.c ${SRCDIR}/config.c ${SRCDIR}/alloc.c
|
||||
${SRCDIR}/attrask.c ${SRCDIR}/attrdict.c ${SRCDIR}/attrget.c
|
||||
${SRCDIR}/buffio.c ${SRCDIR}/fileio.c ${SRCDIR}/streamio.c
|
||||
${SRCDIR}/tagask.c ${SRCDIR}/tmbstr.c ${SRCDIR}/utf8.c
|
||||
${SRCDIR}/tidylib.c ${SRCDIR}/mappedio.c ${SRCDIR}/gdoc.c )
|
||||
set ( HFILES
|
||||
${INCDIR}/platform.h ${INCDIR}/tidy.h ${INCDIR}/tidyenum.h
|
||||
${INCDIR}/buffio.h )
|
||||
set ( LIBHFILES
|
||||
${SRCDIR}/access.h ${SRCDIR}/attrs.h ${SRCDIR}/attrdict.h ${SRCDIR}/charsets.h
|
||||
${SRCDIR}/clean.h ${SRCDIR}/config.h ${SRCDIR}/entities.h
|
||||
${SRCDIR}/fileio.h ${SRCDIR}/forward.h ${SRCDIR}/lexer.h
|
||||
${SRCDIR}/mappedio.h ${SRCDIR}/message.h ${SRCDIR}/parser.h
|
||||
${SRCDIR}/pprint.h ${SRCDIR}/streamio.h ${SRCDIR}/tags.h
|
||||
${SRCDIR}/tmbstr.h ${SRCDIR}/utf8.h ${SRCDIR}/tidy-int.h
|
||||
${SRCDIR}/version.h ${SRCDIR}/gdoc.h )
|
||||
if (MSVC)
|
||||
list(APPEND CFILES ${SRCDIR}/sprtf.c)
|
||||
list(APPEND LIBHFILES ${SRCDIR}/sprtf.h)
|
||||
endif ()
|
||||
set(name lib-tidy)
|
||||
add_library ( ${name} ${LIB_TYPE} ${CFILES} ${HFILES} ${LIBHFILES} )
|
||||
set_target_properties( ${name} PROPERTIES
|
||||
OUTPUT_NAME tidy5
|
||||
)
|
||||
set_target_properties( ${name} PROPERTIES
|
||||
VERSION ${LIBTIDY_VERSION}
|
||||
SOVERSION ${TIDY_MAJOR_VERSION} )
|
||||
if (BUILD_SHARED_LIB)
|
||||
set_target_properties( ${name} PROPERTIES
|
||||
COMPILE_FLAGS "-DBUILD_SHARED_LIB"
|
||||
)
|
||||
set_target_properties( ${name} PROPERTIES
|
||||
COMPILE_FLAGS "-DBUILDING_SHARED_LIB"
|
||||
)
|
||||
endif ()
|
||||
list ( APPEND add_LIBS ${name} )
|
||||
install(TARGETS ${name}
|
||||
RUNTIME DESTINATION bin
|
||||
ARCHIVE DESTINATION lib
|
||||
LIBRARY DESTINATION lib
|
||||
)
|
||||
install( FILES ${HFILES} DESTINATION include )
|
||||
|
||||
##########################################################
|
||||
### main executable
|
||||
set(name tidy5)
|
||||
set ( BINDIR console )
|
||||
add_executable( ${name} ${BINDIR}/tidy.c )
|
||||
target_link_libraries( ${name} ${add_LIBS} )
|
||||
if (MSVC)
|
||||
set_target_properties( ${name} PROPERTIES DEBUG_POSTFIX d )
|
||||
endif ()
|
||||
if (BUILD_SHARED_LIB)
|
||||
set_target_properties( ${name} PROPERTIES
|
||||
COMPILE_FLAGS "-DBUILD_SHARED_LIB"
|
||||
)
|
||||
endif ()
|
||||
install (TARGETS ${name} DESTINATION bin)
|
||||
|
||||
if (BUILD_TAB2SPACE)
|
||||
set(name tab2space)
|
||||
add_executable( ${name} ${BINDIR}/tab2space.c )
|
||||
if (MSVC)
|
||||
set_target_properties( ${name} PROPERTIES DEBUG_POSTFIX d )
|
||||
endif ()
|
||||
# no INSTALL of this 'local' tool
|
||||
endif ()
|
||||
|
||||
if (BUILD_SAMPLE_CODE)
|
||||
set(name test71)
|
||||
set(dir console)
|
||||
add_executable( ${name} ${dir}/${name}.cxx )
|
||||
if (MSVC)
|
||||
set_target_properties( ${name} PROPERTIES DEBUG_POSTFIX d )
|
||||
endif ()
|
||||
target_link_libraries( ${name} ${add_LIBS} )
|
||||
# no INSTALL of this 'local' sample
|
||||
endif ()
|
||||
|
||||
# eof
|
||||
|
|
@ -1,14 +1,6 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
|
||||
<html>
|
||||
<head>
|
||||
<title>HTML Tidy License</title>
|
||||
</head>
|
||||
# HTML Tidy
|
||||
|
||||
<body>
|
||||
<pre>
|
||||
HTML Tidy
|
||||
|
||||
HTML parser and pretty printer
|
||||
## HTML parser and pretty printer
|
||||
|
||||
Copyright (c) 1998-2003 World Wide Web Consortium
|
||||
(Massachusetts Institute of Technology, European Research
|
||||
|
@ -34,17 +26,12 @@ for any purpose, without fee, subject to the following restrictions:
|
|||
|
||||
1. The origin of this source code must not be misrepresented.
|
||||
2. Altered versions must be plainly marked as such and must
|
||||
not be misrepresented as being the original source.
|
||||
not be misrepresented as being the original source.
|
||||
3. This Copyright notice may not be removed or altered from any
|
||||
source or altered source distribution.
|
||||
|
||||
source or altered source distribution.
|
||||
|
||||
The copyright holders and contributing author(s) specifically
|
||||
permit, without fee, and encourage the use of this source code
|
||||
as a component for supporting the Hypertext Markup Language in
|
||||
commercial products. If you use this source code in a product,
|
||||
acknowledgment is not required but would be appreciated.
|
||||
</pre>
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
||||
acknowledgement is not required but would be appreciated.
|
37
Makefile
|
@ -1,37 +0,0 @@
|
|||
HTML2MARKDOWN=html2text
|
||||
GIT=git
|
||||
GITFLAGS=
|
||||
DOXYGEN=doxygen
|
||||
DOXYGENFLAGS=
|
||||
|
||||
.PHONEY: api-docs
|
||||
all: bin/tidy
|
||||
|
||||
bin/tidy:
|
||||
$(MAKE) -C build/gmake
|
||||
$(MAKE) -C build/gmake doc
|
||||
|
||||
.FORCE:
|
||||
# dummy target to force other targets to always get remade
|
||||
|
||||
README.md: README.html .FORCE
|
||||
$(HTML2MARKDOWN) $(HTML2MARKDOWNFLAGS) $< > $@
|
||||
|
||||
src/version.h: .FORCE
|
||||
$(GIT) $(GITFLAGS) log --pretty=format:'static const char TY_(release_date)[] = "https://github.com/w3c/tidy-html5/tree/%h";' -n 1 > $@
|
||||
|
||||
quickref.html: htmldoc/quickref.html .FORCE
|
||||
cp $< $@
|
||||
|
||||
api-docs:
|
||||
$(DOXYGEN) $(DOXYGENFLAGS) htmldoc/doxygen.cfg
|
||||
|
||||
install:
|
||||
sudo $(MAKE) install -C build/gmake
|
||||
|
||||
version: all src/version.h README.md quickref.html
|
||||
|
||||
clean:
|
||||
$(MAKE) clean -C build/gmake
|
||||
$(RM) test/testall.log
|
||||
$(RM) -r test/tmp
|
44
README.html
|
@ -1,44 +0,0 @@
|
|||
<!doctype html>
|
||||
<head>
|
||||
<meta charset=utf8>
|
||||
<title>About tidy-html5</title>
|
||||
<style>
|
||||
li span.note { display: block; }
|
||||
</style>
|
||||
</head>
|
||||
|
||||
<h1>HTML Tidy for HTML5 (experimental)</h1>
|
||||
<p>This repo is an experimental fork of the code from
|
||||
<a href="http://tidy.sourceforge.net">tidy.sourceforge.net</a>.
|
||||
This source code in this version supports processing of HTML5 documents.
|
||||
The changes for HTML5 support started from a
|
||||
<a href="http://lists.w3.org/Archives/Public/www-archive/2011Nov/0007.html">patch developed by Björn Höhrmann</a>.</p>
|
||||
|
||||
<p>For more information, see
|
||||
<a href="http://w3c.github.com/tidy-html5/">w3c.github.com/tidy-html5</a>
|
||||
|
||||
<h2>Building the tidy command-line tool</h2>
|
||||
<p>For Linux/BSD/OSX platforms, you can build and install the
|
||||
<code>tidy</code> command-line tool from the source code using the
|
||||
following steps.</p>
|
||||
|
||||
<ol>
|
||||
<li><code>make -C build/gmake/</code></li>
|
||||
<li><code>make install -C build/gmake/</code></li>
|
||||
</ol>
|
||||
|
||||
<p>Note that you will either need to run <code>make install</code> as root,
|
||||
or with <code>sudo make install</code>.</p>
|
||||
|
||||
<h2>Building the libtidy shared library</h2>
|
||||
<p>For Linux/BSD/OSX platforms, you can build and install the
|
||||
<code>tidylib</code> shared library (for use in building other
|
||||
applications) from the source code using the following steps.</p>
|
||||
|
||||
<ol>
|
||||
<li>sh build/gnuauto/setup.sh && ./configure && make</li>
|
||||
<li>make install</li>
|
||||
</ol>
|
||||
|
||||
<p>Note that you will either need to run <code>make install</code> as root,
|
||||
or with <code>sudo make install</code>.</p>
|
54
README.md
|
@ -1,44 +1,44 @@
|
|||
# Important notice
|
||||
# HTML Tidy with HTML5 support
|
||||
|
||||
Current development is taking place in the `develop-500` branch of this repository.
|
||||
_This is a temporay measure_, and the plan is move all current activity back to
|
||||
`Master` within a day or two (now=2015-02-12UTC+08:00).
|
||||
## Prerequisites
|
||||
|
||||
# HTML Tidy for HTML5 (experimental)
|
||||
1. git - http://git-scm.com/book/en/v2/Getting-Started-Installing-Git
|
||||
|
||||
2. cmake - http://www.cmake.org/download/
|
||||
|
||||
3. appropriate build tools for the platform
|
||||
|
||||
CMake comes in two forms - command line and gui. Some installations only install one or the other, but sometimes both. The build commands below are only for the command line use.
|
||||
|
||||
This repo is an experimental fork of the code from [tidy.sourceforge.net][1].
|
||||
This source code in this version supports processing of HTML5 documents. The
|
||||
changes for HTML5 support started from a [patch developed by Björn Höhrmann][2].
|
||||
Also the actual build tools vary for each platform. But that is one of the great features of cmake, it can generate variuous 'native' build files. Running cmake without any paramaters will list the generators available on that platform. For sure one of the common ones is "Unix Makefiles", which needs autotools make installed, but many other generators are supported.
|
||||
|
||||
[1]: http://tidy.sourceforge.net
|
||||
In windows cmake offers various versions of MSVC. Again below only the command line use of MSVC is shown, but the tiyd solution (*.sln) file can be loaded into the MSVC IDE, and the building done in there.
|
||||
|
||||
[2]: http://lists.w3.org/Archives/Public/www-archive/2011Nov/0007.html
|
||||
|
||||
For more information, see [w3c.github.com/tidy-html5][3]
|
||||
## Build the tidy library and command line tool
|
||||
|
||||
[3]: http://w3c.github.com/tidy-html5/
|
||||
1. `cd build/cmake`
|
||||
|
||||
## Building the tidy command-line tool
|
||||
2. `cmake ../.. [-DCMAKE_INSTALL_PREFIX=/path/for/install]`
|
||||
|
||||
For Linux/BSD/OSX platforms, you can build and install the `tidy` command-line
|
||||
tool from the source code using the following steps.
|
||||
3. Windows: `cmake --build . --config Release`
|
||||
Unix/OS X: `make`
|
||||
|
||||
1. `make -C build/gmake/`
|
||||
4. Install, if desired:
|
||||
Windows: `cmake --build . --config Release --target INSTALL`
|
||||
Unix/OS X: `[sudo] make install`
|
||||
|
||||
2. `make install -C build/gmake/`
|
||||
|
||||
Note that you will either need to run `make install` as root, or with `sudo make
|
||||
install`.
|
||||
## History
|
||||
|
||||
## Building the libtidy shared library
|
||||
This repository should be considered canonical for HTML Tidy as of 2015-January-15.
|
||||
|
||||
For Linux/BSD/OSX platforms, you can build and install the `tidylib` shared
|
||||
library (for use in building other applications) from the source code using the
|
||||
following steps.
|
||||
- This repository originally transferred from [w3c.github.com/tidy-html5][1].
|
||||
|
||||
- First moved to Github from [tidy.sourceforge.net][2].
|
||||
|
||||
1. `sh build/gnuauto/setup.sh && ./configure && make`
|
||||
|
||||
2. `make install`
|
||||
[1]: http://w3c.github.com/tidy-html5/
|
||||
|
||||
[2]: http://tidy.sourceforge.net
|
||||
|
||||
Note that you will either need to run `make install` as root, or with `sudo make
|
||||
install`.
|
||||
|
|
21
build/cmake/.gitignore
vendored
Normal file
|
@ -0,0 +1,21 @@
|
|||
*.vcxproj
|
||||
*.filters
|
||||
CMakeCache.txt
|
||||
CMakeFiles/*
|
||||
Debug/*
|
||||
Release/*
|
||||
Win32/*
|
||||
bldlog-1.txt
|
||||
cmake_install.cmake
|
||||
*.dir/
|
||||
*.sln
|
||||
temp*
|
||||
*.opensdf
|
||||
ipch/*
|
||||
Makefile
|
||||
tab2space
|
||||
tidy5
|
||||
libtidy5*
|
||||
install_manifest.txt
|
||||
test71
|
||||
|
118
build/cmake/build-me.bat
Normal file
|
@ -0,0 +1,118 @@
|
|||
@setlocal
|
||||
|
||||
@set TMPVER=1
|
||||
@set TMPPRJ=tidy5
|
||||
@set TMPSRC=..\..
|
||||
@set TMPBGN=%TIME%
|
||||
@set TMPINS=..\..\..\3rdParty
|
||||
@set DOTINST=0
|
||||
@set TMPLOG=bldlog-1.txt
|
||||
|
||||
@set TMPOPTS=-DCMAKE_INSTALL_PREFIX=%TMPINS%
|
||||
:RPT
|
||||
@if "%~1x" == "x" goto GOTCMD
|
||||
@set TMPOPTS=%TMPOPTS% %1
|
||||
@shift
|
||||
@goto RPT
|
||||
:GOTCMD
|
||||
|
||||
@call chkmsvc %TMPPRJ%
|
||||
|
||||
@echo Build %DATE% %TIME% > %TMPLOG%
|
||||
|
||||
@if NOT EXIST %TMPSRC%\nul goto NOSRC
|
||||
|
||||
@echo Build source %TMPSRC%... all output to build log %TMPLOG%
|
||||
@echo Build source %TMPSRC%... all output to build log %TMPLOG% >> %TMPLOG%
|
||||
|
||||
@if EXIST build-cmake.bat (
|
||||
@call build-cmake >> %TMPLOG%
|
||||
)
|
||||
|
||||
@if NOT EXIST %TMPSRC%\CMakeLists.txt goto NOCM
|
||||
|
||||
cmake %TMPSRC% %TMPOPTS% >> %TMPLOG% 2>&1
|
||||
@if ERRORLEVEL 1 goto ERR1
|
||||
|
||||
cmake --build . --config Debug >> %TMPLOG% 2>&1
|
||||
@if ERRORLEVEL 1 goto ERR2
|
||||
|
||||
cmake --build . --config Release >> %TMPLOG% 2>&1
|
||||
@if ERRORLEVEL 1 goto ERR3
|
||||
|
||||
@fa4 "***" %TMPLOG%
|
||||
@call elapsed %TMPBGN%
|
||||
@echo Appears a successful build... see %TMPLOG%
|
||||
|
||||
@if "%DOTINST%x" == "0x" goto DNTINST
|
||||
@echo Building installation zips... moment...
|
||||
@call build-zips Debug
|
||||
@call build-zips Release
|
||||
@echo Done installation zips...
|
||||
:DNTINST
|
||||
|
||||
@echo.
|
||||
@echo No install at this time, but there is a updexe.bat to copy the EXE to c:\MDOS...
|
||||
@goto END
|
||||
|
||||
|
||||
@echo Continue with install? Only Ctrl+c aborts...
|
||||
|
||||
@pause
|
||||
|
||||
cmake --build . --config Debug --target INSTALL >> %TMPLOG% 2>&1
|
||||
@if EXIST install_manifest.txt (
|
||||
@copy install_manifest.txt install_manifest_dbg.txt >nul
|
||||
@echo. >> %TMPINS%/installed.txt
|
||||
@echo = %TMPRJ% Debug install %DATE% %TIME% >> %TMPINS%/installed.txt
|
||||
@type install_manifest.txt >> %TMPINS%/installed.txt
|
||||
)
|
||||
|
||||
cmake --build . --config Release --target INSTALL >> %TMPLOG% 2>&1
|
||||
@if EXIST install_manifest.txt (
|
||||
@copy install_manifest.txt install_manifest_rel.txt >nul
|
||||
@echo. >> %TMPINS%/installed.txt
|
||||
@echo = %TMPRJ% Release install %DATE% %TIME% >> %TMPINS%/installed.txt
|
||||
@type install_manifest.txt >> %TMPINS%/installed.txt
|
||||
)
|
||||
|
||||
@call elapsed %TMPBGN%
|
||||
@echo All done... see %TMPLOG%
|
||||
|
||||
@goto END
|
||||
|
||||
:NOSRC
|
||||
@echo Can NOT locate source %TMPSRC%! *** FIX ME ***
|
||||
@echo Can NOT locate source %TMPSRC%! *** FIX ME *** >> %TMPLOG%
|
||||
@goto ISERR
|
||||
|
||||
:NOCM
|
||||
@echo Can NOT locate %TMPSRC%\CMakeLists.txt!
|
||||
@echo Can NOT locate %TMPSRC%\CMakeLists.txt! >> %TMPLOG%
|
||||
@goto ISERR
|
||||
|
||||
:ERR1
|
||||
@echo cmake configuration or generations ERROR
|
||||
@echo cmake configuration or generations ERROR >> %TMPLOG%
|
||||
@goto ISERR
|
||||
|
||||
:ERR2
|
||||
@echo ERROR: Cmake build Debug FAILED!
|
||||
@echo ERROR: Cmake build Debug FAILED! >> %TMPLOG%
|
||||
@goto ISERR
|
||||
|
||||
:ERR1
|
||||
@echo ERROR: Cmake build Release FAILED!
|
||||
@echo ERROR: Cmake build Release FAILED! >> %TMPLOG%
|
||||
@goto ISERR
|
||||
|
||||
:ISERR
|
||||
@echo See %TMPLOG% for details...
|
||||
@endlocal
|
||||
@exit /b 1
|
||||
|
||||
:END
|
||||
@endlocal
|
||||
@exit /b 0
|
||||
|
||||
@REM eof
|
49
build/cmake/build-me.sh
Executable file
|
@ -0,0 +1,49 @@
|
|||
#!/bin/sh
|
||||
#< build-me.sh - 20150212 - 20140804
|
||||
BN=`basename $0`
|
||||
|
||||
TMPSRC="../.."
|
||||
BLDLOG="bldlog-1.txt"
|
||||
|
||||
if [ -f "$BLDLOG" ]; then
|
||||
rm -f $BLDLOG
|
||||
fi
|
||||
|
||||
TMPOPTS=""
|
||||
##############################################
|
||||
### ***** NOTE THIS INSTALL LOCATION ***** ###
|
||||
### Change to suit your taste, environment ###
|
||||
##############################################
|
||||
# TMPINST="$HOME/projects/install/tidy"
|
||||
# TMPOPTS="-DCMAKE_INSTALL_PREFIX=$TMPINST"
|
||||
#############################################
|
||||
# To build SHARED library
|
||||
# TMPOPTS="$TMPOPTS -DBUILD_SHARED_LIB:BOOL=TRUE"
|
||||
|
||||
for arg in $@; do
|
||||
TMPOPTS="$TMPOPTS $arg"
|
||||
done
|
||||
|
||||
|
||||
echo "$BN: Doing: 'cmake $TMPSRC $TMPOPTS' to $BLDLOG"
|
||||
cmake $TMPSRC $TMPOPTS >> $BLDLOG 2>&1
|
||||
if [ ! "$?" = "0" ]; then
|
||||
echo "$BN: cmake confiuration, generation error"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
echo "$BN: Doing: 'make' to $BLDLOG"
|
||||
make >> $BLDLOG 2>&1
|
||||
if [ ! "$?" = "0" ]; then
|
||||
echo "$BN: make error - see $BLDLOG for details"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
echo ""
|
||||
echo "$BN: appears a successful build... see $BLDLOG for details"
|
||||
echo ""
|
||||
echo "$BN: Time for '[sudo] make install' IFF desired..."
|
||||
echo ""
|
||||
|
||||
# eof
|
||||
|
9
build/cmake/cmake-clean.txt
Normal file
|
@ -0,0 +1,9 @@
|
|||
bldlog-1.txt
|
||||
libtidy5.a
|
||||
tab2space
|
||||
tidy5
|
||||
libtidy5.so
|
||||
libtidy5.so.5
|
||||
libtidy5.so.5.0.0
|
||||
install_manifest.txt
|
||||
|
57
build/cmake/updexe.bat
Normal file
|
@ -0,0 +1,57 @@
|
|||
@setlocal
|
||||
@REM copy the EXE into C:\MDOS, IFF changed
|
||||
@set TMPDIR=C:\MDOS
|
||||
@set TMPFIL1=tidy5.exe
|
||||
@set TMPFIL2=tidy5-32.exe
|
||||
@set TMPSRC=Release\%TMPFIL1%
|
||||
@if NOT EXIST %TMPSRC% goto ERR1
|
||||
@echo Current source %TMPSRC%
|
||||
@call dirmin %TMPSRC%
|
||||
|
||||
@if NOT EXIST %TMPDIR%\nul goto ERR2
|
||||
@set TMPDST=%TMPDIR%\%TMPFIL2%
|
||||
@if NOT EXIST %TMPDST% goto DOCOPY
|
||||
|
||||
@echo Current destination %TMPDST%
|
||||
@call dirmin %TMPDST%
|
||||
|
||||
@REM Compare
|
||||
@fc4 -q -v0 -b %TMPSRC% %TMPDST% >nul
|
||||
@if ERRORLEVEL 2 goto NOFC4
|
||||
@if ERRORLEVEL 1 goto DOCOPY
|
||||
@echo.
|
||||
@echo Files are the SAME... Nothing done...
|
||||
@echo.
|
||||
@goto END
|
||||
|
||||
:NOFC4
|
||||
@echo Can NOT run fc4! so doing copy...
|
||||
:DOCOPY
|
||||
copy %TMPSRC% %TMPDST%
|
||||
@if NOT EXIST %TMPDST% goto ERR3
|
||||
@call dirmin %TMPDST%
|
||||
@echo Done file update...
|
||||
@goto END
|
||||
|
||||
:ERR1
|
||||
@echo Source %TMPSRC% does NOT exist! Has it been built? *** FIX ME ***
|
||||
@goto ISERR
|
||||
|
||||
:ERR2
|
||||
@echo Destination %TMPDIR% does NOT exist!
|
||||
@goto ISERR
|
||||
|
||||
:ERR3
|
||||
@echo Copy of %TMPSRC% to %TMPDST% FAILED!
|
||||
@goto ISERR
|
||||
|
||||
:ISERR
|
||||
@endlocal
|
||||
@exit /b 1
|
||||
|
||||
:END
|
||||
@endlocal
|
||||
@exit /b 0
|
||||
|
||||
@REM eof
|
||||
|
101
build/documentation/README.md
Normal file
|
@ -0,0 +1,101 @@
|
|||
# DOCUMENTATION HOW-TO
|
||||
|
||||
**HTML Tidy** provides several types of documentation to suit different purposes. This
|
||||
document describes how to generate the following:
|
||||
|
||||
- `tidylib_api/` (directory)
|
||||
|
||||
- This collection of documents describes the **TidyLib** API and is generated from the
|
||||
comments and code in the **Tidy** source code.
|
||||
|
||||
- `quickref.html`
|
||||
|
||||
- This document provides a nice, readable HTML document describing all of the options and
|
||||
settings that you can use with **Tidy** and internally in **TidyLib**.
|
||||
|
||||
- `tidy.1`
|
||||
|
||||
- This document is a Mac/Linux/Unix standard `man` page.
|
||||
|
||||
|
||||
## The easy way
|
||||
|
||||
In this directory you can find the shell script `build_docs.sh`, and that will build all
|
||||
of the documentation into the `temp/` directory (i.e., `{tidy}/build/documentation/temp`).
|
||||
|
||||
Please note these prerequisites:
|
||||
|
||||
- It's a Mac/Linux/Unix shell script.
|
||||
- Doxygen is required to generate the API documentation.
|
||||
- xsltproc is required to generate the man page and the `quickref.html` file.
|
||||
|
||||
If you prefer to understand how to do this manually (for example, for integration into
|
||||
other scripts, build systems, or IDEs), read on.
|
||||
|
||||
|
||||
## Manually
|
||||
|
||||
|
||||
### `tidylib_api/` (directory)
|
||||
|
||||
If you want to build the API documentation you must have [doxygen][1] installed.
|
||||
You can clone the [repository from github][2] if it is not currently installed.
|
||||
|
||||
Building as simple as:
|
||||
|
||||
~~~
|
||||
cd {tidy}/build/documentation/
|
||||
doxygen doxygen.cfg
|
||||
~~~
|
||||
|
||||
This will result in a document set in `{tidy}/build/documentation/temp/tidylib_api`,
|
||||
where you can find the main `index.html` file.
|
||||
|
||||
|
||||
### `quickref.html`
|
||||
|
||||
Note that these instructions require the standard `xsltproc` utility to build the file,
|
||||
but any XSLT processor of your choice should work, too.
|
||||
|
||||
- `tidy -xml-config > "tidy-config.xml"`
|
||||
|
||||
- This uses your up-to-date version of **Tidy** to generate an XML file containing all
|
||||
of **Tidy**’s built-in settings and their descriptions. This file is only temporary,
|
||||
as it will be transformed in the next step.
|
||||
|
||||
- `xsltproc "quickref.xsl" "tidy-config.xml" > "quickref.html"`
|
||||
|
||||
- This examples uses the `xsltproc` command to transform `tidy-config.xml` using the
|
||||
rules in the `quickref.xsl` stylesheet, and output it to `quickref.html`.
|
||||
|
||||
|
||||
|
||||
### `tidy.1`
|
||||
|
||||
Note that these instructions require the standard `xsltproc` utility to build the file,
|
||||
but any XSLT processor of your choice should work, too.
|
||||
|
||||
- `tidy -xml-config > "tidy-config.xml"`
|
||||
|
||||
- This uses your up-to-date version of **Tidy** to generate an XML file containing all
|
||||
of **Tidy**’s built-in settings and their descriptions. This file is only temporary,
|
||||
as it will be transformed in the third step.
|
||||
|
||||
- `tidy -xml-help > "tidy-help.xml"`
|
||||
|
||||
- This uses your up-to-date version of **Tidy** to generate an XML file containing all
|
||||
of **Tidy**’s built-in help information. This file is only temporary,
|
||||
as it will be transformed in the next step.
|
||||
|
||||
- `xsltproc "tidy1.xsl" "tidy-help.xml" > "tidy.1"`
|
||||
|
||||
- This examples uses the `xsltproc` command to transform `tidy-help.xml` using the
|
||||
rules in the `tidy1.xsl` stylesheet, and output it to `tidy.1`.
|
||||
|
||||
Note that `tidy1.xls` includes the file `tidy-config.xml` as part of the stylesheet,
|
||||
and so although it does not appear in the command invocation, it is indeed required.
|
||||
|
||||
|
||||
|
||||
[1]: http://www.stack.nl/~dimitri/doxygen/
|
||||
[2]: https://github.com/doxygen/doxygen
|
119
build/documentation/build_docs.sh
Executable file
|
@ -0,0 +1,119 @@
|
|||
#!/bin/sh
|
||||
|
||||
# See cat << HEREDOC for file description.
|
||||
|
||||
|
||||
# Set this to the complete path of the tidy for which you want to generate
|
||||
# documentation. Relative path is okay. You shouldn't have to change this
|
||||
# too often if your compiler always puts tidy in the same place.
|
||||
|
||||
TIDY_PATH="./tidy5" # Current directory.
|
||||
|
||||
|
||||
cat << HEREDOC
|
||||
|
||||
Build 'tidy.1', which is a man page suitable for installation
|
||||
in all Unix-like operating systems. This script will build
|
||||
it, but not install it.
|
||||
|
||||
Build 'quickref.html'. This is distributed with the
|
||||
the Tidy source code and also used on Tidy's website.
|
||||
Be sure to distribute it with 'quickref.css' as well.
|
||||
|
||||
Build the 'tidylib_api' directory, which contains a website
|
||||
with the documentation for TidyLib’s headers.
|
||||
|
||||
These files will be built into '{current_dir}/temp'.
|
||||
|
||||
HEREDOC
|
||||
|
||||
|
||||
# Output and flags' declarations.
|
||||
DOXY_CFG="doxygen.cfg"
|
||||
OUTP_DIR="temp"
|
||||
BUILD_XSLT=1
|
||||
BUILD_API=1
|
||||
|
||||
|
||||
##
|
||||
# Ensure the output dir exists.
|
||||
##
|
||||
if [ ! -d "$OUTP_DIR" ]; then
|
||||
mkdir $OUTP_DIR
|
||||
fi
|
||||
|
||||
|
||||
##
|
||||
# Preflight
|
||||
##
|
||||
|
||||
# Check for a valid tidy.
|
||||
if [ ! -x "$TIDY_PATH" ]; then
|
||||
BUILD_XSLT=0
|
||||
echo "- '$TIDY_PATH' not found. You should set TIDY_PATH in this script."
|
||||
fi
|
||||
|
||||
# Check for xsltproc dependency.
|
||||
hash xsltproc 2>/dev/null || { echo "- xsltproc not found. You require an XSLT processor."; BUILD_XSLT=0; }
|
||||
|
||||
|
||||
##
|
||||
# Build 'quickref.html' and 'tidy.1'.
|
||||
##
|
||||
|
||||
if [ "$BUILD_XSLT" -eq 1 ]; then
|
||||
# Use the designated tidy to get its config and help.
|
||||
# These temporary files will be cleaned up later.
|
||||
$TIDY_PATH -xml-config > "tidy-config.xml"
|
||||
$TIDY_PATH -xml-help > "tidy-help.xml"
|
||||
|
||||
# 'quickref.html'
|
||||
xsltproc "quickref.xsl" "tidy-config.xml" > "$OUTP_DIR/quickref.html"
|
||||
|
||||
# 'tidy.1'
|
||||
xsltproc "tidy1.xsl" "$tidy-help.xml" > "$OUTP_DIR/tidy.1"
|
||||
|
||||
# Cleanup - Note: to avoid issues with the tidy1.xsl finding the tidy-config.xml
|
||||
# document, they are created and read from the source directory instead of temp.
|
||||
rm "tidy-config.xml"
|
||||
rm "tidy-help.xml"
|
||||
|
||||
echo "'quickref.html' and 'tidy.1' have been built.\n"
|
||||
else
|
||||
echo "* tidy.1 was skipped because not all dependencies were satisfied."
|
||||
fi
|
||||
|
||||
|
||||
##
|
||||
# Preflight
|
||||
##
|
||||
|
||||
# Check for the doxygen.cfg file.
|
||||
if [ ! -f "$DOXY_CFG" ]; then
|
||||
BUILD_API=0
|
||||
echo "- 'DOXY_CFG' not found. It is required to configure doxygen."
|
||||
fi
|
||||
|
||||
# Check for doxygen dependency.
|
||||
hash doxygen 2>/dev/null || { echo "- doxygen not found. This script requires doxygen."; BUILD_XSLT=0; }
|
||||
|
||||
|
||||
##
|
||||
# Build the doxygen project.
|
||||
##
|
||||
|
||||
if [ "$BUILD_API" -eq 1 ]; then
|
||||
echo "The following is doxygen's stderr output. It doesn't indicate errors with this script:\n"
|
||||
doxygen "$DOXY_CFG" > /dev/null
|
||||
echo "\nTidyLib API documentation has been built."
|
||||
else
|
||||
echo "* $OUTP_DIR/tidylib_api/ was skipped because not all dependencies were satisfied."
|
||||
fi
|
||||
|
||||
|
||||
##
|
||||
# Done
|
||||
##
|
||||
|
||||
echo "\nDone.\n"
|
||||
|
|
@ -1,4 +1,4 @@
|
|||
# Doxyfile 1.7.5.1
|
||||
# Doxyfile 1.8.9.1
|
||||
|
||||
# This file describes the settings to be used by the documentation system
|
||||
# doxygen (www.doxygen.org) for a project.
|
||||
|
@ -32,13 +32,13 @@ PROJECT_NAME = "HTML Tidy"
|
|||
# This could be handy for archiving the generated documentation or
|
||||
# if some version control system is used.
|
||||
|
||||
PROJECT_NUMBER = 0.1
|
||||
PROJECT_NUMBER = 4.9.15
|
||||
|
||||
# Using the PROJECT_BRIEF tag one can provide an optional one line description
|
||||
# for a project that appears at the top of each page and should give viewer
|
||||
# a quick idea about the purpose of the project. Keep the description short.
|
||||
|
||||
PROJECT_BRIEF =
|
||||
PROJECT_BRIEF = "The HTACG Tidy HTML Project"
|
||||
|
||||
# With the PROJECT_LOGO tag one can specify an logo or icon that is
|
||||
# included in the documentation. The maximum height of the logo should not
|
||||
|
@ -52,7 +52,7 @@ PROJECT_LOGO =
|
|||
# If a relative path is entered, it will be relative to the location
|
||||
# where doxygen was started. If left blank the current directory will be used.
|
||||
|
||||
OUTPUT_DIRECTORY = htmldoc
|
||||
OUTPUT_DIRECTORY = temp
|
||||
|
||||
# If the CREATE_SUBDIRS tag is set to YES, then doxygen will create
|
||||
# 4096 sub-directories (in 2 levels) under the output directory of each output
|
||||
|
@ -63,6 +63,13 @@ OUTPUT_DIRECTORY = htmldoc
|
|||
|
||||
CREATE_SUBDIRS = NO
|
||||
|
||||
# If the ALLOW_UNICODE_NAMES tag is set to YES, doxygen will allow
|
||||
# non-ASCII characters to appear in the names of generated files.
|
||||
# If set to NO, non-ASCII characters will be escaped, for example
|
||||
# _xE3_x81_x84 will be used for Unicode U+3044.
|
||||
|
||||
ALLOW_UNICODE_NAMES = NO
|
||||
|
||||
# The OUTPUT_LANGUAGE tag is used to specify the language in which all
|
||||
# documentation generated by doxygen is written. Doxygen will use this
|
||||
# information to generate all constant output in the proper language.
|
||||
|
@ -184,7 +191,7 @@ SEPARATE_MEMBER_PAGES = NO
|
|||
# The TAB_SIZE tag can be used to set the number of spaces in a tab.
|
||||
# Doxygen uses this value to replace tabs by spaces in code fragments.
|
||||
|
||||
TAB_SIZE = 8
|
||||
TAB_SIZE = 4
|
||||
|
||||
# This tag can be used to specify a number of aliases that acts
|
||||
# as commands in the documentation. An alias has the form "name=value".
|
||||
|
@ -233,6 +240,24 @@ OPTIMIZE_OUTPUT_VHDL = NO
|
|||
|
||||
EXTENSION_MAPPING =
|
||||
|
||||
# If the MARKDOWN_SUPPORT tag is enabled then doxygen pre-processes all comments
|
||||
# according to the Markdown format, which allows for more readable documentation.
|
||||
# See http://daringfireball.net/projects/markdown/ for details. The output of
|
||||
# markdown processing is further processed by doxygen, so you can mix doxygen,
|
||||
# HTML, and XML commands with Markdown formatting. Disable only in case of backward
|
||||
# compatibilities issues.
|
||||
# The default value is: YES.
|
||||
|
||||
MARKDOWN_SUPPORT = YES
|
||||
|
||||
# When enabled doxygen tries to link words that correspond to documented classes,
|
||||
# or namespaces to their corresponding documentation. Such a link can be prevented
|
||||
# in individual cases by putting a % sign in front of the word or globally by
|
||||
# setting AUTOLINK_SUPPORT to NO.
|
||||
# The default value is: YES.
|
||||
|
||||
AUTOLINK_SUPPORT = YES
|
||||
|
||||
# If you use STL classes (i.e. std::string, std::vector, etc.) but do not want
|
||||
# to include (a tag file for) the STL sources as input, then you should
|
||||
# set this tag to YES in order to let doxygen match functions declarations and
|
||||
|
@ -303,21 +328,18 @@ INLINE_SIMPLE_STRUCTS = NO
|
|||
|
||||
TYPEDEF_HIDES_STRUCT = NO
|
||||
|
||||
# The SYMBOL_CACHE_SIZE determines the size of the internal cache use to
|
||||
# determine which symbols to keep in memory and which to flush to disk.
|
||||
# When the cache is full, less often used symbols will be written to disk.
|
||||
# For small to medium size projects (<1000 input files) the default value is
|
||||
# probably good enough. For larger projects a too small cache size can cause
|
||||
# doxygen to be busy swapping symbols to and from disk most of the time
|
||||
# causing a significant performance penalty.
|
||||
# If the system has enough physical memory increasing the cache will improve the
|
||||
# performance by keeping more symbols in memory. Note that the value works on
|
||||
# a logarithmic scale so increasing the size by one will roughly double the
|
||||
# memory usage. The cache size is given by this formula:
|
||||
# 2^(16+SYMBOL_CACHE_SIZE). The valid range is 0..9, the default is 0,
|
||||
# corresponding to a cache size of 2^16 = 65536 symbols
|
||||
# The size of the symbol lookup cache can be set using LOOKUP_CACHE_SIZE. This
|
||||
# cache is used to resolve symbols given their name and scope. Since this can
|
||||
# be an expensive process and often the same symbol appears multiple times in
|
||||
# the code, doxygen keeps a cache of pre-resolved symbols. If the cache is too
|
||||
# small doxygen will become slower. If the cache is too large, memory is wasted.
|
||||
# The cache size is given by this formula: $2^{(16+\mbox{LOOKUP\_CACHE\_SIZE})}$.
|
||||
# The valid range is 0..9, the default is 0, corresponding to a cache size of
|
||||
# $2^{16} = 65536$ symbols. At the end of a run doxygen will report the cache
|
||||
# usage and suggest the optimal cache size from a speed point of view.
|
||||
# Minimum value: 0, maximum value: 9, default value: 0.
|
||||
|
||||
SYMBOL_CACHE_SIZE = 0
|
||||
LOOKUP_CACHE_SIZE = 0
|
||||
|
||||
#---------------------------------------------------------------------------
|
||||
# Build related configuration options
|
||||
|
@ -335,6 +357,12 @@ EXTRACT_ALL = NO
|
|||
|
||||
EXTRACT_PRIVATE = NO
|
||||
|
||||
# If the EXTRACT_PACKAGE tag is set to YES, all members with package or
|
||||
# internal scope will be included in the documentation.
|
||||
# The default value is: NO.
|
||||
|
||||
EXTRACT_PACKAGE = NO
|
||||
|
||||
# If the EXTRACT_STATIC tag is set to YES all static members of a file
|
||||
# will be included in the documentation.
|
||||
|
||||
|
@ -411,12 +439,26 @@ CASE_SENSE_NAMES = YES
|
|||
|
||||
HIDE_SCOPE_NAMES = NO
|
||||
|
||||
# If the HIDE_COMPOUND_REFERENCE tag is set to NO (default) then doxygen will
|
||||
# append additional text to a page's title, such as Class Reference. If set to
|
||||
# YES the compound reference will be hidden.
|
||||
# The default value is: NO.
|
||||
|
||||
HIDE_COMPOUND_REFERENCE = NO
|
||||
|
||||
# If the SHOW_INCLUDE_FILES tag is set to YES (the default) then Doxygen
|
||||
# will put a list of the files that are included by a file in the documentation
|
||||
# of that file.
|
||||
|
||||
SHOW_INCLUDE_FILES = YES
|
||||
|
||||
# If the SHOW_GROUPED_MEMB_INC tag is set to YES then Doxygen will add for each
|
||||
# grouped member an include statement to the documentation, telling the reader
|
||||
# which file to include in order to use the member.
|
||||
# The default value is: NO.
|
||||
|
||||
SHOW_GROUPED_MEMB_INC = NO
|
||||
|
||||
# If the FORCE_LOCAL_INCLUDES tag is set to YES then Doxygen
|
||||
# will list include files with double quotes in the documentation
|
||||
# rather than with sharp brackets.
|
||||
|
@ -522,12 +564,6 @@ MAX_INITIALIZER_LINES = 30
|
|||
|
||||
SHOW_USED_FILES = YES
|
||||
|
||||
# If the sources in your project are distributed over multiple directories
|
||||
# then setting the SHOW_DIRECTORIES tag to YES will show the directory hierarchy
|
||||
# in the documentation. The default is NO.
|
||||
|
||||
SHOW_DIRECTORIES = NO
|
||||
|
||||
# Set the SHOW_FILES tag to NO to disable the generation of the Files page.
|
||||
# This will remove the Files entry from the Quick Index and from the
|
||||
# Folder Tree View (if specified). The default is YES.
|
||||
|
@ -629,7 +665,7 @@ WARN_LOGFILE =
|
|||
# directories like "/usr/src/myproject". Separate the files or directories
|
||||
# with spaces.
|
||||
|
||||
INPUT = include
|
||||
INPUT = "../../include"
|
||||
|
||||
# This tag can be used to specify the character encoding of the source files
|
||||
# that doxygen parses. Internally doxygen uses the UTF-8 encoding, which is
|
||||
|
@ -660,7 +696,7 @@ RECURSIVE = NO
|
|||
# subdirectory from a directory tree whose root is specified with the INPUT tag.
|
||||
# Note that relative paths are relative to directory from which doxygen is run.
|
||||
|
||||
EXCLUDE = include\platform.h
|
||||
EXCLUDE = ../include/platform.h
|
||||
|
||||
# The EXCLUDE_SYMLINKS tag can be used select whether or not files or
|
||||
# directories that are symbolic links (a Unix file system feature) are excluded
|
||||
|
@ -746,6 +782,13 @@ FILTER_SOURCE_FILES = NO
|
|||
|
||||
FILTER_SOURCE_PATTERNS =
|
||||
|
||||
# If the USE_MDFILE_AS_MAINPAGE tag refers to the name of a markdown file that
|
||||
# is part of the input, its contents will be placed on the main page (index.html).
|
||||
# This can be useful if you have a project on for instance GitHub and want to
|
||||
# reuse the introduction page also for the doxygen output.
|
||||
|
||||
USE_MDFILE_AS_MAINPAGE =
|
||||
|
||||
#---------------------------------------------------------------------------
|
||||
# configuration options related to source browsing
|
||||
#---------------------------------------------------------------------------
|
||||
|
@ -788,6 +831,16 @@ REFERENCES_RELATION = YES
|
|||
|
||||
REFERENCES_LINK_SOURCE = YES
|
||||
|
||||
# If SOURCE_TOOLTIPS is enabled (the default) then hovering a hyperlink
|
||||
# in the source code will show a tooltip with additional information
|
||||
# such as prototype, brief description and links to the definition and
|
||||
# documentation. Since this will make the HTML file larger and loading
|
||||
# of large files a bit slower, you can opt to disable this feature.
|
||||
# The default value is: YES.
|
||||
# This tag requires that the tag SOURCE_BROWSER is set to YES.
|
||||
|
||||
SOURCE_TOOLTIPS = YES
|
||||
|
||||
# If the USE_HTAGS tag is set to YES then the references to source code
|
||||
# will point to the HTML generated by the htags(1) tool instead of doxygen
|
||||
# built-in source browser. The htags tool is part of GNU's global source
|
||||
|
@ -802,6 +855,25 @@ USE_HTAGS = NO
|
|||
|
||||
VERBATIM_HEADERS = YES
|
||||
|
||||
|
||||
# If the CLANG_ASSISTED_PARSING tag is set to YES then doxygen will use
|
||||
# the clang parser for more accurate parsing at the cost of reduced
|
||||
# performance. This can be particularly helpful with template rich C++
|
||||
# code for which doxygen's built-in parser lacks the necessary type information.
|
||||
# Note: The availability of this option depends on whether or not doxygen
|
||||
# was compiled with the --with-libclang option.
|
||||
# The default value is: NO.
|
||||
|
||||
# CLANG_ASSISTED_PARSING = NO
|
||||
|
||||
# If clang assisted parsing is enabled you can provide the compiler with command
|
||||
# line options that you would normally use when invoking the compiler. Note that
|
||||
# the include paths will already be set by doxygen for the files and directories
|
||||
# specified with INPUT and INCLUDE_PATH.
|
||||
# This tag requires that the tag CLANG_ASSISTED_PARSING is set to YES.
|
||||
|
||||
# CLANG_OPTIONS =
|
||||
|
||||
#---------------------------------------------------------------------------
|
||||
# configuration options related to the alphabetical class index
|
||||
#---------------------------------------------------------------------------
|
||||
|
@ -838,7 +910,7 @@ GENERATE_HTML = YES
|
|||
# If a relative path is entered the value of OUTPUT_DIRECTORY will be
|
||||
# put in front of it. If left blank `html' will be used as the default path.
|
||||
|
||||
HTML_OUTPUT = api
|
||||
HTML_OUTPUT = "tidylib_api"
|
||||
|
||||
# The HTML_FILE_EXTENSION tag can be used to specify the file extension for
|
||||
# each generated HTML page (for example: .htm,.php,.asp). If it is left blank
|
||||
|
@ -874,6 +946,15 @@ HTML_FOOTER =
|
|||
|
||||
HTML_STYLESHEET =
|
||||
|
||||
# The HTML_EXTRA_STYLESHEET tag can be used to specify additional user-defined
|
||||
# cascading style sheets that are included after the standard style sheets
|
||||
# created by doxygen. Using this option one can overrule certain style aspects.
|
||||
# This is preferred over using HTML_STYLESHEET since it does not replace the
|
||||
# standard style sheet and is therefore more robust against future updates.
|
||||
# Doxygen will copy the style sheet files to the output directory.
|
||||
|
||||
HTML_EXTRA_STYLESHEET =
|
||||
|
||||
# The HTML_EXTRA_FILES tag can be used to specify one or more extra images or
|
||||
# other source files which should be copied to the HTML output directory. Note
|
||||
# that these files will be copied to the base HTML output directory. Use the
|
||||
|
@ -914,12 +995,6 @@ HTML_COLORSTYLE_GAMMA = 80
|
|||
|
||||
HTML_TIMESTAMP = YES
|
||||
|
||||
# If the HTML_ALIGN_MEMBERS tag is set to YES, the members of classes,
|
||||
# files or namespaces will be aligned in HTML using tables. If set to
|
||||
# NO a bullet list will be used.
|
||||
|
||||
HTML_ALIGN_MEMBERS = YES
|
||||
|
||||
# If the HTML_DYNAMIC_SECTIONS tag is set to YES then the generated HTML
|
||||
# documentation will contain sections that can be hidden and shown after the
|
||||
# page has loaded. For this to work a browser that supports
|
||||
|
@ -928,6 +1003,19 @@ HTML_ALIGN_MEMBERS = YES
|
|||
|
||||
HTML_DYNAMIC_SECTIONS = NO
|
||||
|
||||
# With HTML_INDEX_NUM_ENTRIES one can control the preferred number of entries
|
||||
# shown in the various tree structured indices initially; the user can expand
|
||||
# and collapse entries dynamically later on. Doxygen will expand the tree to
|
||||
# such a level that at most the specified number of entries are visible (unless
|
||||
# a fully collapsed tree already exceeds this amount). So setting the number
|
||||
# of entries 1 will produce a full collapsed tree by default. 0 is a special
|
||||
# value representing an infinite number of entries and will result in a full
|
||||
# expanded tree by default.
|
||||
# Minimum value: 0, maximum value: 9999, default value: 100.
|
||||
# This tag requires that the tag GENERATE_HTML is set to YES.
|
||||
|
||||
HTML_INDEX_NUM_ENTRIES =
|
||||
|
||||
# If the GENERATE_DOCSET tag is set to YES, additional index files
|
||||
# will be generated that can be used as input for Apple's Xcode 3
|
||||
# integrated development environment, introduced with OSX 10.5 (Leopard).
|
||||
|
@ -1085,13 +1173,6 @@ ECLIPSE_DOC_ID = org.doxygen.Project
|
|||
|
||||
DISABLE_INDEX = YES
|
||||
|
||||
# The ENUM_VALUES_PER_LINE tag can be used to set the number of enum values
|
||||
# (range [0,1..20]) that doxygen will group on one line in the generated HTML
|
||||
# documentation. Note that a value of 0 will completely suppress the enum
|
||||
# values from appearing in the overview section.
|
||||
|
||||
ENUM_VALUES_PER_LINE = 1
|
||||
|
||||
# The GENERATE_TREEVIEW tag is used to specify whether a tree-like index
|
||||
# structure should be generated to display hierarchical information.
|
||||
# If the tag value is set to YES, a side panel will be generated
|
||||
|
@ -1102,10 +1183,12 @@ ENUM_VALUES_PER_LINE = 1
|
|||
|
||||
GENERATE_TREEVIEW = YES
|
||||
|
||||
# By enabling USE_INLINE_TREES, doxygen will generate the Groups, Directories,
|
||||
# and Class Hierarchy pages using a tree view instead of an ordered list.
|
||||
# The ENUM_VALUES_PER_LINE tag can be used to set the number of enum values
|
||||
# (range [0,1..20]) that doxygen will group on one line in the generated HTML
|
||||
# documentation. Note that a value of 0 will completely suppress the enum
|
||||
# values from appearing in the overview section.
|
||||
|
||||
USE_INLINE_TREES = NO
|
||||
ENUM_VALUES_PER_LINE = 1
|
||||
|
||||
# If the treeview is enabled (see GENERATE_TREEVIEW) then this tag can be
|
||||
# used to set the initial width (in pixels) of the frame in which the tree
|
||||
|
@ -1143,6 +1226,15 @@ FORMULA_TRANSPARENT = YES
|
|||
|
||||
USE_MATHJAX = NO
|
||||
|
||||
# When MathJax is enabled you can set the default output format to be used
|
||||
# for the MathJax output. See the MathJax site for more details.
|
||||
# Possible values are: HTML-CSS (which is slower, but has the best compatibility),
|
||||
# NativeMML (i.e. MathML) and SVG.
|
||||
# The default value is: HTML-CSS.
|
||||
# This tag requires that the tag USE_MATHJAX is set to YES.
|
||||
|
||||
MATHJAX_FORMAT = HTML-CSS
|
||||
|
||||
# When MathJax is enabled you need to specify the location relative to the
|
||||
# HTML output directory using the MATHJAX_RELPATH option. The destination
|
||||
# directory should contain the MathJax.js script. For instance, if the mathjax
|
||||
|
@ -1159,6 +1251,12 @@ MATHJAX_RELPATH = http://www.mathjax.org/mathjax
|
|||
|
||||
MATHJAX_EXTENSIONS =
|
||||
|
||||
# The MATHJAX_CODEFILE tag can be used to specify a file with javascript pieces
|
||||
# of code that will be used on startup of the MathJax code.
|
||||
# See the MathJax site for more details.
|
||||
|
||||
MATHJAX_CODEFILE =
|
||||
|
||||
# When the SEARCHENGINE tag is enabled doxygen will generate a search box
|
||||
# for the HTML output. The underlying search engine uses javascript
|
||||
# and DHTML and should work on any modern browser. Note that when using
|
||||
|
@ -1179,6 +1277,55 @@ SEARCHENGINE = NO
|
|||
|
||||
SERVER_BASED_SEARCH = NO
|
||||
|
||||
# When EXTERNAL_SEARCH tag is enabled doxygen will no longer generate the PHP
|
||||
# script for searching. Instead the search results are written to an XML file
|
||||
# which needs to be processed by an external indexer. Doxygen will invoke an
|
||||
# external search engine pointed to by the SEARCHENGINE_URL option to obtain
|
||||
# the search results.
|
||||
# Doxygen ships with an example indexer (doxyindexer) and search engine (doxysearch.cgi)
|
||||
# which are based on the open source search engine library Xapian.
|
||||
# See the section External Indexing and Searching for details.
|
||||
# The default value is: NO.
|
||||
# This tag requires that the tag SEARCHENGINE is set to YES.
|
||||
|
||||
EXTERNAL_SEARCH = NO
|
||||
|
||||
# The SEARCHENGINE_URL should point to a search engine hosted by a web server
|
||||
# which will return the search results when EXTERNAL_SEARCH is enabled.
|
||||
# Doxygen ships with an example indexer (doxyindexer) and search engine
|
||||
# (doxysearch.cgi) which are based on the open source search engine library
|
||||
# Xapian. See the section External Indexing and Searching for details.
|
||||
# This tag requires that the tag SEARCHENGINE is set to YES.
|
||||
|
||||
SEARCHENGINE_URL =
|
||||
|
||||
# When SERVER_BASED_SEARCH and EXTERNAL_SEARCH are both enabled the unindexed
|
||||
# search data is written to a file for indexing by an external tool. With the
|
||||
# SEARCHDATA_FILE tag the name of this file can be specified.
|
||||
# The default file is: searchdata.xml.
|
||||
# This tag requires that the tag SEARCHENGINE is set to YES.
|
||||
|
||||
SEARCHDATA_FILE =
|
||||
|
||||
# When SERVER_BASED_SEARCH and EXTERNAL_SEARCH are both enabled the
|
||||
# EXTERNAL_SEARCH_ID tag can be used as an identifier for the project. This is
|
||||
# useful in combination with EXTRA_SEARCH_MAPPINGS to search through multiple
|
||||
# projects and redirect the results back to the right project.
|
||||
#This tag requires that the tag SEARCHENGINE is set to YES.
|
||||
|
||||
EXTERNAL_SEARCH_ID =
|
||||
|
||||
# The EXTRA_SEARCH_MAPPINGS tag can be used to enable searching through doxygen
|
||||
# projects other than the one defined by this configuration file, but that are all
|
||||
# added to the same external search index. Each project needs to have a unique id
|
||||
# set via EXTERNAL_SEARCH_ID. The search mapping then maps the id of to a relative
|
||||
# location where the documentation can be found.
|
||||
# The format is:
|
||||
# EXTRA_SEARCH_MAPPINGS = tagname1=loc1 tagname2=loc2 ...
|
||||
# This tag requires that the tag SEARCHENGINE is set to YES.
|
||||
|
||||
EXTRA_SEARCH_MAPPINGS =
|
||||
|
||||
#---------------------------------------------------------------------------
|
||||
# configuration options related to the LaTeX output
|
||||
#---------------------------------------------------------------------------
|
||||
|
@ -1338,7 +1485,7 @@ MAN_OUTPUT = man
|
|||
# The MAN_EXTENSION tag determines the extension that is added to
|
||||
# the generated man pages (default is the subroutine's section .3)
|
||||
|
||||
MAN_EXTENSION = .3
|
||||
MAN_EXTENSION = .1
|
||||
|
||||
# If the MAN_LINKS tag is set to YES and Doxygen generates man output,
|
||||
# then it will generate one additional man file for each entity
|
||||
|
@ -1368,13 +1515,13 @@ XML_OUTPUT = xml
|
|||
# which can be used by a validating XML parser to check the
|
||||
# syntax of the XML files.
|
||||
|
||||
XML_SCHEMA =
|
||||
# XML_SCHEMA =
|
||||
|
||||
# The XML_DTD tag can be used to specify an XML DTD,
|
||||
# which can be used by a validating XML parser to check the
|
||||
# syntax of the XML files.
|
||||
|
||||
XML_DTD =
|
||||
# XML_DTD =
|
||||
|
||||
# If the XML_PROGRAMLISTING tag is set to YES Doxygen will
|
||||
# dump the program listings (including syntax highlighting
|
||||
|
@ -1536,6 +1683,13 @@ ALLEXTERNALS = NO
|
|||
|
||||
EXTERNAL_GROUPS = YES
|
||||
|
||||
# If the EXTERNAL_PAGES tag is set to YES, all external pages will be listed
|
||||
# in the related pages index. If set to NO, only the current project's pages
|
||||
# will be listed.
|
||||
# The default value is: YES.
|
||||
|
||||
EXTERNAL_PAGES =
|
||||
|
||||
# The PERL_PATH should be the absolute path and name of the perl script
|
||||
# interpreter (i.e. the result of `which perl').
|
||||
|
||||
|
@ -1562,6 +1716,13 @@ CLASS_DIAGRAMS = NO
|
|||
|
||||
MSCGEN_PATH =
|
||||
|
||||
# You can include diagrams made with dia in doxygen documentation. Doxygen will
|
||||
# then run dia to produce the diagram and insert it in the documentation.
|
||||
# The DIA_PATH tag allows you to specify the directory where the dia binary
|
||||
# resides. If left empty dia is assumed to be found in the default search path.
|
||||
|
||||
DIA_PATH =
|
||||
|
||||
# If set to YES, the inheritance and collaboration graphs will hide
|
||||
# inheritance and usage relations if the target is undocumented
|
||||
# or is not a class.
|
|
@ -24,7 +24,7 @@
|
|||
<html lang="en" xml:lang="en" xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head>
|
||||
<title>HTML Tidy Configuration Options Quick Reference</title>
|
||||
<link type="text/css" rel="stylesheet" href="tidy.css" />
|
||||
<xsl:call-template name="Stylesheet" />
|
||||
</head>
|
||||
|
||||
<body>
|
||||
|
@ -32,7 +32,7 @@
|
|||
|
||||
<h2>HTML Tidy Configuration Options</h2>
|
||||
|
||||
<p>Version: <a href="{config/@version}"><xsl:value-of select="config/@version" /></a></p>
|
||||
<p>Version: <xsl:value-of select="config/@version" /></p>
|
||||
|
||||
<p><a class="h3" href="#MarkupHeader">HTML, XHTML, XML</a><br />
|
||||
<a class="h3" href="#DiagnosticsHeader">Diagnostics</a><br />
|
||||
|
@ -229,6 +229,340 @@
|
|||
</tr>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template name="Stylesheet">
|
||||
<style type="text/css">
|
||||
/* 1st Style ignored by Netscape */
|
||||
td.dummy, font.dummy, .dummy, a:link.dummy, a:visited.dummy, a:active.dummy
|
||||
{
|
||||
font-family: Arial, Helvetica, "Trebuchet MS", sans-serif;
|
||||
font-size: 16pt;
|
||||
color: #336699;
|
||||
text-decoration: none;
|
||||
font-weight: normal
|
||||
}
|
||||
|
||||
body
|
||||
{
|
||||
margin-left: 10%;
|
||||
margin-right: 10%;
|
||||
font-family: sans-serif;
|
||||
background-color: #FFFFFF
|
||||
}
|
||||
|
||||
/* Blue TITLE */
|
||||
td.title, font.title, .title, a:link.title, a:visited.title, a:active.title
|
||||
{
|
||||
font-family: Arial, Helvetica, "Trebuchet MS", sans-serif;
|
||||
font-size: 16pt;
|
||||
color: #336699;
|
||||
text-decoration: none;
|
||||
font-weight: normal
|
||||
}
|
||||
|
||||
/* BODY TEXT */
|
||||
td.text, font.text, .text, a:link.text, a:visited.text, a:active.text
|
||||
{
|
||||
font-family: Arial, Helvetica, "Trebuchet MS", sans-serif;
|
||||
font-size: 9pt;
|
||||
color: #000000;
|
||||
text-decoration: none;
|
||||
font-weight: normal
|
||||
}
|
||||
|
||||
/* BOLD BODY TEXT */
|
||||
td.textbold, font.textbold, .textbold, a:link.textbold, a:visited.textbold, a:active.textbold
|
||||
{
|
||||
font-family: Arial, Helvetica, "Trebuchet MS", sans-serif;
|
||||
font-size: 9pt;
|
||||
color: #000000;
|
||||
text-decoration: none;
|
||||
font-weight: bold
|
||||
}
|
||||
|
||||
/* BOLD BODY TEXT LINK WITH UNDERLINE*/
|
||||
td.textboldlink, font.textboldlink, .textboldlink, a:link.textboldlink, a:visited.textboldlink, a:active.textboldlink
|
||||
{
|
||||
font-family: Arial, Helvetica, "Trebuchet MS", sans-serif;
|
||||
font-size: 9pt;
|
||||
color: #000000;
|
||||
font-weight: bold
|
||||
}
|
||||
|
||||
/* SMALL BODY TEXT */
|
||||
td.smtext, font.smtext, .smtext, a:link.smtext, a:visited.smtext, a:active.smtext
|
||||
{
|
||||
font-family: Arial, Helvetica, "Trebuchet MS", sans-serif;
|
||||
font-size: 8pt;
|
||||
color: #000000;
|
||||
text-decoration: none;
|
||||
font-weight: normal
|
||||
}
|
||||
|
||||
/* SMALL BOLD BODY TEXT */
|
||||
td.smtextbold, font.smtextbold, .smtextbold, a:link.smtextbold, a:visited.smtextbold, a:active.smtextbold
|
||||
{
|
||||
font-family: Arial, Helvetica, "Trebuchet MS", sans-serif;
|
||||
font-size: 8pt;
|
||||
color: #000000;
|
||||
text-decoration: none;
|
||||
font-weight: bold
|
||||
}
|
||||
|
||||
/* TITLES
|
||||
td.title, font.title, .title, a:link.title, a:visited.title, a:active.title
|
||||
{
|
||||
font-family: Arial, Helvetica, "Trebuchet MS", sans-serif;
|
||||
font-size: 12pt;
|
||||
color: #CC3300;
|
||||
text-decoration: none;
|
||||
font-weight: bold
|
||||
}
|
||||
*/
|
||||
|
||||
/* SUBTITLES */
|
||||
td.subtitle, font.subtitle, .subtitle, a:link.subtitle, a:visited.subtitle, a:active.subtitle
|
||||
{
|
||||
font-family: Arial, Helvetica, "Trebuchet MS", sans-serif;
|
||||
font-size: 11pt;
|
||||
color: #000000;
|
||||
text-decoration: none;
|
||||
font-weight: bold
|
||||
}
|
||||
|
||||
/* LEGAL TEXT */
|
||||
td.legal, font.legal, .legal, a:link.legal, a:visited.legal, a:active.legal
|
||||
{
|
||||
font-family: Arial, Helvetica, "Trebuchet MS", sans-serif;
|
||||
font-size: 8pt;
|
||||
color: #000000;
|
||||
text-decoration: none;
|
||||
font-weight: normal
|
||||
}
|
||||
|
||||
td.legallink, font.legallink, .legallink, a:link.legallink, a:visited.legallink, a:active.legallink
|
||||
{
|
||||
font-family: Arial, Helvetica, "Trebuchet MS", sans-serif;
|
||||
font-size: 8pt;
|
||||
color: #CC3300;
|
||||
font-weight: normal
|
||||
}
|
||||
|
||||
/* RED TEXT */
|
||||
td.textred, font.textred, .textred, a:link.textred, a:visited.textred, a:active.textred
|
||||
{
|
||||
font-family: Arial, Helvetica, "Trebuchet MS", sans-serif;
|
||||
font-size: 10pt;
|
||||
color: #CC3300;
|
||||
text-decoration: none;
|
||||
font-weight: normal
|
||||
}
|
||||
|
||||
/* RED TEXT BOLD*/
|
||||
td.textredbold, font.textredbold, .textredbold, a:link.textredbold, a:visited.textredbold, a:active.textredbold
|
||||
{
|
||||
font-family: Arial, Helvetica, "Trebuchet MS", sans-serif;
|
||||
font-size: 10pt;
|
||||
color: #CC3300;
|
||||
text-decoration: none;
|
||||
font-weight: bold
|
||||
}
|
||||
|
||||
/* LINKS */
|
||||
td.link, font.link, .link, a:link.link, a:visited.link, a:active.link
|
||||
{
|
||||
font-family: Arial, Helvetica, "Trebuchet MS", sans-serif;
|
||||
font-size: 10pt;
|
||||
color: #3366CC;
|
||||
font-weight: normal
|
||||
}
|
||||
|
||||
td.tabletitlelink, font.tabletitlelink, .tabletitlelink, a:link.tabletitlelink, a:visited.tabletitlelink, a:active.tabletitlelink
|
||||
{
|
||||
font-family: Arial, Helvetica, "Trebuchet MS", sans-serif;
|
||||
font-size: 10pt;
|
||||
background-color: #e9e9d3;
|
||||
color: #000000;
|
||||
}
|
||||
|
||||
/* TABLE TITLES */
|
||||
td.tabletitle, font.tabletitle, .tabletitle, a:link.tabletitle, a:visited.tabletitle, a:active.tabletitle
|
||||
{
|
||||
font-family: Arial, Helvetica, "Trebuchet MS", sans-serif;
|
||||
font-size: 10pt;
|
||||
color: #336699;
|
||||
background-color: #e9e9d3;
|
||||
/* text-decoration: none; */
|
||||
font-weight: bold
|
||||
}
|
||||
|
||||
/* TABLE CELL */
|
||||
td.cell, tr.cell, font.cell, .cell, a:link.cell, a:visited.cell, a:active.cell
|
||||
{
|
||||
font-family: Arial, Helvetica, "Trebuchet MS", sans-serif;
|
||||
font-size: 12pt;
|
||||
color: #000000;
|
||||
font-weight: normal;
|
||||
/* background-color: #e9e9d3 */
|
||||
background-color: #f5f5f5
|
||||
}
|
||||
|
||||
/* SHADED TABLE CELL */
|
||||
td.shaded, tr.shaded, font.shaded, .shaded, a:link.shaded, a:visited.shaded, a:active.shaded
|
||||
{
|
||||
font-family: Arial, Helvetica, "Trebuchet MS", sans-serif;
|
||||
font-size: 12pt;
|
||||
color: #000000;
|
||||
font-weight: normal;
|
||||
background-color: #f5f5f5
|
||||
}
|
||||
|
||||
/* GLOSSARY TERM */
|
||||
td.term, font.term, .term, a:link.term, a:visited.term, a:active.term
|
||||
{
|
||||
font-family: Arial, Helvetica, "Trebuchet MS", sans-serif;
|
||||
font-size: 10pt;
|
||||
font-style: normal;
|
||||
color: #000000;
|
||||
text-decoration: none;
|
||||
font-weight: normal
|
||||
}
|
||||
|
||||
/* ELEMENT TAGS */
|
||||
ul
|
||||
{
|
||||
font-family: Arial, Helvetica, sans-serif;
|
||||
font-size: 10pt;
|
||||
font-style: normal;
|
||||
font-weight: normal
|
||||
}
|
||||
li
|
||||
{
|
||||
font-family: Arial, Helvetica, sans-serif;
|
||||
font-size: 10pt;
|
||||
font-style: normal;
|
||||
font-weight: normal
|
||||
}
|
||||
|
||||
a:link.h1, a:visited.h1, .h1
|
||||
{
|
||||
font-family: Arial, Helvetica, "Trebuchet MS", sans-serif;
|
||||
font-size: 12pt;
|
||||
color: #0066CC
|
||||
}
|
||||
a:active.h1
|
||||
{
|
||||
font-family: Arial, Helvetica, "Trebuchet MS", sans-serif;
|
||||
font-size: 12pt;
|
||||
font-weight: bold;
|
||||
color: #0066CC
|
||||
}
|
||||
h1
|
||||
{
|
||||
margin-left: -8%;
|
||||
font-family: Arial, Helvetica, "Trebuchet MS", sans-serif;
|
||||
font-size: 12pt;
|
||||
color: #0066CC
|
||||
}
|
||||
|
||||
.h2
|
||||
{
|
||||
font-family: Arial, Helvetica, "Trebuchet MS", sans-serif;
|
||||
font-size: 11pt;
|
||||
/* font-weight: bold; */
|
||||
color: #000000
|
||||
}
|
||||
|
||||
h2
|
||||
{
|
||||
margin-left: -4%;
|
||||
font-family: Arial, Helvetica, "Trebuchet MS", sans-serif;
|
||||
font-size: 11pt;
|
||||
/* font-weight: bold; */
|
||||
color: #000000
|
||||
}
|
||||
|
||||
A:link.h3, A:visited.h3, .h3
|
||||
{ font-family: Arial, Helvetica, "Trebuchet MS", sans-serif;
|
||||
font-size: 10pt;
|
||||
color: #000000;
|
||||
font-weight: bold
|
||||
}
|
||||
|
||||
A:active.h3
|
||||
{
|
||||
font-family: Arial, Helvetica, "Trebuchet MS", sans-serif;
|
||||
font-size: 10pt;
|
||||
color: #000000;
|
||||
font-weight: bold
|
||||
}
|
||||
|
||||
h3
|
||||
{
|
||||
margin-left: -4%;
|
||||
font-family: Arial, Helvetica, "Trebuchet MS", sans-serif;
|
||||
font-size: 10pt;
|
||||
font-weight: bold;
|
||||
color: #000000
|
||||
}
|
||||
|
||||
h4
|
||||
{
|
||||
font-family: Arial, Helvetica, "Trebuchet MS", sans-serif;
|
||||
font-size: 9pt;
|
||||
font-weight: bold;
|
||||
color: #000000
|
||||
}
|
||||
|
||||
.code, A:active.code, A:link.code, A:visited.code
|
||||
{
|
||||
font-family: "Courier New", Courier, monospace;
|
||||
}
|
||||
|
||||
.abstract
|
||||
{
|
||||
font-style : italic;
|
||||
}
|
||||
|
||||
p
|
||||
{
|
||||
font-family: Arial, Helvetica, "Trebuchet MS", sans-serif;
|
||||
font-size: 10pt;
|
||||
font-style: normal
|
||||
}
|
||||
|
||||
td
|
||||
{
|
||||
font-family: Arial, Helvetica, "Trebuchet MS", sans-serif;
|
||||
font-size: 10pt;
|
||||
font-style: normal
|
||||
}
|
||||
|
||||
/* LINKS */
|
||||
a:link, a:active
|
||||
{
|
||||
font-family: Arial, Helvetica, "Trebuchet MS", sans-serif;
|
||||
font-size: 10pt;
|
||||
color: #3366CC;
|
||||
font-weight: normal
|
||||
}
|
||||
|
||||
a:visited
|
||||
{
|
||||
font-family: Arial, Helvetica, "Trebuchet MS", sans-serif;
|
||||
font-size: 10pt;
|
||||
color: #333366;
|
||||
font-weight: normal
|
||||
}
|
||||
|
||||
code {
|
||||
/* use browser/user default for `font-family` */
|
||||
font-weight: bold;
|
||||
color: brown;
|
||||
background: transparent;
|
||||
}
|
||||
</style>
|
||||
</xsl:template>
|
||||
|
||||
|
||||
<!-- Regular Templates: -->
|
||||
<xsl:template match="a | code | em | strong | br">
|
|
@ -41,7 +41,7 @@
|
|||
|
||||
|
||||
<xsl:template name="header-section">
|
||||
<xsl:text/>.\" tidy man page for the HTML5 fork of Tidy
|
||||
<xsl:text/>.\" tidy man page for the HTML Tidy
|
||||
.TH TIDY 1 "<xsl:value-of select="cmdline/@version" />" "HTML Tidy" "<xsl:value-of select="cmdline/@version" />"
|
||||
</xsl:template>
|
||||
|
||||
|
@ -56,7 +56,7 @@
|
|||
.SH SYNOPSIS
|
||||
\fBtidy\fR [option ...] [file ...] [option ...] [file ...]
|
||||
.SH DESCRIPTION
|
||||
Tidy reads HTML(5), XHTML(5) and XML files and writes cleaned-up markup. For HTML variants, it detects, reports, and corrects many common coding errors and strives to produce visually equivalent markup that is both conformant to the HTML specifications and that works in most browsers.
|
||||
Tidy reads HTML, XHTML, and XML files and writes cleaned-up markup. For HTML variants, it detects, reports, and corrects many common coding errors and strives to produce visually equivalent markup that is both conformant to the HTML specifications and that works in most browsers.
|
||||
.LP
|
||||
A common use of Tidy is to convert plain HTML to XHTML. For generic XML files, Tidy is limited to correcting basic well-formedness errors and pretty printing.
|
||||
.LP
|
||||
|
@ -348,10 +348,10 @@ appearing in content with another backslash.
|
|||
<!-- Appears at the bottom of the man page: -->
|
||||
<xsl:template name="manpage-see-also-section">
|
||||
.SH SEE ALSO
|
||||
For more information about the experimental HTML5 fork of Tidy:
|
||||
For more information about HTML Tidy:
|
||||
.RS 4
|
||||
.LP
|
||||
http://w3c.github.com/tidy-html5/
|
||||
http://www.html-tidy.org/
|
||||
.RE
|
||||
.LP
|
||||
For more information on HTML:
|
||||
|
@ -369,10 +369,10 @@ http://dev.w3.org/html5/markup/
|
|||
For bug reports and comments:
|
||||
.RS 4
|
||||
.LP
|
||||
https://github.com/w3c/tidy-html5/issues/
|
||||
https://github.com/htacg/tidy-html5/issues/
|
||||
.RE
|
||||
.LP
|
||||
Or send questions and comments to \fBhtml-tidy@w3.org\fR
|
||||
Or send questions and comments to \fBpublic-htacg@w3.org\fR.
|
||||
.LP
|
||||
Validate your HTML documents using the \fBW3C Nu Markup Validator\fR:
|
||||
.RS 4
|
||||
|
@ -380,9 +380,10 @@ Validate your HTML documents using the \fBW3C Nu Markup Validator\fR:
|
|||
http://validator.w3.org/nu/
|
||||
.RE
|
||||
.SH AUTHOR
|
||||
\fBTidy\fR was written by \fBDave Raggett\fR <dsr@w3.org>, and subsequently maintained by a team at http://tidy.sourceforge.net/
|
||||
\fBTidy\fR was written by \fBDave Raggett\fR <dsr@w3.org>, and subsequently maintained by a team at http://tidy.sourceforge.net/,
|
||||
and now maintained by \fBHTACG\fR (http://www.htacg.org).
|
||||
.LP
|
||||
The sources for the HTML5 fork of \fBTidy\fR are available at https://github.com/w3c/tidy-html5/ under the MIT Licence.
|
||||
The sources for \fBHTML Tidy\fR are available at https://github.com/htacg/tidy-html5/ under the MIT Licence.
|
||||
</xsl:template>
|
||||
|
||||
|
|
@ -1,231 +0,0 @@
|
|||
# Makefile - for tidy - HTML parser and pretty printer
|
||||
#
|
||||
# Copyright (c) 1998-2008 World Wide Web Consortium
|
||||
# (Massachusetts Institute of Technology, European Research
|
||||
# Consortium for Informatics and Mathematics, Keio University).
|
||||
# All Rights Reserved.
|
||||
#
|
||||
# Contributing Author(s):
|
||||
#
|
||||
# Dave Raggett <dsr@w3.org>
|
||||
# Terry Teague <terry_teague@users.sourceforge.net>
|
||||
# Pradeep Padala<ppadala@users.sourceforge.net>
|
||||
#
|
||||
# The contributing author(s) would like to thank all those who
|
||||
# helped with testing, bug fixes, and patience. This wouldn't
|
||||
# have been possible without all of you.
|
||||
#
|
||||
# COPYRIGHT NOTICE:
|
||||
#
|
||||
# This software and documentation is provided "as is," and
|
||||
# the copyright holders and contributing author(s) make no
|
||||
# representations or warranties, express or implied, including
|
||||
# but not limited to, warranties of merchantability or fitness
|
||||
# for any particular purpose or that the use of the software or
|
||||
# documentation will not infringe any third party patents,
|
||||
# copyrights, trademarks or other rights.
|
||||
#
|
||||
# The copyright holders and contributing author(s) will not be
|
||||
# liable for any direct, indirect, special or consequential damages
|
||||
# arising out of any use of the software or documentation, even if
|
||||
# advised of the possibility of such damage.
|
||||
#
|
||||
# Permission is hereby granted to use, copy, modify, and distribute
|
||||
# this source code, or portions hereof, documentation and executables,
|
||||
# for any purpose, without fee, subject to the following restrictions:
|
||||
#
|
||||
# 1. The origin of this source code must not be misrepresented.
|
||||
# 2. Altered versions must be plainly marked as such and must
|
||||
# not be misrepresented as being the original source.
|
||||
# 3. This Copyright notice may not be removed or altered from any
|
||||
# source or altered source distribution.
|
||||
#
|
||||
# The copyright holders and contributing author(s) specifically
|
||||
# permit, without fee, and encourage the use of this source code
|
||||
# as a component for supporting the Hypertext Markup Language in
|
||||
# commercial products. If you use this source code in a product,
|
||||
# acknowledgment is not required but would be appreciated.
|
||||
#
|
||||
|
||||
SHELL=/bin/sh
|
||||
|
||||
PROJECT=tidy
|
||||
|
||||
# Installation variables. Spaces OK, only dir create and file copy operations.
|
||||
runinst_prefix=/usr/local
|
||||
devinst_prefix=/usr/local
|
||||
|
||||
bininst = ${runinst_prefix}/bin
|
||||
libinst = ${devinst_prefix}/lib
|
||||
incinst = ${devinst_prefix}/include/$(PROJECT)
|
||||
maninst = ${devinst_prefix}/man
|
||||
|
||||
# Internal variables. - No spaces allowed: libtool chokes on spaces in directory names.
|
||||
TOPDIR = ../..
|
||||
INCDIR = ${TOPDIR}/include
|
||||
APPDIR = ${TOPDIR}/console
|
||||
SRCDIR = ${TOPDIR}/src
|
||||
OBJDIR = ./obj
|
||||
LIBDIR = ${TOPDIR}/lib
|
||||
BINDIR = ${TOPDIR}/bin
|
||||
DOCDIR = ${TOPDIR}/htmldoc
|
||||
|
||||
# Note about shared library and exported symbols:
|
||||
# With gcc, one can control the exported symbols by either using
|
||||
# "-fvisibility=hidden -DTIDY_EXPORT='__attribute__((visibility("default")))'"
|
||||
# or using a linker map (see GNU ld "--version-script").
|
||||
|
||||
# Lookup based on hash table can be disabled with
|
||||
# "-DELEMENT_HASH_LOOKUP=0 -DATTRIBUTE_HASH_LOOKUP=0"
|
||||
|
||||
# Memory mapped i/o can be disabled with -DSUPPORT_POSIX_MAPPED_FILES=0
|
||||
#
|
||||
|
||||
# CFLAGS etc..
|
||||
# For optimised builds, flags such as "-O2" should be added and -D_DEBUG=1
|
||||
# disabled.
|
||||
CC= gcc
|
||||
CFLAGS= -g -pedantic -Wall -I $(INCDIR)
|
||||
# flags only supported with gcc 3.x
|
||||
CFLAGS += -Wunused-parameter
|
||||
|
||||
OTHERCFLAGS=
|
||||
OTHERCFLAGS+= -D_DEBUG=1 -D_MSC_VER=1400
|
||||
# OTHERCFLAGS+= -fvisibility=hidden -DTIDY_EXPORT='__attribute__((visibility("default")))'
|
||||
ifdef SUPPORT_UTF16_ENCODINGS
|
||||
CFLAGS += -DSUPPORT_UTF16_ENCODINGS=$(SUPPORT_UTF16_ENCODINGS)
|
||||
endif
|
||||
ifdef SUPPORT_ASIAN_ENCODINGS
|
||||
CFLAGS += -DSUPPORT_ASIAN_ENCODINGS=$(SUPPORT_ASIAN_ENCODINGS)
|
||||
endif
|
||||
ifdef SUPPORT_ACCESSIBILITY_CHECKS
|
||||
CFLAGS += -DSUPPORT_ACCESSIBILITY_CHECKS=$(SUPPORT_ACCESSIBILITY_CHECKS)
|
||||
endif
|
||||
|
||||
DEBUGFLAGS=-g
|
||||
ifdef DMALLOC
|
||||
DEBUGFLAGS += -DDMALLOC
|
||||
endif
|
||||
|
||||
LIBS=
|
||||
DEBUGLIBS=-ldmalloc
|
||||
|
||||
# Tidy lib related variables
|
||||
TIDY_MAJOR = 1
|
||||
TIDY_MINOR = 0
|
||||
|
||||
# This will come from autoconf again
|
||||
LIBPREFIX = lib
|
||||
LIBSUFFIX = .a
|
||||
OBJSUF = .o
|
||||
|
||||
LIBRARY = $(LIBDIR)/$(LIBPREFIX)$(PROJECT)$(LIBSUFFIX)
|
||||
AR=ar -r
|
||||
|
||||
XSLTPROC = xsltproc
|
||||
|
||||
EXES = $(BINDIR)/$(PROJECT) $(BINDIR)/tab2space
|
||||
|
||||
DOCS = $(DOCDIR)/quickref.html $(DOCDIR)/tidy.1
|
||||
|
||||
CONFIGXML = $(DOCDIR)/tidy-config.xml
|
||||
HELPXML = $(DOCDIR)/tidy-help.xml
|
||||
|
||||
OBJFILES=\
|
||||
$(OBJDIR)/access$(OBJSUF) $(OBJDIR)/attrs$(OBJSUF) $(OBJDIR)/istack$(OBJSUF) \
|
||||
$(OBJDIR)/parser$(OBJSUF) $(OBJDIR)/tags$(OBJSUF) $(OBJDIR)/entities$(OBJSUF) \
|
||||
$(OBJDIR)/lexer$(OBJSUF) $(OBJDIR)/pprint$(OBJSUF) $(OBJDIR)/clean$(OBJSUF) \
|
||||
$(OBJDIR)/localize$(OBJSUF) $(OBJDIR)/config$(OBJSUF) $(OBJDIR)/alloc$(OBJSUF) \
|
||||
$(OBJDIR)/attrask$(OBJSUF) $(OBJDIR)/attrdict$(OBJSUF) $(OBJDIR)/attrget$(OBJSUF) \
|
||||
$(OBJDIR)/buffio$(OBJSUF) $(OBJDIR)/fileio$(OBJSUF) $(OBJDIR)/streamio$(OBJSUF) \
|
||||
$(OBJDIR)/tagask$(OBJSUF) $(OBJDIR)/tmbstr$(OBJSUF) $(OBJDIR)/utf8$(OBJSUF) \
|
||||
$(OBJDIR)/tidylib$(OBJSUF) $(OBJDIR)/mappedio$(OBJSUF) $(OBJDIR)/gdoc$(OBJSUF)
|
||||
|
||||
CFILES= \
|
||||
$(SRCDIR)/access.c $(SRCDIR)/attrs.c $(SRCDIR)/istack.c \
|
||||
$(SRCDIR)/parser.c $(SRCDIR)/tags.c $(SRCDIR)/entities.c \
|
||||
$(SRCDIR)/lexer.c $(SRCDIR)/pprint.c $(SRCDIR)/clean.c \
|
||||
$(SRCDIR)/localize.c $(SRCDIR)/config.c $(SRCDIR)/alloc.c \
|
||||
$(SRCDIR)/attrask.c $(SRCDIR)/attrdict.c $(SRCDIR)/attrget.c \
|
||||
$(SRCDIR)/buffio.c $(SRCDIR)/fileio.c $(SRCDIR)/streamio.c \
|
||||
$(SRCDIR)/tagask.c $(SRCDIR)/tmbstr.c $(SRCDIR)/utf8.c \
|
||||
$(SRCDIR)/tidylib.c $(SRCDIR)/mappedio.c $(SRCDIR)/gdoc.c
|
||||
|
||||
HFILES= $(INCDIR)/platform.h $(INCDIR)/tidy.h $(INCDIR)/tidyenum.h \
|
||||
$(INCDIR)/buffio.h
|
||||
|
||||
LIBHFILES= \
|
||||
$(SRCDIR)/access.h $(SRCDIR)/attrs.h $(SRCDIR)/attrdict.h \
|
||||
$(SRCDIR)/clean.h $(SRCDIR)/config.h $(SRCDIR)/entities.h \
|
||||
$(SRCDIR)/fileio.h $(SRCDIR)/forward.h $(SRCDIR)/lexer.h \
|
||||
$(SRCDIR)/mappedio.h $(SRCDIR)/message.h $(SRCDIR)/parser.h \
|
||||
$(SRCDIR)/pprint.h $(SRCDIR)/streamio.h $(SRCDIR)/tags.h \
|
||||
$(SRCDIR)/tmbstr.h $(SRCDIR)/utf8.h $(SRCDIR)/tidy-int.h \
|
||||
$(SRCDIR)/gdoc.h $(SRCDIR)/version.h
|
||||
|
||||
|
||||
|
||||
all: $(LIBRARY) $(EXES)
|
||||
|
||||
doc: $(DOCS)
|
||||
|
||||
$(LIBRARY): $(OBJFILES)
|
||||
if [ ! -d $(LIBDIR) ]; then mkdir $(LIBDIR); fi
|
||||
$(AR) $@ $(OBJFILES)
|
||||
ifdef RANLIB
|
||||
$(RANLIB) $@
|
||||
endif
|
||||
|
||||
$(OBJDIR)/%$(OBJSUF): $(SRCDIR)/%.c $(HFILES) $(LIBHFILES) Makefile
|
||||
if [ ! -d $(OBJDIR) ]; then mkdir $(OBJDIR); fi
|
||||
$(CC) $(CFLAGS) $(OTHERCFLAGS) -o $@ -c $<
|
||||
|
||||
$(BINDIR)/$(PROJECT): $(APPDIR)/tidy.c $(HFILES) $(LIBRARY)
|
||||
if [ ! -d $(BINDIR) ]; then mkdir $(BINDIR); fi
|
||||
$(CC) $(CFLAGS) $(OTHERCFLAGS) -o $@ $(APPDIR)/tidy.c -I$(INCDIR) $(LIBRARY)
|
||||
|
||||
$(BINDIR)/tab2space: $(APPDIR)/tab2space.c
|
||||
if [ ! -d $(BINDIR) ]; then mkdir $(BINDIR); fi
|
||||
$(CC) $(CFLAGS) $(OTHERCFLAGS) -o $@ $(APPDIR)/tab2space.c $(LIBS)
|
||||
|
||||
$(HELPXML): $(BINDIR)/$(PROJECT)
|
||||
$(BINDIR)/$(PROJECT) -xml-help > $@
|
||||
|
||||
$(CONFIGXML): $(BINDIR)/$(PROJECT)
|
||||
$(BINDIR)/$(PROJECT) -xml-config > $@
|
||||
|
||||
$(DOCDIR)/quickref.html: $(DOCDIR)/quickref-html.xsl $(CONFIGXML)
|
||||
$(XSLTPROC) -o $@ $(DOCDIR)/quickref-html.xsl $(CONFIGXML)
|
||||
|
||||
$(DOCDIR)/tidy.1: $(DOCDIR)/tidy1.xsl $(HELPXML) $(CONFIGXML)
|
||||
$(XSLTPROC) -o $@ $(DOCDIR)/tidy1.xsl $(HELPXML)
|
||||
|
||||
debug:
|
||||
@$(MAKE) CFLAGS='$(CFLAGS) $(DEBUGFLAGS)' LIBS='$(LIBS) $(DEBUGLIBS)' all
|
||||
|
||||
clean:
|
||||
rm -f $(OBJFILES) $(EXES) $(LIBRARY) $(DOCS) $(HELPXML) $(CONFIGXML) $(OBJDIR)/*.lo
|
||||
rm -rf $(BINDIR)/tidy.dSYM $(BINDIR)/tab2space.dSYM
|
||||
if [ -d $(OBJDIR)/.libs ]; then rmdir $(OBJDIR)/.libs; fi
|
||||
if [ -d $(LIBDIR)/.libs ]; then rmdir $(LIBDIR)/.libs; fi
|
||||
if [ "$(OBJDIR)" != "$(TOPDIR)" -a -d $(OBJDIR) ]; then rmdir $(OBJDIR); fi
|
||||
if [ "$(LIBDIR)" != "$(TOPDIR)" -a -d $(LIBDIR) ]; then rmdir $(LIBDIR); fi
|
||||
if [ "$(BINDIR)" != "$(TOPDIR)" -a -d $(BINDIR) ]; then rmdir $(BINDIR); fi
|
||||
|
||||
installhdrs: $(HFILES)
|
||||
if [ ! -d "$(incinst)" ]; then mkdir -p "$(incinst)"; fi
|
||||
cp -f $(HFILES) "$(incinst)/"
|
||||
|
||||
installib: $(LIBRARY)
|
||||
if [ ! -d "$(libinst)" ]; then mkdir -p "$(libinst)"; fi
|
||||
cp -f $(LIBRARY) "$(libinst)/"
|
||||
|
||||
installexes: $(EXES)
|
||||
if [ ! -d "$(bininst)" ]; then mkdir -p "$(bininst)"; fi
|
||||
cp -f $(EXES) "$(bininst)/"
|
||||
|
||||
installmanpage: $(DOCDIR)/tidy.1
|
||||
if [ ! -d "$(maninst)/man1" ]; then mkdir -p "$(maninst)/man1"; fi;
|
||||
cp -f $(DOCDIR)/tidy.1 "$(maninst)/man1/tidy.1";
|
||||
|
||||
install: installhdrs installib installexes installmanpage
|
|
@ -1,16 +0,0 @@
|
|||
This Makefile works on most Unix platforms. Although, by default, it
|
||||
runs gcc, by setting the CC macro, it runs with many C compilers.
|
||||
|
||||
You can override the default build options by setting environment
|
||||
variables of the same name as the corresponding macro: DMALLOC,
|
||||
SUPPORT_ACCESSIBILITY_CHECKS, SUPPORT_UTF16_ENCODINGS and
|
||||
SUPPORT_ASIAN_ENCODINGS.
|
||||
|
||||
$ DMALLOC=1 gmake
|
||||
|
||||
Note this Makefile will only run with gmake. But you should be able
|
||||
to easily locate a pre-built executable for your platform.
|
||||
|
||||
To customize the location of output files or install locations, just
|
||||
edit the Makefile. There are variable definitions for just about
|
||||
everything, so you shouldn't have to alter the build rules.
|
|
@ -1,57 +0,0 @@
|
|||
# Makefile [Makefile.am] - for tidy - HTML parser and pretty printer
|
||||
#
|
||||
# Copyright (c) 1998-2003 World Wide Web Consortium
|
||||
# (Massachusetts Institute of Technology, European Research
|
||||
# Consortium for Informatics and Mathematics, Keio University).
|
||||
# All Rights Reserved.
|
||||
#
|
||||
# Contributing Author(s):
|
||||
#
|
||||
# Dave Raggett <dsr@w3.org>
|
||||
# Terry Teague <terry_teague@users.sourceforge.net>
|
||||
# Pradeep Padala<ppadala@users.sourceforge.net>
|
||||
#
|
||||
# The contributing author(s) would like to thank all those who
|
||||
# helped with testing, bug fixes, and patience. This wouldn't
|
||||
# have been possible without all of you.
|
||||
#
|
||||
# COPYRIGHT NOTICE:
|
||||
#
|
||||
# This software and documentation is provided "as is," and
|
||||
# the copyright holders and contributing author(s) make no
|
||||
# representations or warranties, express or implied, including
|
||||
# but not limited to, warranties of merchantability or fitness
|
||||
# for any particular purpose or that the use of the software or
|
||||
# documentation will not infringe any third party patents,
|
||||
# copyrights, trademarks or other rights.
|
||||
#
|
||||
# The copyright holders and contributing author(s) will not be
|
||||
# liable for any direct, indirect, special or consequential damages
|
||||
# arising out of any use of the software or documentation, even if
|
||||
# advised of the possibility of such damage.
|
||||
#
|
||||
# Permission is hereby granted to use, copy, modify, and distribute
|
||||
# this source code, or portions hereof, documentation and executables,
|
||||
# for any purpose, without fee, subject to the following restrictions:
|
||||
#
|
||||
# 1. The origin of this source code must not be misrepresented.
|
||||
# 2. Altered versions must be plainly marked as such and must
|
||||
# not be misrepresented as being the original source.
|
||||
# 3. This Copyright notice may not be removed or altered from any
|
||||
# source or altered source distribution.
|
||||
#
|
||||
# The copyright holders and contributing author(s) specifically
|
||||
# permit, without fee, and encourage the use of this source code
|
||||
# as a component for supporting the Hypertext Markup Language in
|
||||
# commercial products. If you use this source code in a product,
|
||||
# acknowledgment is not required but would be appreciated.
|
||||
#
|
||||
|
||||
SUBDIRS = src console include
|
||||
|
||||
#TODO: Pull man page from htmldoc
|
||||
#installmanpage:
|
||||
# if [ -f "$(TOPDIR)/htmldoc/man_page.txt" ] ; then \
|
||||
# if [ ! -d "$(maninst)/man1" ]; then mkdir -p "$(maninst)/man1"; fi; \
|
||||
# cp -f $(TOPDIR)/htmldoc/man_page.txt "$(maninst)/man1/tidy.1"; \
|
||||
# fi
|
|
@ -1,127 +0,0 @@
|
|||
# configure.in - HTML TidyLib GNU autoconf input file
|
||||
#
|
||||
# Copyright (c) 2003-2004 World Wide Web Consortium
|
||||
# (Massachusetts Institute of Technology, European Research
|
||||
# Consortium for Informatics and Mathematics, Keio University).
|
||||
# All Rights Reserved.
|
||||
#
|
||||
|
||||
AC_INIT([include/tidy.h])
|
||||
|
||||
# Making releases:
|
||||
#
|
||||
# TIDY_MICRO_VERSION += 1;
|
||||
# TIDY_INTERFACE_AGE += 1;
|
||||
# TIDY_BINARY_AGE += 1;
|
||||
#
|
||||
# if any functions have been added, set TIDY_INTERFACE_AGE to 0.
|
||||
# if backwards compatibility has been broken,
|
||||
# set TIDY_BINARY_AGE and TIDY_INTERFACE_AGE to 0.
|
||||
#
|
||||
TIDY_MAJOR_VERSION=0
|
||||
TIDY_MINOR_VERSION=99
|
||||
TIDY_MICRO_VERSION=0
|
||||
TIDY_INTERFACE_AGE=0
|
||||
TIDY_BINARY_AGE=0
|
||||
|
||||
LIBTIDY_VERSION=$TIDY_MAJOR_VERSION.$TIDY_MINOR_VERSION.$TIDY_MICRO_VERSION
|
||||
|
||||
AC_SUBST(LIBTIDY_VERSION)
|
||||
|
||||
# libtool versioning
|
||||
#
|
||||
LT_RELEASE=$TIDY_MAJOR_VERSION.$TIDY_MINOR_VERSION
|
||||
LT_CURRENT=`expr $TIDY_MICRO_VERSION - $TIDY_INTERFACE_AGE`
|
||||
LT_REVISION=$TIDY_INTERFACE_AGE
|
||||
LT_AGE=`expr $TIDY_BINARY_AGE - $TIDY_INTERFACE_AGE`
|
||||
|
||||
AC_SUBST(LT_RELEASE)
|
||||
AC_SUBST(LT_CURRENT)
|
||||
AC_SUBST(LT_REVISION)
|
||||
AC_SUBST(LT_AGE)
|
||||
|
||||
AM_INIT_AUTOMAKE(tidy,$LIBTIDY_VERSION)
|
||||
|
||||
# Checks for programs.
|
||||
|
||||
# =============================================
|
||||
# AC_PROG_CC has a habit of adding -g to CFLAGS
|
||||
#
|
||||
save_cflags="$CFLAGS"
|
||||
|
||||
AC_PROG_CC
|
||||
if test "x$GCC" = "xyes"; then
|
||||
WARNING_CFLAGS="-Wall"
|
||||
else
|
||||
WARNING_CFLAGS=""
|
||||
fi
|
||||
AC_SUBST(WARNING_CFLAGS)
|
||||
|
||||
debug_build=no
|
||||
AC_ARG_ENABLE(debug,[ --enable-debug add -g (instead of -O2) to CFLAGS],[
|
||||
if test "x$enableval" = "xyes"; then
|
||||
debug_build=yes
|
||||
fi
|
||||
])
|
||||
if test $debug_build = yes; then
|
||||
CFLAGS="$save_cflags -g"
|
||||
else
|
||||
CFLAGS="-O2 $save_cflags"
|
||||
fi
|
||||
#
|
||||
# =============================================
|
||||
|
||||
AC_PROG_CPP
|
||||
AC_PROG_CXX
|
||||
AC_PROG_INSTALL
|
||||
AC_PROG_LN_S
|
||||
AC_PROG_LIBTOOL
|
||||
AC_PROG_MAKE_SET
|
||||
|
||||
support_access=yes
|
||||
AC_ARG_ENABLE(access,[ --enable-access support accessibility checks],[
|
||||
if test "x$enableval" = "xno"; then
|
||||
support_access=no
|
||||
fi
|
||||
])
|
||||
if test $support_access = yes; then
|
||||
AC_DEFINE(SUPPORT_ACCESSIBILITY_CHECKS,1)
|
||||
else
|
||||
AC_DEFINE(SUPPORT_ACCESSIBILITY_CHECKS,0)
|
||||
fi
|
||||
|
||||
support_utf16=yes
|
||||
AC_ARG_ENABLE(utf16,[ --enable-utf16 support UTF-16 encoding],[
|
||||
if test "x$enableval" = "xno"; then
|
||||
support_utf16=no
|
||||
fi
|
||||
])
|
||||
if test $support_utf16 = yes; then
|
||||
AC_DEFINE(SUPPORT_UTF16_ENCODINGS,1)
|
||||
else
|
||||
AC_DEFINE(SUPPORT_UTF16_ENCODINGS,0)
|
||||
fi
|
||||
|
||||
support_asian=yes
|
||||
AC_ARG_ENABLE(asian,[ --enable-asian support asian encodings],[
|
||||
if test "x$enableval" = "xno"; then
|
||||
support_asian=no
|
||||
fi
|
||||
])
|
||||
if test $support_asian = yes; then
|
||||
AC_DEFINE(SUPPORT_ASIAN_ENCODINGS,1)
|
||||
else
|
||||
AC_DEFINE(SUPPORT_ASIAN_ENCODINGS,0)
|
||||
fi
|
||||
|
||||
# TODO: this defines "WITH_DMALLOC" but tidy expects "DMALLOC"
|
||||
# need to do: #if defined(DMALLOC) || defined(WITH_DMALLOC)
|
||||
#
|
||||
AM_WITH_DMALLOC
|
||||
|
||||
AC_OUTPUT([
|
||||
Makefile
|
||||
src/Makefile
|
||||
console/Makefile
|
||||
include/Makefile
|
||||
])
|
|
@ -1,58 +0,0 @@
|
|||
# Makefile [Makefile.am] - for tidy - HTML parser and pretty printer
|
||||
#
|
||||
# Copyright (c) 1998-2008 World Wide Web Consortium
|
||||
# (Massachusetts Institute of Technology, European Research
|
||||
# Consortium for Informatics and Mathematics, Keio University).
|
||||
# All Rights Reserved.
|
||||
#
|
||||
# Contributing Author(s):
|
||||
#
|
||||
# Dave Raggett <dsr@w3.org>
|
||||
# Terry Teague <terry_teague@users.sourceforge.net>
|
||||
# Pradeep Padala<ppadala@users.sourceforge.net>
|
||||
#
|
||||
# The contributing author(s) would like to thank all those who
|
||||
# helped with testing, bug fixes, and patience. This wouldn't
|
||||
# have been possible without all of you.
|
||||
#
|
||||
# COPYRIGHT NOTICE:
|
||||
#
|
||||
# This software and documentation is provided "as is," and
|
||||
# the copyright holders and contributing author(s) make no
|
||||
# representations or warranties, express or implied, including
|
||||
# but not limited to, warranties of merchantability or fitness
|
||||
# for any particular purpose or that the use of the software or
|
||||
# documentation will not infringe any third party patents,
|
||||
# copyrights, trademarks or other rights.
|
||||
#
|
||||
# The copyright holders and contributing author(s) will not be
|
||||
# liable for any direct, indirect, special or consequential damages
|
||||
# arising out of any use of the software or documentation, even if
|
||||
# advised of the possibility of such damage.
|
||||
#
|
||||
# Permission is hereby granted to use, copy, modify, and distribute
|
||||
# this source code, or portions hereof, documentation and executables,
|
||||
# for any purpose, without fee, subject to the following restrictions:
|
||||
#
|
||||
# 1. The origin of this source code must not be misrepresented.
|
||||
# 2. Altered versions must be plainly marked as such and must
|
||||
# not be misrepresented as being the original source.
|
||||
# 3. This Copyright notice may not be removed or altered from any
|
||||
# source or altered source distribution.
|
||||
#
|
||||
# The copyright holders and contributing author(s) specifically
|
||||
# permit, without fee, and encourage the use of this source code
|
||||
# as a component for supporting the Hypertext Markup Language in
|
||||
# commercial products. If you use this source code in a product,
|
||||
# acknowledgment is not required but would be appreciated.
|
||||
#
|
||||
|
||||
AM_CFLAGS = @CFLAGS@ @WARNING_CFLAGS@
|
||||
|
||||
INCLUDES = -I$(top_srcdir)/include
|
||||
|
||||
bin_PROGRAMS = tidy tab2space
|
||||
|
||||
tidy_LDADD = $(top_builddir)/src/libtidy.la
|
||||
|
||||
tab2space_LDADD = $(top_builddir)/src/libtidy.la
|
|
@ -1,55 +0,0 @@
|
|||
# Makefile [Makefile.am] - for tidy - HTML parser and pretty printer
|
||||
#
|
||||
# Copyright (c) 1998-2006 World Wide Web Consortium
|
||||
# (Massachusetts Institute of Technology, European Research
|
||||
# Consortium for Informatics and Mathematics, Keio University).
|
||||
# All Rights Reserved.
|
||||
#
|
||||
# Contributing Author(s):
|
||||
#
|
||||
# Dave Raggett <dsr@w3.org>
|
||||
# Terry Teague <terry_teague@users.sourceforge.net>
|
||||
# Pradeep Padala<ppadala@users.sourceforge.net>
|
||||
#
|
||||
# The contributing author(s) would like to thank all those who
|
||||
# helped with testing, bug fixes, and patience. This wouldn't
|
||||
# have been possible without all of you.
|
||||
#
|
||||
# COPYRIGHT NOTICE:
|
||||
#
|
||||
# This software and documentation is provided "as is," and
|
||||
# the copyright holders and contributing author(s) make no
|
||||
# representations or warranties, express or implied, including
|
||||
# but not limited to, warranties of merchantability or fitness
|
||||
# for any particular purpose or that the use of the software or
|
||||
# documentation will not infringe any third party patents,
|
||||
# copyrights, trademarks or other rights.
|
||||
#
|
||||
# The copyright holders and contributing author(s) will not be
|
||||
# liable for any direct, indirect, special or consequential damages
|
||||
# arising out of any use of the software or documentation, even if
|
||||
# advised of the possibility of such damage.
|
||||
#
|
||||
# Permission is hereby granted to use, copy, modify, and distribute
|
||||
# this source code, or portions hereof, documentation and executables,
|
||||
# for any purpose, without fee, subject to the following restrictions:
|
||||
#
|
||||
# 1. The origin of this source code must not be misrepresented.
|
||||
# 2. Altered versions must be plainly marked as such and must
|
||||
# not be misrepresented as being the original source.
|
||||
# 3. This Copyright notice may not be removed or altered from any
|
||||
# source or altered source distribution.
|
||||
#
|
||||
# The copyright holders and contributing author(s) specifically
|
||||
# permit, without fee, and encourage the use of this source code
|
||||
# as a component for supporting the Hypertext Markup Language in
|
||||
# commercial products. If you use this source code in a product,
|
||||
# acknowledgment is not required but would be appreciated.
|
||||
#
|
||||
|
||||
#tidyincdir = $(includedir)/tidy
|
||||
tidyincdir = $(includedir)
|
||||
|
||||
tidyinc_HEADERS = \
|
||||
platform.h \
|
||||
tidy.h tidyenum.h buffio.h
|
|
@ -1,24 +0,0 @@
|
|||
To use GNU "Auto" tools (AutoConf/AutoMake/LibTool), run
|
||||
/bin/sh build/gnuauto/setup.sh from the top-level Tidy
|
||||
directory. This script will copy the appropriate
|
||||
Makefile.am files into each source directory, along with
|
||||
configure.in.
|
||||
|
||||
If the script was successful you should now be able
|
||||
to build in the usual way:
|
||||
|
||||
$ ./configure --prefix=/usr
|
||||
$ make
|
||||
$ make install
|
||||
|
||||
to get a list of configure options type: ./configure --help
|
||||
|
||||
Alternatively, you should be able to build outside of the source
|
||||
tree. e.g.:
|
||||
|
||||
$ mkdir ../build-tidy
|
||||
$ cd ../build-tidy
|
||||
$ ../tidy/configure --prefix=/usr
|
||||
$ make
|
||||
$ make install
|
||||
|
|
@ -1,56 +0,0 @@
|
|||
#!/bin/sh
|
||||
|
||||
if ! test -f build/gnuauto/setup.sh; then
|
||||
|
||||
echo ""
|
||||
echo "* * * Execute this script from the top source directory, e.g.:"
|
||||
echo ""
|
||||
echo " $ /bin/sh build/gnuauto/setup.sh"
|
||||
echo ""
|
||||
|
||||
else
|
||||
|
||||
for i in libtoolize glibtoolize
|
||||
do
|
||||
( $i --version) < /dev/null > /dev/null 2>&1 &&
|
||||
LIBTOOLIZE=$i
|
||||
done
|
||||
if test -z "$LIBTOOLIZE" ; then
|
||||
echo "You need libtoolize to continue"
|
||||
exit 1;
|
||||
fi
|
||||
top_srcdir=`pwd`
|
||||
echo ""
|
||||
echo "Generating the build system in $top_srcdir"
|
||||
echo ""
|
||||
echo "copying files into place: cd build/gnuauto && cp -R -f * $top_srcdir"
|
||||
(cd build/gnuauto && cp -R -f * $top_srcdir)
|
||||
echo "running: $LIBTOOLIZE --force --copy"
|
||||
$LIBTOOLIZE --force --copy
|
||||
echo "running: aclocal"
|
||||
aclocal
|
||||
echo "running: automake -a -c --foreign"
|
||||
automake -a -c --foreign
|
||||
echo "running: autoconf"
|
||||
autoconf
|
||||
echo ""
|
||||
echo "If the above commands were successful you should now be able"
|
||||
echo "to build in the usual way:"
|
||||
echo ""
|
||||
echo " $ ./configure --prefix=/usr"
|
||||
echo " $ make"
|
||||
echo " $ make install"
|
||||
echo ""
|
||||
echo "to get a list of configure options type: ./configure --help"
|
||||
echo ""
|
||||
echo "Alternatively, you should be able to build outside of the source"
|
||||
echo "tree. e.g.:"
|
||||
echo ""
|
||||
echo " $ mkdir ../build-tidy"
|
||||
echo " $ cd ../build-tidy"
|
||||
echo " $ ../tidy/configure --prefix=/usr"
|
||||
echo " $ make"
|
||||
echo " $ make install"
|
||||
echo ""
|
||||
|
||||
fi
|
|
@ -1,75 +0,0 @@
|
|||
# Makefile [Makefile.am] - for tidy - HTML parser and pretty printer
|
||||
#
|
||||
# Copyright (c) 1998-2008 World Wide Web Consortium
|
||||
# (Massachusetts Institute of Technology, European Research
|
||||
# Consortium for Informatics and Mathematics, Keio University).
|
||||
# All Rights Reserved.
|
||||
#
|
||||
# Contributing Author(s):
|
||||
#
|
||||
# Dave Raggett <dsr@w3.org>
|
||||
# Terry Teague <terry_teague@users.sourceforge.net>
|
||||
# Pradeep Padala<ppadala@users.sourceforge.net>
|
||||
#
|
||||
# The contributing author(s) would like to thank all those who
|
||||
# helped with testing, bug fixes, and patience. This wouldn't
|
||||
# have been possible without all of you.
|
||||
#
|
||||
# COPYRIGHT NOTICE:
|
||||
#
|
||||
# This software and documentation is provided "as is," and
|
||||
# the copyright holders and contributing author(s) make no
|
||||
# representations or warranties, express or implied, including
|
||||
# but not limited to, warranties of merchantability or fitness
|
||||
# for any particular purpose or that the use of the software or
|
||||
# documentation will not infringe any third party patents,
|
||||
# copyrights, trademarks or other rights.
|
||||
#
|
||||
# The copyright holders and contributing author(s) will not be
|
||||
# liable for any direct, indirect, special or consequential damages
|
||||
# arising out of any use of the software or documentation, even if
|
||||
# advised of the possibility of such damage.
|
||||
#
|
||||
# Permission is hereby granted to use, copy, modify, and distribute
|
||||
# this source code, or portions hereof, documentation and executables,
|
||||
# for any purpose, without fee, subject to the following restrictions:
|
||||
#
|
||||
# 1. The origin of this source code must not be misrepresented.
|
||||
# 2. Altered versions must be plainly marked as such and must
|
||||
# not be misrepresented as being the original source.
|
||||
# 3. This Copyright notice may not be removed or altered from any
|
||||
# source or altered source distribution.
|
||||
#
|
||||
# The copyright holders and contributing author(s) specifically
|
||||
# permit, without fee, and encourage the use of this source code
|
||||
# as a component for supporting the Hypertext Markup Language in
|
||||
# commercial products. If you use this source code in a product,
|
||||
# acknowledgment is not required but would be appreciated.
|
||||
#
|
||||
|
||||
AM_CFLAGS = @CFLAGS@ @WARNING_CFLAGS@
|
||||
|
||||
INCLUDES = -I$(top_srcdir)/include
|
||||
|
||||
lib_LTLIBRARIES = libtidy.la
|
||||
|
||||
libtidy_la_SOURCES = \
|
||||
access.c attrs.c istack.c parser.c \
|
||||
tags.c entities.c lexer.c pprint.c \
|
||||
clean.c localize.c config.c alloc.c \
|
||||
attrask.c attrdict.c attrget.c buffio.c \
|
||||
fileio.c streamio.c tagask.c tmbstr.c \
|
||||
utf8.c tidylib.c mappedio.c gdoc.c
|
||||
|
||||
libtidy_la_LDFLAGS = \
|
||||
-version-info $(LT_CURRENT):$(LT_REVISION):$(LT_AGE) \
|
||||
-release $(LT_RELEASE) -no-undefined -export-dynamic
|
||||
|
||||
HFILES = \
|
||||
access.h attrdict.h attrs.h clean.h \
|
||||
config.h entities.h fileio.h forward.h \
|
||||
lexer.h mappedio.h message.h parser.h \
|
||||
pprint.h streamio.h tags.h tmbstr.h \
|
||||
utf8.h tidy-int.h version.h gdoc.h
|
||||
|
||||
EXTRA_DIST = $(HFILES)
|
|
@ -1,304 +0,0 @@
|
|||
LIBRARY libtidy
|
||||
EXPORTS
|
||||
tidyCreate @1001
|
||||
tidyRelease @1002
|
||||
tidySetAppData @1003
|
||||
tidyGetAppData @1004
|
||||
tidyReleaseDate @1005
|
||||
tidyStatus @1006
|
||||
tidyDetectedHtmlVersion @1007
|
||||
tidyDetectedXhtml @1008
|
||||
tidyDetectedGenericXml @1009
|
||||
tidyErrorCount @1010
|
||||
tidyWarningCount @1011
|
||||
tidyAccessWarningCount @1012
|
||||
tidyConfigErrorCount @1013
|
||||
tidyLoadConfig @1014
|
||||
tidyLoadConfigEnc @1015
|
||||
tidyFileExists @1016
|
||||
tidySetCharEncoding @1017
|
||||
tidySetInCharEncoding @1018
|
||||
tidySetOutCharEncoding @1019
|
||||
tidySetOptionCallback @1020
|
||||
tidyOptGetIdForName @1021
|
||||
tidyGetOptionList @1022
|
||||
tidyGetNextOption @1023
|
||||
tidyGetOption @1024
|
||||
tidyGetOptionByName @1025
|
||||
tidyOptGetId @1026
|
||||
tidyOptGetName @1027
|
||||
tidyOptGetType @1028
|
||||
tidyOptIsReadOnly @1029
|
||||
tidyOptGetCategory @1030
|
||||
tidyOptGetDefault @1031
|
||||
tidyOptGetDefaultInt @1032
|
||||
tidyOptGetDefaultBool @1033
|
||||
tidyOptGetPickList @1034
|
||||
tidyOptGetNextPick @1035
|
||||
tidyOptGetValue @1036
|
||||
tidyOptSetValue @1037
|
||||
tidyOptParseValue @1038
|
||||
tidyOptGetInt @1039
|
||||
tidyOptSetInt @1040
|
||||
tidyOptGetBool @1041
|
||||
tidyOptSetBool @1042
|
||||
tidyOptResetToDefault @1043
|
||||
tidyOptResetAllToDefault @1044
|
||||
tidyOptSnapshot @1045
|
||||
tidyOptResetToSnapshot @1046
|
||||
tidyOptDiffThanDefault @1047
|
||||
tidyOptDiffThanSnapshot @1048
|
||||
tidyOptCopyConfig @1049
|
||||
tidyOptGetEncName @1050
|
||||
tidyOptGetCurrPick @1051
|
||||
tidyOptGetDeclTagList @1052
|
||||
tidyOptGetNextDeclTag @1053
|
||||
tidyOptGetDoc @1054
|
||||
tidyOptGetDocLinksList @1055
|
||||
tidyOptGetNextDocLinks @1056
|
||||
tidyInitSource @1057
|
||||
tidyGetByte @1058
|
||||
tidyUngetByte @1059
|
||||
tidyIsEOF @1060
|
||||
tidyInitSink @1061
|
||||
tidyPutByte @1062
|
||||
tidySetReportFilter @1063
|
||||
tidySetErrorFile @1064
|
||||
tidySetErrorBuffer @1065
|
||||
tidySetErrorSink @1066
|
||||
tidySetMallocCall @1067
|
||||
tidySetReallocCall @1068
|
||||
tidySetFreeCall @1069
|
||||
tidySetPanicCall @1070
|
||||
tidyParseFile @1071
|
||||
tidyParseStdin @1072
|
||||
tidyParseString @1073
|
||||
tidyParseBuffer @1074
|
||||
tidyParseSource @1075
|
||||
tidyCleanAndRepair @1076
|
||||
tidyRunDiagnostics @1077
|
||||
tidySaveFile @1078
|
||||
tidySaveStdout @1079
|
||||
tidySaveBuffer @1080
|
||||
tidySaveString @1081
|
||||
tidySaveSink @1082
|
||||
tidyOptSaveFile @1083
|
||||
tidyOptSaveSink @1084
|
||||
tidyErrorSummary @1085
|
||||
tidyGeneralInfo @1086
|
||||
tidyGetRoot @1087
|
||||
tidyGetHtml @1088
|
||||
tidyGetHead @1089
|
||||
tidyGetBody @1090
|
||||
tidyGetParent @1091
|
||||
tidyGetChild @1092
|
||||
tidyGetNext @1093
|
||||
tidyGetPrev @1094
|
||||
tidyAttrFirst @1095
|
||||
tidyAttrNext @1096
|
||||
tidyAttrName @1097
|
||||
tidyAttrValue @1098
|
||||
tidyNodeGetType @1099
|
||||
tidyNodeGetName @1100
|
||||
tidyNodeIsText @1101
|
||||
tidyNodeIsProp @1102
|
||||
tidyNodeIsHeader @1103
|
||||
tidyNodeHasText @1104
|
||||
tidyNodeGetText @1105
|
||||
tidyNodeGetId @1106
|
||||
tidyNodeLine @1107
|
||||
tidyNodeColumn @1108
|
||||
tidyNodeIsHTML @1109
|
||||
tidyNodeIsHEAD @1110
|
||||
tidyNodeIsTITLE @1111
|
||||
tidyNodeIsBASE @1112
|
||||
tidyNodeIsMETA @1113
|
||||
tidyNodeIsBODY @1114
|
||||
tidyNodeIsFRAMESET @1115
|
||||
tidyNodeIsFRAME @1116
|
||||
tidyNodeIsIFRAME @1117
|
||||
tidyNodeIsNOFRAMES @1118
|
||||
tidyNodeIsHR @1119
|
||||
tidyNodeIsH1 @1120
|
||||
tidyNodeIsH2 @1121
|
||||
tidyNodeIsPRE @1122
|
||||
tidyNodeIsLISTING @1123
|
||||
tidyNodeIsP @1124
|
||||
tidyNodeIsUL @1125
|
||||
tidyNodeIsOL @1126
|
||||
tidyNodeIsDL @1127
|
||||
tidyNodeIsDIR @1128
|
||||
tidyNodeIsLI @1129
|
||||
tidyNodeIsDT @1130
|
||||
tidyNodeIsDD @1131
|
||||
tidyNodeIsTABLE @1132
|
||||
tidyNodeIsCAPTION @1133
|
||||
tidyNodeIsTD @1134
|
||||
tidyNodeIsTH @1135
|
||||
tidyNodeIsTR @1136
|
||||
tidyNodeIsCOL @1137
|
||||
tidyNodeIsCOLGROUP @1138
|
||||
tidyNodeIsBR @1139
|
||||
tidyNodeIsA @1140
|
||||
tidyNodeIsLINK @1141
|
||||
tidyNodeIsB @1142
|
||||
tidyNodeIsI @1143
|
||||
tidyNodeIsSTRONG @1144
|
||||
tidyNodeIsEM @1145
|
||||
tidyNodeIsBIG @1146
|
||||
tidyNodeIsSMALL @1147
|
||||
tidyNodeIsPARAM @1148
|
||||
tidyNodeIsOPTION @1149
|
||||
tidyNodeIsOPTGROUP @1150
|
||||
tidyNodeIsIMG @1151
|
||||
tidyNodeIsMAP @1152
|
||||
tidyNodeIsAREA @1153
|
||||
tidyNodeIsNOBR @1154
|
||||
tidyNodeIsWBR @1155
|
||||
tidyNodeIsFONT @1156
|
||||
tidyNodeIsLAYER @1157
|
||||
tidyNodeIsSPACER @1158
|
||||
tidyNodeIsCENTER @1159
|
||||
tidyNodeIsSTYLE @1160
|
||||
tidyNodeIsSCRIPT @1161
|
||||
tidyNodeIsNOSCRIPT @1162
|
||||
tidyNodeIsFORM @1163
|
||||
tidyNodeIsTEXTAREA @1164
|
||||
tidyNodeIsBLOCKQUOTE @1165
|
||||
tidyNodeIsAPPLET @1166
|
||||
tidyNodeIsOBJECT @1167
|
||||
tidyNodeIsDIV @1168
|
||||
tidyNodeIsSPAN @1169
|
||||
tidyNodeIsINPUT @1170
|
||||
tidyNodeIsQ @1171
|
||||
tidyNodeIsLABEL @1172
|
||||
tidyNodeIsH3 @1173
|
||||
tidyNodeIsH4 @1174
|
||||
tidyNodeIsH5 @1175
|
||||
tidyNodeIsH6 @1176
|
||||
tidyNodeIsADDRESS @1177
|
||||
tidyNodeIsXMP @1178
|
||||
tidyNodeIsSELECT @1179
|
||||
tidyNodeIsBLINK @1180
|
||||
tidyNodeIsMARQUEE @1181
|
||||
tidyNodeIsEMBED @1182
|
||||
tidyNodeIsBASEFONT @1183
|
||||
tidyNodeIsISINDEX @1184
|
||||
tidyNodeIsS @1185
|
||||
tidyNodeIsSTRIKE @1186
|
||||
tidyNodeIsU @1187
|
||||
tidyNodeIsMENU @1188
|
||||
tidyAttrGetId @1189
|
||||
tidyAttrIsEvent @1190
|
||||
tidyAttrIsProp @1191
|
||||
tidyAttrIsHREF @1192
|
||||
tidyAttrIsSRC @1193
|
||||
tidyAttrIsID @1194
|
||||
tidyAttrIsNAME @1195
|
||||
tidyAttrIsSUMMARY @1196
|
||||
tidyAttrIsALT @1197
|
||||
tidyAttrIsLONGDESC @1198
|
||||
tidyAttrIsUSEMAP @1199
|
||||
tidyAttrIsISMAP @1200
|
||||
tidyAttrIsLANGUAGE @1201
|
||||
tidyAttrIsTYPE @1202
|
||||
tidyAttrIsVALUE @1203
|
||||
tidyAttrIsCONTENT @1204
|
||||
tidyAttrIsTITLE @1205
|
||||
tidyAttrIsXMLNS @1206
|
||||
tidyAttrIsDATAFLD @1207
|
||||
tidyAttrIsWIDTH @1208
|
||||
tidyAttrIsHEIGHT @1209
|
||||
tidyAttrIsFOR @1210
|
||||
tidyAttrIsSELECTED @1211
|
||||
tidyAttrIsCHECKED @1212
|
||||
tidyAttrIsLANG @1213
|
||||
tidyAttrIsTARGET @1214
|
||||
tidyAttrIsHTTP_EQUIV @1215
|
||||
tidyAttrIsREL @1216
|
||||
tidyAttrIsOnMOUSEMOVE @1217
|
||||
tidyAttrIsOnMOUSEDOWN @1218
|
||||
tidyAttrIsOnMOUSEUP @1219
|
||||
tidyAttrIsOnCLICK @1220
|
||||
tidyAttrIsOnMOUSEOVER @1221
|
||||
tidyAttrIsOnMOUSEOUT @1222
|
||||
tidyAttrIsOnKEYDOWN @1223
|
||||
tidyAttrIsOnKEYUP @1224
|
||||
tidyAttrIsOnKEYPRESS @1225
|
||||
tidyAttrIsOnFOCUS @1226
|
||||
tidyAttrIsOnBLUR @1227
|
||||
tidyAttrIsBGCOLOR @1228
|
||||
tidyAttrIsLINK @1229
|
||||
tidyAttrIsALINK @1230
|
||||
tidyAttrIsVLINK @1231
|
||||
tidyAttrIsTEXT @1232
|
||||
tidyAttrIsSTYLE @1233
|
||||
tidyAttrIsABBR @1234
|
||||
tidyAttrIsCOLSPAN @1235
|
||||
tidyAttrIsROWSPAN @1236
|
||||
tidyAttrGetById @1237
|
||||
tidyAttrGetHREF @1238
|
||||
tidyAttrGetSRC @1239
|
||||
tidyAttrGetID @1240
|
||||
tidyAttrGetNAME @1241
|
||||
tidyAttrGetSUMMARY @1242
|
||||
tidyAttrGetALT @1243
|
||||
tidyAttrGetLONGDESC @1244
|
||||
tidyAttrGetUSEMAP @1245
|
||||
tidyAttrGetISMAP @1246
|
||||
tidyAttrGetLANGUAGE @1247
|
||||
tidyAttrGetTYPE @1248
|
||||
tidyAttrGetVALUE @1249
|
||||
tidyAttrGetCONTENT @1250
|
||||
tidyAttrGetTITLE @1251
|
||||
tidyAttrGetXMLNS @1252
|
||||
tidyAttrGetDATAFLD @1253
|
||||
tidyAttrGetWIDTH @1254
|
||||
tidyAttrGetHEIGHT @1255
|
||||
tidyAttrGetFOR @1256
|
||||
tidyAttrGetSELECTED @1257
|
||||
tidyAttrGetCHECKED @1258
|
||||
tidyAttrGetLANG @1259
|
||||
tidyAttrGetTARGET @1260
|
||||
tidyAttrGetHTTP_EQUIV @1261
|
||||
tidyAttrGetREL @1262
|
||||
tidyAttrGetOnMOUSEMOVE @1263
|
||||
tidyAttrGetOnMOUSEDOWN @1264
|
||||
tidyAttrGetOnMOUSEUP @1265
|
||||
tidyAttrGetOnCLICK @1266
|
||||
tidyAttrGetOnMOUSEOVER @1267
|
||||
tidyAttrGetOnMOUSEOUT @1268
|
||||
tidyAttrGetOnKEYDOWN @1269
|
||||
tidyAttrGetOnKEYUP @1270
|
||||
tidyAttrGetOnKEYPRESS @1271
|
||||
tidyAttrGetOnFOCUS @1272
|
||||
tidyAttrGetOnBLUR @1273
|
||||
tidyAttrGetBGCOLOR @1274
|
||||
tidyAttrGetLINK @1275
|
||||
tidyAttrGetALINK @1276
|
||||
tidyAttrGetVLINK @1277
|
||||
tidyAttrGetTEXT @1278
|
||||
tidyAttrGetSTYLE @1279
|
||||
tidyAttrGetABBR @1280
|
||||
tidyAttrGetCOLSPAN @1281
|
||||
tidyAttrGetROWSPAN @1282
|
||||
tidyCreateWithAllocator @1283
|
||||
|
||||
tidyInitInputBuffer @2001
|
||||
tidyInitOutputBuffer @2002
|
||||
tidyBufInit @2003
|
||||
tidyBufAlloc @2004
|
||||
tidyBufCheckAlloc @2005
|
||||
tidyBufFree @2006
|
||||
tidyBufClear @2007
|
||||
tidyBufAttach @2008
|
||||
tidyBufDetach @2009
|
||||
tidyBufAppend @2010
|
||||
tidyBufPutByte @2011
|
||||
tidyBufPopByte @2012
|
||||
tidyBufGetByte @2013
|
||||
tidyBufEndOfInput @2014
|
||||
tidyBufUngetByte @2015
|
||||
tidyBufInitWithAllocator @2016
|
||||
tidyBufAllocWithAllocator @2017
|
||||
tidyNodeGetValue @2018
|
|
@ -1,94 +0,0 @@
|
|||
# Microsoft Developer Studio Project File - Name="tidy" - Package Owner=<4>
|
||||
# Microsoft Developer Studio Generated Build File, Format Version 6.00
|
||||
# ** DO NOT EDIT **
|
||||
|
||||
# TARGTYPE "Win32 (x86) Console Application" 0x0103
|
||||
|
||||
CFG=tidy - Win32 Debug
|
||||
!MESSAGE This is not a valid makefile. To build this project using NMAKE,
|
||||
!MESSAGE use the Export Makefile command and run
|
||||
!MESSAGE
|
||||
!MESSAGE NMAKE /f "tidy.mak".
|
||||
!MESSAGE
|
||||
!MESSAGE You can specify a configuration when running NMAKE
|
||||
!MESSAGE by defining the macro CFG on the command line. For example:
|
||||
!MESSAGE
|
||||
!MESSAGE NMAKE /f "tidy.mak" CFG="tidy - Win32 Debug"
|
||||
!MESSAGE
|
||||
!MESSAGE Possible choices for configuration are:
|
||||
!MESSAGE
|
||||
!MESSAGE "tidy - Win32 Release" (based on "Win32 (x86) Console Application")
|
||||
!MESSAGE "tidy - Win32 Debug" (based on "Win32 (x86) Console Application")
|
||||
!MESSAGE
|
||||
|
||||
# Begin Project
|
||||
# PROP AllowPerConfigDependencies 0
|
||||
# PROP Scc_ProjName ""
|
||||
# PROP Scc_LocalPath ""
|
||||
CPP=cl.exe
|
||||
RSC=rc.exe
|
||||
|
||||
!IF "$(CFG)" == "tidy - Win32 Release"
|
||||
|
||||
# PROP BASE Use_MFC 0
|
||||
# PROP BASE Use_Debug_Libraries 0
|
||||
# PROP BASE Output_Dir "Release"
|
||||
# PROP BASE Intermediate_Dir "Release"
|
||||
# PROP BASE Target_Dir ""
|
||||
# PROP Use_MFC 0
|
||||
# PROP Use_Debug_Libraries 0
|
||||
# PROP Output_Dir "Release"
|
||||
# PROP Intermediate_Dir "Release"
|
||||
# PROP Ignore_Export_Lib 0
|
||||
# PROP Target_Dir ""
|
||||
# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c
|
||||
# ADD CPP /nologo /MT /Za /W3 /GX /O2 /I "..\..\include" /D "NDEBUG" /D "WIN32" /D "_CONSOLE" /D "_MBCS" /D SUPPORT_UTF16_ENCODINGS=1 /D SUPPORT_ASIAN_ENCODINGS=1 /D SUPPORT_ACCESSIBILITY_CHECKS=1 /D TIDYDLL_EXPORT=__declspec(dllimport) /D _CRT_SECURE_NO_DEPRECATE /YX /FD /c
|
||||
# ADD BASE RSC /l 0x409 /d "NDEBUG"
|
||||
# ADD RSC /l 0x409 /d "NDEBUG"
|
||||
BSC32=bscmake.exe
|
||||
# ADD BASE BSC32 /nologo
|
||||
# ADD BSC32 /nologo
|
||||
LINK32=link.exe
|
||||
# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /machine:I386
|
||||
# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /profile /map /machine:I386
|
||||
|
||||
!ELSEIF "$(CFG)" == "tidy - Win32 Debug"
|
||||
|
||||
# PROP BASE Use_MFC 0
|
||||
# PROP BASE Use_Debug_Libraries 1
|
||||
# PROP BASE Output_Dir "Debug"
|
||||
# PROP BASE Intermediate_Dir "Debug"
|
||||
# PROP BASE Target_Dir ""
|
||||
# PROP Use_MFC 0
|
||||
# PROP Use_Debug_Libraries 1
|
||||
# PROP Output_Dir "Debug"
|
||||
# PROP Intermediate_Dir "Debug"
|
||||
# PROP Ignore_Export_Lib 0
|
||||
# PROP Target_Dir ""
|
||||
# ADD BASE CPP /nologo /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /GZ /c
|
||||
# ADD CPP /nologo /MTd /Za /W3 /Gm /GX /ZI /Od /I "..\..\include" /D "_DEBUG" /D "WIN32" /D "_CONSOLE" /D "_MBCS" /D SUPPORT_UTF16_ENCODINGS=1 /D SUPPORT_ASIAN_ENCODINGS=1 /D SUPPORT_ACCESSIBILITY_CHECKS=1 /D TIDYDLL_EXPORT=__declspec(dllimport) /D _CRT_SECURE_NO_DEPRECATE /YX /FD /GZ /c
|
||||
# ADD BASE RSC /l 0x409 /d "_DEBUG"
|
||||
# ADD RSC /l 0x409 /d "_DEBUG"
|
||||
BSC32=bscmake.exe
|
||||
# ADD BASE BSC32 /nologo
|
||||
# ADD BSC32 /nologo
|
||||
LINK32=link.exe
|
||||
# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept
|
||||
# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept
|
||||
|
||||
!ENDIF
|
||||
|
||||
# Begin Target
|
||||
|
||||
# Name "tidy - Win32 Release"
|
||||
# Name "tidy - Win32 Debug"
|
||||
# Begin Group "Source Files"
|
||||
|
||||
# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat"
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\console\tidy.c
|
||||
# End Source File
|
||||
# End Group
|
||||
# End Target
|
||||
# End Project
|
|
@ -1,56 +0,0 @@
|
|||
Microsoft Developer Studio Workspace File, Format Version 6.00
|
||||
# WARNING: DO NOT EDIT OR DELETE THIS WORKSPACE FILE!
|
||||
|
||||
###############################################################################
|
||||
|
||||
Project: "tidy"=.\tidy.dsp - Package Owner=<4>
|
||||
|
||||
Package=<5>
|
||||
{{{
|
||||
}}}
|
||||
|
||||
Package=<4>
|
||||
{{{
|
||||
Begin Project Dependency
|
||||
Project_Dep_Name tidylib
|
||||
End Project Dependency
|
||||
}}}
|
||||
|
||||
###############################################################################
|
||||
|
||||
Project: "tidydll"=.\tidydll.dsp - Package Owner=<4>
|
||||
|
||||
Package=<5>
|
||||
{{{
|
||||
}}}
|
||||
|
||||
Package=<4>
|
||||
{{{
|
||||
}}}
|
||||
|
||||
###############################################################################
|
||||
|
||||
Project: "tidylib"=.\tidylib.dsp - Package Owner=<4>
|
||||
|
||||
Package=<5>
|
||||
{{{
|
||||
}}}
|
||||
|
||||
Package=<4>
|
||||
{{{
|
||||
}}}
|
||||
|
||||
###############################################################################
|
||||
|
||||
Global:
|
||||
|
||||
Package=<5>
|
||||
{{{
|
||||
}}}
|
||||
|
||||
Package=<3>
|
||||
{{{
|
||||
}}}
|
||||
|
||||
###############################################################################
|
||||
|
|
@ -1,296 +0,0 @@
|
|||
# Microsoft Developer Studio Project File - Name="tidydll" - Package Owner=<4>
|
||||
# Microsoft Developer Studio Generated Build File, Format Version 6.00
|
||||
# ** DO NOT EDIT **
|
||||
|
||||
# TARGTYPE "Win32 (x86) Dynamic-Link Library" 0x0102
|
||||
|
||||
CFG=tidydll - Win32 Debug
|
||||
!MESSAGE This is not a valid makefile. To build this project using NMAKE,
|
||||
!MESSAGE use the Export Makefile command and run
|
||||
!MESSAGE
|
||||
!MESSAGE NMAKE /f "tidydll.mak".
|
||||
!MESSAGE
|
||||
!MESSAGE You can specify a configuration when running NMAKE
|
||||
!MESSAGE by defining the macro CFG on the command line. For example:
|
||||
!MESSAGE
|
||||
!MESSAGE NMAKE /f "tidydll.mak" CFG="tidydll - Win32 Debug"
|
||||
!MESSAGE
|
||||
!MESSAGE Possible choices for configuration are:
|
||||
!MESSAGE
|
||||
!MESSAGE "tidydll - Win32 Release" (based on "Win32 (x86) Dynamic-Link Library")
|
||||
!MESSAGE "tidydll - Win32 Debug" (based on "Win32 (x86) Dynamic-Link Library")
|
||||
!MESSAGE
|
||||
|
||||
# Begin Project
|
||||
# PROP AllowPerConfigDependencies 0
|
||||
# PROP Scc_ProjName ""
|
||||
# PROP Scc_LocalPath ""
|
||||
CPP=cl.exe
|
||||
MTL=midl.exe
|
||||
RSC=rc.exe
|
||||
|
||||
!IF "$(CFG)" == "tidydll - Win32 Release"
|
||||
|
||||
# PROP BASE Use_MFC 0
|
||||
# PROP BASE Use_Debug_Libraries 0
|
||||
# PROP BASE Output_Dir "tidydll___Win32_Release"
|
||||
# PROP BASE Intermediate_Dir "tidydll___Win32_Release"
|
||||
# PROP BASE Target_Dir ""
|
||||
# PROP Use_MFC 0
|
||||
# PROP Use_Debug_Libraries 0
|
||||
# PROP Output_Dir "ReleaseDLL"
|
||||
# PROP Intermediate_Dir "ReleaseDLL"
|
||||
# PROP Ignore_Export_Lib 0
|
||||
# PROP Target_Dir ""
|
||||
# ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "TIDYDLL_EXPORTS" /YX /FD /c
|
||||
# ADD CPP /nologo /MD /W3 /GX /O2 /I "..\..\include" /D "NDEBUG" /D "WIN32" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "TIDYDLL_EXPORTS" /D SUPPORT_UTF16_ENCODINGS=1 /D SUPPORT_ASIAN_ENCODINGS=1 /D SUPPORT_ACCESSIBILITY_CHECKS=1 /YX /FD /c
|
||||
# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32
|
||||
# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32
|
||||
# ADD BASE RSC /l 0x409 /d "NDEBUG"
|
||||
# ADD RSC /l 0x409 /d "NDEBUG"
|
||||
BSC32=bscmake.exe
|
||||
# ADD BASE BSC32 /nologo
|
||||
# ADD BSC32 /nologo
|
||||
LINK32=link.exe
|
||||
# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /machine:I386
|
||||
# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /machine:I386 /out:"ReleaseDLL/libtidy.dll"
|
||||
|
||||
!ELSEIF "$(CFG)" == "tidydll - Win32 Debug"
|
||||
|
||||
# PROP BASE Use_MFC 0
|
||||
# PROP BASE Use_Debug_Libraries 1
|
||||
# PROP BASE Output_Dir "tidydll___Win32_Debug"
|
||||
# PROP BASE Intermediate_Dir "tidydll___Win32_Debug"
|
||||
# PROP BASE Target_Dir ""
|
||||
# PROP Use_MFC 0
|
||||
# PROP Use_Debug_Libraries 1
|
||||
# PROP Output_Dir "DebugDLL"
|
||||
# PROP Intermediate_Dir "DebugDLL"
|
||||
# PROP Ignore_Export_Lib 0
|
||||
# PROP Target_Dir ""
|
||||
# ADD BASE CPP /nologo /MTd /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "TIDYDLL_EXPORTS" /YX /FD /GZ /c
|
||||
# ADD CPP /nologo /MDd /W3 /ZI /Od /I "..\..\include" /D "_DEBUG" /D "WIN32" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D SUPPORT_UTF16_ENCODINGS=1 /D SUPPORT_ASIAN_ENCODINGS=1 /D SUPPORT_ACCESSIBILITY_CHECKS=1 /FD /GZ /c
|
||||
# SUBTRACT CPP /YX
|
||||
# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32
|
||||
# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32
|
||||
# ADD BASE RSC /l 0x409 /d "_DEBUG"
|
||||
# ADD RSC /l 0x409 /d "_DEBUG"
|
||||
BSC32=bscmake.exe
|
||||
# ADD BASE BSC32 /nologo
|
||||
# ADD BSC32 /nologo
|
||||
LINK32=link.exe
|
||||
# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /debug /machine:I386 /pdbtype:sept
|
||||
# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /debug /machine:I386 /out:"DebugDLL/libtidy.dll" /pdbtype:sept
|
||||
|
||||
!ENDIF
|
||||
|
||||
# Begin Target
|
||||
|
||||
# Name "tidydll - Win32 Release"
|
||||
# Name "tidydll - Win32 Debug"
|
||||
# Begin Group "Source Files"
|
||||
|
||||
# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat"
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\src\access.c
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\src\alloc.c
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\src\attrask.c
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\src\attrdict.c
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\src\attrget.c
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\src\attrs.c
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\src\buffio.c
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\src\clean.c
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\src\config.c
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\src\entities.c
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\src\fileio.c
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\src\istack.c
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\src\lexer.c
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\src\localize.c
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\src\mappedio.c
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\src\parser.c
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\src\pprint.c
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\src\streamio.c
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\src\tagask.c
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=.\tidy.def
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\src\tags.c
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\src\tidylib.c
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\src\tmbstr.c
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\src\utf8.c
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\src\win32tc.c
|
||||
# End Source File
|
||||
# End Group
|
||||
# Begin Group "Header Files"
|
||||
|
||||
# PROP Default_Filter "h;hpp;hxx;hm;inl"
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\src\access.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\src\attrdict.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\src\attrs.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\include\buffio.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\src\clean.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\src\config.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\src\entities.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\src\fileio.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\src\forward.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\src\lexer.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\src\mappedio.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\src\message.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\src\parser.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\include\platform.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\src\pprint.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\src\streamio.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\src\tags.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE="..\..\src\tidy-int.h"
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\include\tidy.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\include\tidyenum.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\src\tmbstr.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\src\utf8.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\src\version.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\src\win32tc.h
|
||||
# End Source File
|
||||
# End Group
|
||||
# End Target
|
||||
# End Project
|
|
@ -1,295 +0,0 @@
|
|||
# Microsoft Developer Studio Project File - Name="tidylib" - Package Owner=<4>
|
||||
# Microsoft Developer Studio Generated Build File, Format Version 6.00
|
||||
# ** DO NOT EDIT **
|
||||
|
||||
# TARGTYPE "Win32 (x86) Static Library" 0x0104
|
||||
|
||||
CFG=tidylib - Win32 Debug
|
||||
!MESSAGE This is not a valid makefile. To build this project using NMAKE,
|
||||
!MESSAGE use the Export Makefile command and run
|
||||
!MESSAGE
|
||||
!MESSAGE NMAKE /f "tidylib.mak".
|
||||
!MESSAGE
|
||||
!MESSAGE You can specify a configuration when running NMAKE
|
||||
!MESSAGE by defining the macro CFG on the command line. For example:
|
||||
!MESSAGE
|
||||
!MESSAGE NMAKE /f "tidylib.mak" CFG="tidylib - Win32 Debug"
|
||||
!MESSAGE
|
||||
!MESSAGE Possible choices for configuration are:
|
||||
!MESSAGE
|
||||
!MESSAGE "tidylib - Win32 Release" (based on "Win32 (x86) Static Library")
|
||||
!MESSAGE "tidylib - Win32 Debug" (based on "Win32 (x86) Static Library")
|
||||
!MESSAGE
|
||||
|
||||
# Begin Project
|
||||
# PROP AllowPerConfigDependencies 0
|
||||
# PROP Scc_ProjName ""
|
||||
# PROP Scc_LocalPath ""
|
||||
CPP=cl.exe
|
||||
RSC=rc.exe
|
||||
|
||||
!IF "$(CFG)" == "tidylib - Win32 Release"
|
||||
|
||||
# PROP BASE Use_MFC 0
|
||||
# PROP BASE Use_Debug_Libraries 0
|
||||
# PROP BASE Output_Dir "Release"
|
||||
# PROP BASE Intermediate_Dir "Release"
|
||||
# PROP BASE Target_Dir ""
|
||||
# PROP Use_MFC 0
|
||||
# PROP Use_Debug_Libraries 0
|
||||
# PROP Output_Dir "Release"
|
||||
# PROP Intermediate_Dir "Release"
|
||||
# PROP Target_Dir ""
|
||||
# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_MBCS" /D "_LIB" /YX /FD /c
|
||||
# ADD CPP /nologo /MT /W4 /GX /O2 /I "../../include" /D "NDEBUG" /D "_LIB" /D "WIN32" /D "_MBCS" /D "SUPPORT_UTF16_ENCODINGS" /D "SUPPORT_ASIAN_ENCODINGS" /D "SUPPORT_ACCESSIBILITY_CHECKS" /FD /c
|
||||
# SUBTRACT CPP /YX
|
||||
# ADD BASE RSC /l 0x409 /d "NDEBUG"
|
||||
# ADD RSC /l 0x409 /d "NDEBUG"
|
||||
BSC32=bscmake.exe
|
||||
# ADD BASE BSC32 /nologo
|
||||
# ADD BSC32 /nologo
|
||||
LIB32=link.exe -lib
|
||||
# ADD BASE LIB32 /nologo
|
||||
# ADD LIB32 /nologo /out:"Release\libtidy.lib"
|
||||
|
||||
!ELSEIF "$(CFG)" == "tidylib - Win32 Debug"
|
||||
|
||||
# PROP BASE Use_MFC 0
|
||||
# PROP BASE Use_Debug_Libraries 1
|
||||
# PROP BASE Output_Dir "Debug"
|
||||
# PROP BASE Intermediate_Dir "Debug"
|
||||
# PROP BASE Target_Dir ""
|
||||
# PROP Use_MFC 0
|
||||
# PROP Use_Debug_Libraries 1
|
||||
# PROP Output_Dir "Debug"
|
||||
# PROP Intermediate_Dir "Debug"
|
||||
# PROP Target_Dir ""
|
||||
# ADD BASE CPP /nologo /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_MBCS" /D "_LIB" /YX /FD /GZ /c
|
||||
# ADD CPP /nologo /MTd /Za /W4 /Gm /ZI /Od /I "../../include" /D "_DEBUG" /D "_WIN32" /D "_LIB" /D "WIN32" /D "_MBCS" /D "SUPPORT_UTF16_ENCODINGS" /D "SUPPORT_ASIAN_ENCODINGS" /D "SUPPORT_ACCESSIBILITY_CHECKS" /U "WINDOWS" /FD /GZ /c
|
||||
# SUBTRACT CPP /YX
|
||||
# ADD BASE RSC /l 0x409 /d "_DEBUG"
|
||||
# ADD RSC /l 0x409 /d "_DEBUG"
|
||||
BSC32=bscmake.exe
|
||||
# ADD BASE BSC32 /nologo
|
||||
# ADD BSC32 /nologo
|
||||
LIB32=link.exe -lib
|
||||
# ADD BASE LIB32 /nologo
|
||||
# ADD LIB32 /nologo /out:"Debug\libtidy.lib"
|
||||
|
||||
!ENDIF
|
||||
|
||||
# Begin Target
|
||||
|
||||
# Name "tidylib - Win32 Release"
|
||||
# Name "tidylib - Win32 Debug"
|
||||
# Begin Group "Source Files"
|
||||
|
||||
# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat"
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\src\access.c
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\src\alloc.c
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\src\attrask.c
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\src\attrdict.c
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\src\attrget.c
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\src\attrs.c
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\src\buffio.c
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\src\clean.c
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\src\config.c
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\src\entities.c
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\src\fileio.c
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\src\istack.c
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\src\lexer.c
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\src\localize.c
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\src\mappedio.c
|
||||
|
||||
!IF "$(CFG)" == "tidylib - Win32 Release"
|
||||
|
||||
!ELSEIF "$(CFG)" == "tidylib - Win32 Debug"
|
||||
|
||||
# ADD CPP /Ze
|
||||
|
||||
!ENDIF
|
||||
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\src\parser.c
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\src\pprint.c
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\src\streamio.c
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\src\tagask.c
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\src\tags.c
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\src\tidylib.c
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\src\tmbstr.c
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\src\utf8.c
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\src\win32tc.c
|
||||
# End Source File
|
||||
# End Group
|
||||
# Begin Group "Header Files"
|
||||
|
||||
# PROP Default_Filter "h;hpp;hxx;hm;inl"
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\src\access.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\src\attrdict.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\src\attrs.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\include\buffio.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\src\clean.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\src\config.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\src\entities.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\src\fileio.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\src\forward.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\src\lexer.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\src\mappedio.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\src\message.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\src\parser.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\include\platform.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\src\pprint.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\src\streamio.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\src\tags.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE="..\..\src\tidy-int.h"
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\include\tidy.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\include\tidyenum.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\src\tmbstr.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\src\utf8.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\src\version.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\src\win32tc.h
|
||||
# End Source File
|
||||
# End Group
|
||||
# End Target
|
||||
# End Project
|
|
@ -1,304 +0,0 @@
|
|||
LIBRARY libtidy
|
||||
EXPORTS
|
||||
tidyCreate @1001
|
||||
tidyRelease @1002
|
||||
tidySetAppData @1003
|
||||
tidyGetAppData @1004
|
||||
tidyReleaseDate @1005
|
||||
tidyStatus @1006
|
||||
tidyDetectedHtmlVersion @1007
|
||||
tidyDetectedXhtml @1008
|
||||
tidyDetectedGenericXml @1009
|
||||
tidyErrorCount @1010
|
||||
tidyWarningCount @1011
|
||||
tidyAccessWarningCount @1012
|
||||
tidyConfigErrorCount @1013
|
||||
tidyLoadConfig @1014
|
||||
tidyLoadConfigEnc @1015
|
||||
tidyFileExists @1016
|
||||
tidySetCharEncoding @1017
|
||||
tidySetInCharEncoding @1018
|
||||
tidySetOutCharEncoding @1019
|
||||
tidySetOptionCallback @1020
|
||||
tidyOptGetIdForName @1021
|
||||
tidyGetOptionList @1022
|
||||
tidyGetNextOption @1023
|
||||
tidyGetOption @1024
|
||||
tidyGetOptionByName @1025
|
||||
tidyOptGetId @1026
|
||||
tidyOptGetName @1027
|
||||
tidyOptGetType @1028
|
||||
tidyOptIsReadOnly @1029
|
||||
tidyOptGetCategory @1030
|
||||
tidyOptGetDefault @1031
|
||||
tidyOptGetDefaultInt @1032
|
||||
tidyOptGetDefaultBool @1033
|
||||
tidyOptGetPickList @1034
|
||||
tidyOptGetNextPick @1035
|
||||
tidyOptGetValue @1036
|
||||
tidyOptSetValue @1037
|
||||
tidyOptParseValue @1038
|
||||
tidyOptGetInt @1039
|
||||
tidyOptSetInt @1040
|
||||
tidyOptGetBool @1041
|
||||
tidyOptSetBool @1042
|
||||
tidyOptResetToDefault @1043
|
||||
tidyOptResetAllToDefault @1044
|
||||
tidyOptSnapshot @1045
|
||||
tidyOptResetToSnapshot @1046
|
||||
tidyOptDiffThanDefault @1047
|
||||
tidyOptDiffThanSnapshot @1048
|
||||
tidyOptCopyConfig @1049
|
||||
tidyOptGetEncName @1050
|
||||
tidyOptGetCurrPick @1051
|
||||
tidyOptGetDeclTagList @1052
|
||||
tidyOptGetNextDeclTag @1053
|
||||
tidyOptGetDoc @1054
|
||||
tidyOptGetDocLinksList @1055
|
||||
tidyOptGetNextDocLinks @1056
|
||||
tidyInitSource @1057
|
||||
tidyGetByte @1058
|
||||
tidyUngetByte @1059
|
||||
tidyIsEOF @1060
|
||||
tidyInitSink @1061
|
||||
tidyPutByte @1062
|
||||
tidySetReportFilter @1063
|
||||
tidySetErrorFile @1064
|
||||
tidySetErrorBuffer @1065
|
||||
tidySetErrorSink @1066
|
||||
tidySetMallocCall @1067
|
||||
tidySetReallocCall @1068
|
||||
tidySetFreeCall @1069
|
||||
tidySetPanicCall @1070
|
||||
tidyParseFile @1071
|
||||
tidyParseStdin @1072
|
||||
tidyParseString @1073
|
||||
tidyParseBuffer @1074
|
||||
tidyParseSource @1075
|
||||
tidyCleanAndRepair @1076
|
||||
tidyRunDiagnostics @1077
|
||||
tidySaveFile @1078
|
||||
tidySaveStdout @1079
|
||||
tidySaveBuffer @1080
|
||||
tidySaveString @1081
|
||||
tidySaveSink @1082
|
||||
tidyOptSaveFile @1083
|
||||
tidyOptSaveSink @1084
|
||||
tidyErrorSummary @1085
|
||||
tidyGeneralInfo @1086
|
||||
tidyGetRoot @1087
|
||||
tidyGetHtml @1088
|
||||
tidyGetHead @1089
|
||||
tidyGetBody @1090
|
||||
tidyGetParent @1091
|
||||
tidyGetChild @1092
|
||||
tidyGetNext @1093
|
||||
tidyGetPrev @1094
|
||||
tidyAttrFirst @1095
|
||||
tidyAttrNext @1096
|
||||
tidyAttrName @1097
|
||||
tidyAttrValue @1098
|
||||
tidyNodeGetType @1099
|
||||
tidyNodeGetName @1100
|
||||
tidyNodeIsText @1101
|
||||
tidyNodeIsProp @1102
|
||||
tidyNodeIsHeader @1103
|
||||
tidyNodeHasText @1104
|
||||
tidyNodeGetText @1105
|
||||
tidyNodeGetId @1106
|
||||
tidyNodeLine @1107
|
||||
tidyNodeColumn @1108
|
||||
tidyNodeIsHTML @1109
|
||||
tidyNodeIsHEAD @1110
|
||||
tidyNodeIsTITLE @1111
|
||||
tidyNodeIsBASE @1112
|
||||
tidyNodeIsMETA @1113
|
||||
tidyNodeIsBODY @1114
|
||||
tidyNodeIsFRAMESET @1115
|
||||
tidyNodeIsFRAME @1116
|
||||
tidyNodeIsIFRAME @1117
|
||||
tidyNodeIsNOFRAMES @1118
|
||||
tidyNodeIsHR @1119
|
||||
tidyNodeIsH1 @1120
|
||||
tidyNodeIsH2 @1121
|
||||
tidyNodeIsPRE @1122
|
||||
tidyNodeIsLISTING @1123
|
||||
tidyNodeIsP @1124
|
||||
tidyNodeIsUL @1125
|
||||
tidyNodeIsOL @1126
|
||||
tidyNodeIsDL @1127
|
||||
tidyNodeIsDIR @1128
|
||||
tidyNodeIsLI @1129
|
||||
tidyNodeIsDT @1130
|
||||
tidyNodeIsDD @1131
|
||||
tidyNodeIsTABLE @1132
|
||||
tidyNodeIsCAPTION @1133
|
||||
tidyNodeIsTD @1134
|
||||
tidyNodeIsTH @1135
|
||||
tidyNodeIsTR @1136
|
||||
tidyNodeIsCOL @1137
|
||||
tidyNodeIsCOLGROUP @1138
|
||||
tidyNodeIsBR @1139
|
||||
tidyNodeIsA @1140
|
||||
tidyNodeIsLINK @1141
|
||||
tidyNodeIsB @1142
|
||||
tidyNodeIsI @1143
|
||||
tidyNodeIsSTRONG @1144
|
||||
tidyNodeIsEM @1145
|
||||
tidyNodeIsBIG @1146
|
||||
tidyNodeIsSMALL @1147
|
||||
tidyNodeIsPARAM @1148
|
||||
tidyNodeIsOPTION @1149
|
||||
tidyNodeIsOPTGROUP @1150
|
||||
tidyNodeIsIMG @1151
|
||||
tidyNodeIsMAP @1152
|
||||
tidyNodeIsAREA @1153
|
||||
tidyNodeIsNOBR @1154
|
||||
tidyNodeIsWBR @1155
|
||||
tidyNodeIsFONT @1156
|
||||
tidyNodeIsLAYER @1157
|
||||
tidyNodeIsSPACER @1158
|
||||
tidyNodeIsCENTER @1159
|
||||
tidyNodeIsSTYLE @1160
|
||||
tidyNodeIsSCRIPT @1161
|
||||
tidyNodeIsNOSCRIPT @1162
|
||||
tidyNodeIsFORM @1163
|
||||
tidyNodeIsTEXTAREA @1164
|
||||
tidyNodeIsBLOCKQUOTE @1165
|
||||
tidyNodeIsAPPLET @1166
|
||||
tidyNodeIsOBJECT @1167
|
||||
tidyNodeIsDIV @1168
|
||||
tidyNodeIsSPAN @1169
|
||||
tidyNodeIsINPUT @1170
|
||||
tidyNodeIsQ @1171
|
||||
tidyNodeIsLABEL @1172
|
||||
tidyNodeIsH3 @1173
|
||||
tidyNodeIsH4 @1174
|
||||
tidyNodeIsH5 @1175
|
||||
tidyNodeIsH6 @1176
|
||||
tidyNodeIsADDRESS @1177
|
||||
tidyNodeIsXMP @1178
|
||||
tidyNodeIsSELECT @1179
|
||||
tidyNodeIsBLINK @1180
|
||||
tidyNodeIsMARQUEE @1181
|
||||
tidyNodeIsEMBED @1182
|
||||
tidyNodeIsBASEFONT @1183
|
||||
tidyNodeIsISINDEX @1184
|
||||
tidyNodeIsS @1185
|
||||
tidyNodeIsSTRIKE @1186
|
||||
tidyNodeIsU @1187
|
||||
tidyNodeIsMENU @1188
|
||||
tidyAttrGetId @1189
|
||||
tidyAttrIsEvent @1190
|
||||
tidyAttrIsProp @1191
|
||||
tidyAttrIsHREF @1192
|
||||
tidyAttrIsSRC @1193
|
||||
tidyAttrIsID @1194
|
||||
tidyAttrIsNAME @1195
|
||||
tidyAttrIsSUMMARY @1196
|
||||
tidyAttrIsALT @1197
|
||||
tidyAttrIsLONGDESC @1198
|
||||
tidyAttrIsUSEMAP @1199
|
||||
tidyAttrIsISMAP @1200
|
||||
tidyAttrIsLANGUAGE @1201
|
||||
tidyAttrIsTYPE @1202
|
||||
tidyAttrIsVALUE @1203
|
||||
tidyAttrIsCONTENT @1204
|
||||
tidyAttrIsTITLE @1205
|
||||
tidyAttrIsXMLNS @1206
|
||||
tidyAttrIsDATAFLD @1207
|
||||
tidyAttrIsWIDTH @1208
|
||||
tidyAttrIsHEIGHT @1209
|
||||
tidyAttrIsFOR @1210
|
||||
tidyAttrIsSELECTED @1211
|
||||
tidyAttrIsCHECKED @1212
|
||||
tidyAttrIsLANG @1213
|
||||
tidyAttrIsTARGET @1214
|
||||
tidyAttrIsHTTP_EQUIV @1215
|
||||
tidyAttrIsREL @1216
|
||||
tidyAttrIsOnMOUSEMOVE @1217
|
||||
tidyAttrIsOnMOUSEDOWN @1218
|
||||
tidyAttrIsOnMOUSEUP @1219
|
||||
tidyAttrIsOnCLICK @1220
|
||||
tidyAttrIsOnMOUSEOVER @1221
|
||||
tidyAttrIsOnMOUSEOUT @1222
|
||||
tidyAttrIsOnKEYDOWN @1223
|
||||
tidyAttrIsOnKEYUP @1224
|
||||
tidyAttrIsOnKEYPRESS @1225
|
||||
tidyAttrIsOnFOCUS @1226
|
||||
tidyAttrIsOnBLUR @1227
|
||||
tidyAttrIsBGCOLOR @1228
|
||||
tidyAttrIsLINK @1229
|
||||
tidyAttrIsALINK @1230
|
||||
tidyAttrIsVLINK @1231
|
||||
tidyAttrIsTEXT @1232
|
||||
tidyAttrIsSTYLE @1233
|
||||
tidyAttrIsABBR @1234
|
||||
tidyAttrIsCOLSPAN @1235
|
||||
tidyAttrIsROWSPAN @1236
|
||||
tidyAttrGetById @1237
|
||||
tidyAttrGetHREF @1238
|
||||
tidyAttrGetSRC @1239
|
||||
tidyAttrGetID @1240
|
||||
tidyAttrGetNAME @1241
|
||||
tidyAttrGetSUMMARY @1242
|
||||
tidyAttrGetALT @1243
|
||||
tidyAttrGetLONGDESC @1244
|
||||
tidyAttrGetUSEMAP @1245
|
||||
tidyAttrGetISMAP @1246
|
||||
tidyAttrGetLANGUAGE @1247
|
||||
tidyAttrGetTYPE @1248
|
||||
tidyAttrGetVALUE @1249
|
||||
tidyAttrGetCONTENT @1250
|
||||
tidyAttrGetTITLE @1251
|
||||
tidyAttrGetXMLNS @1252
|
||||
tidyAttrGetDATAFLD @1253
|
||||
tidyAttrGetWIDTH @1254
|
||||
tidyAttrGetHEIGHT @1255
|
||||
tidyAttrGetFOR @1256
|
||||
tidyAttrGetSELECTED @1257
|
||||
tidyAttrGetCHECKED @1258
|
||||
tidyAttrGetLANG @1259
|
||||
tidyAttrGetTARGET @1260
|
||||
tidyAttrGetHTTP_EQUIV @1261
|
||||
tidyAttrGetREL @1262
|
||||
tidyAttrGetOnMOUSEMOVE @1263
|
||||
tidyAttrGetOnMOUSEDOWN @1264
|
||||
tidyAttrGetOnMOUSEUP @1265
|
||||
tidyAttrGetOnCLICK @1266
|
||||
tidyAttrGetOnMOUSEOVER @1267
|
||||
tidyAttrGetOnMOUSEOUT @1268
|
||||
tidyAttrGetOnKEYDOWN @1269
|
||||
tidyAttrGetOnKEYUP @1270
|
||||
tidyAttrGetOnKEYPRESS @1271
|
||||
tidyAttrGetOnFOCUS @1272
|
||||
tidyAttrGetOnBLUR @1273
|
||||
tidyAttrGetBGCOLOR @1274
|
||||
tidyAttrGetLINK @1275
|
||||
tidyAttrGetALINK @1276
|
||||
tidyAttrGetVLINK @1277
|
||||
tidyAttrGetTEXT @1278
|
||||
tidyAttrGetSTYLE @1279
|
||||
tidyAttrGetABBR @1280
|
||||
tidyAttrGetCOLSPAN @1281
|
||||
tidyAttrGetROWSPAN @1282
|
||||
tidyCreateWithAllocator @1283
|
||||
|
||||
tidyInitInputBuffer @2001
|
||||
tidyInitOutputBuffer @2002
|
||||
tidyBufInit @2003
|
||||
tidyBufAlloc @2004
|
||||
tidyBufCheckAlloc @2005
|
||||
tidyBufFree @2006
|
||||
tidyBufClear @2007
|
||||
tidyBufAttach @2008
|
||||
tidyBufDetach @2009
|
||||
tidyBufAppend @2010
|
||||
tidyBufPutByte @2011
|
||||
tidyBufPopByte @2012
|
||||
tidyBufGetByte @2013
|
||||
tidyBufEndOfInput @2014
|
||||
tidyBufUngetByte @2015
|
||||
tidyBufInitWithAllocator @2016
|
||||
tidyBufAllocWithAllocator @2017
|
||||
tidyNodeGetValue @2018
|
|
@ -1,35 +0,0 @@
|
|||
|
||||
Microsoft Visual Studio Solution File, Format Version 11.00
|
||||
# Visual Studio 2010
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "tidy", "tidy.vcxproj", "{86771E17-F0DB-445E-AFE9-33EC8AA1E002}"
|
||||
EndProject
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "tidydll", "tidydll.vcxproj", "{C9371CCA-E73B-4661-847C-EB45A234C5C7}"
|
||||
ProjectSection(ProjectDependencies) = postProject
|
||||
{A3EA53A3-86BB-4D0A-B999-D1EC9411DDD4} = {A3EA53A3-86BB-4D0A-B999-D1EC9411DDD4}
|
||||
EndProjectSection
|
||||
EndProject
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "tidylib", "tidylib.vcxproj", "{A3EA53A3-86BB-4D0A-B999-D1EC9411DDD4}"
|
||||
EndProject
|
||||
Global
|
||||
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
||||
Debug|Win32 = Debug|Win32
|
||||
Release|Win32 = Release|Win32
|
||||
EndGlobalSection
|
||||
GlobalSection(ProjectConfigurationPlatforms) = postSolution
|
||||
{86771E17-F0DB-445E-AFE9-33EC8AA1E002}.Debug|Win32.ActiveCfg = Debug|Win32
|
||||
{86771E17-F0DB-445E-AFE9-33EC8AA1E002}.Debug|Win32.Build.0 = Debug|Win32
|
||||
{86771E17-F0DB-445E-AFE9-33EC8AA1E002}.Release|Win32.ActiveCfg = Release|Win32
|
||||
{86771E17-F0DB-445E-AFE9-33EC8AA1E002}.Release|Win32.Build.0 = Release|Win32
|
||||
{C9371CCA-E73B-4661-847C-EB45A234C5C7}.Debug|Win32.ActiveCfg = Debug|Win32
|
||||
{C9371CCA-E73B-4661-847C-EB45A234C5C7}.Debug|Win32.Build.0 = Debug|Win32
|
||||
{C9371CCA-E73B-4661-847C-EB45A234C5C7}.Release|Win32.ActiveCfg = Release|Win32
|
||||
{C9371CCA-E73B-4661-847C-EB45A234C5C7}.Release|Win32.Build.0 = Release|Win32
|
||||
{A3EA53A3-86BB-4D0A-B999-D1EC9411DDD4}.Debug|Win32.ActiveCfg = Debug|Win32
|
||||
{A3EA53A3-86BB-4D0A-B999-D1EC9411DDD4}.Debug|Win32.Build.0 = Debug|Win32
|
||||
{A3EA53A3-86BB-4D0A-B999-D1EC9411DDD4}.Release|Win32.ActiveCfg = Release|Win32
|
||||
{A3EA53A3-86BB-4D0A-B999-D1EC9411DDD4}.Release|Win32.Build.0 = Release|Win32
|
||||
EndGlobalSection
|
||||
GlobalSection(SolutionProperties) = preSolution
|
||||
HideSolutionNode = FALSE
|
||||
EndGlobalSection
|
||||
EndGlobal
|
|
@ -1,138 +0,0 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<ItemGroup Label="ProjectConfigurations">
|
||||
<ProjectConfiguration Include="Debug|Win32">
|
||||
<Configuration>Debug</Configuration>
|
||||
<Platform>Win32</Platform>
|
||||
</ProjectConfiguration>
|
||||
<ProjectConfiguration Include="Release|Win32">
|
||||
<Configuration>Release</Configuration>
|
||||
<Platform>Win32</Platform>
|
||||
</ProjectConfiguration>
|
||||
</ItemGroup>
|
||||
<PropertyGroup Label="Globals">
|
||||
<ProjectGuid>{86771E17-F0DB-445E-AFE9-33EC8AA1E002}</ProjectGuid>
|
||||
<RootNamespace>tidy</RootNamespace>
|
||||
</PropertyGroup>
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
|
||||
<ConfigurationType>Application</ConfigurationType>
|
||||
<UseOfMfc>false</UseOfMfc>
|
||||
<CharacterSet>MultiByte</CharacterSet>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
|
||||
<ConfigurationType>Application</ConfigurationType>
|
||||
<UseOfMfc>false</UseOfMfc>
|
||||
<CharacterSet>MultiByte</CharacterSet>
|
||||
</PropertyGroup>
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
|
||||
<ImportGroup Label="ExtensionSettings">
|
||||
</ImportGroup>
|
||||
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="PropertySheets">
|
||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||
<Import Project="$(VCTargetsPath)Microsoft.CPP.UpgradeFromVC60.props" />
|
||||
</ImportGroup>
|
||||
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="PropertySheets">
|
||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||
<Import Project="$(VCTargetsPath)Microsoft.CPP.UpgradeFromVC60.props" />
|
||||
</ImportGroup>
|
||||
<PropertyGroup Label="UserMacros" />
|
||||
<PropertyGroup>
|
||||
<_ProjectFileVersion>10.0.30319.1</_ProjectFileVersion>
|
||||
<LinkIncremental Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">false</LinkIncremental>
|
||||
<LinkIncremental Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">true</LinkIncremental>
|
||||
<CodeAnalysisRuleSet Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">AllRules.ruleset</CodeAnalysisRuleSet>
|
||||
<CodeAnalysisRules Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" />
|
||||
<CodeAnalysisRuleAssemblies Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" />
|
||||
<CodeAnalysisRuleSet Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">AllRules.ruleset</CodeAnalysisRuleSet>
|
||||
<CodeAnalysisRules Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" />
|
||||
<CodeAnalysisRuleAssemblies Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" />
|
||||
</PropertyGroup>
|
||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
||||
<Midl>
|
||||
<TypeLibraryName>.\Release/tidy.tlb</TypeLibraryName>
|
||||
<HeaderFileName>
|
||||
</HeaderFileName>
|
||||
</Midl>
|
||||
<ClCompile>
|
||||
<Optimization>MaxSpeed</Optimization>
|
||||
<InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
|
||||
<AdditionalIncludeDirectories>..\..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions>NDEBUG;WIN32;_CONSOLE;SUPPORT_UTF16_ENCODINGS=1;SUPPORT_ASIAN_ENCODINGS=1;SUPPORT_ACCESSIBILITY_CHECKS=1;TIDYDLL_EXPORT=__declspec(dllimport);_CRT_SECURE_NO_DEPRECATE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<StringPooling>true</StringPooling>
|
||||
<RuntimeLibrary>MultiThreaded</RuntimeLibrary>
|
||||
<FunctionLevelLinking>true</FunctionLevelLinking>
|
||||
<DisableLanguageExtensions>true</DisableLanguageExtensions>
|
||||
<WarningLevel>Level3</WarningLevel>
|
||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
</ClCompile>
|
||||
<ResourceCompile>
|
||||
<PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<Culture>0x0409</Culture>
|
||||
</ResourceCompile>
|
||||
<Link>
|
||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
<GenerateMapFile>true</GenerateMapFile>
|
||||
<SubSystem>Console</SubSystem>
|
||||
<RandomizedBaseAddress>false</RandomizedBaseAddress>
|
||||
<DataExecutionPrevention>
|
||||
</DataExecutionPrevention>
|
||||
<TargetMachine>MachineX86</TargetMachine>
|
||||
</Link>
|
||||
<Bscmake>
|
||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
</Bscmake>
|
||||
</ItemDefinitionGroup>
|
||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
||||
<Midl>
|
||||
<TypeLibraryName>.\Debug/tidy.tlb</TypeLibraryName>
|
||||
<HeaderFileName>
|
||||
</HeaderFileName>
|
||||
</Midl>
|
||||
<ClCompile>
|
||||
<Optimization>Disabled</Optimization>
|
||||
<AdditionalIncludeDirectories>..\..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions>_DEBUG;WIN32;_CONSOLE;SUPPORT_UTF16_ENCODINGS=1;SUPPORT_ASIAN_ENCODINGS=1;SUPPORT_ACCESSIBILITY_CHECKS=1;TIDYDLL_EXPORT=__declspec(dllimport);_CRT_SECURE_NO_DEPRECATE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<MinimalRebuild>true</MinimalRebuild>
|
||||
<BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
|
||||
<RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary>
|
||||
<DisableLanguageExtensions>true</DisableLanguageExtensions>
|
||||
<WarningLevel>Level3</WarningLevel>
|
||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
<DebugInformationFormat>EditAndContinue</DebugInformationFormat>
|
||||
</ClCompile>
|
||||
<ResourceCompile>
|
||||
<PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<Culture>0x0409</Culture>
|
||||
</ResourceCompile>
|
||||
<Link>
|
||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
<GenerateDebugInformation>true</GenerateDebugInformation>
|
||||
<SubSystem>Console</SubSystem>
|
||||
<RandomizedBaseAddress>false</RandomizedBaseAddress>
|
||||
<DataExecutionPrevention>
|
||||
</DataExecutionPrevention>
|
||||
<TargetMachine>MachineX86</TargetMachine>
|
||||
</Link>
|
||||
<Bscmake>
|
||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
</Bscmake>
|
||||
</ItemDefinitionGroup>
|
||||
<ItemGroup>
|
||||
<ClCompile Include="..\..\console\tidy.c">
|
||||
<AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
</ClCompile>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="tidylib.vcxproj">
|
||||
<Project>{a3ea53a3-86bb-4d0a-b999-d1ec9411ddd4}</Project>
|
||||
<ReferenceOutputAssembly>false</ReferenceOutputAssembly>
|
||||
</ProjectReference>
|
||||
</ItemGroup>
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
||||
<ImportGroup Label="ExtensionTargets">
|
||||
</ImportGroup>
|
||||
</Project>
|
|
@ -1,316 +0,0 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<ItemGroup Label="ProjectConfigurations">
|
||||
<ProjectConfiguration Include="Debug|Win32">
|
||||
<Configuration>Debug</Configuration>
|
||||
<Platform>Win32</Platform>
|
||||
</ProjectConfiguration>
|
||||
<ProjectConfiguration Include="Release|Win32">
|
||||
<Configuration>Release</Configuration>
|
||||
<Platform>Win32</Platform>
|
||||
</ProjectConfiguration>
|
||||
</ItemGroup>
|
||||
<PropertyGroup Label="Globals">
|
||||
<ProjectGuid>{C9371CCA-E73B-4661-847C-EB45A234C5C7}</ProjectGuid>
|
||||
<RootNamespace>tidydll</RootNamespace>
|
||||
</PropertyGroup>
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
|
||||
<ConfigurationType>DynamicLibrary</ConfigurationType>
|
||||
<UseOfMfc>false</UseOfMfc>
|
||||
<CharacterSet>MultiByte</CharacterSet>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
|
||||
<ConfigurationType>DynamicLibrary</ConfigurationType>
|
||||
<UseOfMfc>false</UseOfMfc>
|
||||
<CharacterSet>MultiByte</CharacterSet>
|
||||
</PropertyGroup>
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
|
||||
<ImportGroup Label="ExtensionSettings">
|
||||
</ImportGroup>
|
||||
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="PropertySheets">
|
||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||
<Import Project="$(VCTargetsPath)Microsoft.CPP.UpgradeFromVC60.props" />
|
||||
</ImportGroup>
|
||||
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="PropertySheets">
|
||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||
<Import Project="$(VCTargetsPath)Microsoft.CPP.UpgradeFromVC60.props" />
|
||||
</ImportGroup>
|
||||
<PropertyGroup Label="UserMacros" />
|
||||
<PropertyGroup>
|
||||
<_ProjectFileVersion>10.0.30319.1</_ProjectFileVersion>
|
||||
<OutDir Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">$(SolutionDir)$(Configuration)$(MSBuildProjectName)\</OutDir>
|
||||
<IntDir Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">Obj\$(Configuration)$(MSBuildProjectName)\</IntDir>
|
||||
<LinkIncremental Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">true</LinkIncremental>
|
||||
<OutDir Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">$(SolutionDir)$(Configuration)$(MSBuildProjectName)\</OutDir>
|
||||
<IntDir Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">Obj\$(Configuration)$(MSBuildProjectName)\</IntDir>
|
||||
<LinkIncremental Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">false</LinkIncremental>
|
||||
<CodeAnalysisRuleSet Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">AllRules.ruleset</CodeAnalysisRuleSet>
|
||||
<CodeAnalysisRules Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" />
|
||||
<CodeAnalysisRuleAssemblies Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" />
|
||||
<CodeAnalysisRuleSet Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">AllRules.ruleset</CodeAnalysisRuleSet>
|
||||
<CodeAnalysisRules Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" />
|
||||
<CodeAnalysisRuleAssemblies Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" />
|
||||
<TargetName Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">libtidy.dll</TargetName>
|
||||
<TargetName Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">libtidy</TargetName>
|
||||
</PropertyGroup>
|
||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
||||
<Midl>
|
||||
<PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<MkTypLibCompatible>true</MkTypLibCompatible>
|
||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
<TargetEnvironment>Win32</TargetEnvironment>
|
||||
<TypeLibraryName>.\DebugDLL/tidydll.tlb</TypeLibraryName>
|
||||
<HeaderFileName>
|
||||
</HeaderFileName>
|
||||
</Midl>
|
||||
<ClCompile>
|
||||
<Optimization>Disabled</Optimization>
|
||||
<AdditionalIncludeDirectories>..\..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions>_DEBUG;WIN32;_WINDOWS;_USRDLL;SUPPORT_UTF16_ENCODINGS=1;SUPPORT_ASIAN_ENCODINGS=1;SUPPORT_ACCESSIBILITY_CHECKS=1;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
|
||||
<RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
|
||||
<WarningLevel>Level3</WarningLevel>
|
||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
<DebugInformationFormat>EditAndContinue</DebugInformationFormat>
|
||||
</ClCompile>
|
||||
<ResourceCompile>
|
||||
<PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<Culture>0x0409</Culture>
|
||||
</ResourceCompile>
|
||||
<Link>
|
||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
<ModuleDefinitionFile>.\tidy.def</ModuleDefinitionFile>
|
||||
<GenerateDebugInformation>true</GenerateDebugInformation>
|
||||
<RandomizedBaseAddress>false</RandomizedBaseAddress>
|
||||
<DataExecutionPrevention>
|
||||
</DataExecutionPrevention>
|
||||
<TargetMachine>MachineX86</TargetMachine>
|
||||
</Link>
|
||||
<Bscmake>
|
||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
</Bscmake>
|
||||
</ItemDefinitionGroup>
|
||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
||||
<Midl>
|
||||
<PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<MkTypLibCompatible>true</MkTypLibCompatible>
|
||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
<TargetEnvironment>Win32</TargetEnvironment>
|
||||
<TypeLibraryName>.\ReleaseDLL/tidydll.tlb</TypeLibraryName>
|
||||
<HeaderFileName>
|
||||
</HeaderFileName>
|
||||
</Midl>
|
||||
<ClCompile>
|
||||
<Optimization>MaxSpeed</Optimization>
|
||||
<InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
|
||||
<AdditionalIncludeDirectories>..\..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions>NDEBUG;WIN32;_WINDOWS;_USRDLL;TIDYDLL_EXPORTS;SUPPORT_UTF16_ENCODINGS=1;SUPPORT_ASIAN_ENCODINGS=1;SUPPORT_ACCESSIBILITY_CHECKS=1;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<StringPooling>true</StringPooling>
|
||||
<RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
|
||||
<FunctionLevelLinking>true</FunctionLevelLinking>
|
||||
<WarningLevel>Level3</WarningLevel>
|
||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
</ClCompile>
|
||||
<ResourceCompile>
|
||||
<PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<Culture>0x0409</Culture>
|
||||
</ResourceCompile>
|
||||
<Link>
|
||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
<ModuleDefinitionFile>.\tidy.def</ModuleDefinitionFile>
|
||||
<RandomizedBaseAddress>false</RandomizedBaseAddress>
|
||||
<DataExecutionPrevention>
|
||||
</DataExecutionPrevention>
|
||||
<TargetMachine>MachineX86</TargetMachine>
|
||||
</Link>
|
||||
<Bscmake>
|
||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
</Bscmake>
|
||||
</ItemDefinitionGroup>
|
||||
<ItemGroup>
|
||||
<ClCompile Include="..\..\src\access.c">
|
||||
<AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\src\alloc.c">
|
||||
<AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\src\attrask.c">
|
||||
<AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\src\attrdict.c">
|
||||
<AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\src\attrget.c">
|
||||
<AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\src\attrs.c">
|
||||
<AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\src\buffio.c">
|
||||
<AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\src\clean.c">
|
||||
<AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\src\config.c">
|
||||
<AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\src\entities.c">
|
||||
<AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\src\fileio.c">
|
||||
<AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\src\istack.c">
|
||||
<AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\src\lexer.c">
|
||||
<AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\src\localize.c">
|
||||
<AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\src\mappedio.c">
|
||||
<AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\src\parser.c">
|
||||
<AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\src\pprint.c">
|
||||
<AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\src\streamio.c">
|
||||
<AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\src\tagask.c">
|
||||
<AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\src\tags.c">
|
||||
<AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\src\tidylib.c">
|
||||
<AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\src\tmbstr.c">
|
||||
<AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\src\utf8.c">
|
||||
<AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\src\win32tc.c">
|
||||
<AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\src\gdoc.c">
|
||||
<AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
</ClCompile>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<None Include="tidy.def" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ClInclude Include="..\..\src\access.h" />
|
||||
<ClInclude Include="..\..\src\attrdict.h" />
|
||||
<ClInclude Include="..\..\src\attrs.h" />
|
||||
<ClInclude Include="..\..\include\buffio.h" />
|
||||
<ClInclude Include="..\..\src\clean.h" />
|
||||
<ClInclude Include="..\..\src\config.h" />
|
||||
<ClInclude Include="..\..\src\entities.h" />
|
||||
<ClInclude Include="..\..\src\fileio.h" />
|
||||
<ClInclude Include="..\..\src\forward.h" />
|
||||
<ClInclude Include="..\..\src\lexer.h" />
|
||||
<ClInclude Include="..\..\src\mappedio.h" />
|
||||
<ClInclude Include="..\..\src\message.h" />
|
||||
<ClInclude Include="..\..\src\parser.h" />
|
||||
<ClInclude Include="..\..\include\platform.h" />
|
||||
<ClInclude Include="..\..\src\pprint.h" />
|
||||
<ClInclude Include="..\..\src\streamio.h" />
|
||||
<ClInclude Include="..\..\src\tags.h" />
|
||||
<ClInclude Include="..\..\src\tidy-int.h" />
|
||||
<ClInclude Include="..\..\include\tidy.h" />
|
||||
<ClInclude Include="..\..\include\tidyenum.h" />
|
||||
<ClInclude Include="..\..\src\tmbstr.h" />
|
||||
<ClInclude Include="..\..\src\utf8.h" />
|
||||
<ClInclude Include="..\..\src\version.h" />
|
||||
<ClInclude Include="..\..\src\win32tc.h" />
|
||||
<ClInclude Include="..\..\src\gdoc.h" />
|
||||
</ItemGroup>
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
||||
<ImportGroup Label="ExtensionTargets">
|
||||
</ImportGroup>
|
||||
</Project>
|
|
@ -1,311 +0,0 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<ItemGroup Label="ProjectConfigurations">
|
||||
<ProjectConfiguration Include="Debug|Win32">
|
||||
<Configuration>Debug</Configuration>
|
||||
<Platform>Win32</Platform>
|
||||
</ProjectConfiguration>
|
||||
<ProjectConfiguration Include="Release|Win32">
|
||||
<Configuration>Release</Configuration>
|
||||
<Platform>Win32</Platform>
|
||||
</ProjectConfiguration>
|
||||
</ItemGroup>
|
||||
<PropertyGroup Label="Globals">
|
||||
<ProjectGuid>{A3EA53A3-86BB-4D0A-B999-D1EC9411DDD4}</ProjectGuid>
|
||||
<RootNamespace>tidylib</RootNamespace>
|
||||
</PropertyGroup>
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
|
||||
<ConfigurationType>StaticLibrary</ConfigurationType>
|
||||
<UseOfMfc>false</UseOfMfc>
|
||||
<CharacterSet>MultiByte</CharacterSet>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
|
||||
<ConfigurationType>StaticLibrary</ConfigurationType>
|
||||
<UseOfMfc>false</UseOfMfc>
|
||||
<CharacterSet>MultiByte</CharacterSet>
|
||||
</PropertyGroup>
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
|
||||
<ImportGroup Label="ExtensionSettings">
|
||||
</ImportGroup>
|
||||
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="PropertySheets">
|
||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||
<Import Project="$(VCTargetsPath)Microsoft.CPP.UpgradeFromVC60.props" />
|
||||
</ImportGroup>
|
||||
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="PropertySheets">
|
||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||
<Import Project="$(VCTargetsPath)Microsoft.CPP.UpgradeFromVC60.props" />
|
||||
</ImportGroup>
|
||||
<PropertyGroup Label="UserMacros" />
|
||||
<PropertyGroup>
|
||||
<_ProjectFileVersion>10.0.30319.1</_ProjectFileVersion>
|
||||
<OutDir Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">$(SolutionDir)$(Configuration)$(MSBuildProjectName)\</OutDir>
|
||||
<IntDir Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">$(Configuration)$(MSBuildProjectName)\</IntDir>
|
||||
<CodeAnalysisRuleSet Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">AllRules.ruleset</CodeAnalysisRuleSet>
|
||||
<CodeAnalysisRules Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" />
|
||||
<CodeAnalysisRuleAssemblies Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" />
|
||||
<CodeAnalysisRuleSet Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">AllRules.ruleset</CodeAnalysisRuleSet>
|
||||
<CodeAnalysisRules Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" />
|
||||
<CodeAnalysisRuleAssemblies Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" />
|
||||
<TargetName Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">libtidy</TargetName>
|
||||
<TargetName Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">libtidy</TargetName>
|
||||
<OutDir Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">$(SolutionDir)$(Configuration)$(MSBuildProjectName)\</OutDir>
|
||||
<IntDir Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">$(Configuration)$(MSBuildProjectName)\</IntDir>
|
||||
</PropertyGroup>
|
||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
||||
<ClCompile>
|
||||
<Optimization>MaxSpeed</Optimization>
|
||||
<InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
|
||||
<AdditionalIncludeDirectories>../../include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions>NDEBUG;_LIB;WIN32;SUPPORT_UTF16_ENCODINGS;SUPPORT_ASIAN_ENCODINGS;SUPPORT_ACCESSIBILITY_CHECKS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<StringPooling>true</StringPooling>
|
||||
<RuntimeLibrary>MultiThreaded</RuntimeLibrary>
|
||||
<FunctionLevelLinking>true</FunctionLevelLinking>
|
||||
<WarningLevel>Level4</WarningLevel>
|
||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
</ClCompile>
|
||||
<ResourceCompile>
|
||||
<PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<Culture>0x0409</Culture>
|
||||
</ResourceCompile>
|
||||
<Lib>
|
||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
</Lib>
|
||||
<Bscmake>
|
||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
</Bscmake>
|
||||
</ItemDefinitionGroup>
|
||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
||||
<ClCompile>
|
||||
<Optimization>Disabled</Optimization>
|
||||
<AdditionalIncludeDirectories>../../include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions>_DEBUG;_WIN32;_LIB;WIN32;SUPPORT_UTF16_ENCODINGS;SUPPORT_ASIAN_ENCODINGS;SUPPORT_ACCESSIBILITY_CHECKS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<MinimalRebuild>true</MinimalRebuild>
|
||||
<BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
|
||||
<RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary>
|
||||
<DisableLanguageExtensions>true</DisableLanguageExtensions>
|
||||
<WarningLevel>Level4</WarningLevel>
|
||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
<DebugInformationFormat>EditAndContinue</DebugInformationFormat>
|
||||
<UndefinePreprocessorDefinitions>WINDOWS;%(UndefinePreprocessorDefinitions)</UndefinePreprocessorDefinitions>
|
||||
</ClCompile>
|
||||
<ResourceCompile>
|
||||
<PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<Culture>0x0409</Culture>
|
||||
</ResourceCompile>
|
||||
<Lib>
|
||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
</Lib>
|
||||
<Bscmake>
|
||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
</Bscmake>
|
||||
</ItemDefinitionGroup>
|
||||
<ItemGroup>
|
||||
<ClCompile Include="..\..\src\access.c">
|
||||
<AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<UndefinePreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(UndefinePreprocessorDefinitions)</UndefinePreprocessorDefinitions>
|
||||
<AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\src\alloc.c">
|
||||
<AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<UndefinePreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(UndefinePreprocessorDefinitions)</UndefinePreprocessorDefinitions>
|
||||
<AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\src\attrask.c">
|
||||
<AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<UndefinePreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(UndefinePreprocessorDefinitions)</UndefinePreprocessorDefinitions>
|
||||
<AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\src\attrdict.c">
|
||||
<AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<UndefinePreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(UndefinePreprocessorDefinitions)</UndefinePreprocessorDefinitions>
|
||||
<AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\src\attrget.c">
|
||||
<AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<UndefinePreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(UndefinePreprocessorDefinitions)</UndefinePreprocessorDefinitions>
|
||||
<AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\src\attrs.c">
|
||||
<AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<UndefinePreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(UndefinePreprocessorDefinitions)</UndefinePreprocessorDefinitions>
|
||||
<AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\src\buffio.c">
|
||||
<AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<UndefinePreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(UndefinePreprocessorDefinitions)</UndefinePreprocessorDefinitions>
|
||||
<AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\src\clean.c">
|
||||
<AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<UndefinePreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(UndefinePreprocessorDefinitions)</UndefinePreprocessorDefinitions>
|
||||
<AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\src\config.c">
|
||||
<AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<UndefinePreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(UndefinePreprocessorDefinitions)</UndefinePreprocessorDefinitions>
|
||||
<AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\src\entities.c">
|
||||
<AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<UndefinePreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(UndefinePreprocessorDefinitions)</UndefinePreprocessorDefinitions>
|
||||
<AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\src\fileio.c">
|
||||
<AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<UndefinePreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(UndefinePreprocessorDefinitions)</UndefinePreprocessorDefinitions>
|
||||
<AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\src\istack.c">
|
||||
<AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<UndefinePreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(UndefinePreprocessorDefinitions)</UndefinePreprocessorDefinitions>
|
||||
<AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\src\lexer.c">
|
||||
<AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<UndefinePreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(UndefinePreprocessorDefinitions)</UndefinePreprocessorDefinitions>
|
||||
<AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\src\localize.c">
|
||||
<AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<UndefinePreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(UndefinePreprocessorDefinitions)</UndefinePreprocessorDefinitions>
|
||||
<AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\src\mappedio.c">
|
||||
<AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<DisableLanguageExtensions Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">false</DisableLanguageExtensions>
|
||||
<UndefinePreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(UndefinePreprocessorDefinitions)</UndefinePreprocessorDefinitions>
|
||||
<AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\src\parser.c">
|
||||
<AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<UndefinePreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(UndefinePreprocessorDefinitions)</UndefinePreprocessorDefinitions>
|
||||
<AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\src\pprint.c">
|
||||
<AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<UndefinePreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(UndefinePreprocessorDefinitions)</UndefinePreprocessorDefinitions>
|
||||
<AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\src\streamio.c">
|
||||
<AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<UndefinePreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(UndefinePreprocessorDefinitions)</UndefinePreprocessorDefinitions>
|
||||
<AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\src\tagask.c">
|
||||
<AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<UndefinePreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(UndefinePreprocessorDefinitions)</UndefinePreprocessorDefinitions>
|
||||
<AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\src\tags.c">
|
||||
<AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<UndefinePreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(UndefinePreprocessorDefinitions)</UndefinePreprocessorDefinitions>
|
||||
<AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\src\tidylib.c">
|
||||
<AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<UndefinePreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(UndefinePreprocessorDefinitions)</UndefinePreprocessorDefinitions>
|
||||
<AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\src\tmbstr.c">
|
||||
<AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<UndefinePreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(UndefinePreprocessorDefinitions)</UndefinePreprocessorDefinitions>
|
||||
<AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\src\utf8.c">
|
||||
<AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<UndefinePreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(UndefinePreprocessorDefinitions)</UndefinePreprocessorDefinitions>
|
||||
<AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\src\win32tc.c">
|
||||
<AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<UndefinePreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(UndefinePreprocessorDefinitions)</UndefinePreprocessorDefinitions>
|
||||
<AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\src\gdoc.c">
|
||||
<AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<UndefinePreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(UndefinePreprocessorDefinitions)</UndefinePreprocessorDefinitions>
|
||||
<AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
</ClCompile>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ClInclude Include="..\..\src\access.h" />
|
||||
<ClInclude Include="..\..\src\attrdict.h" />
|
||||
<ClInclude Include="..\..\src\attrs.h" />
|
||||
<ClInclude Include="..\..\include\buffio.h" />
|
||||
<ClInclude Include="..\..\src\clean.h" />
|
||||
<ClInclude Include="..\..\src\config.h" />
|
||||
<ClInclude Include="..\..\src\entities.h" />
|
||||
<ClInclude Include="..\..\src\fileio.h" />
|
||||
<ClInclude Include="..\..\src\forward.h" />
|
||||
<ClInclude Include="..\..\src\lexer.h" />
|
||||
<ClInclude Include="..\..\src\mappedio.h" />
|
||||
<ClInclude Include="..\..\src\message.h" />
|
||||
<ClInclude Include="..\..\src\parser.h" />
|
||||
<ClInclude Include="..\..\include\platform.h" />
|
||||
<ClInclude Include="..\..\src\pprint.h" />
|
||||
<ClInclude Include="..\..\src\streamio.h" />
|
||||
<ClInclude Include="..\..\src\tags.h" />
|
||||
<ClInclude Include="..\..\src\tidy-int.h" />
|
||||
<ClInclude Include="..\..\include\tidy.h" />
|
||||
<ClInclude Include="..\..\include\tidyenum.h" />
|
||||
<ClInclude Include="..\..\src\tmbstr.h" />
|
||||
<ClInclude Include="..\..\src\utf8.h" />
|
||||
<ClInclude Include="..\..\src\version.h" />
|
||||
<ClInclude Include="..\..\src\win32tc.h" />
|
||||
<ClInclude Include="..\..\src\gdoc.h" />
|
||||
</ItemGroup>
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
||||
<ImportGroup Label="ExtensionTargets">
|
||||
</ImportGroup>
|
||||
</Project>
|
|
@ -1,40 +0,0 @@
|
|||
Tidy Build Files
|
||||
|
||||
Each subdirectory contains input files to a selected
|
||||
build system for TidyLib and the command line driver.
|
||||
Some build systems are cross-platform (gmake, autoconf),
|
||||
others (msvc) are platform specific. For details
|
||||
on any given build system, see the readme file for
|
||||
that system.
|
||||
|
||||
Directory System Comments
|
||||
--------- -------------------- --------------------------
|
||||
gmake GNU Make Used for "official" builds
|
||||
|
||||
gnuauto GNU AutoConf Supports shared lib builds
|
||||
|
||||
msvc MS Visual C++ v6 Win32 only
|
||||
|
||||
msvc2010 MS Visual Studio 2010 win32 only
|
||||
|
||||
rpm Script for packages For Linux distribution supporting rpm
|
||||
|
||||
|
||||
Common Build Options
|
||||
|
||||
There are some basic build options for TidyLib, independent
|
||||
of platform and build system. Typically, these options can
|
||||
be enabled or disabled by setting a macro value within the
|
||||
Makefile or its equivalent. An option may be disabled by
|
||||
setting its value to "0". Enable by setting to "1". Again,
|
||||
consult the directions for each build system for details
|
||||
on how to enable/disable each option.
|
||||
|
||||
Option Default Description
|
||||
---------------------------- -------- ---------------------------------
|
||||
DMALLOC Disabled Use dmalloc for memory debugging
|
||||
SUPPORT_ACCESSIBILITY_CHECKS Enabled Support W3C WAI checks
|
||||
SUPPORT_UTF16_ENCODINGS Enabled Support Unicode documents
|
||||
SUPPORT_ASIAN_ENCODINGS Enabled Support Big5 and ShiftJIS docs
|
||||
|
||||
|
|
@ -1,40 +0,0 @@
|
|||
# Script for Building tidy rpm packages
|
||||
|
||||
|
||||
# To build the RPM packages for tidy on Redhat and other distros which support rpm.
|
||||
# For making Debian packages, first create rpm package and then generate
|
||||
# debian package by command "rpm2deb filename"
|
||||
|
||||
|
||||
|
||||
The steps are as follows:
|
||||
|
||||
|
||||
1. Let's suppose TIDY_VERSION you are building is 02October2003
|
||||
|
||||
|
||||
2. Unpack original source tree
|
||||
tar zxvf tidy_src.tgz
|
||||
This will extract to a directory called tidy
|
||||
|
||||
|
||||
3. mv tidy tidy-02October2003
|
||||
Edit the tidy.spec file inside directory tidy-02October2003
|
||||
and make sure the Version variable is changed to 02October2003.
|
||||
Also edit the Makefile and change prefix to "exactly" say this:
|
||||
runinst_prefix=${RPMTMP}
|
||||
devinst_prefix=${RPMTMP}
|
||||
|
||||
|
||||
4. tar zcvf tidy-02October2003.tgz tidy-02October2003
|
||||
|
||||
|
||||
5. rpmbuild -ta tidy-02October2003.tgz
|
||||
|
||||
|
||||
6. rm tidy-02October2003.tgz
|
||||
|
||||
|
||||
7. To derive Debian package for tidy run command on created rpm packages
|
||||
rpm2deb tidy-02October2003-1.rpm
|
||||
|
|
@ -1,148 +0,0 @@
|
|||
# RPM spec file for tidy
|
||||
#
|
||||
# (c) 2006 (W3C) MIT, ERCIM, Keio University
|
||||
# See tidy.h for the copyright notice.
|
||||
#
|
||||
# Contributing Author(s):
|
||||
# Sierk Bornemann <bornemann@users.sourceforge.net>
|
||||
#
|
||||
# norootforbuild
|
||||
# neededforbuild doxygen libxslt libtool
|
||||
|
||||
BuildRequires: doxygen libxslt libtool
|
||||
|
||||
Name: tidy
|
||||
Version: 1.0
|
||||
Release: YYMMDD
|
||||
%define docrelease YYMMDD
|
||||
Summary: Utility to clean up and pretty print HTML/XHTML/XML
|
||||
Group: Applications/Tools
|
||||
License: W3C Software License, MIT Licence, Other License(s), see package
|
||||
Autoreqprov: on
|
||||
URL: http://tidy.sourceforge.net/
|
||||
Source0: http://sourceforge.net/cvs/?group_id=27659
|
||||
Source1: http://tidy.sourceforge.net/src/tidy_src.tgz
|
||||
Source2: http://tidy.sourceforge.net/docs/tidy_docs.tgz
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-build
|
||||
|
||||
|
||||
%description
|
||||
When editing HTML it's easy to make mistakes. Wouldn't it be nice if
|
||||
there was a simple way to fix these mistakes automatically and tidy up
|
||||
sloppy editing into nicely layed out markup? Well now there is! Dave
|
||||
Raggett's HTML TIDY is a free utility for doing just that. It also
|
||||
works great on the atrociously hard to read markup generated by
|
||||
specialized HTML editors and conversion tools, and can help you
|
||||
identify where you need to pay further attention on making your pages
|
||||
more accessible to people with disabilities.
|
||||
|
||||
Tidy is able to fix up a wide range of problems and to bring to your
|
||||
attention things that you need to work on yourself. Each item found is
|
||||
listed with the line number and column so that you can see where the
|
||||
problem lies in your markup. Tidy won't generate a cleaned up version
|
||||
when there are problems that it can't be sure of how to handle. These
|
||||
are logged as "errors" rather than "warnings".
|
||||
|
||||
|
||||
Authors:
|
||||
--------
|
||||
|
||||
Tidy was written by Dave Raggett <dsr@w3.org> and is now maintained
|
||||
and developed by the Tidy team at http://tidy.sourceforge.net/.
|
||||
|
||||
|
||||
%package -n libtidy
|
||||
Summary: Shared library for tidy
|
||||
Group: Development/Libraries
|
||||
Autoreqprov: on
|
||||
|
||||
%description -n libtidy
|
||||
|
||||
This package contains the library needed to run programs dynamically
|
||||
linked with tidy.
|
||||
|
||||
|
||||
%package -n libtidy-devel
|
||||
Summary: Development files for tidy
|
||||
Group: Development/Libraries
|
||||
Requires: libtidy = %{version}-%{release}
|
||||
Autoreqprov: on
|
||||
|
||||
|
||||
%description -n libtidy-devel
|
||||
|
||||
This package contains the headers, the shared libraries and the API
|
||||
documentation which programmers will need to develop applications based on
|
||||
tidy.
|
||||
|
||||
%debug_package
|
||||
%prep
|
||||
%setup -q -n %{name} -b 1
|
||||
mv htmldoc/doxygen.cfg Doxyfile
|
||||
|
||||
|
||||
%build
|
||||
export CFLAGS="$RPM_OPT_FLAGS"
|
||||
/bin/sh build/gnuauto/setup.sh
|
||||
|
||||
%configure --disable-dependency-tracking \
|
||||
--includedir=%{_includedir}/%{name}
|
||||
make %{?_smp_mflags} all
|
||||
make -C build/gmake/ doc
|
||||
doxygen
|
||||
|
||||
|
||||
%install
|
||||
rm -rf $RPM_BUILD_ROOT _api
|
||||
make install DESTDIR=$RPM_BUILD_ROOT
|
||||
# Manpage
|
||||
install -Dpm 644 htmldoc/tidy.1 $RPM_BUILD_ROOT%{_mandir}/man1/tidy.1
|
||||
# Quick Reference
|
||||
install -Dpm 644 htmldoc/quickref.html $RPM_BUILD_ROOT%{_defaultdocdir}/%{name}/quickref.html
|
||||
# Move API directory out of the way
|
||||
mv htmldoc/api _api
|
||||
|
||||
|
||||
%clean
|
||||
if ! test -f /.buildenv; then
|
||||
rm -rf $RPM_BUILD_ROOT;
|
||||
fi
|
||||
|
||||
|
||||
%post -n lib%{name} -p /sbin/ldconfig
|
||||
|
||||
%postun -n lib%{name} -p /sbin/ldconfig
|
||||
|
||||
|
||||
%files
|
||||
%defattr(-, root, root)
|
||||
%doc htmldoc/*
|
||||
%{_bindir}/tidy
|
||||
%{_bindir}/tab2space
|
||||
%{_mandir}/man1/tidy.1*
|
||||
|
||||
|
||||
%files -n libtidy
|
||||
%defattr(-, root, root)
|
||||
%doc htmldoc/license.html
|
||||
%{_libdir}/libtidy*.so.*
|
||||
|
||||
|
||||
%files -n libtidy-devel
|
||||
%defattr(-, root, root)
|
||||
%doc _api/*
|
||||
%{_includedir}/%{name}/*.h
|
||||
%{_libdir}/libtidy.so
|
||||
%{_libdir}/libtidy.a
|
||||
%exclude %{_libdir}/libtidy.la
|
||||
|
||||
|
||||
%changelog -n tidy
|
||||
* Thu Feb 22 2006 - Sierk Bornemann <bornemann@sourceforge.net>
|
||||
Rewritten RPM Spec file:
|
||||
- respects filesystem layout of current FHS-compliant linux distributions.
|
||||
- respects current tidy Makefile and
|
||||
creation of tidy docs (XSL transformation from tidy's XML output).
|
||||
|
||||
* Mon Oct 25 2003 - Al Dev (Alavoor Vasudevan) <alavoor[at]yahoo.com>
|
||||
- Initial version of %{name} rpm
|
14
build/win64/.gitignore
vendored
Normal file
|
@ -0,0 +1,14 @@
|
|||
*.vcxproj
|
||||
*.filters
|
||||
CMakeCache.txt
|
||||
CMakeFiles/*
|
||||
Debug/*
|
||||
Release/*
|
||||
bldlog-1.txt
|
||||
cmake_install.cmake
|
||||
*.dir/*
|
||||
*.sln
|
||||
x64/*
|
||||
ipch/*
|
||||
*.opensdf
|
||||
|
156
build/win64/build-me.bat
Normal file
|
@ -0,0 +1,156 @@
|
|||
@setlocal
|
||||
@set TMPPRJ=tidy5
|
||||
@echo Build %TMPPRJ% project, in 64-bits
|
||||
@set TMPLOG=bldlog-1.txt
|
||||
@set BLDDIR=%CD%
|
||||
@set TMPROOT=F:\Projects
|
||||
@set SET_BAT=%ProgramFiles(x86)%\Microsoft Visual Studio 10.0\VC\vcvarsall.bat
|
||||
@if NOT EXIST "%SET_BAT%" goto NOBAT
|
||||
@if NOT EXIST %TMPROOT%\nul goto NOROOT
|
||||
@set TMPSRC=%TMPROOT%\tidy-html5
|
||||
@if NOT EXIST %TMPSRC%\CMakeLists.txt goto NOCM
|
||||
|
||||
@if /I "%PROCESSOR_ARCHITECTURE%" EQU "AMD64" (
|
||||
@set TMPINST=%TMPROOT%\software.x64
|
||||
) ELSE (
|
||||
@if /I "%PROCESSOR_ARCHITECTURE%" EQU "x86_64" (
|
||||
@set TMPINST=%TMPROOT%\software.x64
|
||||
) ELSE (
|
||||
@echo ERROR: Appears 64-bit is NOT available... aborting...
|
||||
@goto ISERR
|
||||
)
|
||||
)
|
||||
@if NOT EXIST %TMPINST%\nul goto NOINST
|
||||
|
||||
@echo Doing build output to %TMPLOG%
|
||||
@echo Doing build output to %TMPLOG% > %TMPLOG%
|
||||
|
||||
@echo Doing: 'call "%SET_BAT%" %PROCESSOR_ARCHITECTURE%'
|
||||
@echo Doing: 'call "%SET_BAT%" %PROCESSOR_ARCHITECTURE%' >> %TMPLOG%
|
||||
@call "%SET_BAT%" %PROCESSOR_ARCHITECTURE% >> %TMPLOG% 2>&1
|
||||
@if ERRORLEVEL 1 goto ERR0
|
||||
@REM call setupqt64
|
||||
@cd %BLDDIR%
|
||||
|
||||
:DNARCH
|
||||
|
||||
@REM ############################################
|
||||
@REM NOTE: SPECIAL INSTALL LOCATION
|
||||
@REM Adjust to suit your environment
|
||||
@REM ##########################################
|
||||
@REM set TMPINST=F:\Projects\software.x64
|
||||
@set TMPOPTS=-DCMAKE_INSTALL_PREFIX=%TMPINST%
|
||||
@set TMPOPTS=%TMPOPTS% -G "Visual Studio 10 Win64"
|
||||
|
||||
:RPT
|
||||
@if "%~1x" == "x" goto GOTCMD
|
||||
@set TMPOPTS=%TMPOPTS% %1
|
||||
@shift
|
||||
@goto RPT
|
||||
:GOTCMD
|
||||
|
||||
@call chkmsvc %TMPPRJ%
|
||||
|
||||
@echo Begin %DATE% %TIME%, output to %TMPLOG%
|
||||
@echo Begin %DATE% %TIME% >> %TMPLOG%
|
||||
|
||||
@echo Doing: 'cmake %TMPSRC% %TMPOPTS%'
|
||||
@echo Doing: 'cmake %TMPSRC% %TMPOPTS%' >> %TMPLOG%
|
||||
@cmake %TMPSRC% %TMPOPTS% >> %TMPLOG% 2>&1
|
||||
@if ERRORLEVEL 1 goto ERR1
|
||||
|
||||
@echo Doing: 'cmake --build . --config debug'
|
||||
@echo Doing: 'cmake --build . --config debug' >> %TMPLOG%
|
||||
@cmake --build . --config debug >> %TMPLOG%
|
||||
@if ERRORLEVEL 1 goto ERR2
|
||||
|
||||
@echo Doing: 'cmake --build . --config release'
|
||||
@echo Doing: 'cmake --build . --config release' >> %TMPLOG%
|
||||
@cmake --build . --config release >> %TMPLOG% 2>&1
|
||||
@if ERRORLEVEL 1 goto ERR3
|
||||
:DNREL
|
||||
|
||||
@echo Appears a successful build
|
||||
@echo.
|
||||
@REM echo No INSTALL configured at this time
|
||||
@REM goto END
|
||||
|
||||
@echo Note install location %TMPINST%
|
||||
@ask *** CONTINUE with install? *** Only y continues
|
||||
@if ERRORLEVEL 2 goto NOASK
|
||||
@if ERRORLEVEL 1 goto DOINST
|
||||
@echo Skipping install to %TMPINST% at this time...
|
||||
@echo.
|
||||
@goto END
|
||||
:NOASK
|
||||
@echo ask not found in path...
|
||||
@echo *** CONTINUE with install? *** Only y continues
|
||||
@pause
|
||||
|
||||
:DOINST
|
||||
@REM cmake -P cmake_install.cmake
|
||||
@echo Doing: 'cmake --build . --config debug --target INSTALL'
|
||||
@echo Doing: 'cmake --build . --config debug --target INSTALL' >> %TMPLOG%
|
||||
@cmake --build . --config debug --target INSTALL >> %TMPLOG% 2>&1
|
||||
|
||||
@echo Doing: 'cmake --build . --config release --target INSTALL'
|
||||
@echo Doing: 'cmake --build . --config release --target INSTALL' >> %TMPLOG%
|
||||
@cmake --build . --config release --target INSTALL >> %TMPLOG% 2>&1
|
||||
|
||||
@fa4 " -- " %TMPLOG%
|
||||
|
||||
@echo Done build and install of %TMPPRJ%...
|
||||
|
||||
@goto END
|
||||
|
||||
:NOBAT
|
||||
@echo Can NOT locate MSVC setup batch "%SET_BAT%"! *** FIX ME ***
|
||||
@goto ISERR
|
||||
|
||||
:NOROOT
|
||||
@echo Can NOT locate %TMPROOT%! *** FIX ME ***
|
||||
@goto ISERR
|
||||
|
||||
:NOCM
|
||||
@echo Can NOT locate %TMPSRC%\CMakeLists.txt! *** FIX ME ***
|
||||
@goto ISERR
|
||||
|
||||
:NOINST
|
||||
@echo Can NOT locate directory %TMPINST%! *** FIX ME ***
|
||||
@goto ISERR
|
||||
|
||||
:ERR0
|
||||
@echo MSVC 10 setup error
|
||||
@goto ISERR
|
||||
|
||||
:ERR1
|
||||
@echo cmake config, generation error
|
||||
@goto ISERR
|
||||
|
||||
:ERR2
|
||||
@echo debug build error
|
||||
@goto ISERR
|
||||
|
||||
:ERR3
|
||||
@fa4 "mt.exe : general error c101008d:" %TMPLOG% >nul
|
||||
@if ERRORLEVEL 1 goto ERR32
|
||||
:ERR33
|
||||
@echo release build error
|
||||
@goto ISERR
|
||||
:ERR32
|
||||
@echo Stupid error... trying again...
|
||||
@echo Doing: 'cmake --build . --config release'
|
||||
@echo Doing: 'cmake --build . --config release' >> %TMPLOG%
|
||||
@cmake --build . --config release >> %TMPLOG% 2>&1
|
||||
@if ERRORLEVEL 1 goto ERR33
|
||||
@goto DNREL
|
||||
|
||||
:ISERR
|
||||
@endlocal
|
||||
@exit /b 1
|
||||
|
||||
:END
|
||||
@endlocal
|
||||
@exit /b 0
|
||||
|
||||
@REM eof
|
1
build/win64/cmake-clean.txt
Normal file
|
@ -0,0 +1 @@
|
|||
bldlog-1.txt
|
56
build/win64/updexe.bat
Normal file
|
@ -0,0 +1,56 @@
|
|||
@setlocal
|
||||
@REM copy the EXE into C:\MDOS, IFF changed
|
||||
@set TMPDIR=C:\MDOS
|
||||
@set TMPFIL1=tidy5.exe
|
||||
@set TMPFIL2=tidy5.exe
|
||||
@set TMPSRC=Release\%TMPFIL1%
|
||||
@if NOT EXIST %TMPSRC% goto ERR1
|
||||
@echo Current source %TMPSRC%
|
||||
@call dirmin %TMPSRC%
|
||||
|
||||
@if NOT EXIST %TMPDIR%\nul goto ERR2
|
||||
@set TMPDST=%TMPDIR%\%TMPFIL2%
|
||||
@if NOT EXIST %TMPDST% goto DOCOPY
|
||||
|
||||
@echo Current destination %TMPDST%
|
||||
@call dirmin %TMPDST%
|
||||
|
||||
@REM Compare
|
||||
@fc4 -q -v0 -b %TMPSRC% %TMPDST% >nul
|
||||
@if ERRORLEVEL 2 goto NOFC4
|
||||
@if ERRORLEVEL 1 goto DOCOPY
|
||||
@echo.
|
||||
@echo Files are the SAME... Nothing done...
|
||||
@echo.
|
||||
@goto END
|
||||
|
||||
:NOFC4
|
||||
@echo Can NOT run fc4! so doing copy...
|
||||
:DOCOPY
|
||||
copy %TMPSRC% %TMPDST%
|
||||
@if NOT EXIST %TMPDST% goto ERR3
|
||||
@call dirmin %TMPDST%
|
||||
@echo Done file update...
|
||||
@goto END
|
||||
|
||||
:ERR1
|
||||
@echo Source %TMPSRC% does NOT exist! Has it been built? *** FIX ME ***
|
||||
@goto ISERR
|
||||
|
||||
:ERR2
|
||||
@echo Destination %TMPDIR% does NOT exist!
|
||||
@goto ISERR
|
||||
|
||||
:ERR3
|
||||
@echo Copy of %TMPSRC% to %TMPDST% FAILED!
|
||||
@goto ISERR
|
||||
|
||||
:ISERR
|
||||
@endlocal
|
||||
@exit /b 1
|
||||
|
||||
:END
|
||||
@endlocal
|
||||
@exit /b 0
|
||||
|
||||
@REM eof
|
44
console/test71.cxx
Normal file
|
@ -0,0 +1,44 @@
|
|||
/*\
|
||||
* 20150206 - Test app for Issue #71
|
||||
*
|
||||
* A simple API example of getting the body text, first as html,
|
||||
* and then as a raw stream.
|
||||
*
|
||||
* Note: This simple test app has no error checking
|
||||
*
|
||||
\*/
|
||||
|
||||
#include <stdio.h>
|
||||
#include "buffio.h"
|
||||
#include "tidy.h"
|
||||
|
||||
static const char *sample =
|
||||
"<!DOCTYPE html>\n"
|
||||
"<head>\n"
|
||||
"<meta charset=utf-8>\n"
|
||||
"<title>Test app for Issue #71</title>\n"
|
||||
"<body>something & escaped</body>\n"
|
||||
"</html>";
|
||||
|
||||
int main() {
|
||||
printf("\nSimple example of HTML Tidy API use.\n");
|
||||
TidyDoc tdoc = tidyCreate();
|
||||
TidyBuffer buff;
|
||||
tidyBufInit(&buff);
|
||||
tidyBufAppend(&buff, (void *)sample, strlen(sample));
|
||||
tidyParseBuffer(tdoc, &buff);
|
||||
TidyNode body = tidyGetBody(tdoc);
|
||||
TidyNode text_node = tidyGetChild(body);
|
||||
TidyBuffer buff2;
|
||||
tidyBufInit(&buff2);
|
||||
printf("This is the 'escaped' text, from tidyNodeGetText(...), suitable for html use...\n");
|
||||
tidyNodeGetText(tdoc, text_node, &buff2);
|
||||
fwrite(buff2.bp, buff2.size, 1, stdout);
|
||||
printf("This is the 'raw' lexer values, from tidyNodeGetValue(...).\n");
|
||||
tidyNodeGetValue(tdoc, text_node, &buff2);
|
||||
fwrite(buff2.bp, buff2.size, 1, stdout);
|
||||
printf("\n");
|
||||
return 0;
|
||||
}
|
||||
|
||||
// eof
|
|
@ -9,6 +9,13 @@
|
|||
*/
|
||||
|
||||
#include "tidy.h"
|
||||
#if !defined(NDEBUG) && defined(_MSC_VER)
|
||||
#include "sprtf.h"
|
||||
#endif
|
||||
|
||||
#ifndef SPRTF
|
||||
#define SPRTF printf
|
||||
#endif
|
||||
|
||||
static FILE* errout = NULL; /* set to stderr */
|
||||
/* static FILE* txtout = NULL; */ /* set to stdout */
|
||||
|
@ -405,19 +412,32 @@ static void print_xml_help_option( void )
|
|||
static void xml_help( void )
|
||||
{
|
||||
printf( "<?xml version=\"1.0\"?>\n"
|
||||
"<cmdline version=\"%s\">\n", tidyReleaseDate());
|
||||
"<cmdline version=\"%s\">\n", tidyLibraryVersion());
|
||||
print_xml_help_option();
|
||||
printf( "</cmdline>\n" );
|
||||
}
|
||||
|
||||
static ctmbstr get_final_name( ctmbstr prog )
|
||||
{
|
||||
ctmbstr name = prog;
|
||||
int c;
|
||||
size_t i, len = strlen(prog);
|
||||
for (i = 0; i < len; i++) {
|
||||
c = prog[i];
|
||||
if ((( c == '/' ) || ( c == '\\' )) && prog[i+1])
|
||||
name = &prog[i+1];
|
||||
}
|
||||
return name;
|
||||
}
|
||||
|
||||
static void help( ctmbstr prog )
|
||||
{
|
||||
printf( "%s [option...] [file...] [option...] [file...]\n", prog );
|
||||
printf( "Utility to clean up and pretty print HTML/XHTML/XML\n");
|
||||
printf( "\n");
|
||||
printf( "%s [options...] [file...] [options...] [file...]\n", get_final_name(prog) );
|
||||
printf( "Utility to clean up and pretty print HTML/XHTML/XML.\n");
|
||||
printf( "\n");
|
||||
|
||||
printf( "This is an HTML5-aware experimental fork of HTML Tidy.\n");
|
||||
printf( "%s\n", tidyReleaseDate() );
|
||||
printf( "This is modern HTML Tidy version %s.\n", tidyLibraryVersion() );
|
||||
printf( "\n");
|
||||
|
||||
#ifdef PLATFORM_NAME
|
||||
|
@ -438,8 +458,8 @@ static void help( ctmbstr prog )
|
|||
printf( "Single letter options apart from -f may be combined\n");
|
||||
printf( "as in: tidy -f errs.txt -imu foo.html\n");
|
||||
printf( "\n");
|
||||
printf( "For more information on this HTML5-aware experimental fork of Tidy,\n" );
|
||||
printf( "see http://w3c.github.com/tidy-html5/\n" );
|
||||
printf( "For more information about HTML Tidy, see\n" );
|
||||
printf( " http://www.html-tidy.org/\n" );
|
||||
printf( "\n");
|
||||
printf( "For more information on HTML, see the following:\n" );
|
||||
printf( "\n");
|
||||
|
@ -449,13 +469,13 @@ static void help( ctmbstr prog )
|
|||
printf( " HTML: The Markup Language (an HTML language reference)\n" );
|
||||
printf( " http://dev.w3.org/html5/markup/\n" );
|
||||
printf( "\n");
|
||||
printf( "File bug reports at https://github.com/w3c/tidy-html5/issues/\n" );
|
||||
printf( "or send questions and comments to html-tidy@w3.org\n" );
|
||||
printf( "File bug reports at https://github.com/htacg/tidy-html5/issues/\n" );
|
||||
printf( "or send questions and comments to public-htacg@w3.org.\n" );
|
||||
printf( "\n");
|
||||
printf( "Validate your HTML documents using the W3C Nu Markup Validator:\n" );
|
||||
printf( "\n");
|
||||
printf( " http://validator.w3.org/nu/" );
|
||||
printf( "\n");
|
||||
printf( "\n\n");
|
||||
}
|
||||
|
||||
static Bool isAutoBool( TidyOption topt )
|
||||
|
@ -495,6 +515,7 @@ ctmbstr ConfigCategoryName( TidyConfigCategory id )
|
|||
fprintf(stderr, "Fatal error: impossible value for id='%d'.\n", (int)id);
|
||||
assert(0);
|
||||
abort();
|
||||
return "never_here"; /* only for the compiler warning */
|
||||
}
|
||||
|
||||
/* Description of an option */
|
||||
|
@ -760,7 +781,7 @@ void printXMLOption( TidyDoc tdoc, TidyOption topt, OptionDesc *d )
|
|||
static void XMLoptionhelp( TidyDoc tdoc )
|
||||
{
|
||||
printf( "<?xml version=\"1.0\"?>\n"
|
||||
"<config version=\"%s\">\n", tidyReleaseDate());
|
||||
"<config version=\"%s\">\n", tidyLibraryVersion());
|
||||
ForEachOption( tdoc, printXMLOption );
|
||||
printf( "</config>\n" );
|
||||
}
|
||||
|
@ -921,10 +942,10 @@ static void optionvalues( TidyDoc tdoc )
|
|||
static void version( void )
|
||||
{
|
||||
#ifdef PLATFORM_NAME
|
||||
printf( "HTML Tidy for HTML5 (experimental) for %s %s\n",
|
||||
PLATFORM_NAME, tidyReleaseDate() );
|
||||
printf( "HTML Tidy for %s version %s\n",
|
||||
PLATFORM_NAME, tidyLibraryVersion() );
|
||||
#else
|
||||
printf( "HTML Tidy for HTML5 (experimental) %s\n", tidyReleaseDate() );
|
||||
printf( "HTML Tidy version %s\n", tidyLibraryVersion() );
|
||||
#endif
|
||||
}
|
||||
|
||||
|
@ -946,6 +967,10 @@ int main( int argc, char** argv )
|
|||
|
||||
errout = stderr; /* initialize to stderr */
|
||||
status = 0;
|
||||
#if !defined(NDEBUG) && defined(_MSC_VER)
|
||||
set_log_file((char *)"temptidy.txt", 0);
|
||||
// add_append_log(1);
|
||||
#endif
|
||||
|
||||
#ifdef TIDY_CONFIG_FILE
|
||||
if ( tidyFileExists( tdoc, TIDY_CONFIG_FILE) )
|
||||
|
@ -1267,6 +1292,9 @@ int main( int argc, char** argv )
|
|||
if ( argc > 1 )
|
||||
{
|
||||
htmlfil = argv[1];
|
||||
#if (!defined(NDEBUG) && defined(_MSC_VER))
|
||||
SPRTF("Tidying '%s'\n", htmlfil);
|
||||
#endif // DEBUG outout
|
||||
if ( tidyOptGetBool(tdoc, TidyEmacs) )
|
||||
tidyOptSetValue( tdoc, TidyEmacsFile, htmlfil );
|
||||
status = tidyParseFile( tdoc, htmlfil );
|
||||
|
@ -1280,9 +1308,18 @@ int main( int argc, char** argv )
|
|||
if ( status >= 0 )
|
||||
status = tidyCleanAndRepair( tdoc );
|
||||
|
||||
if ( status >= 0 )
|
||||
if ( status >= 0 ) {
|
||||
status = tidyRunDiagnostics( tdoc );
|
||||
if ( !tidyOptGetBool(tdoc, TidyQuiet) ) {
|
||||
/* NOT quiet, show DOCTYPE, if not already shown */
|
||||
if (!tidyOptGetBool(tdoc, TidyShowInfo)) {
|
||||
tidyOptSetBool( tdoc, TidyShowInfo, yes );
|
||||
tidyReportDoctype( tdoc ); /* FIX20140913: like warnings, errors, ALWAYS report DOCTYPE */
|
||||
tidyOptSetBool( tdoc, TidyShowInfo, no );
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
if ( status > 1 ) /* If errors, do we want to force output? */
|
||||
status = ( tidyOptGetBool(tdoc, TidyForceOutput) ? status : -1 );
|
||||
|
||||
|
@ -1293,10 +1330,18 @@ int main( int argc, char** argv )
|
|||
else
|
||||
{
|
||||
ctmbstr outfil = tidyOptGetValue( tdoc, TidyOutFile );
|
||||
if ( outfil )
|
||||
if ( outfil ) {
|
||||
status = tidySaveFile( tdoc, outfil );
|
||||
else
|
||||
} else {
|
||||
#if !defined(NDEBUG) && defined(_MSC_VER)
|
||||
static char tmp_buf[264];
|
||||
sprintf(tmp_buf,"%s.html",get_log_file());
|
||||
status = tidySaveFile( tdoc, tmp_buf );
|
||||
SPRTF("Saved tidied content to '%s'\n",tmp_buf);
|
||||
#else
|
||||
status = tidySaveStdout( tdoc );
|
||||
#endif
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -1,90 +0,0 @@
|
|||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=9"/>
|
||||
<title>HTML Tidy: Data Structures</title>
|
||||
|
||||
<link href="tabs.css" rel="stylesheet" type="text/css"/>
|
||||
<link href="doxygen.css" rel="stylesheet" type="text/css" />
|
||||
<link href="navtree.css" rel="stylesheet" type="text/css"/>
|
||||
<script type="text/javascript" src="jquery.js"></script>
|
||||
<script type="text/javascript" src="resize.js"></script>
|
||||
<script type="text/javascript" src="navtree.js"></script>
|
||||
<script type="text/javascript">
|
||||
$(document).ready(initResizable);
|
||||
</script>
|
||||
|
||||
|
||||
</head>
|
||||
<body>
|
||||
<div id="top"><!-- do not remove this div! -->
|
||||
|
||||
|
||||
<div id="titlearea">
|
||||
<table cellspacing="0" cellpadding="0">
|
||||
<tbody>
|
||||
<tr style="height: 56px;">
|
||||
|
||||
|
||||
<td style="padding-left: 0.5em;">
|
||||
<div id="projectname">HTML Tidy
|
||||
 <span id="projectnumber">0.1</span>
|
||||
</div>
|
||||
|
||||
</td>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
|
||||
<!-- Generated by Doxygen 1.8.0 -->
|
||||
</div>
|
||||
<div id="side-nav" class="ui-resizable side-nav-resizable">
|
||||
<div id="nav-tree">
|
||||
<div id="nav-tree-contents">
|
||||
</div>
|
||||
</div>
|
||||
<div id="splitbar" style="-moz-user-select:none;"
|
||||
class="ui-resizable-handle">
|
||||
</div>
|
||||
</div>
|
||||
<script type="text/javascript">
|
||||
initNavTree('annotated.html','');
|
||||
</script>
|
||||
<div id="doc-content">
|
||||
<div class="header">
|
||||
<div class="headertitle">
|
||||
<div class="title">Data Structures</div> </div>
|
||||
</div><!--header-->
|
||||
<div class="contents">
|
||||
<div class="textblock">Here are the data structures with brief descriptions:</div><table>
|
||||
<tr><td class="indexkey"><a class="el" href="struct__TidyAllocator.html">_TidyAllocator</a></td><td class="indexvalue"></td></tr>
|
||||
<tr><td class="indexkey"><a class="el" href="struct__TidyAllocatorVtbl.html">_TidyAllocatorVtbl</a></td><td class="indexvalue"></td></tr>
|
||||
<tr><td class="indexkey"><a class="el" href="struct__TidyBuffer.html">_TidyBuffer</a></td><td class="indexvalue"></td></tr>
|
||||
<tr><td class="indexkey"><a class="el" href="struct__TidyInputSource.html">_TidyInputSource</a></td><td class="indexvalue"></td></tr>
|
||||
<tr><td class="indexkey"><a class="el" href="struct__TidyOutputSink.html">_TidyOutputSink</a></td><td class="indexvalue"></td></tr>
|
||||
<tr><td class="indexkey"><a class="el" href="structTidyAttr.html">TidyAttr</a></td><td class="indexvalue"></td></tr>
|
||||
<tr><td class="indexkey"><a class="el" href="structTidyDoc.html">TidyDoc</a></td><td class="indexvalue"></td></tr>
|
||||
<tr><td class="indexkey"><a class="el" href="structTidyNode.html">TidyNode</a></td><td class="indexvalue"></td></tr>
|
||||
<tr><td class="indexkey"><a class="el" href="structTidyOption.html">TidyOption</a></td><td class="indexvalue"></td></tr>
|
||||
</table>
|
||||
</div><!-- contents -->
|
||||
</div>
|
||||
<div id="nav-path" class="navpath">
|
||||
<ul>
|
||||
|
||||
<li class="footer">Generated on Wed Jun 20 2012 16:58:07 for HTML Tidy by
|
||||
<a href="http://www.doxygen.org/index.html">
|
||||
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.0 </li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
|
@ -1,12 +0,0 @@
|
|||
var annotated =
|
||||
[
|
||||
[ "_TidyAllocator", "struct__TidyAllocator.html", "struct__TidyAllocator" ],
|
||||
[ "_TidyAllocatorVtbl", "struct__TidyAllocatorVtbl.html", "struct__TidyAllocatorVtbl" ],
|
||||
[ "_TidyBuffer", "struct__TidyBuffer.html", "struct__TidyBuffer" ],
|
||||
[ "_TidyInputSource", "struct__TidyInputSource.html", "struct__TidyInputSource" ],
|
||||
[ "_TidyOutputSink", "struct__TidyOutputSink.html", "struct__TidyOutputSink" ],
|
||||
[ "TidyAttr", "structTidyAttr.html", null ],
|
||||
[ "TidyDoc", "structTidyDoc.html", null ],
|
||||
[ "TidyNode", "structTidyNode.html", null ],
|
||||
[ "TidyOption", "structTidyOption.html", null ]
|
||||
];
|
Before Width: | Height: | Size: 677 B |
Before Width: | Height: | Size: 147 B |
|
@ -1,550 +0,0 @@
|
|||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=9"/>
|
||||
<title>HTML Tidy: buffio.h File Reference</title>
|
||||
|
||||
<link href="tabs.css" rel="stylesheet" type="text/css"/>
|
||||
<link href="doxygen.css" rel="stylesheet" type="text/css" />
|
||||
<link href="navtree.css" rel="stylesheet" type="text/css"/>
|
||||
<script type="text/javascript" src="jquery.js"></script>
|
||||
<script type="text/javascript" src="resize.js"></script>
|
||||
<script type="text/javascript" src="navtree.js"></script>
|
||||
<script type="text/javascript">
|
||||
$(document).ready(initResizable);
|
||||
</script>
|
||||
|
||||
|
||||
</head>
|
||||
<body>
|
||||
<div id="top"><!-- do not remove this div! -->
|
||||
|
||||
|
||||
<div id="titlearea">
|
||||
<table cellspacing="0" cellpadding="0">
|
||||
<tbody>
|
||||
<tr style="height: 56px;">
|
||||
|
||||
|
||||
<td style="padding-left: 0.5em;">
|
||||
<div id="projectname">HTML Tidy
|
||||
 <span id="projectnumber">0.1</span>
|
||||
</div>
|
||||
|
||||
</td>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
|
||||
<!-- Generated by Doxygen 1.8.0 -->
|
||||
</div>
|
||||
<div id="side-nav" class="ui-resizable side-nav-resizable">
|
||||
<div id="nav-tree">
|
||||
<div id="nav-tree-contents">
|
||||
</div>
|
||||
</div>
|
||||
<div id="splitbar" style="-moz-user-select:none;"
|
||||
class="ui-resizable-handle">
|
||||
</div>
|
||||
</div>
|
||||
<script type="text/javascript">
|
||||
initNavTree('buffio_8h.html','');
|
||||
</script>
|
||||
<div id="doc-content">
|
||||
<div class="header">
|
||||
<div class="summary">
|
||||
<a href="#nested-classes">Data Structures</a> |
|
||||
<a href="#func-members">Functions</a> </div>
|
||||
<div class="headertitle">
|
||||
<div class="title">buffio.h File Reference</div> </div>
|
||||
</div><!--header-->
|
||||
<div class="contents">
|
||||
|
||||
<p><a href="buffio_8h_source.html">Go to the source code of this file.</a></p>
|
||||
<table class="memberdecls">
|
||||
<tr><td colspan="2"><h2><a name="nested-classes"></a>
|
||||
Data Structures</h2></td></tr>
|
||||
<tr class="memitem:"><td class="memItemLeft" align="right" valign="top">struct  </td><td class="memItemRight" valign="bottom"><a class="el" href="struct__TidyBuffer.html">_TidyBuffer</a></td></tr>
|
||||
<tr><td colspan="2"><h2><a name="func-members"></a>
|
||||
Functions</h2></td></tr>
|
||||
<tr class="memitem:a3cf251a96f69f05495744af6c9d0339b"><td class="memItemLeft" align="right" valign="top">void TIDY_CALL </td><td class="memItemRight" valign="bottom"><a class="el" href="buffio_8h.html#a3cf251a96f69f05495744af6c9d0339b">tidyBufInit</a> (<a class="el" href="struct__TidyBuffer.html">TidyBuffer</a> *buf)</td></tr>
|
||||
<tr class="memitem:aff43ddd9fc78532617d88db55b164f5e"><td class="memItemLeft" align="right" valign="top">void TIDY_CALL </td><td class="memItemRight" valign="bottom"><a class="el" href="buffio_8h.html#aff43ddd9fc78532617d88db55b164f5e">tidyBufInitWithAllocator</a> (<a class="el" href="struct__TidyBuffer.html">TidyBuffer</a> *buf, <a class="el" href="group__Memory.html#ga78e96524a88db0c09e766795265863da">TidyAllocator</a> *allocator)</td></tr>
|
||||
<tr class="memitem:a896654bd99113bfe5e86b924836aacc3"><td class="memItemLeft" align="right" valign="top">void TIDY_CALL </td><td class="memItemRight" valign="bottom"><a class="el" href="buffio_8h.html#a896654bd99113bfe5e86b924836aacc3">tidyBufAlloc</a> (<a class="el" href="struct__TidyBuffer.html">TidyBuffer</a> *buf, uint allocSize)</td></tr>
|
||||
<tr class="memitem:a57c832b4ddbc19a329a5ab9936eb5826"><td class="memItemLeft" align="right" valign="top">void TIDY_CALL </td><td class="memItemRight" valign="bottom"><a class="el" href="buffio_8h.html#a57c832b4ddbc19a329a5ab9936eb5826">tidyBufAllocWithAllocator</a> (<a class="el" href="struct__TidyBuffer.html">TidyBuffer</a> *buf, <a class="el" href="group__Memory.html#ga78e96524a88db0c09e766795265863da">TidyAllocator</a> *allocator, uint allocSize)</td></tr>
|
||||
<tr class="memitem:a7a66ba1f574955d1fc1de57476e849f2"><td class="memItemLeft" align="right" valign="top">void TIDY_CALL </td><td class="memItemRight" valign="bottom"><a class="el" href="buffio_8h.html#a7a66ba1f574955d1fc1de57476e849f2">tidyBufCheckAlloc</a> (<a class="el" href="struct__TidyBuffer.html">TidyBuffer</a> *buf, uint allocSize, uint chunkSize)</td></tr>
|
||||
<tr class="memitem:a65aae9ae4b499e62038700f4792849fc"><td class="memItemLeft" align="right" valign="top">void TIDY_CALL </td><td class="memItemRight" valign="bottom"><a class="el" href="buffio_8h.html#a65aae9ae4b499e62038700f4792849fc">tidyBufFree</a> (<a class="el" href="struct__TidyBuffer.html">TidyBuffer</a> *buf)</td></tr>
|
||||
<tr class="memitem:aa94e59f613a495b17e90c1c4778c3911"><td class="memItemLeft" align="right" valign="top">void TIDY_CALL </td><td class="memItemRight" valign="bottom"><a class="el" href="buffio_8h.html#aa94e59f613a495b17e90c1c4778c3911">tidyBufClear</a> (<a class="el" href="struct__TidyBuffer.html">TidyBuffer</a> *buf)</td></tr>
|
||||
<tr class="memitem:ac5909e78d98583cb245dd2004469bb93"><td class="memItemLeft" align="right" valign="top">void TIDY_CALL </td><td class="memItemRight" valign="bottom"><a class="el" href="buffio_8h.html#ac5909e78d98583cb245dd2004469bb93">tidyBufAttach</a> (<a class="el" href="struct__TidyBuffer.html">TidyBuffer</a> *buf, byte *bp, uint size)</td></tr>
|
||||
<tr class="memitem:a8da2bf473b14e6bdd5cd40fc47c29903"><td class="memItemLeft" align="right" valign="top">void TIDY_CALL </td><td class="memItemRight" valign="bottom"><a class="el" href="buffio_8h.html#a8da2bf473b14e6bdd5cd40fc47c29903">tidyBufDetach</a> (<a class="el" href="struct__TidyBuffer.html">TidyBuffer</a> *buf)</td></tr>
|
||||
<tr class="memitem:ad59b32f81789b634758274f34be4d25b"><td class="memItemLeft" align="right" valign="top">void TIDY_CALL </td><td class="memItemRight" valign="bottom"><a class="el" href="buffio_8h.html#ad59b32f81789b634758274f34be4d25b">tidyBufAppend</a> (<a class="el" href="struct__TidyBuffer.html">TidyBuffer</a> *buf, void *vp, uint size)</td></tr>
|
||||
<tr class="memitem:af48af586ada5ff264501fe9ef4c67dd1"><td class="memItemLeft" align="right" valign="top">void TIDY_CALL </td><td class="memItemRight" valign="bottom"><a class="el" href="buffio_8h.html#af48af586ada5ff264501fe9ef4c67dd1">tidyBufPutByte</a> (<a class="el" href="struct__TidyBuffer.html">TidyBuffer</a> *buf, byte bv)</td></tr>
|
||||
<tr class="memitem:af8b1e8fbe3c29d08250794d7e4925ea6"><td class="memItemLeft" align="right" valign="top">int TIDY_CALL </td><td class="memItemRight" valign="bottom"><a class="el" href="buffio_8h.html#af8b1e8fbe3c29d08250794d7e4925ea6">tidyBufPopByte</a> (<a class="el" href="struct__TidyBuffer.html">TidyBuffer</a> *buf)</td></tr>
|
||||
<tr class="memitem:a5a2e0c47b4b14b5beb17ac982fa21eeb"><td class="memItemLeft" align="right" valign="top">int TIDY_CALL </td><td class="memItemRight" valign="bottom"><a class="el" href="buffio_8h.html#a5a2e0c47b4b14b5beb17ac982fa21eeb">tidyBufGetByte</a> (<a class="el" href="struct__TidyBuffer.html">TidyBuffer</a> *buf)</td></tr>
|
||||
<tr class="memitem:a7e7d8e58623c8bde00d66141edb2cae0"><td class="memItemLeft" align="right" valign="top">Bool TIDY_CALL </td><td class="memItemRight" valign="bottom"><a class="el" href="buffio_8h.html#a7e7d8e58623c8bde00d66141edb2cae0">tidyBufEndOfInput</a> (<a class="el" href="struct__TidyBuffer.html">TidyBuffer</a> *buf)</td></tr>
|
||||
<tr class="memitem:a1d1f2039b769381d418ac1187b50b292"><td class="memItemLeft" align="right" valign="top">void TIDY_CALL </td><td class="memItemRight" valign="bottom"><a class="el" href="buffio_8h.html#a1d1f2039b769381d418ac1187b50b292">tidyBufUngetByte</a> (<a class="el" href="struct__TidyBuffer.html">TidyBuffer</a> *buf, byte bv)</td></tr>
|
||||
<tr class="memitem:a73da3182aea89939af1d98504a3b2df0"><td class="memItemLeft" align="right" valign="top">void TIDY_CALL </td><td class="memItemRight" valign="bottom"><a class="el" href="buffio_8h.html#a73da3182aea89939af1d98504a3b2df0">tidyInitInputBuffer</a> (<a class="el" href="group__IO.html#ga86fcc3c86bd63b26a559938bc38d34bb">TidyInputSource</a> *inp, <a class="el" href="struct__TidyBuffer.html">TidyBuffer</a> *buf)</td></tr>
|
||||
<tr class="memitem:a882a92590a9e6ecce16d5b8e8db19fbb"><td class="memItemLeft" align="right" valign="top">void TIDY_CALL </td><td class="memItemRight" valign="bottom"><a class="el" href="buffio_8h.html#a882a92590a9e6ecce16d5b8e8db19fbb">tidyInitOutputBuffer</a> (<a class="el" href="group__IO.html#ga6bdd15de48364d2b5dbf2141109d3f98">TidyOutputSink</a> *outp, <a class="el" href="struct__TidyBuffer.html">TidyBuffer</a> *buf)</td></tr>
|
||||
</table>
|
||||
<hr/><a name="details" id="details"></a><h2>Detailed Description</h2>
|
||||
<div class="textblock"><ul>
|
||||
<li>Treat buffer as an I/O stream.</li>
|
||||
</ul>
|
||||
<p>(c) 1998-2007 (W3C) MIT, ERCIM, Keio University See <a class="el" href="tidy_8h.html">tidy.h</a> for the copyright notice.</p>
|
||||
<p>CVS Info :</p>
|
||||
<dl class="section rcs"><dt>Author:</b></dt><dd>arnaud02 </dd></dl>
|
||||
<dl class="section rcs"><dt>Date:</b></dt><dd>2007/01/23 11:17:45 </dd></dl>
|
||||
<dl class="section rcs"><dt>Revision:</b></dt><dd>1.9 </dd></dl>
|
||||
<p>Requires buffer to automatically grow as bytes are added. Must keep track of current read and write points. </p>
|
||||
</div><hr/><h2>Function Documentation</h2>
|
||||
<a class="anchor" id="a3cf251a96f69f05495744af6c9d0339b"></a>
|
||||
<div class="memitem">
|
||||
<div class="memproto">
|
||||
<table class="memname">
|
||||
<tr>
|
||||
<td class="memname">void TIDY_CALL <a class="el" href="buffio_8h.html#a3cf251a96f69f05495744af6c9d0339b">tidyBufInit</a> </td>
|
||||
<td>(</td>
|
||||
<td class="paramtype"><a class="el" href="struct__TidyBuffer.html">TidyBuffer</a> * </td>
|
||||
<td class="paramname"><em>buf</em></td><td>)</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
<div class="memdoc">
|
||||
<p>Initialize data structure using the default allocator </p>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
<a class="anchor" id="aff43ddd9fc78532617d88db55b164f5e"></a>
|
||||
<div class="memitem">
|
||||
<div class="memproto">
|
||||
<table class="memname">
|
||||
<tr>
|
||||
<td class="memname">void TIDY_CALL <a class="el" href="buffio_8h.html#aff43ddd9fc78532617d88db55b164f5e">tidyBufInitWithAllocator</a> </td>
|
||||
<td>(</td>
|
||||
<td class="paramtype"><a class="el" href="struct__TidyBuffer.html">TidyBuffer</a> * </td>
|
||||
<td class="paramname"><em>buf</em>, </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="paramkey"></td>
|
||||
<td></td>
|
||||
<td class="paramtype"><a class="el" href="group__Memory.html#ga78e96524a88db0c09e766795265863da">TidyAllocator</a> * </td>
|
||||
<td class="paramname"><em>allocator</em> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td></td>
|
||||
<td>)</td>
|
||||
<td></td><td></td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
<div class="memdoc">
|
||||
<p>Initialize data structure using the given custom allocator </p>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
<a class="anchor" id="a896654bd99113bfe5e86b924836aacc3"></a>
|
||||
<div class="memitem">
|
||||
<div class="memproto">
|
||||
<table class="memname">
|
||||
<tr>
|
||||
<td class="memname">void TIDY_CALL <a class="el" href="buffio_8h.html#a896654bd99113bfe5e86b924836aacc3">tidyBufAlloc</a> </td>
|
||||
<td>(</td>
|
||||
<td class="paramtype"><a class="el" href="struct__TidyBuffer.html">TidyBuffer</a> * </td>
|
||||
<td class="paramname"><em>buf</em>, </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="paramkey"></td>
|
||||
<td></td>
|
||||
<td class="paramtype">uint </td>
|
||||
<td class="paramname"><em>allocSize</em> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td></td>
|
||||
<td>)</td>
|
||||
<td></td><td></td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
<div class="memdoc">
|
||||
<p>Free current buffer, allocate given amount, reset input pointer, use the default allocator </p>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
<a class="anchor" id="a57c832b4ddbc19a329a5ab9936eb5826"></a>
|
||||
<div class="memitem">
|
||||
<div class="memproto">
|
||||
<table class="memname">
|
||||
<tr>
|
||||
<td class="memname">void TIDY_CALL <a class="el" href="buffio_8h.html#a57c832b4ddbc19a329a5ab9936eb5826">tidyBufAllocWithAllocator</a> </td>
|
||||
<td>(</td>
|
||||
<td class="paramtype"><a class="el" href="struct__TidyBuffer.html">TidyBuffer</a> * </td>
|
||||
<td class="paramname"><em>buf</em>, </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="paramkey"></td>
|
||||
<td></td>
|
||||
<td class="paramtype"><a class="el" href="group__Memory.html#ga78e96524a88db0c09e766795265863da">TidyAllocator</a> * </td>
|
||||
<td class="paramname"><em>allocator</em>, </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="paramkey"></td>
|
||||
<td></td>
|
||||
<td class="paramtype">uint </td>
|
||||
<td class="paramname"><em>allocSize</em> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td></td>
|
||||
<td>)</td>
|
||||
<td></td><td></td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
<div class="memdoc">
|
||||
<p>Free current buffer, allocate given amount, reset input pointer, use the given custom allocator </p>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
<a class="anchor" id="a7a66ba1f574955d1fc1de57476e849f2"></a>
|
||||
<div class="memitem">
|
||||
<div class="memproto">
|
||||
<table class="memname">
|
||||
<tr>
|
||||
<td class="memname">void TIDY_CALL <a class="el" href="buffio_8h.html#a7a66ba1f574955d1fc1de57476e849f2">tidyBufCheckAlloc</a> </td>
|
||||
<td>(</td>
|
||||
<td class="paramtype"><a class="el" href="struct__TidyBuffer.html">TidyBuffer</a> * </td>
|
||||
<td class="paramname"><em>buf</em>, </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="paramkey"></td>
|
||||
<td></td>
|
||||
<td class="paramtype">uint </td>
|
||||
<td class="paramname"><em>allocSize</em>, </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="paramkey"></td>
|
||||
<td></td>
|
||||
<td class="paramtype">uint </td>
|
||||
<td class="paramname"><em>chunkSize</em> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td></td>
|
||||
<td>)</td>
|
||||
<td></td><td></td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
<div class="memdoc">
|
||||
<p>Expand buffer to given size. Chunk size is minimum growth. Pass 0 for default of 256 bytes. </p>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
<a class="anchor" id="a65aae9ae4b499e62038700f4792849fc"></a>
|
||||
<div class="memitem">
|
||||
<div class="memproto">
|
||||
<table class="memname">
|
||||
<tr>
|
||||
<td class="memname">void TIDY_CALL <a class="el" href="buffio_8h.html#a65aae9ae4b499e62038700f4792849fc">tidyBufFree</a> </td>
|
||||
<td>(</td>
|
||||
<td class="paramtype"><a class="el" href="struct__TidyBuffer.html">TidyBuffer</a> * </td>
|
||||
<td class="paramname"><em>buf</em></td><td>)</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
<div class="memdoc">
|
||||
<p>Free current contents and zero out </p>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
<a class="anchor" id="aa94e59f613a495b17e90c1c4778c3911"></a>
|
||||
<div class="memitem">
|
||||
<div class="memproto">
|
||||
<table class="memname">
|
||||
<tr>
|
||||
<td class="memname">void TIDY_CALL <a class="el" href="buffio_8h.html#aa94e59f613a495b17e90c1c4778c3911">tidyBufClear</a> </td>
|
||||
<td>(</td>
|
||||
<td class="paramtype"><a class="el" href="struct__TidyBuffer.html">TidyBuffer</a> * </td>
|
||||
<td class="paramname"><em>buf</em></td><td>)</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
<div class="memdoc">
|
||||
<p>Set buffer bytes to 0 </p>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
<a class="anchor" id="ac5909e78d98583cb245dd2004469bb93"></a>
|
||||
<div class="memitem">
|
||||
<div class="memproto">
|
||||
<table class="memname">
|
||||
<tr>
|
||||
<td class="memname">void TIDY_CALL <a class="el" href="buffio_8h.html#ac5909e78d98583cb245dd2004469bb93">tidyBufAttach</a> </td>
|
||||
<td>(</td>
|
||||
<td class="paramtype"><a class="el" href="struct__TidyBuffer.html">TidyBuffer</a> * </td>
|
||||
<td class="paramname"><em>buf</em>, </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="paramkey"></td>
|
||||
<td></td>
|
||||
<td class="paramtype">byte * </td>
|
||||
<td class="paramname"><em>bp</em>, </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="paramkey"></td>
|
||||
<td></td>
|
||||
<td class="paramtype">uint </td>
|
||||
<td class="paramname"><em>size</em> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td></td>
|
||||
<td>)</td>
|
||||
<td></td><td></td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
<div class="memdoc">
|
||||
<p>Attach to existing buffer </p>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
<a class="anchor" id="a8da2bf473b14e6bdd5cd40fc47c29903"></a>
|
||||
<div class="memitem">
|
||||
<div class="memproto">
|
||||
<table class="memname">
|
||||
<tr>
|
||||
<td class="memname">void TIDY_CALL <a class="el" href="buffio_8h.html#a8da2bf473b14e6bdd5cd40fc47c29903">tidyBufDetach</a> </td>
|
||||
<td>(</td>
|
||||
<td class="paramtype"><a class="el" href="struct__TidyBuffer.html">TidyBuffer</a> * </td>
|
||||
<td class="paramname"><em>buf</em></td><td>)</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
<div class="memdoc">
|
||||
<p>Detach from buffer. Caller must free. </p>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
<a class="anchor" id="ad59b32f81789b634758274f34be4d25b"></a>
|
||||
<div class="memitem">
|
||||
<div class="memproto">
|
||||
<table class="memname">
|
||||
<tr>
|
||||
<td class="memname">void TIDY_CALL <a class="el" href="buffio_8h.html#ad59b32f81789b634758274f34be4d25b">tidyBufAppend</a> </td>
|
||||
<td>(</td>
|
||||
<td class="paramtype"><a class="el" href="struct__TidyBuffer.html">TidyBuffer</a> * </td>
|
||||
<td class="paramname"><em>buf</em>, </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="paramkey"></td>
|
||||
<td></td>
|
||||
<td class="paramtype">void * </td>
|
||||
<td class="paramname"><em>vp</em>, </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="paramkey"></td>
|
||||
<td></td>
|
||||
<td class="paramtype">uint </td>
|
||||
<td class="paramname"><em>size</em> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td></td>
|
||||
<td>)</td>
|
||||
<td></td><td></td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
<div class="memdoc">
|
||||
<p>Append bytes to buffer. Expand if necessary. </p>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
<a class="anchor" id="af48af586ada5ff264501fe9ef4c67dd1"></a>
|
||||
<div class="memitem">
|
||||
<div class="memproto">
|
||||
<table class="memname">
|
||||
<tr>
|
||||
<td class="memname">void TIDY_CALL <a class="el" href="buffio_8h.html#af48af586ada5ff264501fe9ef4c67dd1">tidyBufPutByte</a> </td>
|
||||
<td>(</td>
|
||||
<td class="paramtype"><a class="el" href="struct__TidyBuffer.html">TidyBuffer</a> * </td>
|
||||
<td class="paramname"><em>buf</em>, </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="paramkey"></td>
|
||||
<td></td>
|
||||
<td class="paramtype">byte </td>
|
||||
<td class="paramname"><em>bv</em> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td></td>
|
||||
<td>)</td>
|
||||
<td></td><td></td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
<div class="memdoc">
|
||||
<p>Append one byte to buffer. Expand if necessary. </p>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
<a class="anchor" id="af8b1e8fbe3c29d08250794d7e4925ea6"></a>
|
||||
<div class="memitem">
|
||||
<div class="memproto">
|
||||
<table class="memname">
|
||||
<tr>
|
||||
<td class="memname">int TIDY_CALL <a class="el" href="buffio_8h.html#af8b1e8fbe3c29d08250794d7e4925ea6">tidyBufPopByte</a> </td>
|
||||
<td>(</td>
|
||||
<td class="paramtype"><a class="el" href="struct__TidyBuffer.html">TidyBuffer</a> * </td>
|
||||
<td class="paramname"><em>buf</em></td><td>)</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
<div class="memdoc">
|
||||
<p>Get byte from end of buffer </p>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
<a class="anchor" id="a5a2e0c47b4b14b5beb17ac982fa21eeb"></a>
|
||||
<div class="memitem">
|
||||
<div class="memproto">
|
||||
<table class="memname">
|
||||
<tr>
|
||||
<td class="memname">int TIDY_CALL <a class="el" href="buffio_8h.html#a5a2e0c47b4b14b5beb17ac982fa21eeb">tidyBufGetByte</a> </td>
|
||||
<td>(</td>
|
||||
<td class="paramtype"><a class="el" href="struct__TidyBuffer.html">TidyBuffer</a> * </td>
|
||||
<td class="paramname"><em>buf</em></td><td>)</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
<div class="memdoc">
|
||||
<p>Get byte from front of buffer. Increment input offset. </p>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
<a class="anchor" id="a7e7d8e58623c8bde00d66141edb2cae0"></a>
|
||||
<div class="memitem">
|
||||
<div class="memproto">
|
||||
<table class="memname">
|
||||
<tr>
|
||||
<td class="memname">Bool TIDY_CALL <a class="el" href="buffio_8h.html#a7e7d8e58623c8bde00d66141edb2cae0">tidyBufEndOfInput</a> </td>
|
||||
<td>(</td>
|
||||
<td class="paramtype"><a class="el" href="struct__TidyBuffer.html">TidyBuffer</a> * </td>
|
||||
<td class="paramname"><em>buf</em></td><td>)</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
<div class="memdoc">
|
||||
<p>At end of buffer? </p>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
<a class="anchor" id="a1d1f2039b769381d418ac1187b50b292"></a>
|
||||
<div class="memitem">
|
||||
<div class="memproto">
|
||||
<table class="memname">
|
||||
<tr>
|
||||
<td class="memname">void TIDY_CALL <a class="el" href="buffio_8h.html#a1d1f2039b769381d418ac1187b50b292">tidyBufUngetByte</a> </td>
|
||||
<td>(</td>
|
||||
<td class="paramtype"><a class="el" href="struct__TidyBuffer.html">TidyBuffer</a> * </td>
|
||||
<td class="paramname"><em>buf</em>, </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="paramkey"></td>
|
||||
<td></td>
|
||||
<td class="paramtype">byte </td>
|
||||
<td class="paramname"><em>bv</em> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td></td>
|
||||
<td>)</td>
|
||||
<td></td><td></td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
<div class="memdoc">
|
||||
<p>Put a byte back into the buffer. Decrement input offset. </p>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
<a class="anchor" id="a73da3182aea89939af1d98504a3b2df0"></a>
|
||||
<div class="memitem">
|
||||
<div class="memproto">
|
||||
<table class="memname">
|
||||
<tr>
|
||||
<td class="memname">void TIDY_CALL <a class="el" href="buffio_8h.html#a73da3182aea89939af1d98504a3b2df0">tidyInitInputBuffer</a> </td>
|
||||
<td>(</td>
|
||||
<td class="paramtype"><a class="el" href="group__IO.html#ga86fcc3c86bd63b26a559938bc38d34bb">TidyInputSource</a> * </td>
|
||||
<td class="paramname"><em>inp</em>, </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="paramkey"></td>
|
||||
<td></td>
|
||||
<td class="paramtype"><a class="el" href="struct__TidyBuffer.html">TidyBuffer</a> * </td>
|
||||
<td class="paramname"><em>buf</em> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td></td>
|
||||
<td>)</td>
|
||||
<td></td><td></td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
<div class="memdoc">
|
||||
<p>Initialize a buffer input source </p>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
<a class="anchor" id="a882a92590a9e6ecce16d5b8e8db19fbb"></a>
|
||||
<div class="memitem">
|
||||
<div class="memproto">
|
||||
<table class="memname">
|
||||
<tr>
|
||||
<td class="memname">void TIDY_CALL <a class="el" href="buffio_8h.html#a882a92590a9e6ecce16d5b8e8db19fbb">tidyInitOutputBuffer</a> </td>
|
||||
<td>(</td>
|
||||
<td class="paramtype"><a class="el" href="group__IO.html#ga6bdd15de48364d2b5dbf2141109d3f98">TidyOutputSink</a> * </td>
|
||||
<td class="paramname"><em>outp</em>, </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="paramkey"></td>
|
||||
<td></td>
|
||||
<td class="paramtype"><a class="el" href="struct__TidyBuffer.html">TidyBuffer</a> * </td>
|
||||
<td class="paramname"><em>buf</em> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td></td>
|
||||
<td>)</td>
|
||||
<td></td><td></td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
<div class="memdoc">
|
||||
<p>Initialize a buffer output sink </p>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div><!-- contents -->
|
||||
</div>
|
||||
<div id="nav-path" class="navpath">
|
||||
<ul>
|
||||
<li class="navelem"><a class="el" href="buffio_8h.html">buffio.h</a> </li>
|
||||
|
||||
<li class="footer">Generated on Wed Jun 20 2012 16:58:07 for HTML Tidy by
|
||||
<a href="http://www.doxygen.org/index.html">
|
||||
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.0 </li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
|
@ -1,20 +0,0 @@
|
|||
var buffio_8h =
|
||||
[
|
||||
[ "tidyBufInit", "buffio_8h.html#a3cf251a96f69f05495744af6c9d0339b", null ],
|
||||
[ "tidyBufInitWithAllocator", "buffio_8h.html#aff43ddd9fc78532617d88db55b164f5e", null ],
|
||||
[ "tidyBufAlloc", "buffio_8h.html#a896654bd99113bfe5e86b924836aacc3", null ],
|
||||
[ "tidyBufAllocWithAllocator", "buffio_8h.html#a57c832b4ddbc19a329a5ab9936eb5826", null ],
|
||||
[ "tidyBufCheckAlloc", "buffio_8h.html#a7a66ba1f574955d1fc1de57476e849f2", null ],
|
||||
[ "tidyBufFree", "buffio_8h.html#a65aae9ae4b499e62038700f4792849fc", null ],
|
||||
[ "tidyBufClear", "buffio_8h.html#aa94e59f613a495b17e90c1c4778c3911", null ],
|
||||
[ "tidyBufAttach", "buffio_8h.html#ac5909e78d98583cb245dd2004469bb93", null ],
|
||||
[ "tidyBufDetach", "buffio_8h.html#a8da2bf473b14e6bdd5cd40fc47c29903", null ],
|
||||
[ "tidyBufAppend", "buffio_8h.html#ad59b32f81789b634758274f34be4d25b", null ],
|
||||
[ "tidyBufPutByte", "buffio_8h.html#af48af586ada5ff264501fe9ef4c67dd1", null ],
|
||||
[ "tidyBufPopByte", "buffio_8h.html#af8b1e8fbe3c29d08250794d7e4925ea6", null ],
|
||||
[ "tidyBufGetByte", "buffio_8h.html#a5a2e0c47b4b14b5beb17ac982fa21eeb", null ],
|
||||
[ "tidyBufEndOfInput", "buffio_8h.html#a7e7d8e58623c8bde00d66141edb2cae0", null ],
|
||||
[ "tidyBufUngetByte", "buffio_8h.html#a1d1f2039b769381d418ac1187b50b292", null ],
|
||||
[ "tidyInitInputBuffer", "buffio_8h.html#a73da3182aea89939af1d98504a3b2df0", null ],
|
||||
[ "tidyInitOutputBuffer", "buffio_8h.html#a882a92590a9e6ecce16d5b8e8db19fbb", null ]
|
||||
];
|
|
@ -1,198 +0,0 @@
|
|||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=9"/>
|
||||
<title>HTML Tidy: buffio.h Source File</title>
|
||||
|
||||
<link href="tabs.css" rel="stylesheet" type="text/css"/>
|
||||
<link href="doxygen.css" rel="stylesheet" type="text/css" />
|
||||
<link href="navtree.css" rel="stylesheet" type="text/css"/>
|
||||
<script type="text/javascript" src="jquery.js"></script>
|
||||
<script type="text/javascript" src="resize.js"></script>
|
||||
<script type="text/javascript" src="navtree.js"></script>
|
||||
<script type="text/javascript">
|
||||
$(document).ready(initResizable);
|
||||
</script>
|
||||
|
||||
|
||||
</head>
|
||||
<body>
|
||||
<div id="top"><!-- do not remove this div! -->
|
||||
|
||||
|
||||
<div id="titlearea">
|
||||
<table cellspacing="0" cellpadding="0">
|
||||
<tbody>
|
||||
<tr style="height: 56px;">
|
||||
|
||||
|
||||
<td style="padding-left: 0.5em;">
|
||||
<div id="projectname">HTML Tidy
|
||||
 <span id="projectnumber">0.1</span>
|
||||
</div>
|
||||
|
||||
</td>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
|
||||
<!-- Generated by Doxygen 1.8.0 -->
|
||||
</div>
|
||||
<div id="side-nav" class="ui-resizable side-nav-resizable">
|
||||
<div id="nav-tree">
|
||||
<div id="nav-tree-contents">
|
||||
</div>
|
||||
</div>
|
||||
<div id="splitbar" style="-moz-user-select:none;"
|
||||
class="ui-resizable-handle">
|
||||
</div>
|
||||
</div>
|
||||
<script type="text/javascript">
|
||||
initNavTree('buffio_8h.html','');
|
||||
</script>
|
||||
<div id="doc-content">
|
||||
<div class="header">
|
||||
<div class="headertitle">
|
||||
<div class="title">buffio.h</div> </div>
|
||||
</div><!--header-->
|
||||
<div class="contents">
|
||||
<a href="buffio_8h.html">Go to the documentation of this file.</a><div class="fragment"><pre class="fragment"><a name="l00001"></a>00001 <span class="preprocessor">#ifndef __TIDY_BUFFIO_H__</span>
|
||||
<a name="l00002"></a>00002 <span class="preprocessor"></span><span class="preprocessor">#define __TIDY_BUFFIO_H__</span>
|
||||
<a name="l00003"></a>00003 <span class="preprocessor"></span><span class="comment"></span>
|
||||
<a name="l00004"></a>00004 <span class="comment">/** @file buffio.h - Treat buffer as an I/O stream.</span>
|
||||
<a name="l00005"></a>00005 <span class="comment"></span>
|
||||
<a name="l00006"></a>00006 <span class="comment"> (c) 1998-2007 (W3C) MIT, ERCIM, Keio University</span>
|
||||
<a name="l00007"></a>00007 <span class="comment"> See tidy.h for the copyright notice.</span>
|
||||
<a name="l00008"></a>00008 <span class="comment"></span>
|
||||
<a name="l00009"></a>00009 <span class="comment"> CVS Info :</span>
|
||||
<a name="l00010"></a>00010 <span class="comment"></span>
|
||||
<a name="l00011"></a>00011 <span class="comment"> $Author: arnaud02 $ </span>
|
||||
<a name="l00012"></a>00012 <span class="comment"> $Date: 2007/01/23 11:17:45 $ </span>
|
||||
<a name="l00013"></a>00013 <span class="comment"> $Revision: 1.9 $ </span>
|
||||
<a name="l00014"></a>00014 <span class="comment"></span>
|
||||
<a name="l00015"></a>00015 <span class="comment"> Requires buffer to automatically grow as bytes are added.</span>
|
||||
<a name="l00016"></a>00016 <span class="comment"> Must keep track of current read and write points.</span>
|
||||
<a name="l00017"></a>00017 <span class="comment"></span>
|
||||
<a name="l00018"></a>00018 <span class="comment">*/</span>
|
||||
<a name="l00019"></a>00019
|
||||
<a name="l00020"></a>00020 <span class="preprocessor">#include "platform.h"</span>
|
||||
<a name="l00021"></a>00021 <span class="preprocessor">#include "<a class="code" href="tidy_8h.html">tidy.h</a>"</span>
|
||||
<a name="l00022"></a>00022
|
||||
<a name="l00023"></a>00023 <span class="preprocessor">#ifdef __cplusplus</span>
|
||||
<a name="l00024"></a>00024 <span class="preprocessor"></span><span class="keyword">extern</span> <span class="stringliteral">"C"</span> {
|
||||
<a name="l00025"></a>00025 <span class="preprocessor">#endif</span>
|
||||
<a name="l00026"></a>00026 <span class="preprocessor"></span><span class="comment"></span>
|
||||
<a name="l00027"></a>00027 <span class="comment">/** TidyBuffer - A chunk of memory */</span>
|
||||
<a name="l00028"></a>00028 TIDY_STRUCT
|
||||
<a name="l00029"></a><a class="code" href="struct__TidyBuffer.html">00029</a> <span class="keyword">struct </span><a class="code" href="struct__TidyBuffer.html">_TidyBuffer</a>
|
||||
<a name="l00030"></a>00030 {
|
||||
<a name="l00031"></a><a class="code" href="struct__TidyBuffer.html#ab6655c52ed81490e8016976a4810a330">00031</a> <a class="code" href="struct__TidyAllocator.html">TidyAllocator</a>* <a class="code" href="struct__TidyBuffer.html#ab6655c52ed81490e8016976a4810a330">allocator</a>; <span class="comment">/**< Memory allocator */</span>
|
||||
<a name="l00032"></a><a class="code" href="struct__TidyBuffer.html#a2b1c3814410eefbe2168b248485eea91">00032</a> byte* <a class="code" href="struct__TidyBuffer.html#a2b1c3814410eefbe2168b248485eea91">bp</a>; <span class="comment">/**< Pointer to bytes */</span>
|
||||
<a name="l00033"></a><a class="code" href="struct__TidyBuffer.html#a227728492f6266dec940bcc541046cd9">00033</a> uint <a class="code" href="struct__TidyBuffer.html#a227728492f6266dec940bcc541046cd9">size</a>; <span class="comment">/**< # bytes currently in use */</span>
|
||||
<a name="l00034"></a><a class="code" href="struct__TidyBuffer.html#a523a1f5f2a1b0333d70b9d8a5a52de13">00034</a> uint <a class="code" href="struct__TidyBuffer.html#a523a1f5f2a1b0333d70b9d8a5a52de13">allocated</a>; <span class="comment">/**< # bytes allocated */</span>
|
||||
<a name="l00035"></a><a class="code" href="struct__TidyBuffer.html#af607eaeb44ae6d8f2371e1e05b016caf">00035</a> uint <a class="code" href="struct__TidyBuffer.html#af607eaeb44ae6d8f2371e1e05b016caf">next</a>; <span class="comment">/**< Offset of current input position */</span>
|
||||
<a name="l00036"></a>00036 };
|
||||
<a name="l00037"></a>00037 <span class="comment"></span>
|
||||
<a name="l00038"></a>00038 <span class="comment">/** Initialize data structure using the default allocator */</span>
|
||||
<a name="l00039"></a>00039 TIDY_EXPORT <span class="keywordtype">void</span> TIDY_CALL <a class="code" href="buffio_8h.html#a3cf251a96f69f05495744af6c9d0339b">tidyBufInit</a>( <a class="code" href="struct__TidyBuffer.html">TidyBuffer</a>* buf );
|
||||
<a name="l00040"></a>00040 <span class="comment"></span>
|
||||
<a name="l00041"></a>00041 <span class="comment">/** Initialize data structure using the given custom allocator */</span>
|
||||
<a name="l00042"></a>00042 TIDY_EXPORT <span class="keywordtype">void</span> TIDY_CALL <a class="code" href="buffio_8h.html#aff43ddd9fc78532617d88db55b164f5e">tidyBufInitWithAllocator</a>( <a class="code" href="struct__TidyBuffer.html">TidyBuffer</a>* buf, <a class="code" href="struct__TidyAllocator.html">TidyAllocator</a>* allocator );
|
||||
<a name="l00043"></a>00043 <span class="comment"></span>
|
||||
<a name="l00044"></a>00044 <span class="comment">/** Free current buffer, allocate given amount, reset input pointer,</span>
|
||||
<a name="l00045"></a>00045 <span class="comment"> use the default allocator */</span>
|
||||
<a name="l00046"></a>00046 TIDY_EXPORT <span class="keywordtype">void</span> TIDY_CALL <a class="code" href="buffio_8h.html#a896654bd99113bfe5e86b924836aacc3">tidyBufAlloc</a>( <a class="code" href="struct__TidyBuffer.html">TidyBuffer</a>* buf, uint allocSize );
|
||||
<a name="l00047"></a>00047 <span class="comment"></span>
|
||||
<a name="l00048"></a>00048 <span class="comment">/** Free current buffer, allocate given amount, reset input pointer,</span>
|
||||
<a name="l00049"></a>00049 <span class="comment"> use the given custom allocator */</span>
|
||||
<a name="l00050"></a>00050 TIDY_EXPORT <span class="keywordtype">void</span> TIDY_CALL <a class="code" href="buffio_8h.html#a57c832b4ddbc19a329a5ab9936eb5826">tidyBufAllocWithAllocator</a>( <a class="code" href="struct__TidyBuffer.html">TidyBuffer</a>* buf,
|
||||
<a name="l00051"></a>00051 <a class="code" href="struct__TidyAllocator.html">TidyAllocator</a>* allocator,
|
||||
<a name="l00052"></a>00052 uint allocSize );
|
||||
<a name="l00053"></a>00053 <span class="comment"></span>
|
||||
<a name="l00054"></a>00054 <span class="comment">/** Expand buffer to given size. </span>
|
||||
<a name="l00055"></a>00055 <span class="comment">** Chunk size is minimum growth. Pass 0 for default of 256 bytes.</span>
|
||||
<a name="l00056"></a>00056 <span class="comment">*/</span>
|
||||
<a name="l00057"></a>00057 TIDY_EXPORT <span class="keywordtype">void</span> TIDY_CALL <a class="code" href="buffio_8h.html#a7a66ba1f574955d1fc1de57476e849f2">tidyBufCheckAlloc</a>( <a class="code" href="struct__TidyBuffer.html">TidyBuffer</a>* buf,
|
||||
<a name="l00058"></a>00058 uint allocSize, uint chunkSize );
|
||||
<a name="l00059"></a>00059 <span class="comment"></span>
|
||||
<a name="l00060"></a>00060 <span class="comment">/** Free current contents and zero out */</span>
|
||||
<a name="l00061"></a>00061 TIDY_EXPORT <span class="keywordtype">void</span> TIDY_CALL <a class="code" href="buffio_8h.html#a65aae9ae4b499e62038700f4792849fc">tidyBufFree</a>( <a class="code" href="struct__TidyBuffer.html">TidyBuffer</a>* buf );
|
||||
<a name="l00062"></a>00062 <span class="comment"></span>
|
||||
<a name="l00063"></a>00063 <span class="comment">/** Set buffer bytes to 0 */</span>
|
||||
<a name="l00064"></a>00064 TIDY_EXPORT <span class="keywordtype">void</span> TIDY_CALL <a class="code" href="buffio_8h.html#aa94e59f613a495b17e90c1c4778c3911">tidyBufClear</a>( <a class="code" href="struct__TidyBuffer.html">TidyBuffer</a>* buf );
|
||||
<a name="l00065"></a>00065 <span class="comment"></span>
|
||||
<a name="l00066"></a>00066 <span class="comment">/** Attach to existing buffer */</span>
|
||||
<a name="l00067"></a>00067 TIDY_EXPORT <span class="keywordtype">void</span> TIDY_CALL <a class="code" href="buffio_8h.html#ac5909e78d98583cb245dd2004469bb93">tidyBufAttach</a>( <a class="code" href="struct__TidyBuffer.html">TidyBuffer</a>* buf, byte* bp, uint size );
|
||||
<a name="l00068"></a>00068 <span class="comment"></span>
|
||||
<a name="l00069"></a>00069 <span class="comment">/** Detach from buffer. Caller must free. */</span>
|
||||
<a name="l00070"></a>00070 TIDY_EXPORT <span class="keywordtype">void</span> TIDY_CALL <a class="code" href="buffio_8h.html#a8da2bf473b14e6bdd5cd40fc47c29903">tidyBufDetach</a>( <a class="code" href="struct__TidyBuffer.html">TidyBuffer</a>* buf );
|
||||
<a name="l00071"></a>00071
|
||||
<a name="l00072"></a>00072 <span class="comment"></span>
|
||||
<a name="l00073"></a>00073 <span class="comment">/** Append bytes to buffer. Expand if necessary. */</span>
|
||||
<a name="l00074"></a>00074 TIDY_EXPORT <span class="keywordtype">void</span> TIDY_CALL <a class="code" href="buffio_8h.html#ad59b32f81789b634758274f34be4d25b">tidyBufAppend</a>( <a class="code" href="struct__TidyBuffer.html">TidyBuffer</a>* buf, <span class="keywordtype">void</span>* vp, uint size );
|
||||
<a name="l00075"></a>00075 <span class="comment"></span>
|
||||
<a name="l00076"></a>00076 <span class="comment">/** Append one byte to buffer. Expand if necessary. */</span>
|
||||
<a name="l00077"></a>00077 TIDY_EXPORT <span class="keywordtype">void</span> TIDY_CALL <a class="code" href="buffio_8h.html#af48af586ada5ff264501fe9ef4c67dd1">tidyBufPutByte</a>( <a class="code" href="struct__TidyBuffer.html">TidyBuffer</a>* buf, byte bv );
|
||||
<a name="l00078"></a>00078 <span class="comment"></span>
|
||||
<a name="l00079"></a>00079 <span class="comment">/** Get byte from end of buffer */</span>
|
||||
<a name="l00080"></a>00080 TIDY_EXPORT <span class="keywordtype">int</span> TIDY_CALL <a class="code" href="buffio_8h.html#af8b1e8fbe3c29d08250794d7e4925ea6">tidyBufPopByte</a>( <a class="code" href="struct__TidyBuffer.html">TidyBuffer</a>* buf );
|
||||
<a name="l00081"></a>00081
|
||||
<a name="l00082"></a>00082 <span class="comment"></span>
|
||||
<a name="l00083"></a>00083 <span class="comment">/** Get byte from front of buffer. Increment input offset. */</span>
|
||||
<a name="l00084"></a>00084 TIDY_EXPORT <span class="keywordtype">int</span> TIDY_CALL <a class="code" href="buffio_8h.html#a5a2e0c47b4b14b5beb17ac982fa21eeb">tidyBufGetByte</a>( <a class="code" href="struct__TidyBuffer.html">TidyBuffer</a>* buf );
|
||||
<a name="l00085"></a>00085 <span class="comment"></span>
|
||||
<a name="l00086"></a>00086 <span class="comment">/** At end of buffer? */</span>
|
||||
<a name="l00087"></a>00087 TIDY_EXPORT Bool TIDY_CALL <a class="code" href="buffio_8h.html#a7e7d8e58623c8bde00d66141edb2cae0">tidyBufEndOfInput</a>( <a class="code" href="struct__TidyBuffer.html">TidyBuffer</a>* buf );
|
||||
<a name="l00088"></a>00088 <span class="comment"></span>
|
||||
<a name="l00089"></a>00089 <span class="comment">/** Put a byte back into the buffer. Decrement input offset. */</span>
|
||||
<a name="l00090"></a>00090 TIDY_EXPORT <span class="keywordtype">void</span> TIDY_CALL <a class="code" href="buffio_8h.html#a1d1f2039b769381d418ac1187b50b292">tidyBufUngetByte</a>( <a class="code" href="struct__TidyBuffer.html">TidyBuffer</a>* buf, byte bv );
|
||||
<a name="l00091"></a>00091
|
||||
<a name="l00092"></a>00092
|
||||
<a name="l00093"></a>00093 <span class="comment">/**************</span>
|
||||
<a name="l00094"></a>00094 <span class="comment"> TIDY</span>
|
||||
<a name="l00095"></a>00095 <span class="comment">**************/</span>
|
||||
<a name="l00096"></a>00096
|
||||
<a name="l00097"></a>00097 <span class="comment">/* Forward declarations</span>
|
||||
<a name="l00098"></a>00098 <span class="comment">*/</span>
|
||||
<a name="l00099"></a>00099 <span class="comment"></span>
|
||||
<a name="l00100"></a>00100 <span class="comment">/** Initialize a buffer input source */</span>
|
||||
<a name="l00101"></a>00101 TIDY_EXPORT <span class="keywordtype">void</span> TIDY_CALL <a class="code" href="buffio_8h.html#a73da3182aea89939af1d98504a3b2df0">tidyInitInputBuffer</a>( <a class="code" href="group__IO.html#ga86fcc3c86bd63b26a559938bc38d34bb">TidyInputSource</a>* inp, <a class="code" href="struct__TidyBuffer.html">TidyBuffer</a>* buf );
|
||||
<a name="l00102"></a>00102 <span class="comment"></span>
|
||||
<a name="l00103"></a>00103 <span class="comment">/** Initialize a buffer output sink */</span>
|
||||
<a name="l00104"></a>00104 TIDY_EXPORT <span class="keywordtype">void</span> TIDY_CALL <a class="code" href="buffio_8h.html#a882a92590a9e6ecce16d5b8e8db19fbb">tidyInitOutputBuffer</a>( <a class="code" href="group__IO.html#ga6bdd15de48364d2b5dbf2141109d3f98">TidyOutputSink</a>* outp, <a class="code" href="struct__TidyBuffer.html">TidyBuffer</a>* buf );
|
||||
<a name="l00105"></a>00105
|
||||
<a name="l00106"></a>00106 <span class="preprocessor">#ifdef __cplusplus</span>
|
||||
<a name="l00107"></a>00107 <span class="preprocessor"></span>}
|
||||
<a name="l00108"></a>00108 <span class="preprocessor">#endif</span>
|
||||
<a name="l00109"></a>00109 <span class="preprocessor"></span><span class="preprocessor">#endif </span><span class="comment">/* __TIDY_BUFFIO_H__ */</span>
|
||||
<a name="l00110"></a>00110
|
||||
<a name="l00111"></a>00111 <span class="comment">/*</span>
|
||||
<a name="l00112"></a>00112 <span class="comment"> * local variables:</span>
|
||||
<a name="l00113"></a>00113 <span class="comment"> * mode: c</span>
|
||||
<a name="l00114"></a>00114 <span class="comment"> * indent-tabs-mode: nil</span>
|
||||
<a name="l00115"></a>00115 <span class="comment"> * c-basic-offset: 4</span>
|
||||
<a name="l00116"></a>00116 <span class="comment"> * eval: (c-set-offset 'substatement-open 0)</span>
|
||||
<a name="l00117"></a>00117 <span class="comment"> * end:</span>
|
||||
<a name="l00118"></a>00118 <span class="comment"> */</span>
|
||||
</pre></div></div><!-- contents -->
|
||||
</div>
|
||||
<div id="nav-path" class="navpath">
|
||||
<ul>
|
||||
<li class="navelem"><a class="el" href="buffio_8h.html">buffio.h</a> </li>
|
||||
|
||||
<li class="footer">Generated on Wed Jun 20 2012 16:58:07 for HTML Tidy by
|
||||
<a href="http://www.doxygen.org/index.html">
|
||||
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.0 </li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
|
@ -1,89 +0,0 @@
|
|||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=9"/>
|
||||
<title>HTML Tidy: Data Structure Index</title>
|
||||
|
||||
<link href="tabs.css" rel="stylesheet" type="text/css"/>
|
||||
<link href="doxygen.css" rel="stylesheet" type="text/css" />
|
||||
<link href="navtree.css" rel="stylesheet" type="text/css"/>
|
||||
<script type="text/javascript" src="jquery.js"></script>
|
||||
<script type="text/javascript" src="resize.js"></script>
|
||||
<script type="text/javascript" src="navtree.js"></script>
|
||||
<script type="text/javascript">
|
||||
$(document).ready(initResizable);
|
||||
</script>
|
||||
|
||||
|
||||
</head>
|
||||
<body>
|
||||
<div id="top"><!-- do not remove this div! -->
|
||||
|
||||
|
||||
<div id="titlearea">
|
||||
<table cellspacing="0" cellpadding="0">
|
||||
<tbody>
|
||||
<tr style="height: 56px;">
|
||||
|
||||
|
||||
<td style="padding-left: 0.5em;">
|
||||
<div id="projectname">HTML Tidy
|
||||
 <span id="projectnumber">0.1</span>
|
||||
</div>
|
||||
|
||||
</td>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
|
||||
<!-- Generated by Doxygen 1.8.0 -->
|
||||
</div>
|
||||
<div id="side-nav" class="ui-resizable side-nav-resizable">
|
||||
<div id="nav-tree">
|
||||
<div id="nav-tree-contents">
|
||||
</div>
|
||||
</div>
|
||||
<div id="splitbar" style="-moz-user-select:none;"
|
||||
class="ui-resizable-handle">
|
||||
</div>
|
||||
</div>
|
||||
<script type="text/javascript">
|
||||
initNavTree('classes.html','');
|
||||
</script>
|
||||
<div id="doc-content">
|
||||
<div class="header">
|
||||
<div class="headertitle">
|
||||
<div class="title">Data Structure Index</div> </div>
|
||||
</div><!--header-->
|
||||
<div class="contents">
|
||||
<div class="qindex"><a class="qindex" href="#letter_T">T</a> | <a class="qindex" href="#letter__">_</a></div>
|
||||
<table style="margin: 10px; white-space: nowrap;" align="center" width="95%" border="0" cellspacing="0" cellpadding="0">
|
||||
<tr><td rowspan="2" valign="bottom"><a name="letter_T"></a><table border="0" cellspacing="0" cellpadding="0"><tr><td><div class="ah">  T  </div></td></tr></table>
|
||||
</td><td valign="top"><a class="el" href="structTidyDoc.html">TidyDoc</a>   </td><td rowspan="2" valign="bottom"><a name="letter__"></a><table border="0" cellspacing="0" cellpadding="0"><tr><td><div class="ah">  _  </div></td></tr></table>
|
||||
</td><td valign="top"><a class="el" href="struct__TidyAllocatorVtbl.html">_TidyAllocatorVtbl</a>   </td><td valign="top"><a class="el" href="struct__TidyOutputSink.html">_TidyOutputSink</a>   </td></tr>
|
||||
<tr><td valign="top"><a class="el" href="structTidyNode.html">TidyNode</a>   </td><td valign="top"><a class="el" href="struct__TidyBuffer.html">_TidyBuffer</a>   </td><td></td></tr>
|
||||
<tr><td valign="top"><a class="el" href="structTidyAttr.html">TidyAttr</a>   </td><td valign="top"><a class="el" href="structTidyOption.html">TidyOption</a>   </td><td valign="top"><a class="el" href="struct__TidyAllocator.html">_TidyAllocator</a>   </td><td valign="top"><a class="el" href="struct__TidyInputSource.html">_TidyInputSource</a>   </td><td></td></tr>
|
||||
<tr><td></td><td></td><td></td><td></td><td></td></tr>
|
||||
</table>
|
||||
<div class="qindex"><a class="qindex" href="#letter_T">T</a> | <a class="qindex" href="#letter__">_</a></div>
|
||||
</div><!-- contents -->
|
||||
</div>
|
||||
<div id="nav-path" class="navpath">
|
||||
<ul>
|
||||
|
||||
<li class="footer">Generated on Wed Jun 20 2012 16:58:07 for HTML Tidy by
|
||||
<a href="http://www.doxygen.org/index.html">
|
||||
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.0 </li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
Before Width: | Height: | Size: 126 B |
|
@ -1,93 +0,0 @@
|
|||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=9"/>
|
||||
<title>HTML Tidy: Deprecated List</title>
|
||||
|
||||
<link href="tabs.css" rel="stylesheet" type="text/css"/>
|
||||
<link href="doxygen.css" rel="stylesheet" type="text/css" />
|
||||
<link href="navtree.css" rel="stylesheet" type="text/css"/>
|
||||
<script type="text/javascript" src="jquery.js"></script>
|
||||
<script type="text/javascript" src="resize.js"></script>
|
||||
<script type="text/javascript" src="navtree.js"></script>
|
||||
<script type="text/javascript">
|
||||
$(document).ready(initResizable);
|
||||
</script>
|
||||
|
||||
|
||||
</head>
|
||||
<body>
|
||||
<div id="top"><!-- do not remove this div! -->
|
||||
|
||||
|
||||
<div id="titlearea">
|
||||
<table cellspacing="0" cellpadding="0">
|
||||
<tbody>
|
||||
<tr style="height: 56px;">
|
||||
|
||||
|
||||
<td style="padding-left: 0.5em;">
|
||||
<div id="projectname">HTML Tidy
|
||||
 <span id="projectnumber">0.1</span>
|
||||
</div>
|
||||
|
||||
</td>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
|
||||
<!-- Generated by Doxygen 1.8.0 -->
|
||||
</div>
|
||||
<div id="side-nav" class="ui-resizable side-nav-resizable">
|
||||
<div id="nav-tree">
|
||||
<div id="nav-tree-contents">
|
||||
</div>
|
||||
</div>
|
||||
<div id="splitbar" style="-moz-user-select:none;"
|
||||
class="ui-resizable-handle">
|
||||
</div>
|
||||
</div>
|
||||
<script type="text/javascript">
|
||||
initNavTree('deprecated.html','');
|
||||
</script>
|
||||
<div id="doc-content">
|
||||
<div class="header">
|
||||
<div class="headertitle">
|
||||
<div class="title">Deprecated List </div> </div>
|
||||
</div><!--header-->
|
||||
<div class="contents">
|
||||
<div class="textblock"><dl class="reflist">
|
||||
<dt><a class="anchor" id="_deprecated000003"></a>Group <a class="el" href="group__AttrGetAttributeName.html">AttrGetAttributeName</a> </dt>
|
||||
<dd><p class="startdd">The functions tidyAttrGet{AttributeName} are deprecated and should be replaced by tidyAttrGetById. For instance, tidyAttrGetID( TidyNode tnod ) can be replaced by tidyAttrGetById( TidyNode tnod, TidyAttr_ID ). This avoids a potential name clash with tidyAttrGetId for case-insensitive languages.</p>
|
||||
<p class="enddd"></p>
|
||||
</dd>
|
||||
<dt><a class="anchor" id="_deprecated000002"></a>Group <a class="el" href="group__AttrIsAttributeName.html">AttrIsAttributeName</a> </dt>
|
||||
<dd><p class="startdd">The functions tidyAttrIs{AttributeName} are deprecated and should be replaced by tidyAttrGetId.</p>
|
||||
<p class="enddd"></p>
|
||||
</dd>
|
||||
<dt><a class="anchor" id="_deprecated000001"></a>Group <a class="el" href="group__NodeIsElementName.html">NodeIsElementName</a> </dt>
|
||||
<dd><p class="startdd">The functions tidyNodeIs{ElementName} are deprecated and should be replaced by tidyNodeGetId.</p>
|
||||
<p class="enddd"></p>
|
||||
</dd>
|
||||
</dl>
|
||||
</div></div><!-- contents -->
|
||||
</div>
|
||||
<div id="nav-path" class="navpath">
|
||||
<ul>
|
||||
|
||||
<li class="footer">Generated on Wed Jun 20 2012 16:58:07 for HTML Tidy by
|
||||
<a href="http://www.doxygen.org/index.html">
|
||||
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.0 </li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
Before Width: | Height: | Size: 3.8 KiB |
|
@ -1,85 +0,0 @@
|
|||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=9"/>
|
||||
<title>HTML Tidy: File List</title>
|
||||
|
||||
<link href="tabs.css" rel="stylesheet" type="text/css"/>
|
||||
<link href="doxygen.css" rel="stylesheet" type="text/css" />
|
||||
<link href="navtree.css" rel="stylesheet" type="text/css"/>
|
||||
<script type="text/javascript" src="jquery.js"></script>
|
||||
<script type="text/javascript" src="resize.js"></script>
|
||||
<script type="text/javascript" src="navtree.js"></script>
|
||||
<script type="text/javascript">
|
||||
$(document).ready(initResizable);
|
||||
</script>
|
||||
|
||||
|
||||
</head>
|
||||
<body>
|
||||
<div id="top"><!-- do not remove this div! -->
|
||||
|
||||
|
||||
<div id="titlearea">
|
||||
<table cellspacing="0" cellpadding="0">
|
||||
<tbody>
|
||||
<tr style="height: 56px;">
|
||||
|
||||
|
||||
<td style="padding-left: 0.5em;">
|
||||
<div id="projectname">HTML Tidy
|
||||
 <span id="projectnumber">0.1</span>
|
||||
</div>
|
||||
|
||||
</td>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
|
||||
<!-- Generated by Doxygen 1.8.0 -->
|
||||
</div>
|
||||
<div id="side-nav" class="ui-resizable side-nav-resizable">
|
||||
<div id="nav-tree">
|
||||
<div id="nav-tree-contents">
|
||||
</div>
|
||||
</div>
|
||||
<div id="splitbar" style="-moz-user-select:none;"
|
||||
class="ui-resizable-handle">
|
||||
</div>
|
||||
</div>
|
||||
<script type="text/javascript">
|
||||
initNavTree('files.html','');
|
||||
</script>
|
||||
<div id="doc-content">
|
||||
<div class="header">
|
||||
<div class="headertitle">
|
||||
<div class="title">File List</div> </div>
|
||||
</div><!--header-->
|
||||
<div class="contents">
|
||||
<div class="textblock">Here is a list of all documented files with brief descriptions:</div><table>
|
||||
<tr><td class="indexkey"><a class="el" href="buffio_8h.html">buffio.h</a> <a href="buffio_8h_source.html">[code]</a></td><td class="indexvalue"></td></tr>
|
||||
<tr><td class="indexkey"><b>platform.h</b> <a href="platform_8h_source.html">[code]</a></td><td class="indexvalue"></td></tr>
|
||||
<tr><td class="indexkey"><a class="el" href="tidy_8h.html">tidy.h</a> <a href="tidy_8h_source.html">[code]</a></td><td class="indexvalue"></td></tr>
|
||||
<tr><td class="indexkey"><b>tidyenum.h</b> <a href="tidyenum_8h_source.html">[code]</a></td><td class="indexvalue"></td></tr>
|
||||
</table>
|
||||
</div><!-- contents -->
|
||||
</div>
|
||||
<div id="nav-path" class="navpath">
|
||||
<ul>
|
||||
|
||||
<li class="footer">Generated on Wed Jun 20 2012 16:58:07 for HTML Tidy by
|
||||
<a href="http://www.doxygen.org/index.html">
|
||||
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.0 </li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
|
@ -1,7 +0,0 @@
|
|||
var files =
|
||||
[
|
||||
[ "buffio.h", "buffio_8h.html", "buffio_8h" ],
|
||||
[ "platform.h", null, null ],
|
||||
[ "tidy.h", "tidy_8h.html", "tidy_8h" ],
|
||||
[ "tidyenum.h", null, null ]
|
||||
];
|
Before Width: | Height: | Size: 82 B |
Before Width: | Height: | Size: 762 B |
Before Width: | Height: | Size: 598 B |
Before Width: | Height: | Size: 590 B |
Before Width: | Height: | Size: 82 B |
Before Width: | Height: | Size: 762 B |
Before Width: | Height: | Size: 221 B |
Before Width: | Height: | Size: 221 B |
Before Width: | Height: | Size: 82 B |
Before Width: | Height: | Size: 215 B |
Before Width: | Height: | Size: 215 B |
Before Width: | Height: | Size: 249 B |
Before Width: | Height: | Size: 82 B |
|
@ -1,119 +0,0 @@
|
|||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=9"/>
|
||||
<title>HTML Tidy: Data Fields</title>
|
||||
|
||||
<link href="tabs.css" rel="stylesheet" type="text/css"/>
|
||||
<link href="doxygen.css" rel="stylesheet" type="text/css" />
|
||||
<link href="navtree.css" rel="stylesheet" type="text/css"/>
|
||||
<script type="text/javascript" src="jquery.js"></script>
|
||||
<script type="text/javascript" src="resize.js"></script>
|
||||
<script type="text/javascript" src="navtree.js"></script>
|
||||
<script type="text/javascript">
|
||||
$(document).ready(initResizable);
|
||||
</script>
|
||||
|
||||
|
||||
</head>
|
||||
<body>
|
||||
<div id="top"><!-- do not remove this div! -->
|
||||
|
||||
|
||||
<div id="titlearea">
|
||||
<table cellspacing="0" cellpadding="0">
|
||||
<tbody>
|
||||
<tr style="height: 56px;">
|
||||
|
||||
|
||||
<td style="padding-left: 0.5em;">
|
||||
<div id="projectname">HTML Tidy
|
||||
 <span id="projectnumber">0.1</span>
|
||||
</div>
|
||||
|
||||
</td>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
|
||||
<!-- Generated by Doxygen 1.8.0 -->
|
||||
</div>
|
||||
<div id="side-nav" class="ui-resizable side-nav-resizable">
|
||||
<div id="nav-tree">
|
||||
<div id="nav-tree-contents">
|
||||
</div>
|
||||
</div>
|
||||
<div id="splitbar" style="-moz-user-select:none;"
|
||||
class="ui-resizable-handle">
|
||||
</div>
|
||||
</div>
|
||||
<script type="text/javascript">
|
||||
initNavTree('functions.html','');
|
||||
</script>
|
||||
<div id="doc-content">
|
||||
<div class="contents">
|
||||
<div class="textblock">Here is a list of all documented struct and union fields with links to the struct/union documentation for each field:</div><ul>
|
||||
<li>alloc()
|
||||
: <a class="el" href="struct__TidyAllocatorVtbl.html#ac89bb7f5b58fcb5b31a1560705f3b817">_TidyAllocatorVtbl</a>
|
||||
</li>
|
||||
<li>allocated
|
||||
: <a class="el" href="struct__TidyBuffer.html#a523a1f5f2a1b0333d70b9d8a5a52de13">_TidyBuffer</a>
|
||||
</li>
|
||||
<li>allocator
|
||||
: <a class="el" href="struct__TidyBuffer.html#ab6655c52ed81490e8016976a4810a330">_TidyBuffer</a>
|
||||
</li>
|
||||
<li>bp
|
||||
: <a class="el" href="struct__TidyBuffer.html#a2b1c3814410eefbe2168b248485eea91">_TidyBuffer</a>
|
||||
</li>
|
||||
<li>eof
|
||||
: <a class="el" href="struct__TidyInputSource.html#af90ba85f6caffb1321a8fe3ef4b7bebb">_TidyInputSource</a>
|
||||
</li>
|
||||
<li>getByte
|
||||
: <a class="el" href="struct__TidyInputSource.html#a4c318270e25e2e4dd9506cb04542b7d8">_TidyInputSource</a>
|
||||
</li>
|
||||
<li>next
|
||||
: <a class="el" href="struct__TidyBuffer.html#af607eaeb44ae6d8f2371e1e05b016caf">_TidyBuffer</a>
|
||||
</li>
|
||||
<li>putByte
|
||||
: <a class="el" href="struct__TidyOutputSink.html#a0b392463d9767dc9fbed2f524fbe7407">_TidyOutputSink</a>
|
||||
</li>
|
||||
<li>realloc()
|
||||
: <a class="el" href="struct__TidyAllocatorVtbl.html#a0cad0dd2aa75a20573fc46f25460a5cc">_TidyAllocatorVtbl</a>
|
||||
</li>
|
||||
<li>sinkData
|
||||
: <a class="el" href="struct__TidyOutputSink.html#a8ea61dfa1ce4ba41a7a9c50b7729ab8a">_TidyOutputSink</a>
|
||||
</li>
|
||||
<li>size
|
||||
: <a class="el" href="struct__TidyBuffer.html#a227728492f6266dec940bcc541046cd9">_TidyBuffer</a>
|
||||
</li>
|
||||
<li>sourceData
|
||||
: <a class="el" href="struct__TidyInputSource.html#a19bd9d8877bfc702ceae4e174d0b07d4">_TidyInputSource</a>
|
||||
</li>
|
||||
<li>ungetByte
|
||||
: <a class="el" href="struct__TidyInputSource.html#a8bb61c749e1295207cd92752e63ae505">_TidyInputSource</a>
|
||||
</li>
|
||||
<li>void()
|
||||
: <a class="el" href="struct__TidyAllocatorVtbl.html#a1e453d5e80b35fe3c6c15512c6b95aa5">_TidyAllocatorVtbl</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div><!-- contents -->
|
||||
</div>
|
||||
<div id="nav-path" class="navpath">
|
||||
<ul>
|
||||
|
||||
<li class="footer">Generated on Wed Jun 20 2012 16:58:07 for HTML Tidy by
|
||||
<a href="http://www.doxygen.org/index.html">
|
||||
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.0 </li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
|
@ -1,86 +0,0 @@
|
|||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=9"/>
|
||||
<title>HTML Tidy: Data Fields - Functions</title>
|
||||
|
||||
<link href="tabs.css" rel="stylesheet" type="text/css"/>
|
||||
<link href="doxygen.css" rel="stylesheet" type="text/css" />
|
||||
<link href="navtree.css" rel="stylesheet" type="text/css"/>
|
||||
<script type="text/javascript" src="jquery.js"></script>
|
||||
<script type="text/javascript" src="resize.js"></script>
|
||||
<script type="text/javascript" src="navtree.js"></script>
|
||||
<script type="text/javascript">
|
||||
$(document).ready(initResizable);
|
||||
</script>
|
||||
|
||||
|
||||
</head>
|
||||
<body>
|
||||
<div id="top"><!-- do not remove this div! -->
|
||||
|
||||
|
||||
<div id="titlearea">
|
||||
<table cellspacing="0" cellpadding="0">
|
||||
<tbody>
|
||||
<tr style="height: 56px;">
|
||||
|
||||
|
||||
<td style="padding-left: 0.5em;">
|
||||
<div id="projectname">HTML Tidy
|
||||
 <span id="projectnumber">0.1</span>
|
||||
</div>
|
||||
|
||||
</td>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
|
||||
<!-- Generated by Doxygen 1.8.0 -->
|
||||
</div>
|
||||
<div id="side-nav" class="ui-resizable side-nav-resizable">
|
||||
<div id="nav-tree">
|
||||
<div id="nav-tree-contents">
|
||||
</div>
|
||||
</div>
|
||||
<div id="splitbar" style="-moz-user-select:none;"
|
||||
class="ui-resizable-handle">
|
||||
</div>
|
||||
</div>
|
||||
<script type="text/javascript">
|
||||
initNavTree('functions_func.html','');
|
||||
</script>
|
||||
<div id="doc-content">
|
||||
<div class="contents">
|
||||
 <ul>
|
||||
<li>alloc()
|
||||
: <a class="el" href="struct__TidyAllocatorVtbl.html#ac89bb7f5b58fcb5b31a1560705f3b817">_TidyAllocatorVtbl</a>
|
||||
</li>
|
||||
<li>realloc()
|
||||
: <a class="el" href="struct__TidyAllocatorVtbl.html#a0cad0dd2aa75a20573fc46f25460a5cc">_TidyAllocatorVtbl</a>
|
||||
</li>
|
||||
<li>void()
|
||||
: <a class="el" href="struct__TidyAllocatorVtbl.html#a1e453d5e80b35fe3c6c15512c6b95aa5">_TidyAllocatorVtbl</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div><!-- contents -->
|
||||
</div>
|
||||
<div id="nav-path" class="navpath">
|
||||
<ul>
|
||||
|
||||
<li class="footer">Generated on Wed Jun 20 2012 16:58:07 for HTML Tidy by
|
||||
<a href="http://www.doxygen.org/index.html">
|
||||
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.0 </li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
|
@ -1,110 +0,0 @@
|
|||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=9"/>
|
||||
<title>HTML Tidy: Data Fields - Variables</title>
|
||||
|
||||
<link href="tabs.css" rel="stylesheet" type="text/css"/>
|
||||
<link href="doxygen.css" rel="stylesheet" type="text/css" />
|
||||
<link href="navtree.css" rel="stylesheet" type="text/css"/>
|
||||
<script type="text/javascript" src="jquery.js"></script>
|
||||
<script type="text/javascript" src="resize.js"></script>
|
||||
<script type="text/javascript" src="navtree.js"></script>
|
||||
<script type="text/javascript">
|
||||
$(document).ready(initResizable);
|
||||
</script>
|
||||
|
||||
|
||||
</head>
|
||||
<body>
|
||||
<div id="top"><!-- do not remove this div! -->
|
||||
|
||||
|
||||
<div id="titlearea">
|
||||
<table cellspacing="0" cellpadding="0">
|
||||
<tbody>
|
||||
<tr style="height: 56px;">
|
||||
|
||||
|
||||
<td style="padding-left: 0.5em;">
|
||||
<div id="projectname">HTML Tidy
|
||||
 <span id="projectnumber">0.1</span>
|
||||
</div>
|
||||
|
||||
</td>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
|
||||
<!-- Generated by Doxygen 1.8.0 -->
|
||||
</div>
|
||||
<div id="side-nav" class="ui-resizable side-nav-resizable">
|
||||
<div id="nav-tree">
|
||||
<div id="nav-tree-contents">
|
||||
</div>
|
||||
</div>
|
||||
<div id="splitbar" style="-moz-user-select:none;"
|
||||
class="ui-resizable-handle">
|
||||
</div>
|
||||
</div>
|
||||
<script type="text/javascript">
|
||||
initNavTree('functions_vars.html','');
|
||||
</script>
|
||||
<div id="doc-content">
|
||||
<div class="contents">
|
||||
 <ul>
|
||||
<li>allocated
|
||||
: <a class="el" href="struct__TidyBuffer.html#a523a1f5f2a1b0333d70b9d8a5a52de13">_TidyBuffer</a>
|
||||
</li>
|
||||
<li>allocator
|
||||
: <a class="el" href="struct__TidyBuffer.html#ab6655c52ed81490e8016976a4810a330">_TidyBuffer</a>
|
||||
</li>
|
||||
<li>bp
|
||||
: <a class="el" href="struct__TidyBuffer.html#a2b1c3814410eefbe2168b248485eea91">_TidyBuffer</a>
|
||||
</li>
|
||||
<li>eof
|
||||
: <a class="el" href="struct__TidyInputSource.html#af90ba85f6caffb1321a8fe3ef4b7bebb">_TidyInputSource</a>
|
||||
</li>
|
||||
<li>getByte
|
||||
: <a class="el" href="struct__TidyInputSource.html#a4c318270e25e2e4dd9506cb04542b7d8">_TidyInputSource</a>
|
||||
</li>
|
||||
<li>next
|
||||
: <a class="el" href="struct__TidyBuffer.html#af607eaeb44ae6d8f2371e1e05b016caf">_TidyBuffer</a>
|
||||
</li>
|
||||
<li>putByte
|
||||
: <a class="el" href="struct__TidyOutputSink.html#a0b392463d9767dc9fbed2f524fbe7407">_TidyOutputSink</a>
|
||||
</li>
|
||||
<li>sinkData
|
||||
: <a class="el" href="struct__TidyOutputSink.html#a8ea61dfa1ce4ba41a7a9c50b7729ab8a">_TidyOutputSink</a>
|
||||
</li>
|
||||
<li>size
|
||||
: <a class="el" href="struct__TidyBuffer.html#a227728492f6266dec940bcc541046cd9">_TidyBuffer</a>
|
||||
</li>
|
||||
<li>sourceData
|
||||
: <a class="el" href="struct__TidyInputSource.html#a19bd9d8877bfc702ceae4e174d0b07d4">_TidyInputSource</a>
|
||||
</li>
|
||||
<li>ungetByte
|
||||
: <a class="el" href="struct__TidyInputSource.html#a8bb61c749e1295207cd92752e63ae505">_TidyInputSource</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div><!-- contents -->
|
||||
</div>
|
||||
<div id="nav-path" class="navpath">
|
||||
<ul>
|
||||
|
||||
<li class="footer">Generated on Wed Jun 20 2012 16:58:07 for HTML Tidy by
|
||||
<a href="http://www.doxygen.org/index.html">
|
||||
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.0 </li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
|
@ -1,425 +0,0 @@
|
|||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=9"/>
|
||||
<title>HTML Tidy: Globals</title>
|
||||
|
||||
<link href="tabs.css" rel="stylesheet" type="text/css"/>
|
||||
<link href="doxygen.css" rel="stylesheet" type="text/css" />
|
||||
<link href="navtree.css" rel="stylesheet" type="text/css"/>
|
||||
<script type="text/javascript" src="jquery.js"></script>
|
||||
<script type="text/javascript" src="resize.js"></script>
|
||||
<script type="text/javascript" src="navtree.js"></script>
|
||||
<script type="text/javascript">
|
||||
$(document).ready(initResizable);
|
||||
</script>
|
||||
|
||||
|
||||
</head>
|
||||
<body>
|
||||
<div id="top"><!-- do not remove this div! -->
|
||||
|
||||
|
||||
<div id="titlearea">
|
||||
<table cellspacing="0" cellpadding="0">
|
||||
<tbody>
|
||||
<tr style="height: 56px;">
|
||||
|
||||
|
||||
<td style="padding-left: 0.5em;">
|
||||
<div id="projectname">HTML Tidy
|
||||
 <span id="projectnumber">0.1</span>
|
||||
</div>
|
||||
|
||||
</td>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
|
||||
<!-- Generated by Doxygen 1.8.0 -->
|
||||
</div>
|
||||
<div id="side-nav" class="ui-resizable side-nav-resizable">
|
||||
<div id="nav-tree">
|
||||
<div id="nav-tree-contents">
|
||||
</div>
|
||||
</div>
|
||||
<div id="splitbar" style="-moz-user-select:none;"
|
||||
class="ui-resizable-handle">
|
||||
</div>
|
||||
</div>
|
||||
<script type="text/javascript">
|
||||
initNavTree('globals.html','');
|
||||
</script>
|
||||
<div id="doc-content">
|
||||
<div class="contents">
|
||||
<div class="textblock">Here is a list of all documented functions, variables, defines, enums, and typedefs with links to the documentation:</div>
|
||||
|
||||
<h3><a class="anchor" id="index_e"></a>- e -</h3><ul>
|
||||
<li>EndOfStream
|
||||
: <a class="el" href="group__IO.html#ga9a078b706ec6f37cce40958f6f68585a">tidy.h</a>
|
||||
</li>
|
||||
</ul>
|
||||
|
||||
|
||||
<h3><a class="anchor" id="index_t"></a>- t -</h3><ul>
|
||||
<li>tidyAccessWarningCount()
|
||||
: <a class="el" href="group__Basic.html#ga56ad617084cdcbb485f06f597de7dedb">tidy.h</a>
|
||||
</li>
|
||||
<li>TidyAllocator
|
||||
: <a class="el" href="group__Memory.html#ga78e96524a88db0c09e766795265863da">tidy.h</a>
|
||||
</li>
|
||||
<li>TidyAllocatorVtbl
|
||||
: <a class="el" href="group__Memory.html#ga3fe8c5ac7d658618c732565776940ed8">tidy.h</a>
|
||||
</li>
|
||||
<li>tidyBufAlloc()
|
||||
: <a class="el" href="buffio_8h.html#a896654bd99113bfe5e86b924836aacc3">buffio.h</a>
|
||||
</li>
|
||||
<li>tidyBufAllocWithAllocator()
|
||||
: <a class="el" href="buffio_8h.html#a57c832b4ddbc19a329a5ab9936eb5826">buffio.h</a>
|
||||
</li>
|
||||
<li>tidyBufAppend()
|
||||
: <a class="el" href="buffio_8h.html#ad59b32f81789b634758274f34be4d25b">buffio.h</a>
|
||||
</li>
|
||||
<li>tidyBufAttach()
|
||||
: <a class="el" href="buffio_8h.html#ac5909e78d98583cb245dd2004469bb93">buffio.h</a>
|
||||
</li>
|
||||
<li>tidyBufCheckAlloc()
|
||||
: <a class="el" href="buffio_8h.html#a7a66ba1f574955d1fc1de57476e849f2">buffio.h</a>
|
||||
</li>
|
||||
<li>tidyBufClear()
|
||||
: <a class="el" href="buffio_8h.html#aa94e59f613a495b17e90c1c4778c3911">buffio.h</a>
|
||||
</li>
|
||||
<li>tidyBufDetach()
|
||||
: <a class="el" href="buffio_8h.html#a8da2bf473b14e6bdd5cd40fc47c29903">buffio.h</a>
|
||||
</li>
|
||||
<li>tidyBufEndOfInput()
|
||||
: <a class="el" href="buffio_8h.html#a7e7d8e58623c8bde00d66141edb2cae0">buffio.h</a>
|
||||
</li>
|
||||
<li>tidyBufFree()
|
||||
: <a class="el" href="buffio_8h.html#a65aae9ae4b499e62038700f4792849fc">buffio.h</a>
|
||||
</li>
|
||||
<li>tidyBufGetByte()
|
||||
: <a class="el" href="buffio_8h.html#a5a2e0c47b4b14b5beb17ac982fa21eeb">buffio.h</a>
|
||||
</li>
|
||||
<li>tidyBufInit()
|
||||
: <a class="el" href="buffio_8h.html#a3cf251a96f69f05495744af6c9d0339b">buffio.h</a>
|
||||
</li>
|
||||
<li>tidyBufInitWithAllocator()
|
||||
: <a class="el" href="buffio_8h.html#aff43ddd9fc78532617d88db55b164f5e">buffio.h</a>
|
||||
</li>
|
||||
<li>tidyBufPopByte()
|
||||
: <a class="el" href="buffio_8h.html#af8b1e8fbe3c29d08250794d7e4925ea6">buffio.h</a>
|
||||
</li>
|
||||
<li>tidyBufPutByte()
|
||||
: <a class="el" href="buffio_8h.html#af48af586ada5ff264501fe9ef4c67dd1">buffio.h</a>
|
||||
</li>
|
||||
<li>tidyBufUngetByte()
|
||||
: <a class="el" href="buffio_8h.html#a1d1f2039b769381d418ac1187b50b292">buffio.h</a>
|
||||
</li>
|
||||
<li>tidyCleanAndRepair()
|
||||
: <a class="el" href="group__Clean.html#ga11fd23eeb4acfaa0f9501effa0c21269">tidy.h</a>
|
||||
</li>
|
||||
<li>tidyConfigErrorCount()
|
||||
: <a class="el" href="group__Basic.html#gac17c01a0dbb8f73bdee29df48e499988">tidy.h</a>
|
||||
</li>
|
||||
<li>tidyDetectedGenericXml()
|
||||
: <a class="el" href="group__Basic.html#ga8dd761b5e230119f8eb6c412f12fdec2">tidy.h</a>
|
||||
</li>
|
||||
<li>tidyDetectedHtmlVersion()
|
||||
: <a class="el" href="group__Basic.html#ga8fbec4bc2b67c4f525440cfc7196b443">tidy.h</a>
|
||||
</li>
|
||||
<li>tidyDetectedXhtml()
|
||||
: <a class="el" href="group__Basic.html#gaf3279c9a0506629d2ae766c31c1de48d">tidy.h</a>
|
||||
</li>
|
||||
<li>TidyEOFFunc
|
||||
: <a class="el" href="group__IO.html#ga9f8e1bb4c4740ffb399ec424594c4972">tidy.h</a>
|
||||
</li>
|
||||
<li>tidyErrorCount()
|
||||
: <a class="el" href="group__Basic.html#ga3617548e3669d00ad074daaaa8f3460d">tidy.h</a>
|
||||
</li>
|
||||
<li>tidyErrorSummary()
|
||||
: <a class="el" href="group__Basic.html#ga4c050ea7d2746db948ad45edb2264d70">tidy.h</a>
|
||||
</li>
|
||||
<li>TidyFree
|
||||
: <a class="el" href="group__Memory.html#ga27931c443e424937ba47f0d4795aa35f">tidy.h</a>
|
||||
</li>
|
||||
<li>tidyGeneralInfo()
|
||||
: <a class="el" href="group__Basic.html#ga28384bf13bf6962c8ef0bcab9b4b7971">tidy.h</a>
|
||||
</li>
|
||||
<li>tidyGetAppData()
|
||||
: <a class="el" href="group__Basic.html#ga1319c9757d4f8c596615e0fdcfcf2504">tidy.h</a>
|
||||
</li>
|
||||
<li>tidyGetByte()
|
||||
: <a class="el" href="group__IO.html#gadba396ffec9f29b27d73a23264dcfa0b">tidy.h</a>
|
||||
</li>
|
||||
<li>TidyGetByteFunc
|
||||
: <a class="el" href="group__IO.html#ga6951f79d4b50288e96a3896ab01393d6">tidy.h</a>
|
||||
</li>
|
||||
<li>tidyGetNextOption()
|
||||
: <a class="el" href="group__Configuration.html#ga1a3088dacc539487e00f1eb4009dafc0">tidy.h</a>
|
||||
</li>
|
||||
<li>tidyGetOption()
|
||||
: <a class="el" href="group__Configuration.html#ga030c695d6407b2756856eb1862642cfe">tidy.h</a>
|
||||
</li>
|
||||
<li>tidyGetOptionByName()
|
||||
: <a class="el" href="group__Configuration.html#gaeae2e147645697fc54234ff2526a8108">tidy.h</a>
|
||||
</li>
|
||||
<li>tidyGetOptionList()
|
||||
: <a class="el" href="group__Configuration.html#gab92a35ffbd3b0b668534d63f94d2486f">tidy.h</a>
|
||||
</li>
|
||||
<li>tidyInitInputBuffer()
|
||||
: <a class="el" href="buffio_8h.html#a73da3182aea89939af1d98504a3b2df0">buffio.h</a>
|
||||
</li>
|
||||
<li>tidyInitOutputBuffer()
|
||||
: <a class="el" href="buffio_8h.html#a882a92590a9e6ecce16d5b8e8db19fbb">buffio.h</a>
|
||||
</li>
|
||||
<li>tidyInitSink()
|
||||
: <a class="el" href="group__IO.html#ga7e93289be3a7253cdf99a96285e6a2d4">tidy.h</a>
|
||||
</li>
|
||||
<li>tidyInitSource()
|
||||
: <a class="el" href="group__IO.html#gab446af273e331cb0440dd01b6990d2d0">tidy.h</a>
|
||||
</li>
|
||||
<li>TidyInputSource
|
||||
: <a class="el" href="group__IO.html#ga86fcc3c86bd63b26a559938bc38d34bb">tidy.h</a>
|
||||
</li>
|
||||
<li>tidyIsEOF()
|
||||
: <a class="el" href="group__IO.html#ga399df5ba17614205964a665f7b1726a6">tidy.h</a>
|
||||
</li>
|
||||
<li>tidyLoadConfig()
|
||||
: <a class="el" href="group__Basic.html#ga2dec710c0d4927e76a7b0d338b11693a">tidy.h</a>
|
||||
</li>
|
||||
<li>tidyLoadConfigEnc()
|
||||
: <a class="el" href="group__Basic.html#gac677de148c6f00fc96a682c21433ab1c">tidy.h</a>
|
||||
</li>
|
||||
<li>TidyMalloc
|
||||
: <a class="el" href="group__Memory.html#ga3bd3cc4d0c837a4cd10ab472ba671430">tidy.h</a>
|
||||
</li>
|
||||
<li>TidyOptCallback
|
||||
: <a class="el" href="group__Configuration.html#gaee8a8bcb6091bd36f6fc20507a4544fc">tidy.h</a>
|
||||
</li>
|
||||
<li>tidyOptCopyConfig()
|
||||
: <a class="el" href="group__Configuration.html#ga0b6cb26ab5dbbe0a0841d605fbd06fad">tidy.h</a>
|
||||
</li>
|
||||
<li>tidyOptDiffThanDefault()
|
||||
: <a class="el" href="group__Configuration.html#ga083cb42d6f4413604240b5c1b3aa2070">tidy.h</a>
|
||||
</li>
|
||||
<li>tidyOptDiffThanSnapshot()
|
||||
: <a class="el" href="group__Configuration.html#ga793bc9e177aa90301802e44c4fc22e0e">tidy.h</a>
|
||||
</li>
|
||||
<li>tidyOptGetBool()
|
||||
: <a class="el" href="group__Configuration.html#ga09e6c999e9e7ebc94ea3d9cf5d674125">tidy.h</a>
|
||||
</li>
|
||||
<li>tidyOptGetCategory()
|
||||
: <a class="el" href="group__Configuration.html#ga1d8b72e64e4d949dc21599fa788e842f">tidy.h</a>
|
||||
</li>
|
||||
<li>tidyOptGetCurrPick()
|
||||
: <a class="el" href="group__Configuration.html#ga0785047cc73d5fbc88691861a0fa9c78">tidy.h</a>
|
||||
</li>
|
||||
<li>tidyOptGetDeclTagList()
|
||||
: <a class="el" href="group__Configuration.html#ga55f30cf9e507f8fc66330ec3b0132620">tidy.h</a>
|
||||
</li>
|
||||
<li>tidyOptGetDefault()
|
||||
: <a class="el" href="group__Configuration.html#gab9e02c9927fe2c382ec5f81b4acf9cb4">tidy.h</a>
|
||||
</li>
|
||||
<li>tidyOptGetDefaultBool()
|
||||
: <a class="el" href="group__Configuration.html#gadadea4da66e3718e02b720c2b59d170b">tidy.h</a>
|
||||
</li>
|
||||
<li>tidyOptGetDefaultInt()
|
||||
: <a class="el" href="group__Configuration.html#gafc8df35e864dd3a24f23aca3c2f8bd9d">tidy.h</a>
|
||||
</li>
|
||||
<li>tidyOptGetDoc()
|
||||
: <a class="el" href="group__Configuration.html#gafca3ed506463e192187133ff646a643d">tidy.h</a>
|
||||
</li>
|
||||
<li>tidyOptGetDocLinksList()
|
||||
: <a class="el" href="group__Configuration.html#gaeed1ef5cb5329f3f5aca0a8ad7e8ea4f">tidy.h</a>
|
||||
</li>
|
||||
<li>tidyOptGetEncName()
|
||||
: <a class="el" href="group__Configuration.html#ga47f8502cc202fc7423937647957955a3">tidy.h</a>
|
||||
</li>
|
||||
<li>tidyOptGetId()
|
||||
: <a class="el" href="group__Configuration.html#ga51cf095b76921b4e290e14814998f096">tidy.h</a>
|
||||
</li>
|
||||
<li>tidyOptGetIdForName()
|
||||
: <a class="el" href="group__Configuration.html#ga500f31ba81d015b8ce9dad6f2a6ade75">tidy.h</a>
|
||||
</li>
|
||||
<li>tidyOptGetInt()
|
||||
: <a class="el" href="group__Configuration.html#ga7ff683612d446b07318517e564cccc7a">tidy.h</a>
|
||||
</li>
|
||||
<li>tidyOptGetName()
|
||||
: <a class="el" href="group__Configuration.html#gaf370cd2ea113747f50da185fda24adcb">tidy.h</a>
|
||||
</li>
|
||||
<li>tidyOptGetNextDeclTag()
|
||||
: <a class="el" href="group__Configuration.html#gacec933eef8f9eec3dfa4382e05cab251">tidy.h</a>
|
||||
</li>
|
||||
<li>tidyOptGetNextDocLinks()
|
||||
: <a class="el" href="group__Configuration.html#ga1db79a95067d6364c02263d9492fa9e8">tidy.h</a>
|
||||
</li>
|
||||
<li>tidyOptGetNextPick()
|
||||
: <a class="el" href="group__Configuration.html#gad1366c5c458f38d2a9c6a6335e6704d9">tidy.h</a>
|
||||
</li>
|
||||
<li>tidyOptGetPickList()
|
||||
: <a class="el" href="group__Configuration.html#ga31f815fe2b5bf1e00d6b50be62edd0ab">tidy.h</a>
|
||||
</li>
|
||||
<li>tidyOptGetType()
|
||||
: <a class="el" href="group__Configuration.html#ga06e2685cc2950b182ff2f7136d170a34">tidy.h</a>
|
||||
</li>
|
||||
<li>tidyOptGetValue()
|
||||
: <a class="el" href="group__Configuration.html#ga0fbe23ab1e4ec374fa38e6f514617e4d">tidy.h</a>
|
||||
</li>
|
||||
<li>tidyOptIsReadOnly()
|
||||
: <a class="el" href="group__Configuration.html#ga6aba2ccdb1237a70f5fe1393fee0ce4d">tidy.h</a>
|
||||
</li>
|
||||
<li>tidyOptParseValue()
|
||||
: <a class="el" href="group__Configuration.html#gad09fbcbbaf83fbf93e0d7be9c9bb30c0">tidy.h</a>
|
||||
</li>
|
||||
<li>tidyOptResetAllToDefault()
|
||||
: <a class="el" href="group__Configuration.html#ga874ce26884f0eeaf692c30758688888a">tidy.h</a>
|
||||
</li>
|
||||
<li>tidyOptResetToDefault()
|
||||
: <a class="el" href="group__Configuration.html#ga2aa45ad67758ca0b18d14eafa37fe080">tidy.h</a>
|
||||
</li>
|
||||
<li>tidyOptResetToSnapshot()
|
||||
: <a class="el" href="group__Configuration.html#gae6212b8f32990763cc18a6d3f05eb191">tidy.h</a>
|
||||
</li>
|
||||
<li>tidyOptSaveFile()
|
||||
: <a class="el" href="group__Basic.html#gaaa6e0510b0d7ca0524c928143488c6ca">tidy.h</a>
|
||||
</li>
|
||||
<li>tidyOptSaveSink()
|
||||
: <a class="el" href="group__Basic.html#gabf30cc37e3e7aa07dd351f083ab747ee">tidy.h</a>
|
||||
</li>
|
||||
<li>tidyOptSetBool()
|
||||
: <a class="el" href="group__Configuration.html#gac9de7e155bea5c28713f2bfb93614472">tidy.h</a>
|
||||
</li>
|
||||
<li>tidyOptSetInt()
|
||||
: <a class="el" href="group__Configuration.html#gad9e75a64c8dcbc54e791959cf934e1ad">tidy.h</a>
|
||||
</li>
|
||||
<li>tidyOptSetValue()
|
||||
: <a class="el" href="group__Configuration.html#gaf37bdad3b6809d8cb78e7d6316d4ba69">tidy.h</a>
|
||||
</li>
|
||||
<li>tidyOptSnapshot()
|
||||
: <a class="el" href="group__Configuration.html#ga4beb2c73c90c3e2ae589c2642478cebd">tidy.h</a>
|
||||
</li>
|
||||
<li>TidyOutputSink
|
||||
: <a class="el" href="group__IO.html#ga6bdd15de48364d2b5dbf2141109d3f98">tidy.h</a>
|
||||
</li>
|
||||
<li>TidyPanic
|
||||
: <a class="el" href="group__Memory.html#ga0770be41d9935a3e2933ba0be3c7725c">tidy.h</a>
|
||||
</li>
|
||||
<li>tidyParseBuffer()
|
||||
: <a class="el" href="group__Parse.html#gaa28ce34c95750f150205843885317851">tidy.h</a>
|
||||
</li>
|
||||
<li>tidyParseFile()
|
||||
: <a class="el" href="group__Parse.html#ga5ec263f2e430dd9c9e10437f067b2a28">tidy.h</a>
|
||||
</li>
|
||||
<li>tidyParseSource()
|
||||
: <a class="el" href="group__Parse.html#gaa65dad2a4ca5fa97d267ddefe1180e0e">tidy.h</a>
|
||||
</li>
|
||||
<li>tidyParseStdin()
|
||||
: <a class="el" href="group__Parse.html#ga96b41ff6e6a7f9d0b9b0e901e33ad31d">tidy.h</a>
|
||||
</li>
|
||||
<li>tidyParseString()
|
||||
: <a class="el" href="group__Parse.html#ga50c02fa244dcd120ae339719c2132ff9">tidy.h</a>
|
||||
</li>
|
||||
<li>tidyPutByte()
|
||||
: <a class="el" href="group__IO.html#ga2a34772782d7b786e37012fce4cd2425">tidy.h</a>
|
||||
</li>
|
||||
<li>TidyPutByteFunc
|
||||
: <a class="el" href="group__IO.html#ga63bcce5aa5f52e4e2e22aedd750b8bbc">tidy.h</a>
|
||||
</li>
|
||||
<li>TidyRealloc
|
||||
: <a class="el" href="group__Memory.html#ga9d9a5625817932dbbb39dd33de678edd">tidy.h</a>
|
||||
</li>
|
||||
<li>tidyReleaseDate()
|
||||
: <a class="el" href="group__Basic.html#gab7b404ada690635341d2e2d332102b36">tidy.h</a>
|
||||
</li>
|
||||
<li>TidyReportFilter
|
||||
: <a class="el" href="group__IO.html#ga29c5bee28b95924a97ea4fbb81668c5e">tidy.h</a>
|
||||
</li>
|
||||
<li>tidyRunDiagnostics()
|
||||
: <a class="el" href="group__Clean.html#ga6170500974cc02114f6e4a29d44b7d77">tidy.h</a>
|
||||
</li>
|
||||
<li>tidySaveBuffer()
|
||||
: <a class="el" href="group__Save.html#ga7e8642262c8c4d34cf7cc426647d29f0">tidy.h</a>
|
||||
</li>
|
||||
<li>tidySaveFile()
|
||||
: <a class="el" href="group__Save.html#ga19ee6e2ee0e719a97cff443ebb19ae44">tidy.h</a>
|
||||
</li>
|
||||
<li>tidySaveSink()
|
||||
: <a class="el" href="group__Save.html#gaea985b28470453d0218092b137f71e77">tidy.h</a>
|
||||
</li>
|
||||
<li>tidySaveStdout()
|
||||
: <a class="el" href="group__Save.html#ga6638d1800ee63fc6bea19bc2bf582be2">tidy.h</a>
|
||||
</li>
|
||||
<li>tidySaveString()
|
||||
: <a class="el" href="group__Save.html#gaf684fefd3e42f459cf0a4ebe937ce12b">tidy.h</a>
|
||||
</li>
|
||||
<li>tidySetAppData()
|
||||
: <a class="el" href="group__Basic.html#gaa1a9f78be3542868ac10481e2efa8708">tidy.h</a>
|
||||
</li>
|
||||
<li>tidySetCharEncoding()
|
||||
: <a class="el" href="group__Basic.html#ga2612e184472c2a59ca822a37d030e9af">tidy.h</a>
|
||||
</li>
|
||||
<li>tidySetErrorBuffer()
|
||||
: <a class="el" href="group__IO.html#ga5e5cffe93edf4bea0d3214be70d6f77b">tidy.h</a>
|
||||
</li>
|
||||
<li>tidySetErrorFile()
|
||||
: <a class="el" href="group__IO.html#ga669758031bbd5d4ba957b19e77229c8b">tidy.h</a>
|
||||
</li>
|
||||
<li>tidySetErrorSink()
|
||||
: <a class="el" href="group__IO.html#gad47c75f3af85e7927e7ac18918ec6363">tidy.h</a>
|
||||
</li>
|
||||
<li>tidySetFreeCall()
|
||||
: <a class="el" href="group__Memory.html#ga70e707b7df86effb5727b0b9ff64eed7">tidy.h</a>
|
||||
</li>
|
||||
<li>tidySetInCharEncoding()
|
||||
: <a class="el" href="group__Basic.html#ga05203a9193542a67b8396cf6ca8acf59">tidy.h</a>
|
||||
</li>
|
||||
<li>tidySetMallocCall()
|
||||
: <a class="el" href="group__Memory.html#gab55079374527525e3374ebc4d2a1e625">tidy.h</a>
|
||||
</li>
|
||||
<li>tidySetOutCharEncoding()
|
||||
: <a class="el" href="group__Basic.html#ga9b6bd07e38bf320cf88663a29967f1e9">tidy.h</a>
|
||||
</li>
|
||||
<li>tidySetPanicCall()
|
||||
: <a class="el" href="group__Memory.html#gab12cc0435bacec1a8c725e02357acc00">tidy.h</a>
|
||||
</li>
|
||||
<li>tidySetReallocCall()
|
||||
: <a class="el" href="group__Memory.html#ga446b538da3ee3f2e5a3827b877665b30">tidy.h</a>
|
||||
</li>
|
||||
<li>tidySetReportFilter()
|
||||
: <a class="el" href="group__IO.html#ga51e02523601388bb83c2555b995e68b0">tidy.h</a>
|
||||
</li>
|
||||
<li>tidyStatus()
|
||||
: <a class="el" href="group__Basic.html#gaf45a8fb57fb9bfce89c42e1cc9d3e760">tidy.h</a>
|
||||
</li>
|
||||
<li>tidyUngetByte()
|
||||
: <a class="el" href="group__IO.html#ga0c8d46de315cabb0ac7d2cf01ca183d7">tidy.h</a>
|
||||
</li>
|
||||
<li>TidyUngetByteFunc
|
||||
: <a class="el" href="group__IO.html#ga298b882c5fc7cc969ef58fb187bdd371">tidy.h</a>
|
||||
</li>
|
||||
<li>tidyWarningCount()
|
||||
: <a class="el" href="group__Basic.html#ga29b0c36f75584a2a26422b021561f19c">tidy.h</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div><!-- contents -->
|
||||
</div>
|
||||
<div id="nav-path" class="navpath">
|
||||
<ul>
|
||||
|
||||
<li class="footer">Generated on Wed Jun 20 2012 16:58:07 for HTML Tidy by
|
||||
<a href="http://www.doxygen.org/index.html">
|
||||
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.0 </li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
|
@ -1,80 +0,0 @@
|
|||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=9"/>
|
||||
<title>HTML Tidy: Globals</title>
|
||||
|
||||
<link href="tabs.css" rel="stylesheet" type="text/css"/>
|
||||
<link href="doxygen.css" rel="stylesheet" type="text/css" />
|
||||
<link href="navtree.css" rel="stylesheet" type="text/css"/>
|
||||
<script type="text/javascript" src="jquery.js"></script>
|
||||
<script type="text/javascript" src="resize.js"></script>
|
||||
<script type="text/javascript" src="navtree.js"></script>
|
||||
<script type="text/javascript">
|
||||
$(document).ready(initResizable);
|
||||
</script>
|
||||
|
||||
|
||||
</head>
|
||||
<body>
|
||||
<div id="top"><!-- do not remove this div! -->
|
||||
|
||||
|
||||
<div id="titlearea">
|
||||
<table cellspacing="0" cellpadding="0">
|
||||
<tbody>
|
||||
<tr style="height: 56px;">
|
||||
|
||||
|
||||
<td style="padding-left: 0.5em;">
|
||||
<div id="projectname">HTML Tidy
|
||||
 <span id="projectnumber">0.1</span>
|
||||
</div>
|
||||
|
||||
</td>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
|
||||
<!-- Generated by Doxygen 1.8.0 -->
|
||||
</div>
|
||||
<div id="side-nav" class="ui-resizable side-nav-resizable">
|
||||
<div id="nav-tree">
|
||||
<div id="nav-tree-contents">
|
||||
</div>
|
||||
</div>
|
||||
<div id="splitbar" style="-moz-user-select:none;"
|
||||
class="ui-resizable-handle">
|
||||
</div>
|
||||
</div>
|
||||
<script type="text/javascript">
|
||||
initNavTree('globals_defs.html','');
|
||||
</script>
|
||||
<div id="doc-content">
|
||||
<div class="contents">
|
||||
 <ul>
|
||||
<li>EndOfStream
|
||||
: <a class="el" href="group__IO.html#ga9a078b706ec6f37cce40958f6f68585a">tidy.h</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div><!-- contents -->
|
||||
</div>
|
||||
<div id="nav-path" class="navpath">
|
||||
<ul>
|
||||
|
||||
<li class="footer">Generated on Wed Jun 20 2012 16:58:07 for HTML Tidy by
|
||||
<a href="http://www.doxygen.org/index.html">
|
||||
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.0 </li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
|
@ -1,376 +0,0 @@
|
|||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=9"/>
|
||||
<title>HTML Tidy: Globals</title>
|
||||
|
||||
<link href="tabs.css" rel="stylesheet" type="text/css"/>
|
||||
<link href="doxygen.css" rel="stylesheet" type="text/css" />
|
||||
<link href="navtree.css" rel="stylesheet" type="text/css"/>
|
||||
<script type="text/javascript" src="jquery.js"></script>
|
||||
<script type="text/javascript" src="resize.js"></script>
|
||||
<script type="text/javascript" src="navtree.js"></script>
|
||||
<script type="text/javascript">
|
||||
$(document).ready(initResizable);
|
||||
</script>
|
||||
|
||||
|
||||
</head>
|
||||
<body>
|
||||
<div id="top"><!-- do not remove this div! -->
|
||||
|
||||
|
||||
<div id="titlearea">
|
||||
<table cellspacing="0" cellpadding="0">
|
||||
<tbody>
|
||||
<tr style="height: 56px;">
|
||||
|
||||
|
||||
<td style="padding-left: 0.5em;">
|
||||
<div id="projectname">HTML Tidy
|
||||
 <span id="projectnumber">0.1</span>
|
||||
</div>
|
||||
|
||||
</td>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
|
||||
<!-- Generated by Doxygen 1.8.0 -->
|
||||
</div>
|
||||
<div id="side-nav" class="ui-resizable side-nav-resizable">
|
||||
<div id="nav-tree">
|
||||
<div id="nav-tree-contents">
|
||||
</div>
|
||||
</div>
|
||||
<div id="splitbar" style="-moz-user-select:none;"
|
||||
class="ui-resizable-handle">
|
||||
</div>
|
||||
</div>
|
||||
<script type="text/javascript">
|
||||
initNavTree('globals_func.html','');
|
||||
</script>
|
||||
<div id="doc-content">
|
||||
<div class="contents">
|
||||
 
|
||||
|
||||
<h3><a class="anchor" id="index_t"></a>- t -</h3><ul>
|
||||
<li>tidyAccessWarningCount()
|
||||
: <a class="el" href="group__Basic.html#ga56ad617084cdcbb485f06f597de7dedb">tidy.h</a>
|
||||
</li>
|
||||
<li>tidyBufAlloc()
|
||||
: <a class="el" href="buffio_8h.html#a896654bd99113bfe5e86b924836aacc3">buffio.h</a>
|
||||
</li>
|
||||
<li>tidyBufAllocWithAllocator()
|
||||
: <a class="el" href="buffio_8h.html#a57c832b4ddbc19a329a5ab9936eb5826">buffio.h</a>
|
||||
</li>
|
||||
<li>tidyBufAppend()
|
||||
: <a class="el" href="buffio_8h.html#ad59b32f81789b634758274f34be4d25b">buffio.h</a>
|
||||
</li>
|
||||
<li>tidyBufAttach()
|
||||
: <a class="el" href="buffio_8h.html#ac5909e78d98583cb245dd2004469bb93">buffio.h</a>
|
||||
</li>
|
||||
<li>tidyBufCheckAlloc()
|
||||
: <a class="el" href="buffio_8h.html#a7a66ba1f574955d1fc1de57476e849f2">buffio.h</a>
|
||||
</li>
|
||||
<li>tidyBufClear()
|
||||
: <a class="el" href="buffio_8h.html#aa94e59f613a495b17e90c1c4778c3911">buffio.h</a>
|
||||
</li>
|
||||
<li>tidyBufDetach()
|
||||
: <a class="el" href="buffio_8h.html#a8da2bf473b14e6bdd5cd40fc47c29903">buffio.h</a>
|
||||
</li>
|
||||
<li>tidyBufEndOfInput()
|
||||
: <a class="el" href="buffio_8h.html#a7e7d8e58623c8bde00d66141edb2cae0">buffio.h</a>
|
||||
</li>
|
||||
<li>tidyBufFree()
|
||||
: <a class="el" href="buffio_8h.html#a65aae9ae4b499e62038700f4792849fc">buffio.h</a>
|
||||
</li>
|
||||
<li>tidyBufGetByte()
|
||||
: <a class="el" href="buffio_8h.html#a5a2e0c47b4b14b5beb17ac982fa21eeb">buffio.h</a>
|
||||
</li>
|
||||
<li>tidyBufInit()
|
||||
: <a class="el" href="buffio_8h.html#a3cf251a96f69f05495744af6c9d0339b">buffio.h</a>
|
||||
</li>
|
||||
<li>tidyBufInitWithAllocator()
|
||||
: <a class="el" href="buffio_8h.html#aff43ddd9fc78532617d88db55b164f5e">buffio.h</a>
|
||||
</li>
|
||||
<li>tidyBufPopByte()
|
||||
: <a class="el" href="buffio_8h.html#af8b1e8fbe3c29d08250794d7e4925ea6">buffio.h</a>
|
||||
</li>
|
||||
<li>tidyBufPutByte()
|
||||
: <a class="el" href="buffio_8h.html#af48af586ada5ff264501fe9ef4c67dd1">buffio.h</a>
|
||||
</li>
|
||||
<li>tidyBufUngetByte()
|
||||
: <a class="el" href="buffio_8h.html#a1d1f2039b769381d418ac1187b50b292">buffio.h</a>
|
||||
</li>
|
||||
<li>tidyCleanAndRepair()
|
||||
: <a class="el" href="group__Clean.html#ga11fd23eeb4acfaa0f9501effa0c21269">tidy.h</a>
|
||||
</li>
|
||||
<li>tidyConfigErrorCount()
|
||||
: <a class="el" href="group__Basic.html#gac17c01a0dbb8f73bdee29df48e499988">tidy.h</a>
|
||||
</li>
|
||||
<li>tidyDetectedGenericXml()
|
||||
: <a class="el" href="group__Basic.html#ga8dd761b5e230119f8eb6c412f12fdec2">tidy.h</a>
|
||||
</li>
|
||||
<li>tidyDetectedHtmlVersion()
|
||||
: <a class="el" href="group__Basic.html#ga8fbec4bc2b67c4f525440cfc7196b443">tidy.h</a>
|
||||
</li>
|
||||
<li>tidyDetectedXhtml()
|
||||
: <a class="el" href="group__Basic.html#gaf3279c9a0506629d2ae766c31c1de48d">tidy.h</a>
|
||||
</li>
|
||||
<li>tidyErrorCount()
|
||||
: <a class="el" href="group__Basic.html#ga3617548e3669d00ad074daaaa8f3460d">tidy.h</a>
|
||||
</li>
|
||||
<li>tidyErrorSummary()
|
||||
: <a class="el" href="group__Basic.html#ga4c050ea7d2746db948ad45edb2264d70">tidy.h</a>
|
||||
</li>
|
||||
<li>tidyGeneralInfo()
|
||||
: <a class="el" href="group__Basic.html#ga28384bf13bf6962c8ef0bcab9b4b7971">tidy.h</a>
|
||||
</li>
|
||||
<li>tidyGetAppData()
|
||||
: <a class="el" href="group__Basic.html#ga1319c9757d4f8c596615e0fdcfcf2504">tidy.h</a>
|
||||
</li>
|
||||
<li>tidyGetByte()
|
||||
: <a class="el" href="group__IO.html#gadba396ffec9f29b27d73a23264dcfa0b">tidy.h</a>
|
||||
</li>
|
||||
<li>tidyGetNextOption()
|
||||
: <a class="el" href="group__Configuration.html#ga1a3088dacc539487e00f1eb4009dafc0">tidy.h</a>
|
||||
</li>
|
||||
<li>tidyGetOption()
|
||||
: <a class="el" href="group__Configuration.html#ga030c695d6407b2756856eb1862642cfe">tidy.h</a>
|
||||
</li>
|
||||
<li>tidyGetOptionByName()
|
||||
: <a class="el" href="group__Configuration.html#gaeae2e147645697fc54234ff2526a8108">tidy.h</a>
|
||||
</li>
|
||||
<li>tidyGetOptionList()
|
||||
: <a class="el" href="group__Configuration.html#gab92a35ffbd3b0b668534d63f94d2486f">tidy.h</a>
|
||||
</li>
|
||||
<li>tidyInitInputBuffer()
|
||||
: <a class="el" href="buffio_8h.html#a73da3182aea89939af1d98504a3b2df0">buffio.h</a>
|
||||
</li>
|
||||
<li>tidyInitOutputBuffer()
|
||||
: <a class="el" href="buffio_8h.html#a882a92590a9e6ecce16d5b8e8db19fbb">buffio.h</a>
|
||||
</li>
|
||||
<li>tidyInitSink()
|
||||
: <a class="el" href="group__IO.html#ga7e93289be3a7253cdf99a96285e6a2d4">tidy.h</a>
|
||||
</li>
|
||||
<li>tidyInitSource()
|
||||
: <a class="el" href="group__IO.html#gab446af273e331cb0440dd01b6990d2d0">tidy.h</a>
|
||||
</li>
|
||||
<li>tidyIsEOF()
|
||||
: <a class="el" href="group__IO.html#ga399df5ba17614205964a665f7b1726a6">tidy.h</a>
|
||||
</li>
|
||||
<li>tidyLoadConfig()
|
||||
: <a class="el" href="group__Basic.html#ga2dec710c0d4927e76a7b0d338b11693a">tidy.h</a>
|
||||
</li>
|
||||
<li>tidyLoadConfigEnc()
|
||||
: <a class="el" href="group__Basic.html#gac677de148c6f00fc96a682c21433ab1c">tidy.h</a>
|
||||
</li>
|
||||
<li>tidyOptCopyConfig()
|
||||
: <a class="el" href="group__Configuration.html#ga0b6cb26ab5dbbe0a0841d605fbd06fad">tidy.h</a>
|
||||
</li>
|
||||
<li>tidyOptDiffThanDefault()
|
||||
: <a class="el" href="group__Configuration.html#ga083cb42d6f4413604240b5c1b3aa2070">tidy.h</a>
|
||||
</li>
|
||||
<li>tidyOptDiffThanSnapshot()
|
||||
: <a class="el" href="group__Configuration.html#ga793bc9e177aa90301802e44c4fc22e0e">tidy.h</a>
|
||||
</li>
|
||||
<li>tidyOptGetBool()
|
||||
: <a class="el" href="group__Configuration.html#ga09e6c999e9e7ebc94ea3d9cf5d674125">tidy.h</a>
|
||||
</li>
|
||||
<li>tidyOptGetCategory()
|
||||
: <a class="el" href="group__Configuration.html#ga1d8b72e64e4d949dc21599fa788e842f">tidy.h</a>
|
||||
</li>
|
||||
<li>tidyOptGetCurrPick()
|
||||
: <a class="el" href="group__Configuration.html#ga0785047cc73d5fbc88691861a0fa9c78">tidy.h</a>
|
||||
</li>
|
||||
<li>tidyOptGetDeclTagList()
|
||||
: <a class="el" href="group__Configuration.html#ga55f30cf9e507f8fc66330ec3b0132620">tidy.h</a>
|
||||
</li>
|
||||
<li>tidyOptGetDefault()
|
||||
: <a class="el" href="group__Configuration.html#gab9e02c9927fe2c382ec5f81b4acf9cb4">tidy.h</a>
|
||||
</li>
|
||||
<li>tidyOptGetDefaultBool()
|
||||
: <a class="el" href="group__Configuration.html#gadadea4da66e3718e02b720c2b59d170b">tidy.h</a>
|
||||
</li>
|
||||
<li>tidyOptGetDefaultInt()
|
||||
: <a class="el" href="group__Configuration.html#gafc8df35e864dd3a24f23aca3c2f8bd9d">tidy.h</a>
|
||||
</li>
|
||||
<li>tidyOptGetDoc()
|
||||
: <a class="el" href="group__Configuration.html#gafca3ed506463e192187133ff646a643d">tidy.h</a>
|
||||
</li>
|
||||
<li>tidyOptGetDocLinksList()
|
||||
: <a class="el" href="group__Configuration.html#gaeed1ef5cb5329f3f5aca0a8ad7e8ea4f">tidy.h</a>
|
||||
</li>
|
||||
<li>tidyOptGetEncName()
|
||||
: <a class="el" href="group__Configuration.html#ga47f8502cc202fc7423937647957955a3">tidy.h</a>
|
||||
</li>
|
||||
<li>tidyOptGetId()
|
||||
: <a class="el" href="group__Configuration.html#ga51cf095b76921b4e290e14814998f096">tidy.h</a>
|
||||
</li>
|
||||
<li>tidyOptGetIdForName()
|
||||
: <a class="el" href="group__Configuration.html#ga500f31ba81d015b8ce9dad6f2a6ade75">tidy.h</a>
|
||||
</li>
|
||||
<li>tidyOptGetInt()
|
||||
: <a class="el" href="group__Configuration.html#ga7ff683612d446b07318517e564cccc7a">tidy.h</a>
|
||||
</li>
|
||||
<li>tidyOptGetName()
|
||||
: <a class="el" href="group__Configuration.html#gaf370cd2ea113747f50da185fda24adcb">tidy.h</a>
|
||||
</li>
|
||||
<li>tidyOptGetNextDeclTag()
|
||||
: <a class="el" href="group__Configuration.html#gacec933eef8f9eec3dfa4382e05cab251">tidy.h</a>
|
||||
</li>
|
||||
<li>tidyOptGetNextDocLinks()
|
||||
: <a class="el" href="group__Configuration.html#ga1db79a95067d6364c02263d9492fa9e8">tidy.h</a>
|
||||
</li>
|
||||
<li>tidyOptGetNextPick()
|
||||
: <a class="el" href="group__Configuration.html#gad1366c5c458f38d2a9c6a6335e6704d9">tidy.h</a>
|
||||
</li>
|
||||
<li>tidyOptGetPickList()
|
||||
: <a class="el" href="group__Configuration.html#ga31f815fe2b5bf1e00d6b50be62edd0ab">tidy.h</a>
|
||||
</li>
|
||||
<li>tidyOptGetType()
|
||||
: <a class="el" href="group__Configuration.html#ga06e2685cc2950b182ff2f7136d170a34">tidy.h</a>
|
||||
</li>
|
||||
<li>tidyOptGetValue()
|
||||
: <a class="el" href="group__Configuration.html#ga0fbe23ab1e4ec374fa38e6f514617e4d">tidy.h</a>
|
||||
</li>
|
||||
<li>tidyOptIsReadOnly()
|
||||
: <a class="el" href="group__Configuration.html#ga6aba2ccdb1237a70f5fe1393fee0ce4d">tidy.h</a>
|
||||
</li>
|
||||
<li>tidyOptParseValue()
|
||||
: <a class="el" href="group__Configuration.html#gad09fbcbbaf83fbf93e0d7be9c9bb30c0">tidy.h</a>
|
||||
</li>
|
||||
<li>tidyOptResetAllToDefault()
|
||||
: <a class="el" href="group__Configuration.html#ga874ce26884f0eeaf692c30758688888a">tidy.h</a>
|
||||
</li>
|
||||
<li>tidyOptResetToDefault()
|
||||
: <a class="el" href="group__Configuration.html#ga2aa45ad67758ca0b18d14eafa37fe080">tidy.h</a>
|
||||
</li>
|
||||
<li>tidyOptResetToSnapshot()
|
||||
: <a class="el" href="group__Configuration.html#gae6212b8f32990763cc18a6d3f05eb191">tidy.h</a>
|
||||
</li>
|
||||
<li>tidyOptSaveFile()
|
||||
: <a class="el" href="group__Basic.html#gaaa6e0510b0d7ca0524c928143488c6ca">tidy.h</a>
|
||||
</li>
|
||||
<li>tidyOptSaveSink()
|
||||
: <a class="el" href="group__Basic.html#gabf30cc37e3e7aa07dd351f083ab747ee">tidy.h</a>
|
||||
</li>
|
||||
<li>tidyOptSetBool()
|
||||
: <a class="el" href="group__Configuration.html#gac9de7e155bea5c28713f2bfb93614472">tidy.h</a>
|
||||
</li>
|
||||
<li>tidyOptSetInt()
|
||||
: <a class="el" href="group__Configuration.html#gad9e75a64c8dcbc54e791959cf934e1ad">tidy.h</a>
|
||||
</li>
|
||||
<li>tidyOptSetValue()
|
||||
: <a class="el" href="group__Configuration.html#gaf37bdad3b6809d8cb78e7d6316d4ba69">tidy.h</a>
|
||||
</li>
|
||||
<li>tidyOptSnapshot()
|
||||
: <a class="el" href="group__Configuration.html#ga4beb2c73c90c3e2ae589c2642478cebd">tidy.h</a>
|
||||
</li>
|
||||
<li>tidyParseBuffer()
|
||||
: <a class="el" href="group__Parse.html#gaa28ce34c95750f150205843885317851">tidy.h</a>
|
||||
</li>
|
||||
<li>tidyParseFile()
|
||||
: <a class="el" href="group__Parse.html#ga5ec263f2e430dd9c9e10437f067b2a28">tidy.h</a>
|
||||
</li>
|
||||
<li>tidyParseSource()
|
||||
: <a class="el" href="group__Parse.html#gaa65dad2a4ca5fa97d267ddefe1180e0e">tidy.h</a>
|
||||
</li>
|
||||
<li>tidyParseStdin()
|
||||
: <a class="el" href="group__Parse.html#ga96b41ff6e6a7f9d0b9b0e901e33ad31d">tidy.h</a>
|
||||
</li>
|
||||
<li>tidyParseString()
|
||||
: <a class="el" href="group__Parse.html#ga50c02fa244dcd120ae339719c2132ff9">tidy.h</a>
|
||||
</li>
|
||||
<li>tidyPutByte()
|
||||
: <a class="el" href="group__IO.html#ga2a34772782d7b786e37012fce4cd2425">tidy.h</a>
|
||||
</li>
|
||||
<li>tidyReleaseDate()
|
||||
: <a class="el" href="group__Basic.html#gab7b404ada690635341d2e2d332102b36">tidy.h</a>
|
||||
</li>
|
||||
<li>tidyRunDiagnostics()
|
||||
: <a class="el" href="group__Clean.html#ga6170500974cc02114f6e4a29d44b7d77">tidy.h</a>
|
||||
</li>
|
||||
<li>tidySaveBuffer()
|
||||
: <a class="el" href="group__Save.html#ga7e8642262c8c4d34cf7cc426647d29f0">tidy.h</a>
|
||||
</li>
|
||||
<li>tidySaveFile()
|
||||
: <a class="el" href="group__Save.html#ga19ee6e2ee0e719a97cff443ebb19ae44">tidy.h</a>
|
||||
</li>
|
||||
<li>tidySaveSink()
|
||||
: <a class="el" href="group__Save.html#gaea985b28470453d0218092b137f71e77">tidy.h</a>
|
||||
</li>
|
||||
<li>tidySaveStdout()
|
||||
: <a class="el" href="group__Save.html#ga6638d1800ee63fc6bea19bc2bf582be2">tidy.h</a>
|
||||
</li>
|
||||
<li>tidySaveString()
|
||||
: <a class="el" href="group__Save.html#gaf684fefd3e42f459cf0a4ebe937ce12b">tidy.h</a>
|
||||
</li>
|
||||
<li>tidySetAppData()
|
||||
: <a class="el" href="group__Basic.html#gaa1a9f78be3542868ac10481e2efa8708">tidy.h</a>
|
||||
</li>
|
||||
<li>tidySetCharEncoding()
|
||||
: <a class="el" href="group__Basic.html#ga2612e184472c2a59ca822a37d030e9af">tidy.h</a>
|
||||
</li>
|
||||
<li>tidySetErrorBuffer()
|
||||
: <a class="el" href="group__IO.html#ga5e5cffe93edf4bea0d3214be70d6f77b">tidy.h</a>
|
||||
</li>
|
||||
<li>tidySetErrorFile()
|
||||
: <a class="el" href="group__IO.html#ga669758031bbd5d4ba957b19e77229c8b">tidy.h</a>
|
||||
</li>
|
||||
<li>tidySetErrorSink()
|
||||
: <a class="el" href="group__IO.html#gad47c75f3af85e7927e7ac18918ec6363">tidy.h</a>
|
||||
</li>
|
||||
<li>tidySetFreeCall()
|
||||
: <a class="el" href="group__Memory.html#ga70e707b7df86effb5727b0b9ff64eed7">tidy.h</a>
|
||||
</li>
|
||||
<li>tidySetInCharEncoding()
|
||||
: <a class="el" href="group__Basic.html#ga05203a9193542a67b8396cf6ca8acf59">tidy.h</a>
|
||||
</li>
|
||||
<li>tidySetMallocCall()
|
||||
: <a class="el" href="group__Memory.html#gab55079374527525e3374ebc4d2a1e625">tidy.h</a>
|
||||
</li>
|
||||
<li>tidySetOutCharEncoding()
|
||||
: <a class="el" href="group__Basic.html#ga9b6bd07e38bf320cf88663a29967f1e9">tidy.h</a>
|
||||
</li>
|
||||
<li>tidySetPanicCall()
|
||||
: <a class="el" href="group__Memory.html#gab12cc0435bacec1a8c725e02357acc00">tidy.h</a>
|
||||
</li>
|
||||
<li>tidySetReallocCall()
|
||||
: <a class="el" href="group__Memory.html#ga446b538da3ee3f2e5a3827b877665b30">tidy.h</a>
|
||||
</li>
|
||||
<li>tidySetReportFilter()
|
||||
: <a class="el" href="group__IO.html#ga51e02523601388bb83c2555b995e68b0">tidy.h</a>
|
||||
</li>
|
||||
<li>tidyStatus()
|
||||
: <a class="el" href="group__Basic.html#gaf45a8fb57fb9bfce89c42e1cc9d3e760">tidy.h</a>
|
||||
</li>
|
||||
<li>tidyUngetByte()
|
||||
: <a class="el" href="group__IO.html#ga0c8d46de315cabb0ac7d2cf01ca183d7">tidy.h</a>
|
||||
</li>
|
||||
<li>tidyWarningCount()
|
||||
: <a class="el" href="group__Basic.html#ga29b0c36f75584a2a26422b021561f19c">tidy.h</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div><!-- contents -->
|
||||
</div>
|
||||
<div id="nav-path" class="navpath">
|
||||
<ul>
|
||||
|
||||
<li class="footer">Generated on Wed Jun 20 2012 16:58:07 for HTML Tidy by
|
||||
<a href="http://www.doxygen.org/index.html">
|
||||
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.0 </li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
|
@ -1,119 +0,0 @@
|
|||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=9"/>
|
||||
<title>HTML Tidy: Globals</title>
|
||||
|
||||
<link href="tabs.css" rel="stylesheet" type="text/css"/>
|
||||
<link href="doxygen.css" rel="stylesheet" type="text/css" />
|
||||
<link href="navtree.css" rel="stylesheet" type="text/css"/>
|
||||
<script type="text/javascript" src="jquery.js"></script>
|
||||
<script type="text/javascript" src="resize.js"></script>
|
||||
<script type="text/javascript" src="navtree.js"></script>
|
||||
<script type="text/javascript">
|
||||
$(document).ready(initResizable);
|
||||
</script>
|
||||
|
||||
|
||||
</head>
|
||||
<body>
|
||||
<div id="top"><!-- do not remove this div! -->
|
||||
|
||||
|
||||
<div id="titlearea">
|
||||
<table cellspacing="0" cellpadding="0">
|
||||
<tbody>
|
||||
<tr style="height: 56px;">
|
||||
|
||||
|
||||
<td style="padding-left: 0.5em;">
|
||||
<div id="projectname">HTML Tidy
|
||||
 <span id="projectnumber">0.1</span>
|
||||
</div>
|
||||
|
||||
</td>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
|
||||
<!-- Generated by Doxygen 1.8.0 -->
|
||||
</div>
|
||||
<div id="side-nav" class="ui-resizable side-nav-resizable">
|
||||
<div id="nav-tree">
|
||||
<div id="nav-tree-contents">
|
||||
</div>
|
||||
</div>
|
||||
<div id="splitbar" style="-moz-user-select:none;"
|
||||
class="ui-resizable-handle">
|
||||
</div>
|
||||
</div>
|
||||
<script type="text/javascript">
|
||||
initNavTree('globals_type.html','');
|
||||
</script>
|
||||
<div id="doc-content">
|
||||
<div class="contents">
|
||||
 <ul>
|
||||
<li>TidyAllocator
|
||||
: <a class="el" href="group__Memory.html#ga78e96524a88db0c09e766795265863da">tidy.h</a>
|
||||
</li>
|
||||
<li>TidyAllocatorVtbl
|
||||
: <a class="el" href="group__Memory.html#ga3fe8c5ac7d658618c732565776940ed8">tidy.h</a>
|
||||
</li>
|
||||
<li>TidyEOFFunc
|
||||
: <a class="el" href="group__IO.html#ga9f8e1bb4c4740ffb399ec424594c4972">tidy.h</a>
|
||||
</li>
|
||||
<li>TidyFree
|
||||
: <a class="el" href="group__Memory.html#ga27931c443e424937ba47f0d4795aa35f">tidy.h</a>
|
||||
</li>
|
||||
<li>TidyGetByteFunc
|
||||
: <a class="el" href="group__IO.html#ga6951f79d4b50288e96a3896ab01393d6">tidy.h</a>
|
||||
</li>
|
||||
<li>TidyInputSource
|
||||
: <a class="el" href="group__IO.html#ga86fcc3c86bd63b26a559938bc38d34bb">tidy.h</a>
|
||||
</li>
|
||||
<li>TidyMalloc
|
||||
: <a class="el" href="group__Memory.html#ga3bd3cc4d0c837a4cd10ab472ba671430">tidy.h</a>
|
||||
</li>
|
||||
<li>TidyOptCallback
|
||||
: <a class="el" href="group__Configuration.html#gaee8a8bcb6091bd36f6fc20507a4544fc">tidy.h</a>
|
||||
</li>
|
||||
<li>TidyOutputSink
|
||||
: <a class="el" href="group__IO.html#ga6bdd15de48364d2b5dbf2141109d3f98">tidy.h</a>
|
||||
</li>
|
||||
<li>TidyPanic
|
||||
: <a class="el" href="group__Memory.html#ga0770be41d9935a3e2933ba0be3c7725c">tidy.h</a>
|
||||
</li>
|
||||
<li>TidyPutByteFunc
|
||||
: <a class="el" href="group__IO.html#ga63bcce5aa5f52e4e2e22aedd750b8bbc">tidy.h</a>
|
||||
</li>
|
||||
<li>TidyRealloc
|
||||
: <a class="el" href="group__Memory.html#ga9d9a5625817932dbbb39dd33de678edd">tidy.h</a>
|
||||
</li>
|
||||
<li>TidyReportFilter
|
||||
: <a class="el" href="group__IO.html#ga29c5bee28b95924a97ea4fbb81668c5e">tidy.h</a>
|
||||
</li>
|
||||
<li>TidyUngetByteFunc
|
||||
: <a class="el" href="group__IO.html#ga298b882c5fc7cc969ef58fb187bdd371">tidy.h</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div><!-- contents -->
|
||||
</div>
|
||||
<div id="nav-path" class="navpath">
|
||||
<ul>
|
||||
|
||||
<li class="footer">Generated on Wed Jun 20 2012 16:58:07 for HTML Tidy by
|
||||
<a href="http://www.doxygen.org/index.html">
|
||||
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.0 </li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
|
@ -1,93 +0,0 @@
|
|||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=9"/>
|
||||
<title>HTML Tidy: Attribute Retrieval</title>
|
||||
|
||||
<link href="tabs.css" rel="stylesheet" type="text/css"/>
|
||||
<link href="doxygen.css" rel="stylesheet" type="text/css" />
|
||||
<link href="navtree.css" rel="stylesheet" type="text/css"/>
|
||||
<script type="text/javascript" src="jquery.js"></script>
|
||||
<script type="text/javascript" src="resize.js"></script>
|
||||
<script type="text/javascript" src="navtree.js"></script>
|
||||
<script type="text/javascript">
|
||||
$(document).ready(initResizable);
|
||||
</script>
|
||||
|
||||
|
||||
</head>
|
||||
<body>
|
||||
<div id="top"><!-- do not remove this div! -->
|
||||
|
||||
|
||||
<div id="titlearea">
|
||||
<table cellspacing="0" cellpadding="0">
|
||||
<tbody>
|
||||
<tr style="height: 56px;">
|
||||
|
||||
|
||||
<td style="padding-left: 0.5em;">
|
||||
<div id="projectname">HTML Tidy
|
||||
 <span id="projectnumber">0.1</span>
|
||||
</div>
|
||||
|
||||
</td>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
|
||||
<!-- Generated by Doxygen 1.8.0 -->
|
||||
</div>
|
||||
<div id="side-nav" class="ui-resizable side-nav-resizable">
|
||||
<div id="nav-tree">
|
||||
<div id="nav-tree-contents">
|
||||
</div>
|
||||
</div>
|
||||
<div id="splitbar" style="-moz-user-select:none;"
|
||||
class="ui-resizable-handle">
|
||||
</div>
|
||||
</div>
|
||||
<script type="text/javascript">
|
||||
initNavTree('group__AttrGet.html','');
|
||||
</script>
|
||||
<div id="doc-content">
|
||||
<div class="header">
|
||||
<div class="summary">
|
||||
<a href="#groups">Modules</a> |
|
||||
<a href="#func-members">Functions</a> </div>
|
||||
<div class="headertitle">
|
||||
<div class="title">Attribute Retrieval</div> </div>
|
||||
</div><!--header-->
|
||||
<div class="contents">
|
||||
<table class="memberdecls">
|
||||
<tr><td colspan="2"><h2><a name="groups"></a>
|
||||
Modules</h2></td></tr>
|
||||
<tr class="memitem:group__AttrGetAttributeName"><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="group__AttrGetAttributeName.html">Deprecated attribute retrieval per AttrId</a></td></tr>
|
||||
<tr><td colspan="2"><h2><a name="func-members"></a>
|
||||
Functions</h2></td></tr>
|
||||
<tr class="memitem:ga5391e01ca5a2b497a7c044a25080468e"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga5391e01ca5a2b497a7c044a25080468e"></a>
|
||||
<a class="el" href="structTidyAttr.html">TidyAttr</a> TIDY_CALL </td><td class="memItemRight" valign="bottom"><b>tidyAttrGetById</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod, TidyAttrId attId)</td></tr>
|
||||
</table>
|
||||
<hr/><a name="details" id="details"></a><h2>Detailed Description</h2>
|
||||
<p>Lookup an attribute from a given node </p>
|
||||
</div><!-- contents -->
|
||||
</div>
|
||||
<div id="nav-path" class="navpath">
|
||||
<ul>
|
||||
|
||||
<li class="footer">Generated on Wed Jun 20 2012 16:58:07 for HTML Tidy by
|
||||
<a href="http://www.doxygen.org/index.html">
|
||||
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.0 </li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
|
@ -1,5 +0,0 @@
|
|||
var group__AttrGet =
|
||||
[
|
||||
[ "Deprecated attribute retrieval per AttrId", "group__AttrGetAttributeName.html", "group__AttrGetAttributeName" ],
|
||||
[ "tidyAttrGetById", "group__AttrGet.html#ga5391e01ca5a2b497a7c044a25080468e", null ]
|
||||
];
|
|
@ -1,177 +0,0 @@
|
|||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=9"/>
|
||||
<title>HTML Tidy: Deprecated attribute retrieval per AttrId</title>
|
||||
|
||||
<link href="tabs.css" rel="stylesheet" type="text/css"/>
|
||||
<link href="doxygen.css" rel="stylesheet" type="text/css" />
|
||||
<link href="navtree.css" rel="stylesheet" type="text/css"/>
|
||||
<script type="text/javascript" src="jquery.js"></script>
|
||||
<script type="text/javascript" src="resize.js"></script>
|
||||
<script type="text/javascript" src="navtree.js"></script>
|
||||
<script type="text/javascript">
|
||||
$(document).ready(initResizable);
|
||||
</script>
|
||||
|
||||
|
||||
</head>
|
||||
<body>
|
||||
<div id="top"><!-- do not remove this div! -->
|
||||
|
||||
|
||||
<div id="titlearea">
|
||||
<table cellspacing="0" cellpadding="0">
|
||||
<tbody>
|
||||
<tr style="height: 56px;">
|
||||
|
||||
|
||||
<td style="padding-left: 0.5em;">
|
||||
<div id="projectname">HTML Tidy
|
||||
 <span id="projectnumber">0.1</span>
|
||||
</div>
|
||||
|
||||
</td>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
|
||||
<!-- Generated by Doxygen 1.8.0 -->
|
||||
</div>
|
||||
<div id="side-nav" class="ui-resizable side-nav-resizable">
|
||||
<div id="nav-tree">
|
||||
<div id="nav-tree-contents">
|
||||
</div>
|
||||
</div>
|
||||
<div id="splitbar" style="-moz-user-select:none;"
|
||||
class="ui-resizable-handle">
|
||||
</div>
|
||||
</div>
|
||||
<script type="text/javascript">
|
||||
initNavTree('group__AttrGetAttributeName.html','');
|
||||
</script>
|
||||
<div id="doc-content">
|
||||
<div class="header">
|
||||
<div class="summary">
|
||||
<a href="#func-members">Functions</a> </div>
|
||||
<div class="headertitle">
|
||||
<div class="title">Deprecated attribute retrieval per AttrId</div> </div>
|
||||
<div class="ingroups"><a class="el" href="group__AttrGet.html">Attribute Retrieval</a></div></div><!--header-->
|
||||
<div class="contents">
|
||||
<table class="memberdecls">
|
||||
<tr><td colspan="2"><h2><a name="func-members"></a>
|
||||
Functions</h2></td></tr>
|
||||
<tr class="memitem:ga32edc3c33e5aadcdd83efd60d3ac2a3e"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga32edc3c33e5aadcdd83efd60d3ac2a3e"></a>
|
||||
<a class="el" href="structTidyAttr.html">TidyAttr</a> TIDY_CALL </td><td class="memItemRight" valign="bottom"><b>tidyAttrGetHREF</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
|
||||
<tr class="memitem:ga7869ea78760d5d62509940fc1f2c21ac"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga7869ea78760d5d62509940fc1f2c21ac"></a>
|
||||
<a class="el" href="structTidyAttr.html">TidyAttr</a> TIDY_CALL </td><td class="memItemRight" valign="bottom"><b>tidyAttrGetSRC</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
|
||||
<tr class="memitem:gae3b3b79328600053c21dcb14cbc0ffa8"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gae3b3b79328600053c21dcb14cbc0ffa8"></a>
|
||||
<a class="el" href="structTidyAttr.html">TidyAttr</a> TIDY_CALL </td><td class="memItemRight" valign="bottom"><b>tidyAttrGetID</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
|
||||
<tr class="memitem:gaab8e86c4006c219832438ee0db0daf28"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gaab8e86c4006c219832438ee0db0daf28"></a>
|
||||
<a class="el" href="structTidyAttr.html">TidyAttr</a> TIDY_CALL </td><td class="memItemRight" valign="bottom"><b>tidyAttrGetNAME</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
|
||||
<tr class="memitem:ga8f4d4e6e768186d11e516cc0e6b2407a"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga8f4d4e6e768186d11e516cc0e6b2407a"></a>
|
||||
<a class="el" href="structTidyAttr.html">TidyAttr</a> TIDY_CALL </td><td class="memItemRight" valign="bottom"><b>tidyAttrGetSUMMARY</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
|
||||
<tr class="memitem:ga0b3704beb81b411038692cd6a50a6812"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga0b3704beb81b411038692cd6a50a6812"></a>
|
||||
<a class="el" href="structTidyAttr.html">TidyAttr</a> TIDY_CALL </td><td class="memItemRight" valign="bottom"><b>tidyAttrGetALT</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
|
||||
<tr class="memitem:gafbeef23c8d7946a771c2179e41324e81"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gafbeef23c8d7946a771c2179e41324e81"></a>
|
||||
<a class="el" href="structTidyAttr.html">TidyAttr</a> TIDY_CALL </td><td class="memItemRight" valign="bottom"><b>tidyAttrGetLONGDESC</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
|
||||
<tr class="memitem:ga33e4dde55f16c04f7b2decbbf7b4d4a2"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga33e4dde55f16c04f7b2decbbf7b4d4a2"></a>
|
||||
<a class="el" href="structTidyAttr.html">TidyAttr</a> TIDY_CALL </td><td class="memItemRight" valign="bottom"><b>tidyAttrGetUSEMAP</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
|
||||
<tr class="memitem:ga13d19afccb2d2a369bbf93c6127adb1c"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga13d19afccb2d2a369bbf93c6127adb1c"></a>
|
||||
<a class="el" href="structTidyAttr.html">TidyAttr</a> TIDY_CALL </td><td class="memItemRight" valign="bottom"><b>tidyAttrGetISMAP</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
|
||||
<tr class="memitem:ga643d43c8c735054a60d5443fbed8a240"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga643d43c8c735054a60d5443fbed8a240"></a>
|
||||
<a class="el" href="structTidyAttr.html">TidyAttr</a> TIDY_CALL </td><td class="memItemRight" valign="bottom"><b>tidyAttrGetLANGUAGE</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
|
||||
<tr class="memitem:ga4ad1d50bf2ba65bb32617e2fa2c41c67"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga4ad1d50bf2ba65bb32617e2fa2c41c67"></a>
|
||||
<a class="el" href="structTidyAttr.html">TidyAttr</a> TIDY_CALL </td><td class="memItemRight" valign="bottom"><b>tidyAttrGetTYPE</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
|
||||
<tr class="memitem:ga044e7be2a5353e64aaa4b2a71089e10b"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga044e7be2a5353e64aaa4b2a71089e10b"></a>
|
||||
<a class="el" href="structTidyAttr.html">TidyAttr</a> TIDY_CALL </td><td class="memItemRight" valign="bottom"><b>tidyAttrGetVALUE</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
|
||||
<tr class="memitem:gaf29497f73685e92521ab620f65cb3140"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gaf29497f73685e92521ab620f65cb3140"></a>
|
||||
<a class="el" href="structTidyAttr.html">TidyAttr</a> TIDY_CALL </td><td class="memItemRight" valign="bottom"><b>tidyAttrGetCONTENT</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
|
||||
<tr class="memitem:ga3da405f3a9e87534fd828cf081c58d03"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga3da405f3a9e87534fd828cf081c58d03"></a>
|
||||
<a class="el" href="structTidyAttr.html">TidyAttr</a> TIDY_CALL </td><td class="memItemRight" valign="bottom"><b>tidyAttrGetTITLE</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
|
||||
<tr class="memitem:ga5d1fd6265f41c08ed5427c80316caa03"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga5d1fd6265f41c08ed5427c80316caa03"></a>
|
||||
<a class="el" href="structTidyAttr.html">TidyAttr</a> TIDY_CALL </td><td class="memItemRight" valign="bottom"><b>tidyAttrGetXMLNS</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
|
||||
<tr class="memitem:ga232436e2e4087c67502a12e8782e172e"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga232436e2e4087c67502a12e8782e172e"></a>
|
||||
<a class="el" href="structTidyAttr.html">TidyAttr</a> TIDY_CALL </td><td class="memItemRight" valign="bottom"><b>tidyAttrGetDATAFLD</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
|
||||
<tr class="memitem:ga08bbf26729bf8a3f6c1390d26d3666d0"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga08bbf26729bf8a3f6c1390d26d3666d0"></a>
|
||||
<a class="el" href="structTidyAttr.html">TidyAttr</a> TIDY_CALL </td><td class="memItemRight" valign="bottom"><b>tidyAttrGetWIDTH</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
|
||||
<tr class="memitem:gae148f282af56270d6e811b97268bca64"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gae148f282af56270d6e811b97268bca64"></a>
|
||||
<a class="el" href="structTidyAttr.html">TidyAttr</a> TIDY_CALL </td><td class="memItemRight" valign="bottom"><b>tidyAttrGetHEIGHT</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
|
||||
<tr class="memitem:gafe94b5b5ae7288d6d866f7b82703b82a"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gafe94b5b5ae7288d6d866f7b82703b82a"></a>
|
||||
<a class="el" href="structTidyAttr.html">TidyAttr</a> TIDY_CALL </td><td class="memItemRight" valign="bottom"><b>tidyAttrGetFOR</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
|
||||
<tr class="memitem:ga048e47b2b4c2f14512c3d7f585b2d004"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga048e47b2b4c2f14512c3d7f585b2d004"></a>
|
||||
<a class="el" href="structTidyAttr.html">TidyAttr</a> TIDY_CALL </td><td class="memItemRight" valign="bottom"><b>tidyAttrGetSELECTED</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
|
||||
<tr class="memitem:ga94406af9c9c20b1942cce43c506ecf61"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga94406af9c9c20b1942cce43c506ecf61"></a>
|
||||
<a class="el" href="structTidyAttr.html">TidyAttr</a> TIDY_CALL </td><td class="memItemRight" valign="bottom"><b>tidyAttrGetCHECKED</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
|
||||
<tr class="memitem:ga992d84e0b6b5b3f25c0e40c7b25bd13f"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga992d84e0b6b5b3f25c0e40c7b25bd13f"></a>
|
||||
<a class="el" href="structTidyAttr.html">TidyAttr</a> TIDY_CALL </td><td class="memItemRight" valign="bottom"><b>tidyAttrGetLANG</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
|
||||
<tr class="memitem:gafda31fbe48294c6feeef15449629341a"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gafda31fbe48294c6feeef15449629341a"></a>
|
||||
<a class="el" href="structTidyAttr.html">TidyAttr</a> TIDY_CALL </td><td class="memItemRight" valign="bottom"><b>tidyAttrGetTARGET</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
|
||||
<tr class="memitem:gad023e11b117601b6abdc4373db879d34"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gad023e11b117601b6abdc4373db879d34"></a>
|
||||
<a class="el" href="structTidyAttr.html">TidyAttr</a> TIDY_CALL </td><td class="memItemRight" valign="bottom"><b>tidyAttrGetHTTP_EQUIV</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
|
||||
<tr class="memitem:ga28306ff6130eab4c88fce32674326280"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga28306ff6130eab4c88fce32674326280"></a>
|
||||
<a class="el" href="structTidyAttr.html">TidyAttr</a> TIDY_CALL </td><td class="memItemRight" valign="bottom"><b>tidyAttrGetREL</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
|
||||
<tr class="memitem:ga9fed89179a23ad83c73948c045507095"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga9fed89179a23ad83c73948c045507095"></a>
|
||||
<a class="el" href="structTidyAttr.html">TidyAttr</a> TIDY_CALL </td><td class="memItemRight" valign="bottom"><b>tidyAttrGetOnMOUSEMOVE</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
|
||||
<tr class="memitem:ga5c723febdf97b14e7339dede87b410e7"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga5c723febdf97b14e7339dede87b410e7"></a>
|
||||
<a class="el" href="structTidyAttr.html">TidyAttr</a> TIDY_CALL </td><td class="memItemRight" valign="bottom"><b>tidyAttrGetOnMOUSEDOWN</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
|
||||
<tr class="memitem:gaa218ed968a4b8fa50b43a4a549209077"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gaa218ed968a4b8fa50b43a4a549209077"></a>
|
||||
<a class="el" href="structTidyAttr.html">TidyAttr</a> TIDY_CALL </td><td class="memItemRight" valign="bottom"><b>tidyAttrGetOnMOUSEUP</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
|
||||
<tr class="memitem:ga38fe84b14dafb84b3f40968dc27b86e3"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga38fe84b14dafb84b3f40968dc27b86e3"></a>
|
||||
<a class="el" href="structTidyAttr.html">TidyAttr</a> TIDY_CALL </td><td class="memItemRight" valign="bottom"><b>tidyAttrGetOnCLICK</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
|
||||
<tr class="memitem:ga66be75bf699308d87172e0bf03100363"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga66be75bf699308d87172e0bf03100363"></a>
|
||||
<a class="el" href="structTidyAttr.html">TidyAttr</a> TIDY_CALL </td><td class="memItemRight" valign="bottom"><b>tidyAttrGetOnMOUSEOVER</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
|
||||
<tr class="memitem:ga0b13bb4f3475afbded6e4ae6a2bdcf2b"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga0b13bb4f3475afbded6e4ae6a2bdcf2b"></a>
|
||||
<a class="el" href="structTidyAttr.html">TidyAttr</a> TIDY_CALL </td><td class="memItemRight" valign="bottom"><b>tidyAttrGetOnMOUSEOUT</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
|
||||
<tr class="memitem:gaabfd3fbdaf97f83fe2da402d0cbe9e8e"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gaabfd3fbdaf97f83fe2da402d0cbe9e8e"></a>
|
||||
<a class="el" href="structTidyAttr.html">TidyAttr</a> TIDY_CALL </td><td class="memItemRight" valign="bottom"><b>tidyAttrGetOnKEYDOWN</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
|
||||
<tr class="memitem:ga73473cc4d39d2fd70b860ebebcdc4815"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga73473cc4d39d2fd70b860ebebcdc4815"></a>
|
||||
<a class="el" href="structTidyAttr.html">TidyAttr</a> TIDY_CALL </td><td class="memItemRight" valign="bottom"><b>tidyAttrGetOnKEYUP</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
|
||||
<tr class="memitem:ga6beda5d89c91f6b387929b930832fb57"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga6beda5d89c91f6b387929b930832fb57"></a>
|
||||
<a class="el" href="structTidyAttr.html">TidyAttr</a> TIDY_CALL </td><td class="memItemRight" valign="bottom"><b>tidyAttrGetOnKEYPRESS</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
|
||||
<tr class="memitem:ga4fd4f5b38f99d395b8a7e253cc45ef28"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga4fd4f5b38f99d395b8a7e253cc45ef28"></a>
|
||||
<a class="el" href="structTidyAttr.html">TidyAttr</a> TIDY_CALL </td><td class="memItemRight" valign="bottom"><b>tidyAttrGetOnFOCUS</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
|
||||
<tr class="memitem:ga5a038e1439320c57c983da87efe64c3e"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga5a038e1439320c57c983da87efe64c3e"></a>
|
||||
<a class="el" href="structTidyAttr.html">TidyAttr</a> TIDY_CALL </td><td class="memItemRight" valign="bottom"><b>tidyAttrGetOnBLUR</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
|
||||
<tr class="memitem:gadcde1dd3d87752162067bdac5d2dd785"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gadcde1dd3d87752162067bdac5d2dd785"></a>
|
||||
<a class="el" href="structTidyAttr.html">TidyAttr</a> TIDY_CALL </td><td class="memItemRight" valign="bottom"><b>tidyAttrGetBGCOLOR</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
|
||||
<tr class="memitem:gae8e7d8d65a20f14d6aa875493b195329"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gae8e7d8d65a20f14d6aa875493b195329"></a>
|
||||
<a class="el" href="structTidyAttr.html">TidyAttr</a> TIDY_CALL </td><td class="memItemRight" valign="bottom"><b>tidyAttrGetLINK</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
|
||||
<tr class="memitem:ga49e3f791908e26561566587b0f15b37d"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga49e3f791908e26561566587b0f15b37d"></a>
|
||||
<a class="el" href="structTidyAttr.html">TidyAttr</a> TIDY_CALL </td><td class="memItemRight" valign="bottom"><b>tidyAttrGetALINK</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
|
||||
<tr class="memitem:gae46a7c41114c29766f9fa95c10b36f9d"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gae46a7c41114c29766f9fa95c10b36f9d"></a>
|
||||
<a class="el" href="structTidyAttr.html">TidyAttr</a> TIDY_CALL </td><td class="memItemRight" valign="bottom"><b>tidyAttrGetVLINK</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
|
||||
<tr class="memitem:ga5c4b94ac9cfcbd403ce02690c9196388"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga5c4b94ac9cfcbd403ce02690c9196388"></a>
|
||||
<a class="el" href="structTidyAttr.html">TidyAttr</a> TIDY_CALL </td><td class="memItemRight" valign="bottom"><b>tidyAttrGetTEXT</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
|
||||
<tr class="memitem:gaa90006fbac322f2577db885c913c7d19"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gaa90006fbac322f2577db885c913c7d19"></a>
|
||||
<a class="el" href="structTidyAttr.html">TidyAttr</a> TIDY_CALL </td><td class="memItemRight" valign="bottom"><b>tidyAttrGetSTYLE</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
|
||||
<tr class="memitem:gaae1595d000373dd64c9dfe0a89d03597"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gaae1595d000373dd64c9dfe0a89d03597"></a>
|
||||
<a class="el" href="structTidyAttr.html">TidyAttr</a> TIDY_CALL </td><td class="memItemRight" valign="bottom"><b>tidyAttrGetABBR</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
|
||||
<tr class="memitem:gafd6746350a6e8d7e324d0c309777f059"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gafd6746350a6e8d7e324d0c309777f059"></a>
|
||||
<a class="el" href="structTidyAttr.html">TidyAttr</a> TIDY_CALL </td><td class="memItemRight" valign="bottom"><b>tidyAttrGetCOLSPAN</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
|
||||
<tr class="memitem:ga837b3be1dc949e7989dcbf25deaf5b36"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga837b3be1dc949e7989dcbf25deaf5b36"></a>
|
||||
<a class="el" href="structTidyAttr.html">TidyAttr</a> TIDY_CALL </td><td class="memItemRight" valign="bottom"><b>tidyAttrGetROWSPAN</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
|
||||
</table>
|
||||
<hr/><a name="details" id="details"></a><h2>Detailed Description</h2>
|
||||
<dl class="deprecated"><dt><b><a class="el" href="deprecated.html#_deprecated000003">Deprecated:</a></b></dt><dd>The functions tidyAttrGet{AttributeName} are deprecated and should be replaced by tidyAttrGetById. For instance, tidyAttrGetID( TidyNode tnod ) can be replaced by tidyAttrGetById( TidyNode tnod, TidyAttr_ID ). This avoids a potential name clash with tidyAttrGetId for case-insensitive languages.</dd></dl>
|
||||
</div><!-- contents -->
|
||||
</div>
|
||||
<div id="nav-path" class="navpath">
|
||||
<ul>
|
||||
|
||||
<li class="footer">Generated on Wed Jun 20 2012 16:58:07 for HTML Tidy by
|
||||
<a href="http://www.doxygen.org/index.html">
|
||||
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.0 </li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
|
@ -1,48 +0,0 @@
|
|||
var group__AttrGetAttributeName =
|
||||
[
|
||||
[ "tidyAttrGetHREF", "group__AttrGetAttributeName.html#ga32edc3c33e5aadcdd83efd60d3ac2a3e", null ],
|
||||
[ "tidyAttrGetSRC", "group__AttrGetAttributeName.html#ga7869ea78760d5d62509940fc1f2c21ac", null ],
|
||||
[ "tidyAttrGetID", "group__AttrGetAttributeName.html#gae3b3b79328600053c21dcb14cbc0ffa8", null ],
|
||||
[ "tidyAttrGetNAME", "group__AttrGetAttributeName.html#gaab8e86c4006c219832438ee0db0daf28", null ],
|
||||
[ "tidyAttrGetSUMMARY", "group__AttrGetAttributeName.html#ga8f4d4e6e768186d11e516cc0e6b2407a", null ],
|
||||
[ "tidyAttrGetALT", "group__AttrGetAttributeName.html#ga0b3704beb81b411038692cd6a50a6812", null ],
|
||||
[ "tidyAttrGetLONGDESC", "group__AttrGetAttributeName.html#gafbeef23c8d7946a771c2179e41324e81", null ],
|
||||
[ "tidyAttrGetUSEMAP", "group__AttrGetAttributeName.html#ga33e4dde55f16c04f7b2decbbf7b4d4a2", null ],
|
||||
[ "tidyAttrGetISMAP", "group__AttrGetAttributeName.html#ga13d19afccb2d2a369bbf93c6127adb1c", null ],
|
||||
[ "tidyAttrGetLANGUAGE", "group__AttrGetAttributeName.html#ga643d43c8c735054a60d5443fbed8a240", null ],
|
||||
[ "tidyAttrGetTYPE", "group__AttrGetAttributeName.html#ga4ad1d50bf2ba65bb32617e2fa2c41c67", null ],
|
||||
[ "tidyAttrGetVALUE", "group__AttrGetAttributeName.html#ga044e7be2a5353e64aaa4b2a71089e10b", null ],
|
||||
[ "tidyAttrGetCONTENT", "group__AttrGetAttributeName.html#gaf29497f73685e92521ab620f65cb3140", null ],
|
||||
[ "tidyAttrGetTITLE", "group__AttrGetAttributeName.html#ga3da405f3a9e87534fd828cf081c58d03", null ],
|
||||
[ "tidyAttrGetXMLNS", "group__AttrGetAttributeName.html#ga5d1fd6265f41c08ed5427c80316caa03", null ],
|
||||
[ "tidyAttrGetDATAFLD", "group__AttrGetAttributeName.html#ga232436e2e4087c67502a12e8782e172e", null ],
|
||||
[ "tidyAttrGetWIDTH", "group__AttrGetAttributeName.html#ga08bbf26729bf8a3f6c1390d26d3666d0", null ],
|
||||
[ "tidyAttrGetHEIGHT", "group__AttrGetAttributeName.html#gae148f282af56270d6e811b97268bca64", null ],
|
||||
[ "tidyAttrGetFOR", "group__AttrGetAttributeName.html#gafe94b5b5ae7288d6d866f7b82703b82a", null ],
|
||||
[ "tidyAttrGetSELECTED", "group__AttrGetAttributeName.html#ga048e47b2b4c2f14512c3d7f585b2d004", null ],
|
||||
[ "tidyAttrGetCHECKED", "group__AttrGetAttributeName.html#ga94406af9c9c20b1942cce43c506ecf61", null ],
|
||||
[ "tidyAttrGetLANG", "group__AttrGetAttributeName.html#ga992d84e0b6b5b3f25c0e40c7b25bd13f", null ],
|
||||
[ "tidyAttrGetTARGET", "group__AttrGetAttributeName.html#gafda31fbe48294c6feeef15449629341a", null ],
|
||||
[ "tidyAttrGetHTTP_EQUIV", "group__AttrGetAttributeName.html#gad023e11b117601b6abdc4373db879d34", null ],
|
||||
[ "tidyAttrGetREL", "group__AttrGetAttributeName.html#ga28306ff6130eab4c88fce32674326280", null ],
|
||||
[ "tidyAttrGetOnMOUSEMOVE", "group__AttrGetAttributeName.html#ga9fed89179a23ad83c73948c045507095", null ],
|
||||
[ "tidyAttrGetOnMOUSEDOWN", "group__AttrGetAttributeName.html#ga5c723febdf97b14e7339dede87b410e7", null ],
|
||||
[ "tidyAttrGetOnMOUSEUP", "group__AttrGetAttributeName.html#gaa218ed968a4b8fa50b43a4a549209077", null ],
|
||||
[ "tidyAttrGetOnCLICK", "group__AttrGetAttributeName.html#ga38fe84b14dafb84b3f40968dc27b86e3", null ],
|
||||
[ "tidyAttrGetOnMOUSEOVER", "group__AttrGetAttributeName.html#ga66be75bf699308d87172e0bf03100363", null ],
|
||||
[ "tidyAttrGetOnMOUSEOUT", "group__AttrGetAttributeName.html#ga0b13bb4f3475afbded6e4ae6a2bdcf2b", null ],
|
||||
[ "tidyAttrGetOnKEYDOWN", "group__AttrGetAttributeName.html#gaabfd3fbdaf97f83fe2da402d0cbe9e8e", null ],
|
||||
[ "tidyAttrGetOnKEYUP", "group__AttrGetAttributeName.html#ga73473cc4d39d2fd70b860ebebcdc4815", null ],
|
||||
[ "tidyAttrGetOnKEYPRESS", "group__AttrGetAttributeName.html#ga6beda5d89c91f6b387929b930832fb57", null ],
|
||||
[ "tidyAttrGetOnFOCUS", "group__AttrGetAttributeName.html#ga4fd4f5b38f99d395b8a7e253cc45ef28", null ],
|
||||
[ "tidyAttrGetOnBLUR", "group__AttrGetAttributeName.html#ga5a038e1439320c57c983da87efe64c3e", null ],
|
||||
[ "tidyAttrGetBGCOLOR", "group__AttrGetAttributeName.html#gadcde1dd3d87752162067bdac5d2dd785", null ],
|
||||
[ "tidyAttrGetLINK", "group__AttrGetAttributeName.html#gae8e7d8d65a20f14d6aa875493b195329", null ],
|
||||
[ "tidyAttrGetALINK", "group__AttrGetAttributeName.html#ga49e3f791908e26561566587b0f15b37d", null ],
|
||||
[ "tidyAttrGetVLINK", "group__AttrGetAttributeName.html#gae46a7c41114c29766f9fa95c10b36f9d", null ],
|
||||
[ "tidyAttrGetTEXT", "group__AttrGetAttributeName.html#ga5c4b94ac9cfcbd403ce02690c9196388", null ],
|
||||
[ "tidyAttrGetSTYLE", "group__AttrGetAttributeName.html#gaa90006fbac322f2577db885c913c7d19", null ],
|
||||
[ "tidyAttrGetABBR", "group__AttrGetAttributeName.html#gaae1595d000373dd64c9dfe0a89d03597", null ],
|
||||
[ "tidyAttrGetCOLSPAN", "group__AttrGetAttributeName.html#gafd6746350a6e8d7e324d0c309777f059", null ],
|
||||
[ "tidyAttrGetROWSPAN", "group__AttrGetAttributeName.html#ga837b3be1dc949e7989dcbf25deaf5b36", null ]
|
||||
];
|
|
@ -1,177 +0,0 @@
|
|||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=9"/>
|
||||
<title>HTML Tidy: Deprecated attribute interrogation per AttrId</title>
|
||||
|
||||
<link href="tabs.css" rel="stylesheet" type="text/css"/>
|
||||
<link href="doxygen.css" rel="stylesheet" type="text/css" />
|
||||
<link href="navtree.css" rel="stylesheet" type="text/css"/>
|
||||
<script type="text/javascript" src="jquery.js"></script>
|
||||
<script type="text/javascript" src="resize.js"></script>
|
||||
<script type="text/javascript" src="navtree.js"></script>
|
||||
<script type="text/javascript">
|
||||
$(document).ready(initResizable);
|
||||
</script>
|
||||
|
||||
|
||||
</head>
|
||||
<body>
|
||||
<div id="top"><!-- do not remove this div! -->
|
||||
|
||||
|
||||
<div id="titlearea">
|
||||
<table cellspacing="0" cellpadding="0">
|
||||
<tbody>
|
||||
<tr style="height: 56px;">
|
||||
|
||||
|
||||
<td style="padding-left: 0.5em;">
|
||||
<div id="projectname">HTML Tidy
|
||||
 <span id="projectnumber">0.1</span>
|
||||
</div>
|
||||
|
||||
</td>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
|
||||
<!-- Generated by Doxygen 1.8.0 -->
|
||||
</div>
|
||||
<div id="side-nav" class="ui-resizable side-nav-resizable">
|
||||
<div id="nav-tree">
|
||||
<div id="nav-tree-contents">
|
||||
</div>
|
||||
</div>
|
||||
<div id="splitbar" style="-moz-user-select:none;"
|
||||
class="ui-resizable-handle">
|
||||
</div>
|
||||
</div>
|
||||
<script type="text/javascript">
|
||||
initNavTree('group__AttrIsAttributeName.html','');
|
||||
</script>
|
||||
<div id="doc-content">
|
||||
<div class="header">
|
||||
<div class="summary">
|
||||
<a href="#func-members">Functions</a> </div>
|
||||
<div class="headertitle">
|
||||
<div class="title">Deprecated attribute interrogation per AttrId</div> </div>
|
||||
<div class="ingroups"><a class="el" href="group__Attribute.html">Attribute Interrogation</a></div></div><!--header-->
|
||||
<div class="contents">
|
||||
<table class="memberdecls">
|
||||
<tr><td colspan="2"><h2><a name="func-members"></a>
|
||||
Functions</h2></td></tr>
|
||||
<tr class="memitem:ga7c5dab5750d48c0849fb5afddcaf6ef1"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga7c5dab5750d48c0849fb5afddcaf6ef1"></a>
|
||||
Bool TIDY_CALL </td><td class="memItemRight" valign="bottom"><b>tidyAttrIsHREF</b> (<a class="el" href="structTidyAttr.html">TidyAttr</a> tattr)</td></tr>
|
||||
<tr class="memitem:ga9e42faa67c4c67d1f20b17494bcd85ae"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga9e42faa67c4c67d1f20b17494bcd85ae"></a>
|
||||
Bool TIDY_CALL </td><td class="memItemRight" valign="bottom"><b>tidyAttrIsSRC</b> (<a class="el" href="structTidyAttr.html">TidyAttr</a> tattr)</td></tr>
|
||||
<tr class="memitem:ga40eb7812272130ee672347252f8d2803"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga40eb7812272130ee672347252f8d2803"></a>
|
||||
Bool TIDY_CALL </td><td class="memItemRight" valign="bottom"><b>tidyAttrIsID</b> (<a class="el" href="structTidyAttr.html">TidyAttr</a> tattr)</td></tr>
|
||||
<tr class="memitem:ga30a54710b484eac706e936a69fb95e29"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga30a54710b484eac706e936a69fb95e29"></a>
|
||||
Bool TIDY_CALL </td><td class="memItemRight" valign="bottom"><b>tidyAttrIsNAME</b> (<a class="el" href="structTidyAttr.html">TidyAttr</a> tattr)</td></tr>
|
||||
<tr class="memitem:gab2b19098f9cf2e7c74d8b424e086df43"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gab2b19098f9cf2e7c74d8b424e086df43"></a>
|
||||
Bool TIDY_CALL </td><td class="memItemRight" valign="bottom"><b>tidyAttrIsSUMMARY</b> (<a class="el" href="structTidyAttr.html">TidyAttr</a> tattr)</td></tr>
|
||||
<tr class="memitem:gad621c0fd59bdacd162dfdd769a62ef27"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gad621c0fd59bdacd162dfdd769a62ef27"></a>
|
||||
Bool TIDY_CALL </td><td class="memItemRight" valign="bottom"><b>tidyAttrIsALT</b> (<a class="el" href="structTidyAttr.html">TidyAttr</a> tattr)</td></tr>
|
||||
<tr class="memitem:ga0a99b0a5db896cb47c8b40ef110370c8"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga0a99b0a5db896cb47c8b40ef110370c8"></a>
|
||||
Bool TIDY_CALL </td><td class="memItemRight" valign="bottom"><b>tidyAttrIsLONGDESC</b> (<a class="el" href="structTidyAttr.html">TidyAttr</a> tattr)</td></tr>
|
||||
<tr class="memitem:gaeb125294c12e461615f32d9ffdb9bbd7"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gaeb125294c12e461615f32d9ffdb9bbd7"></a>
|
||||
Bool TIDY_CALL </td><td class="memItemRight" valign="bottom"><b>tidyAttrIsUSEMAP</b> (<a class="el" href="structTidyAttr.html">TidyAttr</a> tattr)</td></tr>
|
||||
<tr class="memitem:ga33c5307a710a27f636ca150112de3f7b"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga33c5307a710a27f636ca150112de3f7b"></a>
|
||||
Bool TIDY_CALL </td><td class="memItemRight" valign="bottom"><b>tidyAttrIsISMAP</b> (<a class="el" href="structTidyAttr.html">TidyAttr</a> tattr)</td></tr>
|
||||
<tr class="memitem:gac903236acff81674020778300c3a3862"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gac903236acff81674020778300c3a3862"></a>
|
||||
Bool TIDY_CALL </td><td class="memItemRight" valign="bottom"><b>tidyAttrIsLANGUAGE</b> (<a class="el" href="structTidyAttr.html">TidyAttr</a> tattr)</td></tr>
|
||||
<tr class="memitem:ga7a9c5c70693337edf09b36f483229fe5"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga7a9c5c70693337edf09b36f483229fe5"></a>
|
||||
Bool TIDY_CALL </td><td class="memItemRight" valign="bottom"><b>tidyAttrIsTYPE</b> (<a class="el" href="structTidyAttr.html">TidyAttr</a> tattr)</td></tr>
|
||||
<tr class="memitem:ga9454a023bc9f5663c56b8404ec8406c8"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga9454a023bc9f5663c56b8404ec8406c8"></a>
|
||||
Bool TIDY_CALL </td><td class="memItemRight" valign="bottom"><b>tidyAttrIsVALUE</b> (<a class="el" href="structTidyAttr.html">TidyAttr</a> tattr)</td></tr>
|
||||
<tr class="memitem:gac97bd371ff8401f13a333273e5e3bf22"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gac97bd371ff8401f13a333273e5e3bf22"></a>
|
||||
Bool TIDY_CALL </td><td class="memItemRight" valign="bottom"><b>tidyAttrIsCONTENT</b> (<a class="el" href="structTidyAttr.html">TidyAttr</a> tattr)</td></tr>
|
||||
<tr class="memitem:ga6a47ddd81d777ff5a086bedc4e951040"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga6a47ddd81d777ff5a086bedc4e951040"></a>
|
||||
Bool TIDY_CALL </td><td class="memItemRight" valign="bottom"><b>tidyAttrIsTITLE</b> (<a class="el" href="structTidyAttr.html">TidyAttr</a> tattr)</td></tr>
|
||||
<tr class="memitem:ga1147ae3c7c35ba4d4241832733859b78"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga1147ae3c7c35ba4d4241832733859b78"></a>
|
||||
Bool TIDY_CALL </td><td class="memItemRight" valign="bottom"><b>tidyAttrIsXMLNS</b> (<a class="el" href="structTidyAttr.html">TidyAttr</a> tattr)</td></tr>
|
||||
<tr class="memitem:ga3e3baf9e8a4ebe112b1865f3eb4b51fe"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga3e3baf9e8a4ebe112b1865f3eb4b51fe"></a>
|
||||
Bool TIDY_CALL </td><td class="memItemRight" valign="bottom"><b>tidyAttrIsDATAFLD</b> (<a class="el" href="structTidyAttr.html">TidyAttr</a> tattr)</td></tr>
|
||||
<tr class="memitem:ga7c62cdc314ebba251cf25f0eeec02f56"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga7c62cdc314ebba251cf25f0eeec02f56"></a>
|
||||
Bool TIDY_CALL </td><td class="memItemRight" valign="bottom"><b>tidyAttrIsWIDTH</b> (<a class="el" href="structTidyAttr.html">TidyAttr</a> tattr)</td></tr>
|
||||
<tr class="memitem:gaeb9e235fbc570a2fd73584e9c5a992be"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gaeb9e235fbc570a2fd73584e9c5a992be"></a>
|
||||
Bool TIDY_CALL </td><td class="memItemRight" valign="bottom"><b>tidyAttrIsHEIGHT</b> (<a class="el" href="structTidyAttr.html">TidyAttr</a> tattr)</td></tr>
|
||||
<tr class="memitem:ga9eb541ed5e3b751a5d1fc1350443b5e6"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga9eb541ed5e3b751a5d1fc1350443b5e6"></a>
|
||||
Bool TIDY_CALL </td><td class="memItemRight" valign="bottom"><b>tidyAttrIsFOR</b> (<a class="el" href="structTidyAttr.html">TidyAttr</a> tattr)</td></tr>
|
||||
<tr class="memitem:ga8a6824904535e40e3bdc2b17c4cf9dd2"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga8a6824904535e40e3bdc2b17c4cf9dd2"></a>
|
||||
Bool TIDY_CALL </td><td class="memItemRight" valign="bottom"><b>tidyAttrIsSELECTED</b> (<a class="el" href="structTidyAttr.html">TidyAttr</a> tattr)</td></tr>
|
||||
<tr class="memitem:gae55a371bf3b146788b217be62499aa35"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gae55a371bf3b146788b217be62499aa35"></a>
|
||||
Bool TIDY_CALL </td><td class="memItemRight" valign="bottom"><b>tidyAttrIsCHECKED</b> (<a class="el" href="structTidyAttr.html">TidyAttr</a> tattr)</td></tr>
|
||||
<tr class="memitem:gae8f47e206721fffc4eda7ca4af79e01e"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gae8f47e206721fffc4eda7ca4af79e01e"></a>
|
||||
Bool TIDY_CALL </td><td class="memItemRight" valign="bottom"><b>tidyAttrIsLANG</b> (<a class="el" href="structTidyAttr.html">TidyAttr</a> tattr)</td></tr>
|
||||
<tr class="memitem:ga315f297329d38bd0b69307e329699bd6"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga315f297329d38bd0b69307e329699bd6"></a>
|
||||
Bool TIDY_CALL </td><td class="memItemRight" valign="bottom"><b>tidyAttrIsTARGET</b> (<a class="el" href="structTidyAttr.html">TidyAttr</a> tattr)</td></tr>
|
||||
<tr class="memitem:gaee94d3e34dd79b67e82c738e35076818"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gaee94d3e34dd79b67e82c738e35076818"></a>
|
||||
Bool TIDY_CALL </td><td class="memItemRight" valign="bottom"><b>tidyAttrIsHTTP_EQUIV</b> (<a class="el" href="structTidyAttr.html">TidyAttr</a> tattr)</td></tr>
|
||||
<tr class="memitem:ga58a482b3e743570dcb88b64b9c93f172"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga58a482b3e743570dcb88b64b9c93f172"></a>
|
||||
Bool TIDY_CALL </td><td class="memItemRight" valign="bottom"><b>tidyAttrIsREL</b> (<a class="el" href="structTidyAttr.html">TidyAttr</a> tattr)</td></tr>
|
||||
<tr class="memitem:gad69f1e1cf8a7cf6d70359b7344839e79"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gad69f1e1cf8a7cf6d70359b7344839e79"></a>
|
||||
Bool TIDY_CALL </td><td class="memItemRight" valign="bottom"><b>tidyAttrIsOnMOUSEMOVE</b> (<a class="el" href="structTidyAttr.html">TidyAttr</a> tattr)</td></tr>
|
||||
<tr class="memitem:ga1df15af0e642d1c1bd1bbc64ffd894e9"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga1df15af0e642d1c1bd1bbc64ffd894e9"></a>
|
||||
Bool TIDY_CALL </td><td class="memItemRight" valign="bottom"><b>tidyAttrIsOnMOUSEDOWN</b> (<a class="el" href="structTidyAttr.html">TidyAttr</a> tattr)</td></tr>
|
||||
<tr class="memitem:ga71c648c7d945d5d1a1da686813ef4149"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga71c648c7d945d5d1a1da686813ef4149"></a>
|
||||
Bool TIDY_CALL </td><td class="memItemRight" valign="bottom"><b>tidyAttrIsOnMOUSEUP</b> (<a class="el" href="structTidyAttr.html">TidyAttr</a> tattr)</td></tr>
|
||||
<tr class="memitem:ga4e70306e72db98316ff36c07058667ec"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga4e70306e72db98316ff36c07058667ec"></a>
|
||||
Bool TIDY_CALL </td><td class="memItemRight" valign="bottom"><b>tidyAttrIsOnCLICK</b> (<a class="el" href="structTidyAttr.html">TidyAttr</a> tattr)</td></tr>
|
||||
<tr class="memitem:gadea7c51060ca59643fe1c4be493f70f8"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gadea7c51060ca59643fe1c4be493f70f8"></a>
|
||||
Bool TIDY_CALL </td><td class="memItemRight" valign="bottom"><b>tidyAttrIsOnMOUSEOVER</b> (<a class="el" href="structTidyAttr.html">TidyAttr</a> tattr)</td></tr>
|
||||
<tr class="memitem:gadba041c3573d5457fbee24356d4f59fc"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gadba041c3573d5457fbee24356d4f59fc"></a>
|
||||
Bool TIDY_CALL </td><td class="memItemRight" valign="bottom"><b>tidyAttrIsOnMOUSEOUT</b> (<a class="el" href="structTidyAttr.html">TidyAttr</a> tattr)</td></tr>
|
||||
<tr class="memitem:ga5699e85b46e535b657c70b47306a08db"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga5699e85b46e535b657c70b47306a08db"></a>
|
||||
Bool TIDY_CALL </td><td class="memItemRight" valign="bottom"><b>tidyAttrIsOnKEYDOWN</b> (<a class="el" href="structTidyAttr.html">TidyAttr</a> tattr)</td></tr>
|
||||
<tr class="memitem:gaf4d69efe322c065fef448b5d5b48b8f7"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gaf4d69efe322c065fef448b5d5b48b8f7"></a>
|
||||
Bool TIDY_CALL </td><td class="memItemRight" valign="bottom"><b>tidyAttrIsOnKEYUP</b> (<a class="el" href="structTidyAttr.html">TidyAttr</a> tattr)</td></tr>
|
||||
<tr class="memitem:ga9b08c6cf7ec3f3605722486c4ba42b4f"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga9b08c6cf7ec3f3605722486c4ba42b4f"></a>
|
||||
Bool TIDY_CALL </td><td class="memItemRight" valign="bottom"><b>tidyAttrIsOnKEYPRESS</b> (<a class="el" href="structTidyAttr.html">TidyAttr</a> tattr)</td></tr>
|
||||
<tr class="memitem:ga54437cfd33daef01fd9d9e63b79a20f5"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga54437cfd33daef01fd9d9e63b79a20f5"></a>
|
||||
Bool TIDY_CALL </td><td class="memItemRight" valign="bottom"><b>tidyAttrIsOnFOCUS</b> (<a class="el" href="structTidyAttr.html">TidyAttr</a> tattr)</td></tr>
|
||||
<tr class="memitem:gab704326c008f437a30878b8dd632ecca"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gab704326c008f437a30878b8dd632ecca"></a>
|
||||
Bool TIDY_CALL </td><td class="memItemRight" valign="bottom"><b>tidyAttrIsOnBLUR</b> (<a class="el" href="structTidyAttr.html">TidyAttr</a> tattr)</td></tr>
|
||||
<tr class="memitem:gad75eb36382a280b90761cba07fcf1895"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gad75eb36382a280b90761cba07fcf1895"></a>
|
||||
Bool TIDY_CALL </td><td class="memItemRight" valign="bottom"><b>tidyAttrIsBGCOLOR</b> (<a class="el" href="structTidyAttr.html">TidyAttr</a> tattr)</td></tr>
|
||||
<tr class="memitem:ga5d88a7dcf98264502e1a2a18014f58a7"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga5d88a7dcf98264502e1a2a18014f58a7"></a>
|
||||
Bool TIDY_CALL </td><td class="memItemRight" valign="bottom"><b>tidyAttrIsLINK</b> (<a class="el" href="structTidyAttr.html">TidyAttr</a> tattr)</td></tr>
|
||||
<tr class="memitem:ga73acdbe07d9f4263897c2d7ef2f55a8d"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga73acdbe07d9f4263897c2d7ef2f55a8d"></a>
|
||||
Bool TIDY_CALL </td><td class="memItemRight" valign="bottom"><b>tidyAttrIsALINK</b> (<a class="el" href="structTidyAttr.html">TidyAttr</a> tattr)</td></tr>
|
||||
<tr class="memitem:ga502ead90e7b121fd1ae1b034a2a046da"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga502ead90e7b121fd1ae1b034a2a046da"></a>
|
||||
Bool TIDY_CALL </td><td class="memItemRight" valign="bottom"><b>tidyAttrIsVLINK</b> (<a class="el" href="structTidyAttr.html">TidyAttr</a> tattr)</td></tr>
|
||||
<tr class="memitem:ga7c6fde56b1bb05a07043ac1b69a72db8"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga7c6fde56b1bb05a07043ac1b69a72db8"></a>
|
||||
Bool TIDY_CALL </td><td class="memItemRight" valign="bottom"><b>tidyAttrIsTEXT</b> (<a class="el" href="structTidyAttr.html">TidyAttr</a> tattr)</td></tr>
|
||||
<tr class="memitem:ga93224d5a31b94c82a4f97577338c3a59"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga93224d5a31b94c82a4f97577338c3a59"></a>
|
||||
Bool TIDY_CALL </td><td class="memItemRight" valign="bottom"><b>tidyAttrIsSTYLE</b> (<a class="el" href="structTidyAttr.html">TidyAttr</a> tattr)</td></tr>
|
||||
<tr class="memitem:ga763c7d67faa40b48a0485d4aaeddf694"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga763c7d67faa40b48a0485d4aaeddf694"></a>
|
||||
Bool TIDY_CALL </td><td class="memItemRight" valign="bottom"><b>tidyAttrIsABBR</b> (<a class="el" href="structTidyAttr.html">TidyAttr</a> tattr)</td></tr>
|
||||
<tr class="memitem:ga69119cd18a1fb79bb02b78f8bf145f81"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga69119cd18a1fb79bb02b78f8bf145f81"></a>
|
||||
Bool TIDY_CALL </td><td class="memItemRight" valign="bottom"><b>tidyAttrIsCOLSPAN</b> (<a class="el" href="structTidyAttr.html">TidyAttr</a> tattr)</td></tr>
|
||||
<tr class="memitem:gaee7e2dfe999d6831d3af1e826dcf3c22"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gaee7e2dfe999d6831d3af1e826dcf3c22"></a>
|
||||
Bool TIDY_CALL </td><td class="memItemRight" valign="bottom"><b>tidyAttrIsROWSPAN</b> (<a class="el" href="structTidyAttr.html">TidyAttr</a> tattr)</td></tr>
|
||||
</table>
|
||||
<hr/><a name="details" id="details"></a><h2>Detailed Description</h2>
|
||||
<dl class="deprecated"><dt><b><a class="el" href="deprecated.html#_deprecated000002">Deprecated:</a></b></dt><dd>The functions tidyAttrIs{AttributeName} are deprecated and should be replaced by tidyAttrGetId.</dd></dl>
|
||||
</div><!-- contents -->
|
||||
</div>
|
||||
<div id="nav-path" class="navpath">
|
||||
<ul>
|
||||
|
||||
<li class="footer">Generated on Wed Jun 20 2012 16:58:07 for HTML Tidy by
|
||||
<a href="http://www.doxygen.org/index.html">
|
||||
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.0 </li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
|
@ -1,48 +0,0 @@
|
|||
var group__AttrIsAttributeName =
|
||||
[
|
||||
[ "tidyAttrIsHREF", "group__AttrIsAttributeName.html#ga7c5dab5750d48c0849fb5afddcaf6ef1", null ],
|
||||
[ "tidyAttrIsSRC", "group__AttrIsAttributeName.html#ga9e42faa67c4c67d1f20b17494bcd85ae", null ],
|
||||
[ "tidyAttrIsID", "group__AttrIsAttributeName.html#ga40eb7812272130ee672347252f8d2803", null ],
|
||||
[ "tidyAttrIsNAME", "group__AttrIsAttributeName.html#ga30a54710b484eac706e936a69fb95e29", null ],
|
||||
[ "tidyAttrIsSUMMARY", "group__AttrIsAttributeName.html#gab2b19098f9cf2e7c74d8b424e086df43", null ],
|
||||
[ "tidyAttrIsALT", "group__AttrIsAttributeName.html#gad621c0fd59bdacd162dfdd769a62ef27", null ],
|
||||
[ "tidyAttrIsLONGDESC", "group__AttrIsAttributeName.html#ga0a99b0a5db896cb47c8b40ef110370c8", null ],
|
||||
[ "tidyAttrIsUSEMAP", "group__AttrIsAttributeName.html#gaeb125294c12e461615f32d9ffdb9bbd7", null ],
|
||||
[ "tidyAttrIsISMAP", "group__AttrIsAttributeName.html#ga33c5307a710a27f636ca150112de3f7b", null ],
|
||||
[ "tidyAttrIsLANGUAGE", "group__AttrIsAttributeName.html#gac903236acff81674020778300c3a3862", null ],
|
||||
[ "tidyAttrIsTYPE", "group__AttrIsAttributeName.html#ga7a9c5c70693337edf09b36f483229fe5", null ],
|
||||
[ "tidyAttrIsVALUE", "group__AttrIsAttributeName.html#ga9454a023bc9f5663c56b8404ec8406c8", null ],
|
||||
[ "tidyAttrIsCONTENT", "group__AttrIsAttributeName.html#gac97bd371ff8401f13a333273e5e3bf22", null ],
|
||||
[ "tidyAttrIsTITLE", "group__AttrIsAttributeName.html#ga6a47ddd81d777ff5a086bedc4e951040", null ],
|
||||
[ "tidyAttrIsXMLNS", "group__AttrIsAttributeName.html#ga1147ae3c7c35ba4d4241832733859b78", null ],
|
||||
[ "tidyAttrIsDATAFLD", "group__AttrIsAttributeName.html#ga3e3baf9e8a4ebe112b1865f3eb4b51fe", null ],
|
||||
[ "tidyAttrIsWIDTH", "group__AttrIsAttributeName.html#ga7c62cdc314ebba251cf25f0eeec02f56", null ],
|
||||
[ "tidyAttrIsHEIGHT", "group__AttrIsAttributeName.html#gaeb9e235fbc570a2fd73584e9c5a992be", null ],
|
||||
[ "tidyAttrIsFOR", "group__AttrIsAttributeName.html#ga9eb541ed5e3b751a5d1fc1350443b5e6", null ],
|
||||
[ "tidyAttrIsSELECTED", "group__AttrIsAttributeName.html#ga8a6824904535e40e3bdc2b17c4cf9dd2", null ],
|
||||
[ "tidyAttrIsCHECKED", "group__AttrIsAttributeName.html#gae55a371bf3b146788b217be62499aa35", null ],
|
||||
[ "tidyAttrIsLANG", "group__AttrIsAttributeName.html#gae8f47e206721fffc4eda7ca4af79e01e", null ],
|
||||
[ "tidyAttrIsTARGET", "group__AttrIsAttributeName.html#ga315f297329d38bd0b69307e329699bd6", null ],
|
||||
[ "tidyAttrIsHTTP_EQUIV", "group__AttrIsAttributeName.html#gaee94d3e34dd79b67e82c738e35076818", null ],
|
||||
[ "tidyAttrIsREL", "group__AttrIsAttributeName.html#ga58a482b3e743570dcb88b64b9c93f172", null ],
|
||||
[ "tidyAttrIsOnMOUSEMOVE", "group__AttrIsAttributeName.html#gad69f1e1cf8a7cf6d70359b7344839e79", null ],
|
||||
[ "tidyAttrIsOnMOUSEDOWN", "group__AttrIsAttributeName.html#ga1df15af0e642d1c1bd1bbc64ffd894e9", null ],
|
||||
[ "tidyAttrIsOnMOUSEUP", "group__AttrIsAttributeName.html#ga71c648c7d945d5d1a1da686813ef4149", null ],
|
||||
[ "tidyAttrIsOnCLICK", "group__AttrIsAttributeName.html#ga4e70306e72db98316ff36c07058667ec", null ],
|
||||
[ "tidyAttrIsOnMOUSEOVER", "group__AttrIsAttributeName.html#gadea7c51060ca59643fe1c4be493f70f8", null ],
|
||||
[ "tidyAttrIsOnMOUSEOUT", "group__AttrIsAttributeName.html#gadba041c3573d5457fbee24356d4f59fc", null ],
|
||||
[ "tidyAttrIsOnKEYDOWN", "group__AttrIsAttributeName.html#ga5699e85b46e535b657c70b47306a08db", null ],
|
||||
[ "tidyAttrIsOnKEYUP", "group__AttrIsAttributeName.html#gaf4d69efe322c065fef448b5d5b48b8f7", null ],
|
||||
[ "tidyAttrIsOnKEYPRESS", "group__AttrIsAttributeName.html#ga9b08c6cf7ec3f3605722486c4ba42b4f", null ],
|
||||
[ "tidyAttrIsOnFOCUS", "group__AttrIsAttributeName.html#ga54437cfd33daef01fd9d9e63b79a20f5", null ],
|
||||
[ "tidyAttrIsOnBLUR", "group__AttrIsAttributeName.html#gab704326c008f437a30878b8dd632ecca", null ],
|
||||
[ "tidyAttrIsBGCOLOR", "group__AttrIsAttributeName.html#gad75eb36382a280b90761cba07fcf1895", null ],
|
||||
[ "tidyAttrIsLINK", "group__AttrIsAttributeName.html#ga5d88a7dcf98264502e1a2a18014f58a7", null ],
|
||||
[ "tidyAttrIsALINK", "group__AttrIsAttributeName.html#ga73acdbe07d9f4263897c2d7ef2f55a8d", null ],
|
||||
[ "tidyAttrIsVLINK", "group__AttrIsAttributeName.html#ga502ead90e7b121fd1ae1b034a2a046da", null ],
|
||||
[ "tidyAttrIsTEXT", "group__AttrIsAttributeName.html#ga7c6fde56b1bb05a07043ac1b69a72db8", null ],
|
||||
[ "tidyAttrIsSTYLE", "group__AttrIsAttributeName.html#ga93224d5a31b94c82a4f97577338c3a59", null ],
|
||||
[ "tidyAttrIsABBR", "group__AttrIsAttributeName.html#ga763c7d67faa40b48a0485d4aaeddf694", null ],
|
||||
[ "tidyAttrIsCOLSPAN", "group__AttrIsAttributeName.html#ga69119cd18a1fb79bb02b78f8bf145f81", null ],
|
||||
[ "tidyAttrIsROWSPAN", "group__AttrIsAttributeName.html#gaee7e2dfe999d6831d3af1e826dcf3c22", null ]
|
||||
];
|
|
@ -1,97 +0,0 @@
|
|||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=9"/>
|
||||
<title>HTML Tidy: Attribute Interrogation</title>
|
||||
|
||||
<link href="tabs.css" rel="stylesheet" type="text/css"/>
|
||||
<link href="doxygen.css" rel="stylesheet" type="text/css" />
|
||||
<link href="navtree.css" rel="stylesheet" type="text/css"/>
|
||||
<script type="text/javascript" src="jquery.js"></script>
|
||||
<script type="text/javascript" src="resize.js"></script>
|
||||
<script type="text/javascript" src="navtree.js"></script>
|
||||
<script type="text/javascript">
|
||||
$(document).ready(initResizable);
|
||||
</script>
|
||||
|
||||
|
||||
</head>
|
||||
<body>
|
||||
<div id="top"><!-- do not remove this div! -->
|
||||
|
||||
|
||||
<div id="titlearea">
|
||||
<table cellspacing="0" cellpadding="0">
|
||||
<tbody>
|
||||
<tr style="height: 56px;">
|
||||
|
||||
|
||||
<td style="padding-left: 0.5em;">
|
||||
<div id="projectname">HTML Tidy
|
||||
 <span id="projectnumber">0.1</span>
|
||||
</div>
|
||||
|
||||
</td>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
|
||||
<!-- Generated by Doxygen 1.8.0 -->
|
||||
</div>
|
||||
<div id="side-nav" class="ui-resizable side-nav-resizable">
|
||||
<div id="nav-tree">
|
||||
<div id="nav-tree-contents">
|
||||
</div>
|
||||
</div>
|
||||
<div id="splitbar" style="-moz-user-select:none;"
|
||||
class="ui-resizable-handle">
|
||||
</div>
|
||||
</div>
|
||||
<script type="text/javascript">
|
||||
initNavTree('group__Attribute.html','');
|
||||
</script>
|
||||
<div id="doc-content">
|
||||
<div class="header">
|
||||
<div class="summary">
|
||||
<a href="#groups">Modules</a> |
|
||||
<a href="#func-members">Functions</a> </div>
|
||||
<div class="headertitle">
|
||||
<div class="title">Attribute Interrogation</div> </div>
|
||||
</div><!--header-->
|
||||
<div class="contents">
|
||||
<table class="memberdecls">
|
||||
<tr><td colspan="2"><h2><a name="groups"></a>
|
||||
Modules</h2></td></tr>
|
||||
<tr class="memitem:group__AttrIsAttributeName"><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="group__AttrIsAttributeName.html">Deprecated attribute interrogation per AttrId</a></td></tr>
|
||||
<tr><td colspan="2"><h2><a name="func-members"></a>
|
||||
Functions</h2></td></tr>
|
||||
<tr class="memitem:ga42c5074e590ed76a7a641dfd179471d9"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga42c5074e590ed76a7a641dfd179471d9"></a>
|
||||
TidyAttrId TIDY_CALL </td><td class="memItemRight" valign="bottom"><b>tidyAttrGetId</b> (<a class="el" href="structTidyAttr.html">TidyAttr</a> tattr)</td></tr>
|
||||
<tr class="memitem:ga1e4d8ec29e240a6415b2caa7fff2b502"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga1e4d8ec29e240a6415b2caa7fff2b502"></a>
|
||||
Bool TIDY_CALL </td><td class="memItemRight" valign="bottom"><b>tidyAttrIsEvent</b> (<a class="el" href="structTidyAttr.html">TidyAttr</a> tattr)</td></tr>
|
||||
<tr class="memitem:ga9f52a0de76388df02294718c573911bd"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga9f52a0de76388df02294718c573911bd"></a>
|
||||
Bool TIDY_CALL </td><td class="memItemRight" valign="bottom"><b>tidyAttrIsProp</b> (<a class="el" href="structTidyAttr.html">TidyAttr</a> tattr)</td></tr>
|
||||
</table>
|
||||
<hr/><a name="details" id="details"></a><h2>Detailed Description</h2>
|
||||
<p>Get information about any given attribute. </p>
|
||||
</div><!-- contents -->
|
||||
</div>
|
||||
<div id="nav-path" class="navpath">
|
||||
<ul>
|
||||
|
||||
<li class="footer">Generated on Wed Jun 20 2012 16:58:07 for HTML Tidy by
|
||||
<a href="http://www.doxygen.org/index.html">
|
||||
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.0 </li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
|
@ -1,7 +0,0 @@
|
|||
var group__Attribute =
|
||||
[
|
||||
[ "Deprecated attribute interrogation per AttrId", "group__AttrIsAttributeName.html", "group__AttrIsAttributeName" ],
|
||||
[ "tidyAttrGetId", "group__Attribute.html#ga42c5074e590ed76a7a641dfd179471d9", null ],
|
||||
[ "tidyAttrIsEvent", "group__Attribute.html#ga1e4d8ec29e240a6415b2caa7fff2b502", null ],
|
||||
[ "tidyAttrIsProp", "group__Attribute.html#ga9f52a0de76388df02294718c573911bd", null ]
|
||||
];
|
|
@ -1,609 +0,0 @@
|
|||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=9"/>
|
||||
<title>HTML Tidy: Basic Operations</title>
|
||||
|
||||
<link href="tabs.css" rel="stylesheet" type="text/css"/>
|
||||
<link href="doxygen.css" rel="stylesheet" type="text/css" />
|
||||
<link href="navtree.css" rel="stylesheet" type="text/css"/>
|
||||
<script type="text/javascript" src="jquery.js"></script>
|
||||
<script type="text/javascript" src="resize.js"></script>
|
||||
<script type="text/javascript" src="navtree.js"></script>
|
||||
<script type="text/javascript">
|
||||
$(document).ready(initResizable);
|
||||
</script>
|
||||
|
||||
|
||||
</head>
|
||||
<body>
|
||||
<div id="top"><!-- do not remove this div! -->
|
||||
|
||||
|
||||
<div id="titlearea">
|
||||
<table cellspacing="0" cellpadding="0">
|
||||
<tbody>
|
||||
<tr style="height: 56px;">
|
||||
|
||||
|
||||
<td style="padding-left: 0.5em;">
|
||||
<div id="projectname">HTML Tidy
|
||||
 <span id="projectnumber">0.1</span>
|
||||
</div>
|
||||
|
||||
</td>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
|
||||
<!-- Generated by Doxygen 1.8.0 -->
|
||||
</div>
|
||||
<div id="side-nav" class="ui-resizable side-nav-resizable">
|
||||
<div id="nav-tree">
|
||||
<div id="nav-tree-contents">
|
||||
</div>
|
||||
</div>
|
||||
<div id="splitbar" style="-moz-user-select:none;"
|
||||
class="ui-resizable-handle">
|
||||
</div>
|
||||
</div>
|
||||
<script type="text/javascript">
|
||||
initNavTree('group__Basic.html','');
|
||||
</script>
|
||||
<div id="doc-content">
|
||||
<div class="header">
|
||||
<div class="summary">
|
||||
<a href="#func-members">Functions</a> </div>
|
||||
<div class="headertitle">
|
||||
<div class="title">Basic Operations</div> </div>
|
||||
</div><!--header-->
|
||||
<div class="contents">
|
||||
<table class="memberdecls">
|
||||
<tr><td colspan="2"><h2><a name="func-members"></a>
|
||||
Functions</h2></td></tr>
|
||||
<tr class="memitem:ga728e98da5985ecb26de7c6c45f7fcaf2"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga728e98da5985ecb26de7c6c45f7fcaf2"></a>
|
||||
<a class="el" href="structTidyDoc.html">TidyDoc</a> TIDY_CALL </td><td class="memItemRight" valign="bottom"><b>tidyCreate</b> (void)</td></tr>
|
||||
<tr class="memitem:gaf58ea992501470e0998182a1c75df2aa"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gaf58ea992501470e0998182a1c75df2aa"></a>
|
||||
<a class="el" href="structTidyDoc.html">TidyDoc</a> TIDY_CALL </td><td class="memItemRight" valign="bottom"><b>tidyCreateWithAllocator</b> (<a class="el" href="group__Memory.html#ga78e96524a88db0c09e766795265863da">TidyAllocator</a> *allocator)</td></tr>
|
||||
<tr class="memitem:gacc380c1451088b89898a85337b113713"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gacc380c1451088b89898a85337b113713"></a>
|
||||
void TIDY_CALL </td><td class="memItemRight" valign="bottom"><b>tidyRelease</b> (<a class="el" href="structTidyDoc.html">TidyDoc</a> tdoc)</td></tr>
|
||||
<tr class="memitem:gaa1a9f78be3542868ac10481e2efa8708"><td class="memItemLeft" align="right" valign="top">void TIDY_CALL </td><td class="memItemRight" valign="bottom"><a class="el" href="group__Basic.html#gaa1a9f78be3542868ac10481e2efa8708">tidySetAppData</a> (<a class="el" href="structTidyDoc.html">TidyDoc</a> tdoc, void *appData)</td></tr>
|
||||
<tr class="memitem:ga1319c9757d4f8c596615e0fdcfcf2504"><td class="memItemLeft" align="right" valign="top">void *TIDY_CALL </td><td class="memItemRight" valign="bottom"><a class="el" href="group__Basic.html#ga1319c9757d4f8c596615e0fdcfcf2504">tidyGetAppData</a> (<a class="el" href="structTidyDoc.html">TidyDoc</a> tdoc)</td></tr>
|
||||
<tr class="memitem:gab7b404ada690635341d2e2d332102b36"><td class="memItemLeft" align="right" valign="top">ctmbstr TIDY_CALL </td><td class="memItemRight" valign="bottom"><a class="el" href="group__Basic.html#gab7b404ada690635341d2e2d332102b36">tidyReleaseDate</a> (void)</td></tr>
|
||||
<tr class="memitem:gaf45a8fb57fb9bfce89c42e1cc9d3e760"><td class="memItemLeft" align="right" valign="top">int TIDY_CALL </td><td class="memItemRight" valign="bottom"><a class="el" href="group__Basic.html#gaf45a8fb57fb9bfce89c42e1cc9d3e760">tidyStatus</a> (<a class="el" href="structTidyDoc.html">TidyDoc</a> tdoc)</td></tr>
|
||||
<tr class="memitem:ga8fbec4bc2b67c4f525440cfc7196b443"><td class="memItemLeft" align="right" valign="top">int TIDY_CALL </td><td class="memItemRight" valign="bottom"><a class="el" href="group__Basic.html#ga8fbec4bc2b67c4f525440cfc7196b443">tidyDetectedHtmlVersion</a> (<a class="el" href="structTidyDoc.html">TidyDoc</a> tdoc)</td></tr>
|
||||
<tr class="memitem:gaf3279c9a0506629d2ae766c31c1de48d"><td class="memItemLeft" align="right" valign="top">Bool TIDY_CALL </td><td class="memItemRight" valign="bottom"><a class="el" href="group__Basic.html#gaf3279c9a0506629d2ae766c31c1de48d">tidyDetectedXhtml</a> (<a class="el" href="structTidyDoc.html">TidyDoc</a> tdoc)</td></tr>
|
||||
<tr class="memitem:ga8dd761b5e230119f8eb6c412f12fdec2"><td class="memItemLeft" align="right" valign="top">Bool TIDY_CALL </td><td class="memItemRight" valign="bottom"><a class="el" href="group__Basic.html#ga8dd761b5e230119f8eb6c412f12fdec2">tidyDetectedGenericXml</a> (<a class="el" href="structTidyDoc.html">TidyDoc</a> tdoc)</td></tr>
|
||||
<tr class="memitem:ga3617548e3669d00ad074daaaa8f3460d"><td class="memItemLeft" align="right" valign="top">uint TIDY_CALL </td><td class="memItemRight" valign="bottom"><a class="el" href="group__Basic.html#ga3617548e3669d00ad074daaaa8f3460d">tidyErrorCount</a> (<a class="el" href="structTidyDoc.html">TidyDoc</a> tdoc)</td></tr>
|
||||
<tr class="memitem:ga29b0c36f75584a2a26422b021561f19c"><td class="memItemLeft" align="right" valign="top">uint TIDY_CALL </td><td class="memItemRight" valign="bottom"><a class="el" href="group__Basic.html#ga29b0c36f75584a2a26422b021561f19c">tidyWarningCount</a> (<a class="el" href="structTidyDoc.html">TidyDoc</a> tdoc)</td></tr>
|
||||
<tr class="memitem:ga56ad617084cdcbb485f06f597de7dedb"><td class="memItemLeft" align="right" valign="top">uint TIDY_CALL </td><td class="memItemRight" valign="bottom"><a class="el" href="group__Basic.html#ga56ad617084cdcbb485f06f597de7dedb">tidyAccessWarningCount</a> (<a class="el" href="structTidyDoc.html">TidyDoc</a> tdoc)</td></tr>
|
||||
<tr class="memitem:gac17c01a0dbb8f73bdee29df48e499988"><td class="memItemLeft" align="right" valign="top">uint TIDY_CALL </td><td class="memItemRight" valign="bottom"><a class="el" href="group__Basic.html#gac17c01a0dbb8f73bdee29df48e499988">tidyConfigErrorCount</a> (<a class="el" href="structTidyDoc.html">TidyDoc</a> tdoc)</td></tr>
|
||||
<tr class="memitem:ga2dec710c0d4927e76a7b0d338b11693a"><td class="memItemLeft" align="right" valign="top">int TIDY_CALL </td><td class="memItemRight" valign="bottom"><a class="el" href="group__Basic.html#ga2dec710c0d4927e76a7b0d338b11693a">tidyLoadConfig</a> (<a class="el" href="structTidyDoc.html">TidyDoc</a> tdoc, ctmbstr configFile)</td></tr>
|
||||
<tr class="memitem:gac677de148c6f00fc96a682c21433ab1c"><td class="memItemLeft" align="right" valign="top">int TIDY_CALL </td><td class="memItemRight" valign="bottom"><a class="el" href="group__Basic.html#gac677de148c6f00fc96a682c21433ab1c">tidyLoadConfigEnc</a> (<a class="el" href="structTidyDoc.html">TidyDoc</a> tdoc, ctmbstr configFile, ctmbstr charenc)</td></tr>
|
||||
<tr class="memitem:gac10c770d6ea5a0610159ad17f8427943"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gac10c770d6ea5a0610159ad17f8427943"></a>
|
||||
Bool TIDY_CALL </td><td class="memItemRight" valign="bottom"><b>tidyFileExists</b> (<a class="el" href="structTidyDoc.html">TidyDoc</a> tdoc, ctmbstr filename)</td></tr>
|
||||
<tr class="memitem:ga2612e184472c2a59ca822a37d030e9af"><td class="memItemLeft" align="right" valign="top">int TIDY_CALL </td><td class="memItemRight" valign="bottom"><a class="el" href="group__Basic.html#ga2612e184472c2a59ca822a37d030e9af">tidySetCharEncoding</a> (<a class="el" href="structTidyDoc.html">TidyDoc</a> tdoc, ctmbstr encnam)</td></tr>
|
||||
<tr class="memitem:ga05203a9193542a67b8396cf6ca8acf59"><td class="memItemLeft" align="right" valign="top">int TIDY_CALL </td><td class="memItemRight" valign="bottom"><a class="el" href="group__Basic.html#ga05203a9193542a67b8396cf6ca8acf59">tidySetInCharEncoding</a> (<a class="el" href="structTidyDoc.html">TidyDoc</a> tdoc, ctmbstr encnam)</td></tr>
|
||||
<tr class="memitem:ga9b6bd07e38bf320cf88663a29967f1e9"><td class="memItemLeft" align="right" valign="top">int TIDY_CALL </td><td class="memItemRight" valign="bottom"><a class="el" href="group__Basic.html#ga9b6bd07e38bf320cf88663a29967f1e9">tidySetOutCharEncoding</a> (<a class="el" href="structTidyDoc.html">TidyDoc</a> tdoc, ctmbstr encnam)</td></tr>
|
||||
<tr class="memitem:gaaa6e0510b0d7ca0524c928143488c6ca"><td class="memItemLeft" align="right" valign="top">int TIDY_CALL </td><td class="memItemRight" valign="bottom"><a class="el" href="group__Basic.html#gaaa6e0510b0d7ca0524c928143488c6ca">tidyOptSaveFile</a> (<a class="el" href="structTidyDoc.html">TidyDoc</a> tdoc, ctmbstr cfgfil)</td></tr>
|
||||
<tr class="memitem:gabf30cc37e3e7aa07dd351f083ab747ee"><td class="memItemLeft" align="right" valign="top">int TIDY_CALL </td><td class="memItemRight" valign="bottom"><a class="el" href="group__Basic.html#gabf30cc37e3e7aa07dd351f083ab747ee">tidyOptSaveSink</a> (<a class="el" href="structTidyDoc.html">TidyDoc</a> tdoc, <a class="el" href="group__IO.html#ga6bdd15de48364d2b5dbf2141109d3f98">TidyOutputSink</a> *sink)</td></tr>
|
||||
<tr class="memitem:ga4c050ea7d2746db948ad45edb2264d70"><td class="memItemLeft" align="right" valign="top">void TIDY_CALL </td><td class="memItemRight" valign="bottom"><a class="el" href="group__Basic.html#ga4c050ea7d2746db948ad45edb2264d70">tidyErrorSummary</a> (<a class="el" href="structTidyDoc.html">TidyDoc</a> tdoc)</td></tr>
|
||||
<tr class="memitem:ga28384bf13bf6962c8ef0bcab9b4b7971"><td class="memItemLeft" align="right" valign="top">void TIDY_CALL </td><td class="memItemRight" valign="bottom"><a class="el" href="group__Basic.html#ga28384bf13bf6962c8ef0bcab9b4b7971">tidyGeneralInfo</a> (<a class="el" href="structTidyDoc.html">TidyDoc</a> tdoc)</td></tr>
|
||||
</table>
|
||||
<hr/><a name="details" id="details"></a><h2>Detailed Description</h2>
|
||||
<p>Tidy public interface</p>
|
||||
<p>Several functions return an integer document status:</p>
|
||||
<pre>
|
||||
0 -> SUCCESS
|
||||
>0 -> 1 == TIDY WARNING, 2 == TIDY ERROR
|
||||
<0 -> SEVERE ERROR
|
||||
</pre><p>The following is a short example program.</p>
|
||||
<pre>
|
||||
<h1>include <<a class="el" href="tidy_8h.html">tidy.h</a>></h1>
|
||||
</pre><pre>
|
||||
<h1>include <<a class="el" href="buffio_8h.html">buffio.h</a>></h1>
|
||||
</pre><pre>
|
||||
<h1>include <stdio.h></h1>
|
||||
</pre><pre>
|
||||
<h1>include <errno.h></h1>
|
||||
</pre><pre></pre><pre>int main(int argc, char **argv )
|
||||
{
|
||||
const char* input = "&lt;title&gt;Foo&lt;/title&gt;&lt;p&gt;Foo!";
|
||||
TidyBuffer output;
|
||||
TidyBuffer errbuf;
|
||||
int rc = -1;
|
||||
Bool ok;</pre><pre> <a class="el" href="structTidyDoc.html">TidyDoc</a> tdoc = tidyCreate(); // Initialize "document"
|
||||
tidyBufInit( &output );
|
||||
tidyBufInit( &errbuf );
|
||||
printf( "Tidying:\t\%s\\n", input );</pre><pre> ok = tidyOptSetBool( tdoc, TidyXhtmlOut, yes ); // Convert to XHTML
|
||||
if ( ok )
|
||||
rc = tidySetErrorBuffer( tdoc, &errbuf ); // Capture diagnostics
|
||||
if ( rc >= 0 )
|
||||
rc = tidyParseString( tdoc, input ); // Parse the input
|
||||
if ( rc >= 0 )
|
||||
rc = tidyCleanAndRepair( tdoc ); // Tidy it up!
|
||||
if ( rc >= 0 )
|
||||
rc = tidyRunDiagnostics( tdoc ); // Kvetch
|
||||
if ( rc > 1 ) // If error, force output.
|
||||
rc = ( tidyOptSetBool(tdoc, TidyForceOutput, yes) ? rc : -1 );
|
||||
if ( rc >= 0 )
|
||||
rc = tidySaveBuffer( tdoc, &output ); // Pretty Print</pre><pre> if ( rc >= 0 )
|
||||
{
|
||||
if ( rc > 0 )
|
||||
printf( "\\nDiagnostics:\\n\\n\%s", errbuf.bp );
|
||||
printf( "\\nAnd here is the result:\\n\\n\%s", output.bp );
|
||||
}
|
||||
else
|
||||
printf( "A severe error (\%d) occurred.\\n", rc );</pre><pre> tidyBufFree( &output );
|
||||
tidyBufFree( &errbuf );
|
||||
tidyRelease( tdoc );
|
||||
return rc;
|
||||
}
|
||||
</pre> <hr/><h2>Function Documentation</h2>
|
||||
<a class="anchor" id="gaa1a9f78be3542868ac10481e2efa8708"></a>
|
||||
<div class="memitem">
|
||||
<div class="memproto">
|
||||
<table class="memname">
|
||||
<tr>
|
||||
<td class="memname">void TIDY_CALL <a class="el" href="group__Basic.html#gaa1a9f78be3542868ac10481e2efa8708">tidySetAppData</a> </td>
|
||||
<td>(</td>
|
||||
<td class="paramtype"><a class="el" href="structTidyDoc.html">TidyDoc</a> </td>
|
||||
<td class="paramname"><em>tdoc</em>, </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="paramkey"></td>
|
||||
<td></td>
|
||||
<td class="paramtype">void * </td>
|
||||
<td class="paramname"><em>appData</em> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td></td>
|
||||
<td>)</td>
|
||||
<td></td><td></td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
<div class="memdoc">
|
||||
<p>Let application store a chunk of data w/ each Tidy instance. Useful for callbacks. </p>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
<a class="anchor" id="ga1319c9757d4f8c596615e0fdcfcf2504"></a>
|
||||
<div class="memitem">
|
||||
<div class="memproto">
|
||||
<table class="memname">
|
||||
<tr>
|
||||
<td class="memname">void* TIDY_CALL <a class="el" href="group__Basic.html#ga1319c9757d4f8c596615e0fdcfcf2504">tidyGetAppData</a> </td>
|
||||
<td>(</td>
|
||||
<td class="paramtype"><a class="el" href="structTidyDoc.html">TidyDoc</a> </td>
|
||||
<td class="paramname"><em>tdoc</em></td><td>)</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
<div class="memdoc">
|
||||
<p>Get application data set previously </p>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
<a class="anchor" id="gab7b404ada690635341d2e2d332102b36"></a>
|
||||
<div class="memitem">
|
||||
<div class="memproto">
|
||||
<table class="memname">
|
||||
<tr>
|
||||
<td class="memname">ctmbstr TIDY_CALL <a class="el" href="group__Basic.html#gab7b404ada690635341d2e2d332102b36">tidyReleaseDate</a> </td>
|
||||
<td>(</td>
|
||||
<td class="paramtype">void </td>
|
||||
<td class="paramname"></td><td>)</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
<div class="memdoc">
|
||||
<p>Get release date (version) for current library </p>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
<a class="anchor" id="gaf45a8fb57fb9bfce89c42e1cc9d3e760"></a>
|
||||
<div class="memitem">
|
||||
<div class="memproto">
|
||||
<table class="memname">
|
||||
<tr>
|
||||
<td class="memname">int TIDY_CALL <a class="el" href="group__Basic.html#gaf45a8fb57fb9bfce89c42e1cc9d3e760">tidyStatus</a> </td>
|
||||
<td>(</td>
|
||||
<td class="paramtype"><a class="el" href="structTidyDoc.html">TidyDoc</a> </td>
|
||||
<td class="paramname"><em>tdoc</em></td><td>)</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
<div class="memdoc">
|
||||
<p>Get status of current document. </p>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
<a class="anchor" id="ga8fbec4bc2b67c4f525440cfc7196b443"></a>
|
||||
<div class="memitem">
|
||||
<div class="memproto">
|
||||
<table class="memname">
|
||||
<tr>
|
||||
<td class="memname">int TIDY_CALL <a class="el" href="group__Basic.html#ga8fbec4bc2b67c4f525440cfc7196b443">tidyDetectedHtmlVersion</a> </td>
|
||||
<td>(</td>
|
||||
<td class="paramtype"><a class="el" href="structTidyDoc.html">TidyDoc</a> </td>
|
||||
<td class="paramname"><em>tdoc</em></td><td>)</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
<div class="memdoc">
|
||||
<p>Detected HTML version: 0, 2, 3 or 4 </p>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
<a class="anchor" id="gaf3279c9a0506629d2ae766c31c1de48d"></a>
|
||||
<div class="memitem">
|
||||
<div class="memproto">
|
||||
<table class="memname">
|
||||
<tr>
|
||||
<td class="memname">Bool TIDY_CALL <a class="el" href="group__Basic.html#gaf3279c9a0506629d2ae766c31c1de48d">tidyDetectedXhtml</a> </td>
|
||||
<td>(</td>
|
||||
<td class="paramtype"><a class="el" href="structTidyDoc.html">TidyDoc</a> </td>
|
||||
<td class="paramname"><em>tdoc</em></td><td>)</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
<div class="memdoc">
|
||||
<p>Input is XHTML? </p>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
<a class="anchor" id="ga8dd761b5e230119f8eb6c412f12fdec2"></a>
|
||||
<div class="memitem">
|
||||
<div class="memproto">
|
||||
<table class="memname">
|
||||
<tr>
|
||||
<td class="memname">Bool TIDY_CALL <a class="el" href="group__Basic.html#ga8dd761b5e230119f8eb6c412f12fdec2">tidyDetectedGenericXml</a> </td>
|
||||
<td>(</td>
|
||||
<td class="paramtype"><a class="el" href="structTidyDoc.html">TidyDoc</a> </td>
|
||||
<td class="paramname"><em>tdoc</em></td><td>)</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
<div class="memdoc">
|
||||
<p>Input is generic XML (not HTML or XHTML)? </p>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
<a class="anchor" id="ga3617548e3669d00ad074daaaa8f3460d"></a>
|
||||
<div class="memitem">
|
||||
<div class="memproto">
|
||||
<table class="memname">
|
||||
<tr>
|
||||
<td class="memname">uint TIDY_CALL <a class="el" href="group__Basic.html#ga3617548e3669d00ad074daaaa8f3460d">tidyErrorCount</a> </td>
|
||||
<td>(</td>
|
||||
<td class="paramtype"><a class="el" href="structTidyDoc.html">TidyDoc</a> </td>
|
||||
<td class="paramname"><em>tdoc</em></td><td>)</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
<div class="memdoc">
|
||||
<p>Number of Tidy errors encountered. If > 0, output is suppressed unless TidyForceOutput is set. </p>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
<a class="anchor" id="ga29b0c36f75584a2a26422b021561f19c"></a>
|
||||
<div class="memitem">
|
||||
<div class="memproto">
|
||||
<table class="memname">
|
||||
<tr>
|
||||
<td class="memname">uint TIDY_CALL <a class="el" href="group__Basic.html#ga29b0c36f75584a2a26422b021561f19c">tidyWarningCount</a> </td>
|
||||
<td>(</td>
|
||||
<td class="paramtype"><a class="el" href="structTidyDoc.html">TidyDoc</a> </td>
|
||||
<td class="paramname"><em>tdoc</em></td><td>)</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
<div class="memdoc">
|
||||
<p>Number of Tidy warnings encountered. </p>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
<a class="anchor" id="ga56ad617084cdcbb485f06f597de7dedb"></a>
|
||||
<div class="memitem">
|
||||
<div class="memproto">
|
||||
<table class="memname">
|
||||
<tr>
|
||||
<td class="memname">uint TIDY_CALL <a class="el" href="group__Basic.html#ga56ad617084cdcbb485f06f597de7dedb">tidyAccessWarningCount</a> </td>
|
||||
<td>(</td>
|
||||
<td class="paramtype"><a class="el" href="structTidyDoc.html">TidyDoc</a> </td>
|
||||
<td class="paramname"><em>tdoc</em></td><td>)</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
<div class="memdoc">
|
||||
<p>Number of Tidy accessibility warnings encountered. </p>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
<a class="anchor" id="gac17c01a0dbb8f73bdee29df48e499988"></a>
|
||||
<div class="memitem">
|
||||
<div class="memproto">
|
||||
<table class="memname">
|
||||
<tr>
|
||||
<td class="memname">uint TIDY_CALL <a class="el" href="group__Basic.html#gac17c01a0dbb8f73bdee29df48e499988">tidyConfigErrorCount</a> </td>
|
||||
<td>(</td>
|
||||
<td class="paramtype"><a class="el" href="structTidyDoc.html">TidyDoc</a> </td>
|
||||
<td class="paramname"><em>tdoc</em></td><td>)</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
<div class="memdoc">
|
||||
<p>Number of Tidy configuration errors encountered. </p>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
<a class="anchor" id="ga2dec710c0d4927e76a7b0d338b11693a"></a>
|
||||
<div class="memitem">
|
||||
<div class="memproto">
|
||||
<table class="memname">
|
||||
<tr>
|
||||
<td class="memname">int TIDY_CALL <a class="el" href="group__Basic.html#ga2dec710c0d4927e76a7b0d338b11693a">tidyLoadConfig</a> </td>
|
||||
<td>(</td>
|
||||
<td class="paramtype"><a class="el" href="structTidyDoc.html">TidyDoc</a> </td>
|
||||
<td class="paramname"><em>tdoc</em>, </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="paramkey"></td>
|
||||
<td></td>
|
||||
<td class="paramtype">ctmbstr </td>
|
||||
<td class="paramname"><em>configFile</em> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td></td>
|
||||
<td>)</td>
|
||||
<td></td><td></td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
<div class="memdoc">
|
||||
<p>Load an ASCII Tidy configuration file </p>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
<a class="anchor" id="gac677de148c6f00fc96a682c21433ab1c"></a>
|
||||
<div class="memitem">
|
||||
<div class="memproto">
|
||||
<table class="memname">
|
||||
<tr>
|
||||
<td class="memname">int TIDY_CALL <a class="el" href="group__Basic.html#gac677de148c6f00fc96a682c21433ab1c">tidyLoadConfigEnc</a> </td>
|
||||
<td>(</td>
|
||||
<td class="paramtype"><a class="el" href="structTidyDoc.html">TidyDoc</a> </td>
|
||||
<td class="paramname"><em>tdoc</em>, </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="paramkey"></td>
|
||||
<td></td>
|
||||
<td class="paramtype">ctmbstr </td>
|
||||
<td class="paramname"><em>configFile</em>, </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="paramkey"></td>
|
||||
<td></td>
|
||||
<td class="paramtype">ctmbstr </td>
|
||||
<td class="paramname"><em>charenc</em> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td></td>
|
||||
<td>)</td>
|
||||
<td></td><td></td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
<div class="memdoc">
|
||||
<p>Load a Tidy configuration file with the specified character encoding </p>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
<a class="anchor" id="ga2612e184472c2a59ca822a37d030e9af"></a>
|
||||
<div class="memitem">
|
||||
<div class="memproto">
|
||||
<table class="memname">
|
||||
<tr>
|
||||
<td class="memname">int TIDY_CALL <a class="el" href="group__Basic.html#ga2612e184472c2a59ca822a37d030e9af">tidySetCharEncoding</a> </td>
|
||||
<td>(</td>
|
||||
<td class="paramtype"><a class="el" href="structTidyDoc.html">TidyDoc</a> </td>
|
||||
<td class="paramname"><em>tdoc</em>, </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="paramkey"></td>
|
||||
<td></td>
|
||||
<td class="paramtype">ctmbstr </td>
|
||||
<td class="paramname"><em>encnam</em> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td></td>
|
||||
<td>)</td>
|
||||
<td></td><td></td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
<div class="memdoc">
|
||||
<p>Set the input/output character encoding for parsing markup. Values include: ascii, latin1, raw, utf8, iso2022, mac, win1252, utf16le, utf16be, utf16, big5 and shiftjis. Case in-sensitive. </p>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
<a class="anchor" id="ga05203a9193542a67b8396cf6ca8acf59"></a>
|
||||
<div class="memitem">
|
||||
<div class="memproto">
|
||||
<table class="memname">
|
||||
<tr>
|
||||
<td class="memname">int TIDY_CALL <a class="el" href="group__Basic.html#ga05203a9193542a67b8396cf6ca8acf59">tidySetInCharEncoding</a> </td>
|
||||
<td>(</td>
|
||||
<td class="paramtype"><a class="el" href="structTidyDoc.html">TidyDoc</a> </td>
|
||||
<td class="paramname"><em>tdoc</em>, </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="paramkey"></td>
|
||||
<td></td>
|
||||
<td class="paramtype">ctmbstr </td>
|
||||
<td class="paramname"><em>encnam</em> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td></td>
|
||||
<td>)</td>
|
||||
<td></td><td></td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
<div class="memdoc">
|
||||
<p>Set the input encoding for parsing markup. As for tidySetCharEncoding but only affects the input encoding </p>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
<a class="anchor" id="ga9b6bd07e38bf320cf88663a29967f1e9"></a>
|
||||
<div class="memitem">
|
||||
<div class="memproto">
|
||||
<table class="memname">
|
||||
<tr>
|
||||
<td class="memname">int TIDY_CALL <a class="el" href="group__Basic.html#ga9b6bd07e38bf320cf88663a29967f1e9">tidySetOutCharEncoding</a> </td>
|
||||
<td>(</td>
|
||||
<td class="paramtype"><a class="el" href="structTidyDoc.html">TidyDoc</a> </td>
|
||||
<td class="paramname"><em>tdoc</em>, </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="paramkey"></td>
|
||||
<td></td>
|
||||
<td class="paramtype">ctmbstr </td>
|
||||
<td class="paramname"><em>encnam</em> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td></td>
|
||||
<td>)</td>
|
||||
<td></td><td></td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
<div class="memdoc">
|
||||
<p>Set the output encoding. </p>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
<a class="anchor" id="gaaa6e0510b0d7ca0524c928143488c6ca"></a>
|
||||
<div class="memitem">
|
||||
<div class="memproto">
|
||||
<table class="memname">
|
||||
<tr>
|
||||
<td class="memname">int TIDY_CALL <a class="el" href="group__Basic.html#gaaa6e0510b0d7ca0524c928143488c6ca">tidyOptSaveFile</a> </td>
|
||||
<td>(</td>
|
||||
<td class="paramtype"><a class="el" href="structTidyDoc.html">TidyDoc</a> </td>
|
||||
<td class="paramname"><em>tdoc</em>, </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="paramkey"></td>
|
||||
<td></td>
|
||||
<td class="paramtype">ctmbstr </td>
|
||||
<td class="paramname"><em>cfgfil</em> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td></td>
|
||||
<td>)</td>
|
||||
<td></td><td></td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
<div class="memdoc">
|
||||
<p>Save current settings to named file. Only non-default values are written. </p>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
<a class="anchor" id="gabf30cc37e3e7aa07dd351f083ab747ee"></a>
|
||||
<div class="memitem">
|
||||
<div class="memproto">
|
||||
<table class="memname">
|
||||
<tr>
|
||||
<td class="memname">int TIDY_CALL <a class="el" href="group__Basic.html#gabf30cc37e3e7aa07dd351f083ab747ee">tidyOptSaveSink</a> </td>
|
||||
<td>(</td>
|
||||
<td class="paramtype"><a class="el" href="structTidyDoc.html">TidyDoc</a> </td>
|
||||
<td class="paramname"><em>tdoc</em>, </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="paramkey"></td>
|
||||
<td></td>
|
||||
<td class="paramtype"><a class="el" href="group__IO.html#ga6bdd15de48364d2b5dbf2141109d3f98">TidyOutputSink</a> * </td>
|
||||
<td class="paramname"><em>sink</em> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td></td>
|
||||
<td>)</td>
|
||||
<td></td><td></td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
<div class="memdoc">
|
||||
<p>Save current settings to given output sink. Only non-default values are written. </p>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
<a class="anchor" id="ga4c050ea7d2746db948ad45edb2264d70"></a>
|
||||
<div class="memitem">
|
||||
<div class="memproto">
|
||||
<table class="memname">
|
||||
<tr>
|
||||
<td class="memname">void TIDY_CALL <a class="el" href="group__Basic.html#ga4c050ea7d2746db948ad45edb2264d70">tidyErrorSummary</a> </td>
|
||||
<td>(</td>
|
||||
<td class="paramtype"><a class="el" href="structTidyDoc.html">TidyDoc</a> </td>
|
||||
<td class="paramname"><em>tdoc</em></td><td>)</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
<div class="memdoc">
|
||||
<p>Write more complete information about errors to current error sink. </p>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
<a class="anchor" id="ga28384bf13bf6962c8ef0bcab9b4b7971"></a>
|
||||
<div class="memitem">
|
||||
<div class="memproto">
|
||||
<table class="memname">
|
||||
<tr>
|
||||
<td class="memname">void TIDY_CALL <a class="el" href="group__Basic.html#ga28384bf13bf6962c8ef0bcab9b4b7971">tidyGeneralInfo</a> </td>
|
||||
<td>(</td>
|
||||
<td class="paramtype"><a class="el" href="structTidyDoc.html">TidyDoc</a> </td>
|
||||
<td class="paramname"><em>tdoc</em></td><td>)</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
<div class="memdoc">
|
||||
<p>Write more general information about markup to current error sink. </p>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div><!-- contents -->
|
||||
</div>
|
||||
<div id="nav-path" class="navpath">
|
||||
<ul>
|
||||
|
||||
<li class="footer">Generated on Wed Jun 20 2012 16:58:07 for HTML Tidy by
|
||||
<a href="http://www.doxygen.org/index.html">
|
||||
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.0 </li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
|
@ -1,27 +0,0 @@
|
|||
var group__Basic =
|
||||
[
|
||||
[ "tidyCreate", "group__Basic.html#ga728e98da5985ecb26de7c6c45f7fcaf2", null ],
|
||||
[ "tidyCreateWithAllocator", "group__Basic.html#gaf58ea992501470e0998182a1c75df2aa", null ],
|
||||
[ "tidyRelease", "group__Basic.html#gacc380c1451088b89898a85337b113713", null ],
|
||||
[ "tidySetAppData", "group__Basic.html#gaa1a9f78be3542868ac10481e2efa8708", null ],
|
||||
[ "tidyGetAppData", "group__Basic.html#ga1319c9757d4f8c596615e0fdcfcf2504", null ],
|
||||
[ "tidyReleaseDate", "group__Basic.html#gab7b404ada690635341d2e2d332102b36", null ],
|
||||
[ "tidyStatus", "group__Basic.html#gaf45a8fb57fb9bfce89c42e1cc9d3e760", null ],
|
||||
[ "tidyDetectedHtmlVersion", "group__Basic.html#ga8fbec4bc2b67c4f525440cfc7196b443", null ],
|
||||
[ "tidyDetectedXhtml", "group__Basic.html#gaf3279c9a0506629d2ae766c31c1de48d", null ],
|
||||
[ "tidyDetectedGenericXml", "group__Basic.html#ga8dd761b5e230119f8eb6c412f12fdec2", null ],
|
||||
[ "tidyErrorCount", "group__Basic.html#ga3617548e3669d00ad074daaaa8f3460d", null ],
|
||||
[ "tidyWarningCount", "group__Basic.html#ga29b0c36f75584a2a26422b021561f19c", null ],
|
||||
[ "tidyAccessWarningCount", "group__Basic.html#ga56ad617084cdcbb485f06f597de7dedb", null ],
|
||||
[ "tidyConfigErrorCount", "group__Basic.html#gac17c01a0dbb8f73bdee29df48e499988", null ],
|
||||
[ "tidyLoadConfig", "group__Basic.html#ga2dec710c0d4927e76a7b0d338b11693a", null ],
|
||||
[ "tidyLoadConfigEnc", "group__Basic.html#gac677de148c6f00fc96a682c21433ab1c", null ],
|
||||
[ "tidyFileExists", "group__Basic.html#gac10c770d6ea5a0610159ad17f8427943", null ],
|
||||
[ "tidySetCharEncoding", "group__Basic.html#ga2612e184472c2a59ca822a37d030e9af", null ],
|
||||
[ "tidySetInCharEncoding", "group__Basic.html#ga05203a9193542a67b8396cf6ca8acf59", null ],
|
||||
[ "tidySetOutCharEncoding", "group__Basic.html#ga9b6bd07e38bf320cf88663a29967f1e9", null ],
|
||||
[ "tidyOptSaveFile", "group__Basic.html#gaaa6e0510b0d7ca0524c928143488c6ca", null ],
|
||||
[ "tidyOptSaveSink", "group__Basic.html#gabf30cc37e3e7aa07dd351f083ab747ee", null ],
|
||||
[ "tidyErrorSummary", "group__Basic.html#ga4c050ea7d2746db948ad45edb2264d70", null ],
|
||||
[ "tidyGeneralInfo", "group__Basic.html#ga28384bf13bf6962c8ef0bcab9b4b7971", null ]
|
||||
];
|
|
@ -1,124 +0,0 @@
|
|||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=9"/>
|
||||
<title>HTML Tidy: Diagnostics and Repair</title>
|
||||
|
||||
<link href="tabs.css" rel="stylesheet" type="text/css"/>
|
||||
<link href="doxygen.css" rel="stylesheet" type="text/css" />
|
||||
<link href="navtree.css" rel="stylesheet" type="text/css"/>
|
||||
<script type="text/javascript" src="jquery.js"></script>
|
||||
<script type="text/javascript" src="resize.js"></script>
|
||||
<script type="text/javascript" src="navtree.js"></script>
|
||||
<script type="text/javascript">
|
||||
$(document).ready(initResizable);
|
||||
</script>
|
||||
|
||||
|
||||
</head>
|
||||
<body>
|
||||
<div id="top"><!-- do not remove this div! -->
|
||||
|
||||
|
||||
<div id="titlearea">
|
||||
<table cellspacing="0" cellpadding="0">
|
||||
<tbody>
|
||||
<tr style="height: 56px;">
|
||||
|
||||
|
||||
<td style="padding-left: 0.5em;">
|
||||
<div id="projectname">HTML Tidy
|
||||
 <span id="projectnumber">0.1</span>
|
||||
</div>
|
||||
|
||||
</td>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
|
||||
<!-- Generated by Doxygen 1.8.0 -->
|
||||
</div>
|
||||
<div id="side-nav" class="ui-resizable side-nav-resizable">
|
||||
<div id="nav-tree">
|
||||
<div id="nav-tree-contents">
|
||||
</div>
|
||||
</div>
|
||||
<div id="splitbar" style="-moz-user-select:none;"
|
||||
class="ui-resizable-handle">
|
||||
</div>
|
||||
</div>
|
||||
<script type="text/javascript">
|
||||
initNavTree('group__Clean.html','');
|
||||
</script>
|
||||
<div id="doc-content">
|
||||
<div class="header">
|
||||
<div class="summary">
|
||||
<a href="#func-members">Functions</a> </div>
|
||||
<div class="headertitle">
|
||||
<div class="title">Diagnostics and Repair</div> </div>
|
||||
</div><!--header-->
|
||||
<div class="contents">
|
||||
<table class="memberdecls">
|
||||
<tr><td colspan="2"><h2><a name="func-members"></a>
|
||||
Functions</h2></td></tr>
|
||||
<tr class="memitem:ga11fd23eeb4acfaa0f9501effa0c21269"><td class="memItemLeft" align="right" valign="top">int TIDY_CALL </td><td class="memItemRight" valign="bottom"><a class="el" href="group__Clean.html#ga11fd23eeb4acfaa0f9501effa0c21269">tidyCleanAndRepair</a> (<a class="el" href="structTidyDoc.html">TidyDoc</a> tdoc)</td></tr>
|
||||
<tr class="memitem:ga6170500974cc02114f6e4a29d44b7d77"><td class="memItemLeft" align="right" valign="top">int TIDY_CALL </td><td class="memItemRight" valign="bottom"><a class="el" href="group__Clean.html#ga6170500974cc02114f6e4a29d44b7d77">tidyRunDiagnostics</a> (<a class="el" href="structTidyDoc.html">TidyDoc</a> tdoc)</td></tr>
|
||||
</table>
|
||||
<hr/><h2>Function Documentation</h2>
|
||||
<a class="anchor" id="ga11fd23eeb4acfaa0f9501effa0c21269"></a>
|
||||
<div class="memitem">
|
||||
<div class="memproto">
|
||||
<table class="memname">
|
||||
<tr>
|
||||
<td class="memname">int TIDY_CALL <a class="el" href="group__Clean.html#ga11fd23eeb4acfaa0f9501effa0c21269">tidyCleanAndRepair</a> </td>
|
||||
<td>(</td>
|
||||
<td class="paramtype"><a class="el" href="structTidyDoc.html">TidyDoc</a> </td>
|
||||
<td class="paramname"><em>tdoc</em></td><td>)</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
<div class="memdoc">
|
||||
<p>Execute configured cleanup and repair operations on parsed markup </p>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
<a class="anchor" id="ga6170500974cc02114f6e4a29d44b7d77"></a>
|
||||
<div class="memitem">
|
||||
<div class="memproto">
|
||||
<table class="memname">
|
||||
<tr>
|
||||
<td class="memname">int TIDY_CALL <a class="el" href="group__Clean.html#ga6170500974cc02114f6e4a29d44b7d77">tidyRunDiagnostics</a> </td>
|
||||
<td>(</td>
|
||||
<td class="paramtype"><a class="el" href="structTidyDoc.html">TidyDoc</a> </td>
|
||||
<td class="paramname"><em>tdoc</em></td><td>)</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
<div class="memdoc">
|
||||
<p>Run configured diagnostics on parsed and repaired markup. Must call <a class="el" href="group__Clean.html#ga11fd23eeb4acfaa0f9501effa0c21269">tidyCleanAndRepair()</a> first. </p>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div><!-- contents -->
|
||||
</div>
|
||||
<div id="nav-path" class="navpath">
|
||||
<ul>
|
||||
|
||||
<li class="footer">Generated on Wed Jun 20 2012 16:58:07 for HTML Tidy by
|
||||
<a href="http://www.doxygen.org/index.html">
|
||||
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.0 </li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
|
@ -1,5 +0,0 @@
|
|||
var group__Clean =
|
||||
[
|
||||
[ "tidyCleanAndRepair", "group__Clean.html#ga11fd23eeb4acfaa0f9501effa0c21269", null ],
|
||||
[ "tidyRunDiagnostics", "group__Clean.html#ga6170500974cc02114f6e4a29d44b7d77", null ]
|
||||
];
|
|
@ -1,41 +0,0 @@
|
|||
var group__Configuration =
|
||||
[
|
||||
[ "TidyOptCallback", "group__Configuration.html#gaee8a8bcb6091bd36f6fc20507a4544fc", null ],
|
||||
[ "tidySetOptionCallback", "group__Configuration.html#gab94961700088d2daf8dcc012a5e33e49", null ],
|
||||
[ "tidyOptGetIdForName", "group__Configuration.html#ga500f31ba81d015b8ce9dad6f2a6ade75", null ],
|
||||
[ "tidyGetOptionList", "group__Configuration.html#gab92a35ffbd3b0b668534d63f94d2486f", null ],
|
||||
[ "tidyGetNextOption", "group__Configuration.html#ga1a3088dacc539487e00f1eb4009dafc0", null ],
|
||||
[ "tidyGetOption", "group__Configuration.html#ga030c695d6407b2756856eb1862642cfe", null ],
|
||||
[ "tidyGetOptionByName", "group__Configuration.html#gaeae2e147645697fc54234ff2526a8108", null ],
|
||||
[ "tidyOptGetId", "group__Configuration.html#ga51cf095b76921b4e290e14814998f096", null ],
|
||||
[ "tidyOptGetName", "group__Configuration.html#gaf370cd2ea113747f50da185fda24adcb", null ],
|
||||
[ "tidyOptGetType", "group__Configuration.html#ga06e2685cc2950b182ff2f7136d170a34", null ],
|
||||
[ "tidyOptIsReadOnly", "group__Configuration.html#ga6aba2ccdb1237a70f5fe1393fee0ce4d", null ],
|
||||
[ "tidyOptGetCategory", "group__Configuration.html#ga1d8b72e64e4d949dc21599fa788e842f", null ],
|
||||
[ "tidyOptGetDefault", "group__Configuration.html#gab9e02c9927fe2c382ec5f81b4acf9cb4", null ],
|
||||
[ "tidyOptGetDefaultInt", "group__Configuration.html#gafc8df35e864dd3a24f23aca3c2f8bd9d", null ],
|
||||
[ "tidyOptGetDefaultBool", "group__Configuration.html#gadadea4da66e3718e02b720c2b59d170b", null ],
|
||||
[ "tidyOptGetPickList", "group__Configuration.html#ga31f815fe2b5bf1e00d6b50be62edd0ab", null ],
|
||||
[ "tidyOptGetNextPick", "group__Configuration.html#gad1366c5c458f38d2a9c6a6335e6704d9", null ],
|
||||
[ "tidyOptGetValue", "group__Configuration.html#ga0fbe23ab1e4ec374fa38e6f514617e4d", null ],
|
||||
[ "tidyOptSetValue", "group__Configuration.html#gaf37bdad3b6809d8cb78e7d6316d4ba69", null ],
|
||||
[ "tidyOptParseValue", "group__Configuration.html#gad09fbcbbaf83fbf93e0d7be9c9bb30c0", null ],
|
||||
[ "tidyOptGetInt", "group__Configuration.html#ga7ff683612d446b07318517e564cccc7a", null ],
|
||||
[ "tidyOptSetInt", "group__Configuration.html#gad9e75a64c8dcbc54e791959cf934e1ad", null ],
|
||||
[ "tidyOptGetBool", "group__Configuration.html#ga09e6c999e9e7ebc94ea3d9cf5d674125", null ],
|
||||
[ "tidyOptSetBool", "group__Configuration.html#gac9de7e155bea5c28713f2bfb93614472", null ],
|
||||
[ "tidyOptResetToDefault", "group__Configuration.html#ga2aa45ad67758ca0b18d14eafa37fe080", null ],
|
||||
[ "tidyOptResetAllToDefault", "group__Configuration.html#ga874ce26884f0eeaf692c30758688888a", null ],
|
||||
[ "tidyOptSnapshot", "group__Configuration.html#ga4beb2c73c90c3e2ae589c2642478cebd", null ],
|
||||
[ "tidyOptResetToSnapshot", "group__Configuration.html#gae6212b8f32990763cc18a6d3f05eb191", null ],
|
||||
[ "tidyOptDiffThanDefault", "group__Configuration.html#ga083cb42d6f4413604240b5c1b3aa2070", null ],
|
||||
[ "tidyOptDiffThanSnapshot", "group__Configuration.html#ga793bc9e177aa90301802e44c4fc22e0e", null ],
|
||||
[ "tidyOptCopyConfig", "group__Configuration.html#ga0b6cb26ab5dbbe0a0841d605fbd06fad", null ],
|
||||
[ "tidyOptGetEncName", "group__Configuration.html#ga47f8502cc202fc7423937647957955a3", null ],
|
||||
[ "tidyOptGetCurrPick", "group__Configuration.html#ga0785047cc73d5fbc88691861a0fa9c78", null ],
|
||||
[ "tidyOptGetDeclTagList", "group__Configuration.html#ga55f30cf9e507f8fc66330ec3b0132620", null ],
|
||||
[ "tidyOptGetNextDeclTag", "group__Configuration.html#gacec933eef8f9eec3dfa4382e05cab251", null ],
|
||||
[ "tidyOptGetDoc", "group__Configuration.html#gafca3ed506463e192187133ff646a643d", null ],
|
||||
[ "tidyOptGetDocLinksList", "group__Configuration.html#gaeed1ef5cb5329f3f5aca0a8ad7e8ea4f", null ],
|
||||
[ "tidyOptGetNextDocLinks", "group__Configuration.html#ga1db79a95067d6364c02263d9492fa9e8", null ]
|
||||
];
|
|
@ -1,517 +0,0 @@
|
|||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=9"/>
|
||||
<title>HTML Tidy: I/O and Messages</title>
|
||||
|
||||
<link href="tabs.css" rel="stylesheet" type="text/css"/>
|
||||
<link href="doxygen.css" rel="stylesheet" type="text/css" />
|
||||
<link href="navtree.css" rel="stylesheet" type="text/css"/>
|
||||
<script type="text/javascript" src="jquery.js"></script>
|
||||
<script type="text/javascript" src="resize.js"></script>
|
||||
<script type="text/javascript" src="navtree.js"></script>
|
||||
<script type="text/javascript">
|
||||
$(document).ready(initResizable);
|
||||
</script>
|
||||
|
||||
|
||||
</head>
|
||||
<body>
|
||||
<div id="top"><!-- do not remove this div! -->
|
||||
|
||||
|
||||
<div id="titlearea">
|
||||
<table cellspacing="0" cellpadding="0">
|
||||
<tbody>
|
||||
<tr style="height: 56px;">
|
||||
|
||||
|
||||
<td style="padding-left: 0.5em;">
|
||||
<div id="projectname">HTML Tidy
|
||||
 <span id="projectnumber">0.1</span>
|
||||
</div>
|
||||
|
||||
</td>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
|
||||
<!-- Generated by Doxygen 1.8.0 -->
|
||||
</div>
|
||||
<div id="side-nav" class="ui-resizable side-nav-resizable">
|
||||
<div id="nav-tree">
|
||||
<div id="nav-tree-contents">
|
||||
</div>
|
||||
</div>
|
||||
<div id="splitbar" style="-moz-user-select:none;"
|
||||
class="ui-resizable-handle">
|
||||
</div>
|
||||
</div>
|
||||
<script type="text/javascript">
|
||||
initNavTree('group__IO.html','');
|
||||
</script>
|
||||
<div id="doc-content">
|
||||
<div class="header">
|
||||
<div class="summary">
|
||||
<a href="#nested-classes">Data Structures</a> |
|
||||
<a href="#define-members">Defines</a> |
|
||||
<a href="#typedef-members">Typedefs</a> |
|
||||
<a href="#func-members">Functions</a> </div>
|
||||
<div class="headertitle">
|
||||
<div class="title">I/O and Messages</div> </div>
|
||||
</div><!--header-->
|
||||
<div class="contents">
|
||||
<table class="memberdecls">
|
||||
<tr><td colspan="2"><h2><a name="nested-classes"></a>
|
||||
Data Structures</h2></td></tr>
|
||||
<tr class="memitem:"><td class="memItemLeft" align="right" valign="top">struct  </td><td class="memItemRight" valign="bottom"><a class="el" href="struct__TidyInputSource.html">_TidyInputSource</a></td></tr>
|
||||
<tr class="memitem:"><td class="memItemLeft" align="right" valign="top">struct  </td><td class="memItemRight" valign="bottom"><a class="el" href="struct__TidyOutputSink.html">_TidyOutputSink</a></td></tr>
|
||||
<tr><td colspan="2"><h2><a name="define-members"></a>
|
||||
Defines</h2></td></tr>
|
||||
<tr class="memitem:ga9a078b706ec6f37cce40958f6f68585a"><td class="memItemLeft" align="right" valign="top">#define </td><td class="memItemRight" valign="bottom"><a class="el" href="group__IO.html#ga9a078b706ec6f37cce40958f6f68585a">EndOfStream</a>   (~0u)</td></tr>
|
||||
<tr><td colspan="2"><h2><a name="typedef-members"></a>
|
||||
Typedefs</h2></td></tr>
|
||||
<tr class="memitem:ga6951f79d4b50288e96a3896ab01393d6"><td class="memItemLeft" align="right" valign="top">typedef int(TIDY_CALL * </td><td class="memItemRight" valign="bottom"><a class="el" href="group__IO.html#ga6951f79d4b50288e96a3896ab01393d6">TidyGetByteFunc</a> )(void *sourceData)</td></tr>
|
||||
<tr class="memitem:ga298b882c5fc7cc969ef58fb187bdd371"><td class="memItemLeft" align="right" valign="top">typedef void(TIDY_CALL * </td><td class="memItemRight" valign="bottom"><a class="el" href="group__IO.html#ga298b882c5fc7cc969ef58fb187bdd371">TidyUngetByteFunc</a> )(void *sourceData, byte bt)</td></tr>
|
||||
<tr class="memitem:ga9f8e1bb4c4740ffb399ec424594c4972"><td class="memItemLeft" align="right" valign="top">typedef Bool(TIDY_CALL * </td><td class="memItemRight" valign="bottom"><a class="el" href="group__IO.html#ga9f8e1bb4c4740ffb399ec424594c4972">TidyEOFFunc</a> )(void *sourceData)</td></tr>
|
||||
<tr class="memitem:ga86fcc3c86bd63b26a559938bc38d34bb"><td class="memItemLeft" align="right" valign="top">typedef TIDY_STRUCT struct <br class="typebreak"/>
|
||||
<a class="el" href="struct__TidyInputSource.html">_TidyInputSource</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="group__IO.html#ga86fcc3c86bd63b26a559938bc38d34bb">TidyInputSource</a></td></tr>
|
||||
<tr class="memitem:ga63bcce5aa5f52e4e2e22aedd750b8bbc"><td class="memItemLeft" align="right" valign="top">typedef void(TIDY_CALL * </td><td class="memItemRight" valign="bottom"><a class="el" href="group__IO.html#ga63bcce5aa5f52e4e2e22aedd750b8bbc">TidyPutByteFunc</a> )(void *sinkData, byte bt)</td></tr>
|
||||
<tr class="memitem:ga6bdd15de48364d2b5dbf2141109d3f98"><td class="memItemLeft" align="right" valign="top">typedef TIDY_STRUCT struct <br class="typebreak"/>
|
||||
<a class="el" href="struct__TidyOutputSink.html">_TidyOutputSink</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="group__IO.html#ga6bdd15de48364d2b5dbf2141109d3f98">TidyOutputSink</a></td></tr>
|
||||
<tr class="memitem:ga29c5bee28b95924a97ea4fbb81668c5e"><td class="memItemLeft" align="right" valign="top">typedef Bool(TIDY_CALL * </td><td class="memItemRight" valign="bottom"><a class="el" href="group__IO.html#ga29c5bee28b95924a97ea4fbb81668c5e">TidyReportFilter</a> )(<a class="el" href="structTidyDoc.html">TidyDoc</a> tdoc, TidyReportLevel lvl, uint line, uint col, ctmbstr mssg)</td></tr>
|
||||
<tr><td colspan="2"><h2><a name="func-members"></a>
|
||||
Functions</h2></td></tr>
|
||||
<tr class="memitem:gab446af273e331cb0440dd01b6990d2d0"><td class="memItemLeft" align="right" valign="top">Bool TIDY_CALL </td><td class="memItemRight" valign="bottom"><a class="el" href="group__IO.html#gab446af273e331cb0440dd01b6990d2d0">tidyInitSource</a> (<a class="el" href="group__IO.html#ga86fcc3c86bd63b26a559938bc38d34bb">TidyInputSource</a> *source, void *srcData, <a class="el" href="group__IO.html#ga6951f79d4b50288e96a3896ab01393d6">TidyGetByteFunc</a> gbFunc, <a class="el" href="group__IO.html#ga298b882c5fc7cc969ef58fb187bdd371">TidyUngetByteFunc</a> ugbFunc, <a class="el" href="group__IO.html#ga9f8e1bb4c4740ffb399ec424594c4972">TidyEOFFunc</a> endFunc)</td></tr>
|
||||
<tr class="memitem:gadba396ffec9f29b27d73a23264dcfa0b"><td class="memItemLeft" align="right" valign="top">uint TIDY_CALL </td><td class="memItemRight" valign="bottom"><a class="el" href="group__IO.html#gadba396ffec9f29b27d73a23264dcfa0b">tidyGetByte</a> (<a class="el" href="group__IO.html#ga86fcc3c86bd63b26a559938bc38d34bb">TidyInputSource</a> *source)</td></tr>
|
||||
<tr class="memitem:ga0c8d46de315cabb0ac7d2cf01ca183d7"><td class="memItemLeft" align="right" valign="top">void TIDY_CALL </td><td class="memItemRight" valign="bottom"><a class="el" href="group__IO.html#ga0c8d46de315cabb0ac7d2cf01ca183d7">tidyUngetByte</a> (<a class="el" href="group__IO.html#ga86fcc3c86bd63b26a559938bc38d34bb">TidyInputSource</a> *source, uint byteValue)</td></tr>
|
||||
<tr class="memitem:ga399df5ba17614205964a665f7b1726a6"><td class="memItemLeft" align="right" valign="top">Bool TIDY_CALL </td><td class="memItemRight" valign="bottom"><a class="el" href="group__IO.html#ga399df5ba17614205964a665f7b1726a6">tidyIsEOF</a> (<a class="el" href="group__IO.html#ga86fcc3c86bd63b26a559938bc38d34bb">TidyInputSource</a> *source)</td></tr>
|
||||
<tr class="memitem:ga7e93289be3a7253cdf99a96285e6a2d4"><td class="memItemLeft" align="right" valign="top">Bool TIDY_CALL </td><td class="memItemRight" valign="bottom"><a class="el" href="group__IO.html#ga7e93289be3a7253cdf99a96285e6a2d4">tidyInitSink</a> (<a class="el" href="group__IO.html#ga6bdd15de48364d2b5dbf2141109d3f98">TidyOutputSink</a> *sink, void *snkData, <a class="el" href="group__IO.html#ga63bcce5aa5f52e4e2e22aedd750b8bbc">TidyPutByteFunc</a> pbFunc)</td></tr>
|
||||
<tr class="memitem:ga2a34772782d7b786e37012fce4cd2425"><td class="memItemLeft" align="right" valign="top">void TIDY_CALL </td><td class="memItemRight" valign="bottom"><a class="el" href="group__IO.html#ga2a34772782d7b786e37012fce4cd2425">tidyPutByte</a> (<a class="el" href="group__IO.html#ga6bdd15de48364d2b5dbf2141109d3f98">TidyOutputSink</a> *sink, uint byteValue)</td></tr>
|
||||
<tr class="memitem:ga51e02523601388bb83c2555b995e68b0"><td class="memItemLeft" align="right" valign="top">Bool TIDY_CALL </td><td class="memItemRight" valign="bottom"><a class="el" href="group__IO.html#ga51e02523601388bb83c2555b995e68b0">tidySetReportFilter</a> (<a class="el" href="structTidyDoc.html">TidyDoc</a> tdoc, <a class="el" href="group__IO.html#ga29c5bee28b95924a97ea4fbb81668c5e">TidyReportFilter</a> filtCallback)</td></tr>
|
||||
<tr class="memitem:ga669758031bbd5d4ba957b19e77229c8b"><td class="memItemLeft" align="right" valign="top">FILE *TIDY_CALL </td><td class="memItemRight" valign="bottom"><a class="el" href="group__IO.html#ga669758031bbd5d4ba957b19e77229c8b">tidySetErrorFile</a> (<a class="el" href="structTidyDoc.html">TidyDoc</a> tdoc, ctmbstr errfilnam)</td></tr>
|
||||
<tr class="memitem:ga5e5cffe93edf4bea0d3214be70d6f77b"><td class="memItemLeft" align="right" valign="top">int TIDY_CALL </td><td class="memItemRight" valign="bottom"><a class="el" href="group__IO.html#ga5e5cffe93edf4bea0d3214be70d6f77b">tidySetErrorBuffer</a> (<a class="el" href="structTidyDoc.html">TidyDoc</a> tdoc, <a class="el" href="struct__TidyBuffer.html">TidyBuffer</a> *errbuf)</td></tr>
|
||||
<tr class="memitem:gad47c75f3af85e7927e7ac18918ec6363"><td class="memItemLeft" align="right" valign="top">int TIDY_CALL </td><td class="memItemRight" valign="bottom"><a class="el" href="group__IO.html#gad47c75f3af85e7927e7ac18918ec6363">tidySetErrorSink</a> (<a class="el" href="structTidyDoc.html">TidyDoc</a> tdoc, <a class="el" href="group__IO.html#ga6bdd15de48364d2b5dbf2141109d3f98">TidyOutputSink</a> *sink)</td></tr>
|
||||
</table>
|
||||
<hr/><a name="details" id="details"></a><h2>Detailed Description</h2>
|
||||
<p>By default, Tidy will define, create and use instances of input and output handlers for standard C buffered I/O (i.e. FILE* stdin, FILE* stdout and FILE* stderr for content input, content output and diagnostic output, respectively. A FILE* cfgFile input handler will be used for config files. Command line options will just be set directly. </p>
|
||||
<hr/><h2>Define Documentation</h2>
|
||||
<a class="anchor" id="ga9a078b706ec6f37cce40958f6f68585a"></a>
|
||||
<div class="memitem">
|
||||
<div class="memproto">
|
||||
<table class="memname">
|
||||
<tr>
|
||||
<td class="memname">#define <a class="el" href="group__IO.html#ga9a078b706ec6f37cce40958f6f68585a">EndOfStream</a>   (~0u)</td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
<div class="memdoc">
|
||||
<p>End of input "character" </p>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
<hr/><h2>Typedef Documentation</h2>
|
||||
<a class="anchor" id="ga6951f79d4b50288e96a3896ab01393d6"></a>
|
||||
<div class="memitem">
|
||||
<div class="memproto">
|
||||
<table class="memname">
|
||||
<tr>
|
||||
<td class="memname">typedef int(TIDY_CALL * <a class="el" href="group__IO.html#ga6951f79d4b50288e96a3896ab01393d6">TidyGetByteFunc</a>)(void *sourceData)</td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
<div class="memdoc">
|
||||
<p>Input Callback: get next byte of input </p>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
<a class="anchor" id="ga298b882c5fc7cc969ef58fb187bdd371"></a>
|
||||
<div class="memitem">
|
||||
<div class="memproto">
|
||||
<table class="memname">
|
||||
<tr>
|
||||
<td class="memname">typedef void(TIDY_CALL * <a class="el" href="group__IO.html#ga298b882c5fc7cc969ef58fb187bdd371">TidyUngetByteFunc</a>)(void *sourceData, byte bt)</td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
<div class="memdoc">
|
||||
<p>Input Callback: unget a byte of input </p>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
<a class="anchor" id="ga9f8e1bb4c4740ffb399ec424594c4972"></a>
|
||||
<div class="memitem">
|
||||
<div class="memproto">
|
||||
<table class="memname">
|
||||
<tr>
|
||||
<td class="memname">typedef Bool(TIDY_CALL * <a class="el" href="group__IO.html#ga9f8e1bb4c4740ffb399ec424594c4972">TidyEOFFunc</a>)(void *sourceData)</td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
<div class="memdoc">
|
||||
<p>Input Callback: is end of input? </p>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
<a class="anchor" id="ga86fcc3c86bd63b26a559938bc38d34bb"></a>
|
||||
<div class="memitem">
|
||||
<div class="memproto">
|
||||
<table class="memname">
|
||||
<tr>
|
||||
<td class="memname">typedef TIDY_STRUCT struct <a class="el" href="struct__TidyInputSource.html">_TidyInputSource</a> <a class="el" href="group__IO.html#ga86fcc3c86bd63b26a559938bc38d34bb">TidyInputSource</a></td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
<div class="memdoc">
|
||||
<p>TidyInputSource - Delivers raw bytes of input </p>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
<a class="anchor" id="ga63bcce5aa5f52e4e2e22aedd750b8bbc"></a>
|
||||
<div class="memitem">
|
||||
<div class="memproto">
|
||||
<table class="memname">
|
||||
<tr>
|
||||
<td class="memname">typedef void(TIDY_CALL * <a class="el" href="group__IO.html#ga63bcce5aa5f52e4e2e22aedd750b8bbc">TidyPutByteFunc</a>)(void *sinkData, byte bt)</td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
<div class="memdoc">
|
||||
<p>Output callback: send a byte to output </p>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
<a class="anchor" id="ga6bdd15de48364d2b5dbf2141109d3f98"></a>
|
||||
<div class="memitem">
|
||||
<div class="memproto">
|
||||
<table class="memname">
|
||||
<tr>
|
||||
<td class="memname">typedef TIDY_STRUCT struct <a class="el" href="struct__TidyOutputSink.html">_TidyOutputSink</a> <a class="el" href="group__IO.html#ga6bdd15de48364d2b5dbf2141109d3f98">TidyOutputSink</a></td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
<div class="memdoc">
|
||||
<p>TidyOutputSink - accepts raw bytes of output </p>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
<a class="anchor" id="ga29c5bee28b95924a97ea4fbb81668c5e"></a>
|
||||
<div class="memitem">
|
||||
<div class="memproto">
|
||||
<table class="memname">
|
||||
<tr>
|
||||
<td class="memname">typedef Bool(TIDY_CALL * <a class="el" href="group__IO.html#ga29c5bee28b95924a97ea4fbb81668c5e">TidyReportFilter</a>)(<a class="el" href="structTidyDoc.html">TidyDoc</a> tdoc, TidyReportLevel lvl, uint line, uint col, ctmbstr mssg)</td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
<div class="memdoc">
|
||||
<p>Callback to filter messages by diagnostic level: info, warning, etc. Just set diagnostic output handler to redirect all diagnostics output. Return true to proceed with output, false to cancel. </p>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
<hr/><h2>Function Documentation</h2>
|
||||
<a class="anchor" id="gab446af273e331cb0440dd01b6990d2d0"></a>
|
||||
<div class="memitem">
|
||||
<div class="memproto">
|
||||
<table class="memname">
|
||||
<tr>
|
||||
<td class="memname">Bool TIDY_CALL <a class="el" href="group__IO.html#gab446af273e331cb0440dd01b6990d2d0">tidyInitSource</a> </td>
|
||||
<td>(</td>
|
||||
<td class="paramtype"><a class="el" href="group__IO.html#ga86fcc3c86bd63b26a559938bc38d34bb">TidyInputSource</a> * </td>
|
||||
<td class="paramname"><em>source</em>, </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="paramkey"></td>
|
||||
<td></td>
|
||||
<td class="paramtype">void * </td>
|
||||
<td class="paramname"><em>srcData</em>, </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="paramkey"></td>
|
||||
<td></td>
|
||||
<td class="paramtype"><a class="el" href="group__IO.html#ga6951f79d4b50288e96a3896ab01393d6">TidyGetByteFunc</a> </td>
|
||||
<td class="paramname"><em>gbFunc</em>, </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="paramkey"></td>
|
||||
<td></td>
|
||||
<td class="paramtype"><a class="el" href="group__IO.html#ga298b882c5fc7cc969ef58fb187bdd371">TidyUngetByteFunc</a> </td>
|
||||
<td class="paramname"><em>ugbFunc</em>, </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="paramkey"></td>
|
||||
<td></td>
|
||||
<td class="paramtype"><a class="el" href="group__IO.html#ga9f8e1bb4c4740ffb399ec424594c4972">TidyEOFFunc</a> </td>
|
||||
<td class="paramname"><em>endFunc</em> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td></td>
|
||||
<td>)</td>
|
||||
<td></td><td></td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
<div class="memdoc">
|
||||
<p>Facilitates user defined source by providing an entry point to marshal pointers-to-functions. Needed by .NET and possibly other language bindings. </p>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
<a class="anchor" id="gadba396ffec9f29b27d73a23264dcfa0b"></a>
|
||||
<div class="memitem">
|
||||
<div class="memproto">
|
||||
<table class="memname">
|
||||
<tr>
|
||||
<td class="memname">uint TIDY_CALL <a class="el" href="group__IO.html#gadba396ffec9f29b27d73a23264dcfa0b">tidyGetByte</a> </td>
|
||||
<td>(</td>
|
||||
<td class="paramtype"><a class="el" href="group__IO.html#ga86fcc3c86bd63b26a559938bc38d34bb">TidyInputSource</a> * </td>
|
||||
<td class="paramname"><em>source</em></td><td>)</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
<div class="memdoc">
|
||||
<p>Helper: get next byte from input source </p>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
<a class="anchor" id="ga0c8d46de315cabb0ac7d2cf01ca183d7"></a>
|
||||
<div class="memitem">
|
||||
<div class="memproto">
|
||||
<table class="memname">
|
||||
<tr>
|
||||
<td class="memname">void TIDY_CALL <a class="el" href="group__IO.html#ga0c8d46de315cabb0ac7d2cf01ca183d7">tidyUngetByte</a> </td>
|
||||
<td>(</td>
|
||||
<td class="paramtype"><a class="el" href="group__IO.html#ga86fcc3c86bd63b26a559938bc38d34bb">TidyInputSource</a> * </td>
|
||||
<td class="paramname"><em>source</em>, </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="paramkey"></td>
|
||||
<td></td>
|
||||
<td class="paramtype">uint </td>
|
||||
<td class="paramname"><em>byteValue</em> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td></td>
|
||||
<td>)</td>
|
||||
<td></td><td></td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
<div class="memdoc">
|
||||
<p>Helper: unget byte back to input source </p>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
<a class="anchor" id="ga399df5ba17614205964a665f7b1726a6"></a>
|
||||
<div class="memitem">
|
||||
<div class="memproto">
|
||||
<table class="memname">
|
||||
<tr>
|
||||
<td class="memname">Bool TIDY_CALL <a class="el" href="group__IO.html#ga399df5ba17614205964a665f7b1726a6">tidyIsEOF</a> </td>
|
||||
<td>(</td>
|
||||
<td class="paramtype"><a class="el" href="group__IO.html#ga86fcc3c86bd63b26a559938bc38d34bb">TidyInputSource</a> * </td>
|
||||
<td class="paramname"><em>source</em></td><td>)</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
<div class="memdoc">
|
||||
<p>Helper: check if input source at end </p>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
<a class="anchor" id="ga7e93289be3a7253cdf99a96285e6a2d4"></a>
|
||||
<div class="memitem">
|
||||
<div class="memproto">
|
||||
<table class="memname">
|
||||
<tr>
|
||||
<td class="memname">Bool TIDY_CALL <a class="el" href="group__IO.html#ga7e93289be3a7253cdf99a96285e6a2d4">tidyInitSink</a> </td>
|
||||
<td>(</td>
|
||||
<td class="paramtype"><a class="el" href="group__IO.html#ga6bdd15de48364d2b5dbf2141109d3f98">TidyOutputSink</a> * </td>
|
||||
<td class="paramname"><em>sink</em>, </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="paramkey"></td>
|
||||
<td></td>
|
||||
<td class="paramtype">void * </td>
|
||||
<td class="paramname"><em>snkData</em>, </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="paramkey"></td>
|
||||
<td></td>
|
||||
<td class="paramtype"><a class="el" href="group__IO.html#ga63bcce5aa5f52e4e2e22aedd750b8bbc">TidyPutByteFunc</a> </td>
|
||||
<td class="paramname"><em>pbFunc</em> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td></td>
|
||||
<td>)</td>
|
||||
<td></td><td></td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
<div class="memdoc">
|
||||
<p>Facilitates user defined sinks by providing an entry point to marshal pointers-to-functions. Needed by .NET and possibly other language bindings. </p>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
<a class="anchor" id="ga2a34772782d7b786e37012fce4cd2425"></a>
|
||||
<div class="memitem">
|
||||
<div class="memproto">
|
||||
<table class="memname">
|
||||
<tr>
|
||||
<td class="memname">void TIDY_CALL <a class="el" href="group__IO.html#ga2a34772782d7b786e37012fce4cd2425">tidyPutByte</a> </td>
|
||||
<td>(</td>
|
||||
<td class="paramtype"><a class="el" href="group__IO.html#ga6bdd15de48364d2b5dbf2141109d3f98">TidyOutputSink</a> * </td>
|
||||
<td class="paramname"><em>sink</em>, </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="paramkey"></td>
|
||||
<td></td>
|
||||
<td class="paramtype">uint </td>
|
||||
<td class="paramname"><em>byteValue</em> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td></td>
|
||||
<td>)</td>
|
||||
<td></td><td></td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
<div class="memdoc">
|
||||
<p>Helper: send a byte to output </p>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
<a class="anchor" id="ga51e02523601388bb83c2555b995e68b0"></a>
|
||||
<div class="memitem">
|
||||
<div class="memproto">
|
||||
<table class="memname">
|
||||
<tr>
|
||||
<td class="memname">Bool TIDY_CALL <a class="el" href="group__IO.html#ga51e02523601388bb83c2555b995e68b0">tidySetReportFilter</a> </td>
|
||||
<td>(</td>
|
||||
<td class="paramtype"><a class="el" href="structTidyDoc.html">TidyDoc</a> </td>
|
||||
<td class="paramname"><em>tdoc</em>, </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="paramkey"></td>
|
||||
<td></td>
|
||||
<td class="paramtype"><a class="el" href="group__IO.html#ga29c5bee28b95924a97ea4fbb81668c5e">TidyReportFilter</a> </td>
|
||||
<td class="paramname"><em>filtCallback</em> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td></td>
|
||||
<td>)</td>
|
||||
<td></td><td></td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
<div class="memdoc">
|
||||
<p>Give Tidy a filter callback to use </p>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
<a class="anchor" id="ga669758031bbd5d4ba957b19e77229c8b"></a>
|
||||
<div class="memitem">
|
||||
<div class="memproto">
|
||||
<table class="memname">
|
||||
<tr>
|
||||
<td class="memname">FILE* TIDY_CALL <a class="el" href="group__IO.html#ga669758031bbd5d4ba957b19e77229c8b">tidySetErrorFile</a> </td>
|
||||
<td>(</td>
|
||||
<td class="paramtype"><a class="el" href="structTidyDoc.html">TidyDoc</a> </td>
|
||||
<td class="paramname"><em>tdoc</em>, </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="paramkey"></td>
|
||||
<td></td>
|
||||
<td class="paramtype">ctmbstr </td>
|
||||
<td class="paramname"><em>errfilnam</em> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td></td>
|
||||
<td>)</td>
|
||||
<td></td><td></td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
<div class="memdoc">
|
||||
<p>Set error sink to named file </p>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
<a class="anchor" id="ga5e5cffe93edf4bea0d3214be70d6f77b"></a>
|
||||
<div class="memitem">
|
||||
<div class="memproto">
|
||||
<table class="memname">
|
||||
<tr>
|
||||
<td class="memname">int TIDY_CALL <a class="el" href="group__IO.html#ga5e5cffe93edf4bea0d3214be70d6f77b">tidySetErrorBuffer</a> </td>
|
||||
<td>(</td>
|
||||
<td class="paramtype"><a class="el" href="structTidyDoc.html">TidyDoc</a> </td>
|
||||
<td class="paramname"><em>tdoc</em>, </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="paramkey"></td>
|
||||
<td></td>
|
||||
<td class="paramtype"><a class="el" href="struct__TidyBuffer.html">TidyBuffer</a> * </td>
|
||||
<td class="paramname"><em>errbuf</em> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td></td>
|
||||
<td>)</td>
|
||||
<td></td><td></td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
<div class="memdoc">
|
||||
<p>Set error sink to given buffer </p>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
<a class="anchor" id="gad47c75f3af85e7927e7ac18918ec6363"></a>
|
||||
<div class="memitem">
|
||||
<div class="memproto">
|
||||
<table class="memname">
|
||||
<tr>
|
||||
<td class="memname">int TIDY_CALL <a class="el" href="group__IO.html#gad47c75f3af85e7927e7ac18918ec6363">tidySetErrorSink</a> </td>
|
||||
<td>(</td>
|
||||
<td class="paramtype"><a class="el" href="structTidyDoc.html">TidyDoc</a> </td>
|
||||
<td class="paramname"><em>tdoc</em>, </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="paramkey"></td>
|
||||
<td></td>
|
||||
<td class="paramtype"><a class="el" href="group__IO.html#ga6bdd15de48364d2b5dbf2141109d3f98">TidyOutputSink</a> * </td>
|
||||
<td class="paramname"><em>sink</em> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td></td>
|
||||
<td>)</td>
|
||||
<td></td><td></td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
<div class="memdoc">
|
||||
<p>Set error sink to given generic sink </p>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div><!-- contents -->
|
||||
</div>
|
||||
<div id="nav-path" class="navpath">
|
||||
<ul>
|
||||
|
||||
<li class="footer">Generated on Wed Jun 20 2012 16:58:07 for HTML Tidy by
|
||||
<a href="http://www.doxygen.org/index.html">
|
||||
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.0 </li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
|
@ -1,23 +0,0 @@
|
|||
var group__IO =
|
||||
[
|
||||
[ "_TidyInputSource", "struct__TidyInputSource.html", null ],
|
||||
[ "_TidyOutputSink", "struct__TidyOutputSink.html", null ],
|
||||
[ "EndOfStream", "group__IO.html#ga9a078b706ec6f37cce40958f6f68585a", null ],
|
||||
[ "TidyGetByteFunc", "group__IO.html#ga6951f79d4b50288e96a3896ab01393d6", null ],
|
||||
[ "TidyUngetByteFunc", "group__IO.html#ga298b882c5fc7cc969ef58fb187bdd371", null ],
|
||||
[ "TidyEOFFunc", "group__IO.html#ga9f8e1bb4c4740ffb399ec424594c4972", null ],
|
||||
[ "TidyInputSource", "group__IO.html#ga86fcc3c86bd63b26a559938bc38d34bb", null ],
|
||||
[ "TidyPutByteFunc", "group__IO.html#ga63bcce5aa5f52e4e2e22aedd750b8bbc", null ],
|
||||
[ "TidyOutputSink", "group__IO.html#ga6bdd15de48364d2b5dbf2141109d3f98", null ],
|
||||
[ "TidyReportFilter", "group__IO.html#ga29c5bee28b95924a97ea4fbb81668c5e", null ],
|
||||
[ "tidyInitSource", "group__IO.html#gab446af273e331cb0440dd01b6990d2d0", null ],
|
||||
[ "tidyGetByte", "group__IO.html#gadba396ffec9f29b27d73a23264dcfa0b", null ],
|
||||
[ "tidyUngetByte", "group__IO.html#ga0c8d46de315cabb0ac7d2cf01ca183d7", null ],
|
||||
[ "tidyIsEOF", "group__IO.html#ga399df5ba17614205964a665f7b1726a6", null ],
|
||||
[ "tidyInitSink", "group__IO.html#ga7e93289be3a7253cdf99a96285e6a2d4", null ],
|
||||
[ "tidyPutByte", "group__IO.html#ga2a34772782d7b786e37012fce4cd2425", null ],
|
||||
[ "tidySetReportFilter", "group__IO.html#ga51e02523601388bb83c2555b995e68b0", null ],
|
||||
[ "tidySetErrorFile", "group__IO.html#ga669758031bbd5d4ba957b19e77229c8b", null ],
|
||||
[ "tidySetErrorBuffer", "group__IO.html#ga5e5cffe93edf4bea0d3214be70d6f77b", null ],
|
||||
[ "tidySetErrorSink", "group__IO.html#gad47c75f3af85e7927e7ac18918ec6363", null ]
|
||||
];
|
|
@ -1,270 +0,0 @@
|
|||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=9"/>
|
||||
<title>HTML Tidy: Memory Allocation</title>
|
||||
|
||||
<link href="tabs.css" rel="stylesheet" type="text/css"/>
|
||||
<link href="doxygen.css" rel="stylesheet" type="text/css" />
|
||||
<link href="navtree.css" rel="stylesheet" type="text/css"/>
|
||||
<script type="text/javascript" src="jquery.js"></script>
|
||||
<script type="text/javascript" src="resize.js"></script>
|
||||
<script type="text/javascript" src="navtree.js"></script>
|
||||
<script type="text/javascript">
|
||||
$(document).ready(initResizable);
|
||||
</script>
|
||||
|
||||
|
||||
</head>
|
||||
<body>
|
||||
<div id="top"><!-- do not remove this div! -->
|
||||
|
||||
|
||||
<div id="titlearea">
|
||||
<table cellspacing="0" cellpadding="0">
|
||||
<tbody>
|
||||
<tr style="height: 56px;">
|
||||
|
||||
|
||||
<td style="padding-left: 0.5em;">
|
||||
<div id="projectname">HTML Tidy
|
||||
 <span id="projectnumber">0.1</span>
|
||||
</div>
|
||||
|
||||
</td>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
|
||||
<!-- Generated by Doxygen 1.8.0 -->
|
||||
</div>
|
||||
<div id="side-nav" class="ui-resizable side-nav-resizable">
|
||||
<div id="nav-tree">
|
||||
<div id="nav-tree-contents">
|
||||
</div>
|
||||
</div>
|
||||
<div id="splitbar" style="-moz-user-select:none;"
|
||||
class="ui-resizable-handle">
|
||||
</div>
|
||||
</div>
|
||||
<script type="text/javascript">
|
||||
initNavTree('group__Memory.html','');
|
||||
</script>
|
||||
<div id="doc-content">
|
||||
<div class="header">
|
||||
<div class="summary">
|
||||
<a href="#nested-classes">Data Structures</a> |
|
||||
<a href="#typedef-members">Typedefs</a> |
|
||||
<a href="#func-members">Functions</a> </div>
|
||||
<div class="headertitle">
|
||||
<div class="title">Memory Allocation</div> </div>
|
||||
</div><!--header-->
|
||||
<div class="contents">
|
||||
<table class="memberdecls">
|
||||
<tr><td colspan="2"><h2><a name="nested-classes"></a>
|
||||
Data Structures</h2></td></tr>
|
||||
<tr class="memitem:"><td class="memItemLeft" align="right" valign="top">struct  </td><td class="memItemRight" valign="bottom"><a class="el" href="struct__TidyAllocatorVtbl.html">_TidyAllocatorVtbl</a></td></tr>
|
||||
<tr class="memitem:"><td class="memItemLeft" align="right" valign="top">struct  </td><td class="memItemRight" valign="bottom"><a class="el" href="struct__TidyAllocator.html">_TidyAllocator</a></td></tr>
|
||||
<tr><td colspan="2"><h2><a name="typedef-members"></a>
|
||||
Typedefs</h2></td></tr>
|
||||
<tr class="memitem:ga3fe8c5ac7d658618c732565776940ed8"><td class="memItemLeft" align="right" valign="top">typedef struct <a class="el" href="struct__TidyAllocatorVtbl.html">_TidyAllocatorVtbl</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="group__Memory.html#ga3fe8c5ac7d658618c732565776940ed8">TidyAllocatorVtbl</a></td></tr>
|
||||
<tr class="memitem:ga78e96524a88db0c09e766795265863da"><td class="memItemLeft" align="right" valign="top">typedef struct <a class="el" href="struct__TidyAllocator.html">_TidyAllocator</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="group__Memory.html#ga78e96524a88db0c09e766795265863da">TidyAllocator</a></td></tr>
|
||||
<tr class="memitem:ga3bd3cc4d0c837a4cd10ab472ba671430"><td class="memItemLeft" align="right" valign="top">typedef void *(TIDY_CALL * </td><td class="memItemRight" valign="bottom"><a class="el" href="group__Memory.html#ga3bd3cc4d0c837a4cd10ab472ba671430">TidyMalloc</a> )(size_t len)</td></tr>
|
||||
<tr class="memitem:ga9d9a5625817932dbbb39dd33de678edd"><td class="memItemLeft" align="right" valign="top">typedef void *(TIDY_CALL * </td><td class="memItemRight" valign="bottom"><a class="el" href="group__Memory.html#ga9d9a5625817932dbbb39dd33de678edd">TidyRealloc</a> )(void *buf, size_t len)</td></tr>
|
||||
<tr class="memitem:ga27931c443e424937ba47f0d4795aa35f"><td class="memItemLeft" align="right" valign="top">typedef void(TIDY_CALL * </td><td class="memItemRight" valign="bottom"><a class="el" href="group__Memory.html#ga27931c443e424937ba47f0d4795aa35f">TidyFree</a> )(void *buf)</td></tr>
|
||||
<tr class="memitem:ga0770be41d9935a3e2933ba0be3c7725c"><td class="memItemLeft" align="right" valign="top">typedef void(TIDY_CALL * </td><td class="memItemRight" valign="bottom"><a class="el" href="group__Memory.html#ga0770be41d9935a3e2933ba0be3c7725c">TidyPanic</a> )(ctmbstr mssg)</td></tr>
|
||||
<tr><td colspan="2"><h2><a name="func-members"></a>
|
||||
Functions</h2></td></tr>
|
||||
<tr class="memitem:gab55079374527525e3374ebc4d2a1e625"><td class="memItemLeft" align="right" valign="top">Bool TIDY_CALL </td><td class="memItemRight" valign="bottom"><a class="el" href="group__Memory.html#gab55079374527525e3374ebc4d2a1e625">tidySetMallocCall</a> (<a class="el" href="group__Memory.html#ga3bd3cc4d0c837a4cd10ab472ba671430">TidyMalloc</a> fmalloc)</td></tr>
|
||||
<tr class="memitem:ga446b538da3ee3f2e5a3827b877665b30"><td class="memItemLeft" align="right" valign="top">Bool TIDY_CALL </td><td class="memItemRight" valign="bottom"><a class="el" href="group__Memory.html#ga446b538da3ee3f2e5a3827b877665b30">tidySetReallocCall</a> (<a class="el" href="group__Memory.html#ga9d9a5625817932dbbb39dd33de678edd">TidyRealloc</a> frealloc)</td></tr>
|
||||
<tr class="memitem:ga70e707b7df86effb5727b0b9ff64eed7"><td class="memItemLeft" align="right" valign="top">Bool TIDY_CALL </td><td class="memItemRight" valign="bottom"><a class="el" href="group__Memory.html#ga70e707b7df86effb5727b0b9ff64eed7">tidySetFreeCall</a> (<a class="el" href="group__Memory.html#ga27931c443e424937ba47f0d4795aa35f">TidyFree</a> ffree)</td></tr>
|
||||
<tr class="memitem:gab12cc0435bacec1a8c725e02357acc00"><td class="memItemLeft" align="right" valign="top">Bool TIDY_CALL </td><td class="memItemRight" valign="bottom"><a class="el" href="group__Memory.html#gab12cc0435bacec1a8c725e02357acc00">tidySetPanicCall</a> (<a class="el" href="group__Memory.html#ga0770be41d9935a3e2933ba0be3c7725c">TidyPanic</a> fpanic)</td></tr>
|
||||
</table>
|
||||
<hr/><a name="details" id="details"></a><h2>Detailed Description</h2>
|
||||
<p>Tidy uses a user provided allocator for all memory allocations. If this allocator is not provided, then a default allocator is used which simply wraps standard C malloc/free calls. These wrappers call the panic function upon any failure. The default panic function prints an out of memory message to stderr, and calls exit(2).</p>
|
||||
<p>For applications in which it is unacceptable to abort in the case of memory allocation, then the panic function can be replaced with one which longjmps() out of the tidy code. For this to clean up completely, you should be careful not to use any tidy methods that open files as these will not be closed before panic() is called.</p>
|
||||
<p>TODO: associate file handles with tidyDoc and ensure that tidyDocRelease() can close them all.</p>
|
||||
<p>Calling the withAllocator() family ( tidyCreateWithAllocator, tidyBufInitWithAllocator, tidyBufAllocWithAllocator) allow settings custom allocators).</p>
|
||||
<p>All parts of the document use the same allocator. Calls that require a user provided buffer can optionally use a different allocator.</p>
|
||||
<p>For reference in designing a plug-in allocator, most allocations made by tidy are less than 100 bytes, corresponding to attribute names/values, etc.</p>
|
||||
<p>There is also an additional class of much larger allocations which are where most of the data from the lexer is stored. (It is not currently possible to use a separate allocator for the lexer, this would be a useful extension).</p>
|
||||
<p>In general, approximately 1/3rd of the memory used by tidy is freed during the parse, so if memory usage is an issue then an allocator that can reuse this memory is a good idea. </p>
|
||||
<hr/><h2>Typedef Documentation</h2>
|
||||
<a class="anchor" id="ga3fe8c5ac7d658618c732565776940ed8"></a>
|
||||
<div class="memitem">
|
||||
<div class="memproto">
|
||||
<table class="memname">
|
||||
<tr>
|
||||
<td class="memname">typedef struct <a class="el" href="struct__TidyAllocatorVtbl.html">_TidyAllocatorVtbl</a> <a class="el" href="group__Memory.html#ga3fe8c5ac7d658618c732565776940ed8">TidyAllocatorVtbl</a></td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
<div class="memdoc">
|
||||
<p>The allocators function table </p>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
<a class="anchor" id="ga78e96524a88db0c09e766795265863da"></a>
|
||||
<div class="memitem">
|
||||
<div class="memproto">
|
||||
<table class="memname">
|
||||
<tr>
|
||||
<td class="memname">typedef struct <a class="el" href="struct__TidyAllocator.html">_TidyAllocator</a> <a class="el" href="group__Memory.html#ga78e96524a88db0c09e766795265863da">TidyAllocator</a></td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
<div class="memdoc">
|
||||
<p>The allocator </p>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
<a class="anchor" id="ga3bd3cc4d0c837a4cd10ab472ba671430"></a>
|
||||
<div class="memitem">
|
||||
<div class="memproto">
|
||||
<table class="memname">
|
||||
<tr>
|
||||
<td class="memname">typedef void*(TIDY_CALL * <a class="el" href="group__Memory.html#ga3bd3cc4d0c837a4cd10ab472ba671430">TidyMalloc</a>)(size_t len)</td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
<div class="memdoc">
|
||||
<p>Callback for "malloc" replacement </p>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
<a class="anchor" id="ga9d9a5625817932dbbb39dd33de678edd"></a>
|
||||
<div class="memitem">
|
||||
<div class="memproto">
|
||||
<table class="memname">
|
||||
<tr>
|
||||
<td class="memname">typedef void*(TIDY_CALL * <a class="el" href="group__Memory.html#ga9d9a5625817932dbbb39dd33de678edd">TidyRealloc</a>)(void *buf, size_t len)</td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
<div class="memdoc">
|
||||
<p>Callback for "realloc" replacement </p>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
<a class="anchor" id="ga27931c443e424937ba47f0d4795aa35f"></a>
|
||||
<div class="memitem">
|
||||
<div class="memproto">
|
||||
<table class="memname">
|
||||
<tr>
|
||||
<td class="memname">typedef void(TIDY_CALL * <a class="el" href="group__Memory.html#ga27931c443e424937ba47f0d4795aa35f">TidyFree</a>)(void *buf)</td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
<div class="memdoc">
|
||||
<p>Callback for "free" replacement </p>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
<a class="anchor" id="ga0770be41d9935a3e2933ba0be3c7725c"></a>
|
||||
<div class="memitem">
|
||||
<div class="memproto">
|
||||
<table class="memname">
|
||||
<tr>
|
||||
<td class="memname">typedef void(TIDY_CALL * <a class="el" href="group__Memory.html#ga0770be41d9935a3e2933ba0be3c7725c">TidyPanic</a>)(ctmbstr mssg)</td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
<div class="memdoc">
|
||||
<p>Callback for "out of memory" panic state </p>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
<hr/><h2>Function Documentation</h2>
|
||||
<a class="anchor" id="gab55079374527525e3374ebc4d2a1e625"></a>
|
||||
<div class="memitem">
|
||||
<div class="memproto">
|
||||
<table class="memname">
|
||||
<tr>
|
||||
<td class="memname">Bool TIDY_CALL <a class="el" href="group__Memory.html#gab55079374527525e3374ebc4d2a1e625">tidySetMallocCall</a> </td>
|
||||
<td>(</td>
|
||||
<td class="paramtype"><a class="el" href="group__Memory.html#ga3bd3cc4d0c837a4cd10ab472ba671430">TidyMalloc</a> </td>
|
||||
<td class="paramname"><em>fmalloc</em></td><td>)</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
<div class="memdoc">
|
||||
<p>Give Tidy a malloc() replacement </p>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
<a class="anchor" id="ga446b538da3ee3f2e5a3827b877665b30"></a>
|
||||
<div class="memitem">
|
||||
<div class="memproto">
|
||||
<table class="memname">
|
||||
<tr>
|
||||
<td class="memname">Bool TIDY_CALL <a class="el" href="group__Memory.html#ga446b538da3ee3f2e5a3827b877665b30">tidySetReallocCall</a> </td>
|
||||
<td>(</td>
|
||||
<td class="paramtype"><a class="el" href="group__Memory.html#ga9d9a5625817932dbbb39dd33de678edd">TidyRealloc</a> </td>
|
||||
<td class="paramname"><em>frealloc</em></td><td>)</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
<div class="memdoc">
|
||||
<p>Give Tidy a realloc() replacement </p>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
<a class="anchor" id="ga70e707b7df86effb5727b0b9ff64eed7"></a>
|
||||
<div class="memitem">
|
||||
<div class="memproto">
|
||||
<table class="memname">
|
||||
<tr>
|
||||
<td class="memname">Bool TIDY_CALL <a class="el" href="group__Memory.html#ga70e707b7df86effb5727b0b9ff64eed7">tidySetFreeCall</a> </td>
|
||||
<td>(</td>
|
||||
<td class="paramtype"><a class="el" href="group__Memory.html#ga27931c443e424937ba47f0d4795aa35f">TidyFree</a> </td>
|
||||
<td class="paramname"><em>ffree</em></td><td>)</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
<div class="memdoc">
|
||||
<p>Give Tidy a free() replacement </p>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
<a class="anchor" id="gab12cc0435bacec1a8c725e02357acc00"></a>
|
||||
<div class="memitem">
|
||||
<div class="memproto">
|
||||
<table class="memname">
|
||||
<tr>
|
||||
<td class="memname">Bool TIDY_CALL <a class="el" href="group__Memory.html#gab12cc0435bacec1a8c725e02357acc00">tidySetPanicCall</a> </td>
|
||||
<td>(</td>
|
||||
<td class="paramtype"><a class="el" href="group__Memory.html#ga0770be41d9935a3e2933ba0be3c7725c">TidyPanic</a> </td>
|
||||
<td class="paramname"><em>fpanic</em></td><td>)</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
<div class="memdoc">
|
||||
<p>Give Tidy an "out of memory" handler </p>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div><!-- contents -->
|
||||
</div>
|
||||
<div id="nav-path" class="navpath">
|
||||
<ul>
|
||||
|
||||
<li class="footer">Generated on Wed Jun 20 2012 16:58:07 for HTML Tidy by
|
||||
<a href="http://www.doxygen.org/index.html">
|
||||
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.0 </li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
|
@ -1,15 +0,0 @@
|
|||
var group__Memory =
|
||||
[
|
||||
[ "_TidyAllocatorVtbl", "struct__TidyAllocatorVtbl.html", null ],
|
||||
[ "_TidyAllocator", "struct__TidyAllocator.html", null ],
|
||||
[ "TidyAllocatorVtbl", "group__Memory.html#ga3fe8c5ac7d658618c732565776940ed8", null ],
|
||||
[ "TidyAllocator", "group__Memory.html#ga78e96524a88db0c09e766795265863da", null ],
|
||||
[ "TidyMalloc", "group__Memory.html#ga3bd3cc4d0c837a4cd10ab472ba671430", null ],
|
||||
[ "TidyRealloc", "group__Memory.html#ga9d9a5625817932dbbb39dd33de678edd", null ],
|
||||
[ "TidyFree", "group__Memory.html#ga27931c443e424937ba47f0d4795aa35f", null ],
|
||||
[ "TidyPanic", "group__Memory.html#ga0770be41d9935a3e2933ba0be3c7725c", null ],
|
||||
[ "tidySetMallocCall", "group__Memory.html#gab55079374527525e3374ebc4d2a1e625", null ],
|
||||
[ "tidySetReallocCall", "group__Memory.html#ga446b538da3ee3f2e5a3827b877665b30", null ],
|
||||
[ "tidySetFreeCall", "group__Memory.html#ga70e707b7df86effb5727b0b9ff64eed7", null ],
|
||||
[ "tidySetPanicCall", "group__Memory.html#gab12cc0435bacec1a8c725e02357acc00", null ]
|
||||
];
|
|
@ -1,113 +0,0 @@
|
|||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=9"/>
|
||||
<title>HTML Tidy: Node Interrogation</title>
|
||||
|
||||
<link href="tabs.css" rel="stylesheet" type="text/css"/>
|
||||
<link href="doxygen.css" rel="stylesheet" type="text/css" />
|
||||
<link href="navtree.css" rel="stylesheet" type="text/css"/>
|
||||
<script type="text/javascript" src="jquery.js"></script>
|
||||
<script type="text/javascript" src="resize.js"></script>
|
||||
<script type="text/javascript" src="navtree.js"></script>
|
||||
<script type="text/javascript">
|
||||
$(document).ready(initResizable);
|
||||
</script>
|
||||
|
||||
|
||||
</head>
|
||||
<body>
|
||||
<div id="top"><!-- do not remove this div! -->
|
||||
|
||||
|
||||
<div id="titlearea">
|
||||
<table cellspacing="0" cellpadding="0">
|
||||
<tbody>
|
||||
<tr style="height: 56px;">
|
||||
|
||||
|
||||
<td style="padding-left: 0.5em;">
|
||||
<div id="projectname">HTML Tidy
|
||||
 <span id="projectnumber">0.1</span>
|
||||
</div>
|
||||
|
||||
</td>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
|
||||
<!-- Generated by Doxygen 1.8.0 -->
|
||||
</div>
|
||||
<div id="side-nav" class="ui-resizable side-nav-resizable">
|
||||
<div id="nav-tree">
|
||||
<div id="nav-tree-contents">
|
||||
</div>
|
||||
</div>
|
||||
<div id="splitbar" style="-moz-user-select:none;"
|
||||
class="ui-resizable-handle">
|
||||
</div>
|
||||
</div>
|
||||
<script type="text/javascript">
|
||||
initNavTree('group__NodeAsk.html','');
|
||||
</script>
|
||||
<div id="doc-content">
|
||||
<div class="header">
|
||||
<div class="summary">
|
||||
<a href="#groups">Modules</a> |
|
||||
<a href="#func-members">Functions</a> </div>
|
||||
<div class="headertitle">
|
||||
<div class="title">Node Interrogation</div> </div>
|
||||
</div><!--header-->
|
||||
<div class="contents">
|
||||
<table class="memberdecls">
|
||||
<tr><td colspan="2"><h2><a name="groups"></a>
|
||||
Modules</h2></td></tr>
|
||||
<tr class="memitem:group__NodeIsElementName"><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="group__NodeIsElementName.html">Deprecated node interrogation per TagId</a></td></tr>
|
||||
<tr><td colspan="2"><h2><a name="func-members"></a>
|
||||
Functions</h2></td></tr>
|
||||
<tr class="memitem:gaa9786b1ce44061e2811d1ecbcd76d318"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gaa9786b1ce44061e2811d1ecbcd76d318"></a>
|
||||
TidyNodeType TIDY_CALL </td><td class="memItemRight" valign="bottom"><b>tidyNodeGetType</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
|
||||
<tr class="memitem:ga5ea4ecef06555a58f942b2c500722156"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga5ea4ecef06555a58f942b2c500722156"></a>
|
||||
ctmbstr TIDY_CALL </td><td class="memItemRight" valign="bottom"><b>tidyNodeGetName</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
|
||||
<tr class="memitem:ga446c2a5ed55a75685074585f007b52c5"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga446c2a5ed55a75685074585f007b52c5"></a>
|
||||
Bool TIDY_CALL </td><td class="memItemRight" valign="bottom"><b>tidyNodeIsText</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
|
||||
<tr class="memitem:ga2eb2b4a0ee75c74215de9859467d17f1"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga2eb2b4a0ee75c74215de9859467d17f1"></a>
|
||||
Bool TIDY_CALL </td><td class="memItemRight" valign="bottom"><b>tidyNodeIsProp</b> (<a class="el" href="structTidyDoc.html">TidyDoc</a> tdoc, <a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
|
||||
<tr class="memitem:ga69c929ff5987273560e683e44b2515eb"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga69c929ff5987273560e683e44b2515eb"></a>
|
||||
Bool TIDY_CALL </td><td class="memItemRight" valign="bottom"><b>tidyNodeIsHeader</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
|
||||
<tr class="memitem:ga4abc910dd180773665c6e2e4e30ea2d7"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga4abc910dd180773665c6e2e4e30ea2d7"></a>
|
||||
Bool TIDY_CALL </td><td class="memItemRight" valign="bottom"><b>tidyNodeHasText</b> (<a class="el" href="structTidyDoc.html">TidyDoc</a> tdoc, <a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
|
||||
<tr class="memitem:ga174176952045d3a79500451eae0322d6"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga174176952045d3a79500451eae0322d6"></a>
|
||||
Bool TIDY_CALL </td><td class="memItemRight" valign="bottom"><b>tidyNodeGetText</b> (<a class="el" href="structTidyDoc.html">TidyDoc</a> tdoc, <a class="el" href="structTidyNode.html">TidyNode</a> tnod, <a class="el" href="struct__TidyBuffer.html">TidyBuffer</a> *buf)</td></tr>
|
||||
<tr class="memitem:ga775c446f1fd1ffa25eb688af6c56853c"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga775c446f1fd1ffa25eb688af6c56853c"></a>
|
||||
Bool TIDY_CALL </td><td class="memItemRight" valign="bottom"><b>tidyNodeGetValue</b> (<a class="el" href="structTidyDoc.html">TidyDoc</a> tdoc, <a class="el" href="structTidyNode.html">TidyNode</a> tnod, <a class="el" href="struct__TidyBuffer.html">TidyBuffer</a> *buf)</td></tr>
|
||||
<tr class="memitem:ga30307d5b9937c7f0aad1f37d7cf7848c"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga30307d5b9937c7f0aad1f37d7cf7848c"></a>
|
||||
TidyTagId TIDY_CALL </td><td class="memItemRight" valign="bottom"><b>tidyNodeGetId</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
|
||||
<tr class="memitem:ga98658b8c02e0d2000a6c7da5d916ced4"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga98658b8c02e0d2000a6c7da5d916ced4"></a>
|
||||
uint TIDY_CALL </td><td class="memItemRight" valign="bottom"><b>tidyNodeLine</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
|
||||
<tr class="memitem:ga00fb1f74d89419ad97f345660cd8876f"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga00fb1f74d89419ad97f345660cd8876f"></a>
|
||||
uint TIDY_CALL </td><td class="memItemRight" valign="bottom"><b>tidyNodeColumn</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
|
||||
</table>
|
||||
<hr/><a name="details" id="details"></a><h2>Detailed Description</h2>
|
||||
<p>Get information about any givent node. </p>
|
||||
</div><!-- contents -->
|
||||
</div>
|
||||
<div id="nav-path" class="navpath">
|
||||
<ul>
|
||||
|
||||
<li class="footer">Generated on Wed Jun 20 2012 16:58:07 for HTML Tidy by
|
||||
<a href="http://www.doxygen.org/index.html">
|
||||
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.0 </li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
|
@ -1,15 +0,0 @@
|
|||
var group__NodeAsk =
|
||||
[
|
||||
[ "Deprecated node interrogation per TagId", "group__NodeIsElementName.html", "group__NodeIsElementName" ],
|
||||
[ "tidyNodeGetType", "group__NodeAsk.html#gaa9786b1ce44061e2811d1ecbcd76d318", null ],
|
||||
[ "tidyNodeGetName", "group__NodeAsk.html#ga5ea4ecef06555a58f942b2c500722156", null ],
|
||||
[ "tidyNodeIsText", "group__NodeAsk.html#ga446c2a5ed55a75685074585f007b52c5", null ],
|
||||
[ "tidyNodeIsProp", "group__NodeAsk.html#ga2eb2b4a0ee75c74215de9859467d17f1", null ],
|
||||
[ "tidyNodeIsHeader", "group__NodeAsk.html#ga69c929ff5987273560e683e44b2515eb", null ],
|
||||
[ "tidyNodeHasText", "group__NodeAsk.html#ga4abc910dd180773665c6e2e4e30ea2d7", null ],
|
||||
[ "tidyNodeGetText", "group__NodeAsk.html#ga174176952045d3a79500451eae0322d6", null ],
|
||||
[ "tidyNodeGetValue", "group__NodeAsk.html#ga775c446f1fd1ffa25eb688af6c56853c", null ],
|
||||
[ "tidyNodeGetId", "group__NodeAsk.html#ga30307d5b9937c7f0aad1f37d7cf7848c", null ],
|
||||
[ "tidyNodeLine", "group__NodeAsk.html#ga98658b8c02e0d2000a6c7da5d916ced4", null ],
|
||||
[ "tidyNodeColumn", "group__NodeAsk.html#ga00fb1f74d89419ad97f345660cd8876f", null ]
|
||||
];
|
|
@ -1,247 +0,0 @@
|
|||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=9"/>
|
||||
<title>HTML Tidy: Deprecated node interrogation per TagId</title>
|
||||
|
||||
<link href="tabs.css" rel="stylesheet" type="text/css"/>
|
||||
<link href="doxygen.css" rel="stylesheet" type="text/css" />
|
||||
<link href="navtree.css" rel="stylesheet" type="text/css"/>
|
||||
<script type="text/javascript" src="jquery.js"></script>
|
||||
<script type="text/javascript" src="resize.js"></script>
|
||||
<script type="text/javascript" src="navtree.js"></script>
|
||||
<script type="text/javascript">
|
||||
$(document).ready(initResizable);
|
||||
</script>
|
||||
|
||||
|
||||
</head>
|
||||
<body>
|
||||
<div id="top"><!-- do not remove this div! -->
|
||||
|
||||
|
||||
<div id="titlearea">
|
||||
<table cellspacing="0" cellpadding="0">
|
||||
<tbody>
|
||||
<tr style="height: 56px;">
|
||||
|
||||
|
||||
<td style="padding-left: 0.5em;">
|
||||
<div id="projectname">HTML Tidy
|
||||
 <span id="projectnumber">0.1</span>
|
||||
</div>
|
||||
|
||||
</td>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
|
||||
<!-- Generated by Doxygen 1.8.0 -->
|
||||
</div>
|
||||
<div id="side-nav" class="ui-resizable side-nav-resizable">
|
||||
<div id="nav-tree">
|
||||
<div id="nav-tree-contents">
|
||||
</div>
|
||||
</div>
|
||||
<div id="splitbar" style="-moz-user-select:none;"
|
||||
class="ui-resizable-handle">
|
||||
</div>
|
||||
</div>
|
||||
<script type="text/javascript">
|
||||
initNavTree('group__NodeIsElementName.html','');
|
||||
</script>
|
||||
<div id="doc-content">
|
||||
<div class="header">
|
||||
<div class="summary">
|
||||
<a href="#func-members">Functions</a> </div>
|
||||
<div class="headertitle">
|
||||
<div class="title">Deprecated node interrogation per TagId</div> </div>
|
||||
<div class="ingroups"><a class="el" href="group__NodeAsk.html">Node Interrogation</a></div></div><!--header-->
|
||||
<div class="contents">
|
||||
<table class="memberdecls">
|
||||
<tr><td colspan="2"><h2><a name="func-members"></a>
|
||||
Functions</h2></td></tr>
|
||||
<tr class="memitem:gaf692f1ed40027be3f3cd5d198abc3ad2"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gaf692f1ed40027be3f3cd5d198abc3ad2"></a>
|
||||
Bool TIDY_CALL </td><td class="memItemRight" valign="bottom"><b>tidyNodeIsHTML</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
|
||||
<tr class="memitem:ga59e3d8737230aaf6aefd38923b2d9938"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga59e3d8737230aaf6aefd38923b2d9938"></a>
|
||||
Bool TIDY_CALL </td><td class="memItemRight" valign="bottom"><b>tidyNodeIsHEAD</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
|
||||
<tr class="memitem:ga41c163de846f0a5f0a06f8e8ba1559cc"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga41c163de846f0a5f0a06f8e8ba1559cc"></a>
|
||||
Bool TIDY_CALL </td><td class="memItemRight" valign="bottom"><b>tidyNodeIsTITLE</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
|
||||
<tr class="memitem:ga9c09a80c0fbb47c46c48816217058067"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga9c09a80c0fbb47c46c48816217058067"></a>
|
||||
Bool TIDY_CALL </td><td class="memItemRight" valign="bottom"><b>tidyNodeIsBASE</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
|
||||
<tr class="memitem:gaeecc06fcf1ead446d89e2da189124a84"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gaeecc06fcf1ead446d89e2da189124a84"></a>
|
||||
Bool TIDY_CALL </td><td class="memItemRight" valign="bottom"><b>tidyNodeIsMETA</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
|
||||
<tr class="memitem:gacba5807618c3f9e55cc03ff87de9b7ce"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gacba5807618c3f9e55cc03ff87de9b7ce"></a>
|
||||
Bool TIDY_CALL </td><td class="memItemRight" valign="bottom"><b>tidyNodeIsBODY</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
|
||||
<tr class="memitem:gae1ea58f48b98e27dc9e4489937f17755"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gae1ea58f48b98e27dc9e4489937f17755"></a>
|
||||
Bool TIDY_CALL </td><td class="memItemRight" valign="bottom"><b>tidyNodeIsFRAMESET</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
|
||||
<tr class="memitem:gacb9bcd9b662a2089064a3c240062c99f"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gacb9bcd9b662a2089064a3c240062c99f"></a>
|
||||
Bool TIDY_CALL </td><td class="memItemRight" valign="bottom"><b>tidyNodeIsFRAME</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
|
||||
<tr class="memitem:ga816d167ba4cb8b3787967ec3dbde5ec5"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga816d167ba4cb8b3787967ec3dbde5ec5"></a>
|
||||
Bool TIDY_CALL </td><td class="memItemRight" valign="bottom"><b>tidyNodeIsIFRAME</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
|
||||
<tr class="memitem:ga8320b595afb1e7e167b7c1a79b0dc366"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga8320b595afb1e7e167b7c1a79b0dc366"></a>
|
||||
Bool TIDY_CALL </td><td class="memItemRight" valign="bottom"><b>tidyNodeIsNOFRAMES</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
|
||||
<tr class="memitem:ga51ace62a3ec1c51035cabf4a2605d898"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga51ace62a3ec1c51035cabf4a2605d898"></a>
|
||||
Bool TIDY_CALL </td><td class="memItemRight" valign="bottom"><b>tidyNodeIsHR</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
|
||||
<tr class="memitem:gac28ca322aabade5ec3a7a7601c72ee16"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gac28ca322aabade5ec3a7a7601c72ee16"></a>
|
||||
Bool TIDY_CALL </td><td class="memItemRight" valign="bottom"><b>tidyNodeIsH1</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
|
||||
<tr class="memitem:gaa6f4c167e5934e14fd2bc016cbcb5abd"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gaa6f4c167e5934e14fd2bc016cbcb5abd"></a>
|
||||
Bool TIDY_CALL </td><td class="memItemRight" valign="bottom"><b>tidyNodeIsH2</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
|
||||
<tr class="memitem:ga0603085c30d94973f5d9d5b5de2ff200"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga0603085c30d94973f5d9d5b5de2ff200"></a>
|
||||
Bool TIDY_CALL </td><td class="memItemRight" valign="bottom"><b>tidyNodeIsPRE</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
|
||||
<tr class="memitem:gafc3aadf1d5eaab9c59ce47bfc2b6ceae"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gafc3aadf1d5eaab9c59ce47bfc2b6ceae"></a>
|
||||
Bool TIDY_CALL </td><td class="memItemRight" valign="bottom"><b>tidyNodeIsLISTING</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
|
||||
<tr class="memitem:gafd77569c4993bcd4ded3b97608248b9e"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gafd77569c4993bcd4ded3b97608248b9e"></a>
|
||||
Bool TIDY_CALL </td><td class="memItemRight" valign="bottom"><b>tidyNodeIsP</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
|
||||
<tr class="memitem:gadde0e35eef49567f98c385a736588409"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gadde0e35eef49567f98c385a736588409"></a>
|
||||
Bool TIDY_CALL </td><td class="memItemRight" valign="bottom"><b>tidyNodeIsUL</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
|
||||
<tr class="memitem:ga52d9c5612a982cc71602b5088f415879"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga52d9c5612a982cc71602b5088f415879"></a>
|
||||
Bool TIDY_CALL </td><td class="memItemRight" valign="bottom"><b>tidyNodeIsOL</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
|
||||
<tr class="memitem:gadb2e0e0fbeac0da447fd96fc75158f54"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gadb2e0e0fbeac0da447fd96fc75158f54"></a>
|
||||
Bool TIDY_CALL </td><td class="memItemRight" valign="bottom"><b>tidyNodeIsDL</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
|
||||
<tr class="memitem:gaac81f7e14fa7e59aa4fa8d4aa6d06268"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gaac81f7e14fa7e59aa4fa8d4aa6d06268"></a>
|
||||
Bool TIDY_CALL </td><td class="memItemRight" valign="bottom"><b>tidyNodeIsDIR</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
|
||||
<tr class="memitem:gac6269b21e8ad6e21d66bd5addd77eb87"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gac6269b21e8ad6e21d66bd5addd77eb87"></a>
|
||||
Bool TIDY_CALL </td><td class="memItemRight" valign="bottom"><b>tidyNodeIsLI</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
|
||||
<tr class="memitem:ga3a0c0bc0925bd40677da0286d8b27d7b"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga3a0c0bc0925bd40677da0286d8b27d7b"></a>
|
||||
Bool TIDY_CALL </td><td class="memItemRight" valign="bottom"><b>tidyNodeIsDT</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
|
||||
<tr class="memitem:ga8517c2217955d3602426c2bda1da6402"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga8517c2217955d3602426c2bda1da6402"></a>
|
||||
Bool TIDY_CALL </td><td class="memItemRight" valign="bottom"><b>tidyNodeIsDD</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
|
||||
<tr class="memitem:gad88dbaf421328ad0026a0f6c5b471a28"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gad88dbaf421328ad0026a0f6c5b471a28"></a>
|
||||
Bool TIDY_CALL </td><td class="memItemRight" valign="bottom"><b>tidyNodeIsTABLE</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
|
||||
<tr class="memitem:ga2493322b8c7ec6e7001e928bd71fc1b6"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga2493322b8c7ec6e7001e928bd71fc1b6"></a>
|
||||
Bool TIDY_CALL </td><td class="memItemRight" valign="bottom"><b>tidyNodeIsCAPTION</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
|
||||
<tr class="memitem:ga7de8f8de16a810da710ff0981a08d43d"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga7de8f8de16a810da710ff0981a08d43d"></a>
|
||||
Bool TIDY_CALL </td><td class="memItemRight" valign="bottom"><b>tidyNodeIsTD</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
|
||||
<tr class="memitem:gae4f6572db3d4bce835660e21f18b1983"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gae4f6572db3d4bce835660e21f18b1983"></a>
|
||||
Bool TIDY_CALL </td><td class="memItemRight" valign="bottom"><b>tidyNodeIsTH</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
|
||||
<tr class="memitem:ga6d2aafe8789a16ab429c5fdf9deb0da7"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga6d2aafe8789a16ab429c5fdf9deb0da7"></a>
|
||||
Bool TIDY_CALL </td><td class="memItemRight" valign="bottom"><b>tidyNodeIsTR</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
|
||||
<tr class="memitem:ga4638800893b9ae5a70cdb74c06c6a79c"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga4638800893b9ae5a70cdb74c06c6a79c"></a>
|
||||
Bool TIDY_CALL </td><td class="memItemRight" valign="bottom"><b>tidyNodeIsCOL</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
|
||||
<tr class="memitem:ga385a0cd988f64c8a4bd67d9b198d2ea7"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga385a0cd988f64c8a4bd67d9b198d2ea7"></a>
|
||||
Bool TIDY_CALL </td><td class="memItemRight" valign="bottom"><b>tidyNodeIsCOLGROUP</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
|
||||
<tr class="memitem:gaf0950a14b5b1ab4789b9b0a5bac0b18e"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gaf0950a14b5b1ab4789b9b0a5bac0b18e"></a>
|
||||
Bool TIDY_CALL </td><td class="memItemRight" valign="bottom"><b>tidyNodeIsBR</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
|
||||
<tr class="memitem:gae73ab4feaf47cba0fe76ad6ceaaf45a5"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gae73ab4feaf47cba0fe76ad6ceaaf45a5"></a>
|
||||
Bool TIDY_CALL </td><td class="memItemRight" valign="bottom"><b>tidyNodeIsA</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
|
||||
<tr class="memitem:gac798ba0aa726aee5cbcf3262624c0458"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gac798ba0aa726aee5cbcf3262624c0458"></a>
|
||||
Bool TIDY_CALL </td><td class="memItemRight" valign="bottom"><b>tidyNodeIsLINK</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
|
||||
<tr class="memitem:ga95af7c22df42cdc104858b6ef545c356"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga95af7c22df42cdc104858b6ef545c356"></a>
|
||||
Bool TIDY_CALL </td><td class="memItemRight" valign="bottom"><b>tidyNodeIsB</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
|
||||
<tr class="memitem:gafe4ee40e682872ae83dfce0dd4a8d0c3"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gafe4ee40e682872ae83dfce0dd4a8d0c3"></a>
|
||||
Bool TIDY_CALL </td><td class="memItemRight" valign="bottom"><b>tidyNodeIsI</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
|
||||
<tr class="memitem:ga15ea33b5dc08b426720d0c57cbecaced"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga15ea33b5dc08b426720d0c57cbecaced"></a>
|
||||
Bool TIDY_CALL </td><td class="memItemRight" valign="bottom"><b>tidyNodeIsSTRONG</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
|
||||
<tr class="memitem:ga445cccfc6c19f8f3b73ebd06a361bd48"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga445cccfc6c19f8f3b73ebd06a361bd48"></a>
|
||||
Bool TIDY_CALL </td><td class="memItemRight" valign="bottom"><b>tidyNodeIsEM</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
|
||||
<tr class="memitem:ga22e67a4b6c14214d35ad295a82509842"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga22e67a4b6c14214d35ad295a82509842"></a>
|
||||
Bool TIDY_CALL </td><td class="memItemRight" valign="bottom"><b>tidyNodeIsBIG</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
|
||||
<tr class="memitem:ga48af9e160f669f778de274336096e2eb"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga48af9e160f669f778de274336096e2eb"></a>
|
||||
Bool TIDY_CALL </td><td class="memItemRight" valign="bottom"><b>tidyNodeIsSMALL</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
|
||||
<tr class="memitem:ga48067f28cfe217c9fc060650d0e3aca4"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga48067f28cfe217c9fc060650d0e3aca4"></a>
|
||||
Bool TIDY_CALL </td><td class="memItemRight" valign="bottom"><b>tidyNodeIsPARAM</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
|
||||
<tr class="memitem:ga7f8b52642e3255b0480f48075dab8d6f"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga7f8b52642e3255b0480f48075dab8d6f"></a>
|
||||
Bool TIDY_CALL </td><td class="memItemRight" valign="bottom"><b>tidyNodeIsOPTION</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
|
||||
<tr class="memitem:gafe0455c4b138bffa99a913b8f3a9104f"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gafe0455c4b138bffa99a913b8f3a9104f"></a>
|
||||
Bool TIDY_CALL </td><td class="memItemRight" valign="bottom"><b>tidyNodeIsOPTGROUP</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
|
||||
<tr class="memitem:gafa4f741c56492e05bd351af1f0111f4e"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gafa4f741c56492e05bd351af1f0111f4e"></a>
|
||||
Bool TIDY_CALL </td><td class="memItemRight" valign="bottom"><b>tidyNodeIsIMG</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
|
||||
<tr class="memitem:ga99beb2cb511391d1aca45fb85cedf27a"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga99beb2cb511391d1aca45fb85cedf27a"></a>
|
||||
Bool TIDY_CALL </td><td class="memItemRight" valign="bottom"><b>tidyNodeIsMAP</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
|
||||
<tr class="memitem:gac266b333729c7430b5c73c61769f2786"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gac266b333729c7430b5c73c61769f2786"></a>
|
||||
Bool TIDY_CALL </td><td class="memItemRight" valign="bottom"><b>tidyNodeIsAREA</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
|
||||
<tr class="memitem:ga6f0a957c81b4013ced6cbc4e7d8db2af"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga6f0a957c81b4013ced6cbc4e7d8db2af"></a>
|
||||
Bool TIDY_CALL </td><td class="memItemRight" valign="bottom"><b>tidyNodeIsNOBR</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
|
||||
<tr class="memitem:ga89ed82add2b5524bb5cf08f382eb5116"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga89ed82add2b5524bb5cf08f382eb5116"></a>
|
||||
Bool TIDY_CALL </td><td class="memItemRight" valign="bottom"><b>tidyNodeIsWBR</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
|
||||
<tr class="memitem:ga53c827624431293012ca7cfde97c937e"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga53c827624431293012ca7cfde97c937e"></a>
|
||||
Bool TIDY_CALL </td><td class="memItemRight" valign="bottom"><b>tidyNodeIsFONT</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
|
||||
<tr class="memitem:gaf238482802b2fb6e9e0b5b041d3b7611"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gaf238482802b2fb6e9e0b5b041d3b7611"></a>
|
||||
Bool TIDY_CALL </td><td class="memItemRight" valign="bottom"><b>tidyNodeIsLAYER</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
|
||||
<tr class="memitem:ga445b2216e08962ebc2cf2013dd911969"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga445b2216e08962ebc2cf2013dd911969"></a>
|
||||
Bool TIDY_CALL </td><td class="memItemRight" valign="bottom"><b>tidyNodeIsSPACER</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
|
||||
<tr class="memitem:ga6195cdbb5617b5240519b5a993f69592"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga6195cdbb5617b5240519b5a993f69592"></a>
|
||||
Bool TIDY_CALL </td><td class="memItemRight" valign="bottom"><b>tidyNodeIsCENTER</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
|
||||
<tr class="memitem:ga3e7e0649d24765c37404b64837dde32b"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga3e7e0649d24765c37404b64837dde32b"></a>
|
||||
Bool TIDY_CALL </td><td class="memItemRight" valign="bottom"><b>tidyNodeIsSTYLE</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
|
||||
<tr class="memitem:ga86627d1d0706847ff3087e196819706f"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga86627d1d0706847ff3087e196819706f"></a>
|
||||
Bool TIDY_CALL </td><td class="memItemRight" valign="bottom"><b>tidyNodeIsSCRIPT</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
|
||||
<tr class="memitem:ga19d096d6eff710ef6c7a154ba8e4c71c"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga19d096d6eff710ef6c7a154ba8e4c71c"></a>
|
||||
Bool TIDY_CALL </td><td class="memItemRight" valign="bottom"><b>tidyNodeIsNOSCRIPT</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
|
||||
<tr class="memitem:ga507a029656b570eac822ea40122571d8"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga507a029656b570eac822ea40122571d8"></a>
|
||||
Bool TIDY_CALL </td><td class="memItemRight" valign="bottom"><b>tidyNodeIsFORM</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
|
||||
<tr class="memitem:ga8bd6a34ea2f61d687d24f12a49c51128"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga8bd6a34ea2f61d687d24f12a49c51128"></a>
|
||||
Bool TIDY_CALL </td><td class="memItemRight" valign="bottom"><b>tidyNodeIsTEXTAREA</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
|
||||
<tr class="memitem:gabbbd873b72e446a8668c7c69582404e2"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gabbbd873b72e446a8668c7c69582404e2"></a>
|
||||
Bool TIDY_CALL </td><td class="memItemRight" valign="bottom"><b>tidyNodeIsBLOCKQUOTE</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
|
||||
<tr class="memitem:gadfa5afb9f719c21667e98df09f043dd6"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gadfa5afb9f719c21667e98df09f043dd6"></a>
|
||||
Bool TIDY_CALL </td><td class="memItemRight" valign="bottom"><b>tidyNodeIsAPPLET</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
|
||||
<tr class="memitem:gaf8c3d48a3d23f49a9d6e373ae18456c4"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gaf8c3d48a3d23f49a9d6e373ae18456c4"></a>
|
||||
Bool TIDY_CALL </td><td class="memItemRight" valign="bottom"><b>tidyNodeIsOBJECT</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
|
||||
<tr class="memitem:gae423fbaf8bb2b2d7faf427ebb853159e"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gae423fbaf8bb2b2d7faf427ebb853159e"></a>
|
||||
Bool TIDY_CALL </td><td class="memItemRight" valign="bottom"><b>tidyNodeIsDIV</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
|
||||
<tr class="memitem:ga86ade270327fb3afa6d8f881fda3089e"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga86ade270327fb3afa6d8f881fda3089e"></a>
|
||||
Bool TIDY_CALL </td><td class="memItemRight" valign="bottom"><b>tidyNodeIsSPAN</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
|
||||
<tr class="memitem:ga648890464b129cbceaf749f912f6527e"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga648890464b129cbceaf749f912f6527e"></a>
|
||||
Bool TIDY_CALL </td><td class="memItemRight" valign="bottom"><b>tidyNodeIsINPUT</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
|
||||
<tr class="memitem:ga6ef21bfc5033fd69c9f94e794d536fdb"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga6ef21bfc5033fd69c9f94e794d536fdb"></a>
|
||||
Bool TIDY_CALL </td><td class="memItemRight" valign="bottom"><b>tidyNodeIsQ</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
|
||||
<tr class="memitem:ga7e4e65b0819e33ffdc38183f5dbf2785"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga7e4e65b0819e33ffdc38183f5dbf2785"></a>
|
||||
Bool TIDY_CALL </td><td class="memItemRight" valign="bottom"><b>tidyNodeIsLABEL</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
|
||||
<tr class="memitem:ga4d49e513f271e3c1de40a2ca5bb507a5"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga4d49e513f271e3c1de40a2ca5bb507a5"></a>
|
||||
Bool TIDY_CALL </td><td class="memItemRight" valign="bottom"><b>tidyNodeIsH3</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
|
||||
<tr class="memitem:ga8efaa17098b9b4c7be3f4c8a9edd5f37"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga8efaa17098b9b4c7be3f4c8a9edd5f37"></a>
|
||||
Bool TIDY_CALL </td><td class="memItemRight" valign="bottom"><b>tidyNodeIsH4</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
|
||||
<tr class="memitem:gaa929252184f6d11fde69ee76f212822a"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gaa929252184f6d11fde69ee76f212822a"></a>
|
||||
Bool TIDY_CALL </td><td class="memItemRight" valign="bottom"><b>tidyNodeIsH5</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
|
||||
<tr class="memitem:ga4b3bad82463198c3893c901aa20af219"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga4b3bad82463198c3893c901aa20af219"></a>
|
||||
Bool TIDY_CALL </td><td class="memItemRight" valign="bottom"><b>tidyNodeIsH6</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
|
||||
<tr class="memitem:ga5ba4012b1bf4eb54b5042832f9a138e0"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga5ba4012b1bf4eb54b5042832f9a138e0"></a>
|
||||
Bool TIDY_CALL </td><td class="memItemRight" valign="bottom"><b>tidyNodeIsADDRESS</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
|
||||
<tr class="memitem:ga25aba7bafb8f63d71fb54c143d053fd1"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga25aba7bafb8f63d71fb54c143d053fd1"></a>
|
||||
Bool TIDY_CALL </td><td class="memItemRight" valign="bottom"><b>tidyNodeIsXMP</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
|
||||
<tr class="memitem:gaea4d09d1203e94c3010c56672ea6d711"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gaea4d09d1203e94c3010c56672ea6d711"></a>
|
||||
Bool TIDY_CALL </td><td class="memItemRight" valign="bottom"><b>tidyNodeIsSELECT</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
|
||||
<tr class="memitem:gac03b2963ecda6cc08653294370baf8d8"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gac03b2963ecda6cc08653294370baf8d8"></a>
|
||||
Bool TIDY_CALL </td><td class="memItemRight" valign="bottom"><b>tidyNodeIsBLINK</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
|
||||
<tr class="memitem:ga16bca9ae0e87d001ed4242a83618f404"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga16bca9ae0e87d001ed4242a83618f404"></a>
|
||||
Bool TIDY_CALL </td><td class="memItemRight" valign="bottom"><b>tidyNodeIsMARQUEE</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
|
||||
<tr class="memitem:gab9e88a5cd07c8645db3293062fbb2a51"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gab9e88a5cd07c8645db3293062fbb2a51"></a>
|
||||
Bool TIDY_CALL </td><td class="memItemRight" valign="bottom"><b>tidyNodeIsEMBED</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
|
||||
<tr class="memitem:ga334efee28622bff3384c9eda4bb4eec5"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga334efee28622bff3384c9eda4bb4eec5"></a>
|
||||
Bool TIDY_CALL </td><td class="memItemRight" valign="bottom"><b>tidyNodeIsBASEFONT</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
|
||||
<tr class="memitem:ga6c18dbdbb887968b79753ae455f2c90a"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga6c18dbdbb887968b79753ae455f2c90a"></a>
|
||||
Bool TIDY_CALL </td><td class="memItemRight" valign="bottom"><b>tidyNodeIsISINDEX</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
|
||||
<tr class="memitem:gac62bc0004bfc655a7a21b6b98ddc5e6c"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gac62bc0004bfc655a7a21b6b98ddc5e6c"></a>
|
||||
Bool TIDY_CALL </td><td class="memItemRight" valign="bottom"><b>tidyNodeIsS</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
|
||||
<tr class="memitem:ga9d56a0c1da9fdf018cb6db4398260295"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga9d56a0c1da9fdf018cb6db4398260295"></a>
|
||||
Bool TIDY_CALL </td><td class="memItemRight" valign="bottom"><b>tidyNodeIsSTRIKE</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
|
||||
<tr class="memitem:gab28ee4ca158cb9122022719fdc08ec08"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gab28ee4ca158cb9122022719fdc08ec08"></a>
|
||||
Bool TIDY_CALL </td><td class="memItemRight" valign="bottom"><b>tidyNodeIsU</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
|
||||
<tr class="memitem:ga41c2551e386adc53cd9ab0e00f707558"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga41c2551e386adc53cd9ab0e00f707558"></a>
|
||||
Bool TIDY_CALL </td><td class="memItemRight" valign="bottom"><b>tidyNodeIsMENU</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
|
||||
</table>
|
||||
<hr/><a name="details" id="details"></a><h2>Detailed Description</h2>
|
||||
<dl class="deprecated"><dt><b><a class="el" href="deprecated.html#_deprecated000001">Deprecated:</a></b></dt><dd>The functions tidyNodeIs{ElementName} are deprecated and should be replaced by tidyNodeGetId.</dd></dl>
|
||||
</div><!-- contents -->
|
||||
</div>
|
||||
<div id="nav-path" class="navpath">
|
||||
<ul>
|
||||
|
||||
<li class="footer">Generated on Wed Jun 20 2012 16:58:07 for HTML Tidy by
|
||||
<a href="http://www.doxygen.org/index.html">
|
||||
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.0 </li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
|
@ -1,83 +0,0 @@
|
|||
var group__NodeIsElementName =
|
||||
[
|
||||
[ "tidyNodeIsHTML", "group__NodeIsElementName.html#gaf692f1ed40027be3f3cd5d198abc3ad2", null ],
|
||||
[ "tidyNodeIsHEAD", "group__NodeIsElementName.html#ga59e3d8737230aaf6aefd38923b2d9938", null ],
|
||||
[ "tidyNodeIsTITLE", "group__NodeIsElementName.html#ga41c163de846f0a5f0a06f8e8ba1559cc", null ],
|
||||
[ "tidyNodeIsBASE", "group__NodeIsElementName.html#ga9c09a80c0fbb47c46c48816217058067", null ],
|
||||
[ "tidyNodeIsMETA", "group__NodeIsElementName.html#gaeecc06fcf1ead446d89e2da189124a84", null ],
|
||||
[ "tidyNodeIsBODY", "group__NodeIsElementName.html#gacba5807618c3f9e55cc03ff87de9b7ce", null ],
|
||||
[ "tidyNodeIsFRAMESET", "group__NodeIsElementName.html#gae1ea58f48b98e27dc9e4489937f17755", null ],
|
||||
[ "tidyNodeIsFRAME", "group__NodeIsElementName.html#gacb9bcd9b662a2089064a3c240062c99f", null ],
|
||||
[ "tidyNodeIsIFRAME", "group__NodeIsElementName.html#ga816d167ba4cb8b3787967ec3dbde5ec5", null ],
|
||||
[ "tidyNodeIsNOFRAMES", "group__NodeIsElementName.html#ga8320b595afb1e7e167b7c1a79b0dc366", null ],
|
||||
[ "tidyNodeIsHR", "group__NodeIsElementName.html#ga51ace62a3ec1c51035cabf4a2605d898", null ],
|
||||
[ "tidyNodeIsH1", "group__NodeIsElementName.html#gac28ca322aabade5ec3a7a7601c72ee16", null ],
|
||||
[ "tidyNodeIsH2", "group__NodeIsElementName.html#gaa6f4c167e5934e14fd2bc016cbcb5abd", null ],
|
||||
[ "tidyNodeIsPRE", "group__NodeIsElementName.html#ga0603085c30d94973f5d9d5b5de2ff200", null ],
|
||||
[ "tidyNodeIsLISTING", "group__NodeIsElementName.html#gafc3aadf1d5eaab9c59ce47bfc2b6ceae", null ],
|
||||
[ "tidyNodeIsP", "group__NodeIsElementName.html#gafd77569c4993bcd4ded3b97608248b9e", null ],
|
||||
[ "tidyNodeIsUL", "group__NodeIsElementName.html#gadde0e35eef49567f98c385a736588409", null ],
|
||||
[ "tidyNodeIsOL", "group__NodeIsElementName.html#ga52d9c5612a982cc71602b5088f415879", null ],
|
||||
[ "tidyNodeIsDL", "group__NodeIsElementName.html#gadb2e0e0fbeac0da447fd96fc75158f54", null ],
|
||||
[ "tidyNodeIsDIR", "group__NodeIsElementName.html#gaac81f7e14fa7e59aa4fa8d4aa6d06268", null ],
|
||||
[ "tidyNodeIsLI", "group__NodeIsElementName.html#gac6269b21e8ad6e21d66bd5addd77eb87", null ],
|
||||
[ "tidyNodeIsDT", "group__NodeIsElementName.html#ga3a0c0bc0925bd40677da0286d8b27d7b", null ],
|
||||
[ "tidyNodeIsDD", "group__NodeIsElementName.html#ga8517c2217955d3602426c2bda1da6402", null ],
|
||||
[ "tidyNodeIsTABLE", "group__NodeIsElementName.html#gad88dbaf421328ad0026a0f6c5b471a28", null ],
|
||||
[ "tidyNodeIsCAPTION", "group__NodeIsElementName.html#ga2493322b8c7ec6e7001e928bd71fc1b6", null ],
|
||||
[ "tidyNodeIsTD", "group__NodeIsElementName.html#ga7de8f8de16a810da710ff0981a08d43d", null ],
|
||||
[ "tidyNodeIsTH", "group__NodeIsElementName.html#gae4f6572db3d4bce835660e21f18b1983", null ],
|
||||
[ "tidyNodeIsTR", "group__NodeIsElementName.html#ga6d2aafe8789a16ab429c5fdf9deb0da7", null ],
|
||||
[ "tidyNodeIsCOL", "group__NodeIsElementName.html#ga4638800893b9ae5a70cdb74c06c6a79c", null ],
|
||||
[ "tidyNodeIsCOLGROUP", "group__NodeIsElementName.html#ga385a0cd988f64c8a4bd67d9b198d2ea7", null ],
|
||||
[ "tidyNodeIsBR", "group__NodeIsElementName.html#gaf0950a14b5b1ab4789b9b0a5bac0b18e", null ],
|
||||
[ "tidyNodeIsA", "group__NodeIsElementName.html#gae73ab4feaf47cba0fe76ad6ceaaf45a5", null ],
|
||||
[ "tidyNodeIsLINK", "group__NodeIsElementName.html#gac798ba0aa726aee5cbcf3262624c0458", null ],
|
||||
[ "tidyNodeIsB", "group__NodeIsElementName.html#ga95af7c22df42cdc104858b6ef545c356", null ],
|
||||
[ "tidyNodeIsI", "group__NodeIsElementName.html#gafe4ee40e682872ae83dfce0dd4a8d0c3", null ],
|
||||
[ "tidyNodeIsSTRONG", "group__NodeIsElementName.html#ga15ea33b5dc08b426720d0c57cbecaced", null ],
|
||||
[ "tidyNodeIsEM", "group__NodeIsElementName.html#ga445cccfc6c19f8f3b73ebd06a361bd48", null ],
|
||||
[ "tidyNodeIsBIG", "group__NodeIsElementName.html#ga22e67a4b6c14214d35ad295a82509842", null ],
|
||||
[ "tidyNodeIsSMALL", "group__NodeIsElementName.html#ga48af9e160f669f778de274336096e2eb", null ],
|
||||
[ "tidyNodeIsPARAM", "group__NodeIsElementName.html#ga48067f28cfe217c9fc060650d0e3aca4", null ],
|
||||
[ "tidyNodeIsOPTION", "group__NodeIsElementName.html#ga7f8b52642e3255b0480f48075dab8d6f", null ],
|
||||
[ "tidyNodeIsOPTGROUP", "group__NodeIsElementName.html#gafe0455c4b138bffa99a913b8f3a9104f", null ],
|
||||
[ "tidyNodeIsIMG", "group__NodeIsElementName.html#gafa4f741c56492e05bd351af1f0111f4e", null ],
|
||||
[ "tidyNodeIsMAP", "group__NodeIsElementName.html#ga99beb2cb511391d1aca45fb85cedf27a", null ],
|
||||
[ "tidyNodeIsAREA", "group__NodeIsElementName.html#gac266b333729c7430b5c73c61769f2786", null ],
|
||||
[ "tidyNodeIsNOBR", "group__NodeIsElementName.html#ga6f0a957c81b4013ced6cbc4e7d8db2af", null ],
|
||||
[ "tidyNodeIsWBR", "group__NodeIsElementName.html#ga89ed82add2b5524bb5cf08f382eb5116", null ],
|
||||
[ "tidyNodeIsFONT", "group__NodeIsElementName.html#ga53c827624431293012ca7cfde97c937e", null ],
|
||||
[ "tidyNodeIsLAYER", "group__NodeIsElementName.html#gaf238482802b2fb6e9e0b5b041d3b7611", null ],
|
||||
[ "tidyNodeIsSPACER", "group__NodeIsElementName.html#ga445b2216e08962ebc2cf2013dd911969", null ],
|
||||
[ "tidyNodeIsCENTER", "group__NodeIsElementName.html#ga6195cdbb5617b5240519b5a993f69592", null ],
|
||||
[ "tidyNodeIsSTYLE", "group__NodeIsElementName.html#ga3e7e0649d24765c37404b64837dde32b", null ],
|
||||
[ "tidyNodeIsSCRIPT", "group__NodeIsElementName.html#ga86627d1d0706847ff3087e196819706f", null ],
|
||||
[ "tidyNodeIsNOSCRIPT", "group__NodeIsElementName.html#ga19d096d6eff710ef6c7a154ba8e4c71c", null ],
|
||||
[ "tidyNodeIsFORM", "group__NodeIsElementName.html#ga507a029656b570eac822ea40122571d8", null ],
|
||||
[ "tidyNodeIsTEXTAREA", "group__NodeIsElementName.html#ga8bd6a34ea2f61d687d24f12a49c51128", null ],
|
||||
[ "tidyNodeIsBLOCKQUOTE", "group__NodeIsElementName.html#gabbbd873b72e446a8668c7c69582404e2", null ],
|
||||
[ "tidyNodeIsAPPLET", "group__NodeIsElementName.html#gadfa5afb9f719c21667e98df09f043dd6", null ],
|
||||
[ "tidyNodeIsOBJECT", "group__NodeIsElementName.html#gaf8c3d48a3d23f49a9d6e373ae18456c4", null ],
|
||||
[ "tidyNodeIsDIV", "group__NodeIsElementName.html#gae423fbaf8bb2b2d7faf427ebb853159e", null ],
|
||||
[ "tidyNodeIsSPAN", "group__NodeIsElementName.html#ga86ade270327fb3afa6d8f881fda3089e", null ],
|
||||
[ "tidyNodeIsINPUT", "group__NodeIsElementName.html#ga648890464b129cbceaf749f912f6527e", null ],
|
||||
[ "tidyNodeIsQ", "group__NodeIsElementName.html#ga6ef21bfc5033fd69c9f94e794d536fdb", null ],
|
||||
[ "tidyNodeIsLABEL", "group__NodeIsElementName.html#ga7e4e65b0819e33ffdc38183f5dbf2785", null ],
|
||||
[ "tidyNodeIsH3", "group__NodeIsElementName.html#ga4d49e513f271e3c1de40a2ca5bb507a5", null ],
|
||||
[ "tidyNodeIsH4", "group__NodeIsElementName.html#ga8efaa17098b9b4c7be3f4c8a9edd5f37", null ],
|
||||
[ "tidyNodeIsH5", "group__NodeIsElementName.html#gaa929252184f6d11fde69ee76f212822a", null ],
|
||||
[ "tidyNodeIsH6", "group__NodeIsElementName.html#ga4b3bad82463198c3893c901aa20af219", null ],
|
||||
[ "tidyNodeIsADDRESS", "group__NodeIsElementName.html#ga5ba4012b1bf4eb54b5042832f9a138e0", null ],
|
||||
[ "tidyNodeIsXMP", "group__NodeIsElementName.html#ga25aba7bafb8f63d71fb54c143d053fd1", null ],
|
||||
[ "tidyNodeIsSELECT", "group__NodeIsElementName.html#gaea4d09d1203e94c3010c56672ea6d711", null ],
|
||||
[ "tidyNodeIsBLINK", "group__NodeIsElementName.html#gac03b2963ecda6cc08653294370baf8d8", null ],
|
||||
[ "tidyNodeIsMARQUEE", "group__NodeIsElementName.html#ga16bca9ae0e87d001ed4242a83618f404", null ],
|
||||
[ "tidyNodeIsEMBED", "group__NodeIsElementName.html#gab9e88a5cd07c8645db3293062fbb2a51", null ],
|
||||
[ "tidyNodeIsBASEFONT", "group__NodeIsElementName.html#ga334efee28622bff3384c9eda4bb4eec5", null ],
|
||||
[ "tidyNodeIsISINDEX", "group__NodeIsElementName.html#ga6c18dbdbb887968b79753ae455f2c90a", null ],
|
||||
[ "tidyNodeIsS", "group__NodeIsElementName.html#gac62bc0004bfc655a7a21b6b98ddc5e6c", null ],
|
||||
[ "tidyNodeIsSTRIKE", "group__NodeIsElementName.html#ga9d56a0c1da9fdf018cb6db4398260295", null ],
|
||||
[ "tidyNodeIsU", "group__NodeIsElementName.html#gab28ee4ca158cb9122022719fdc08ec08", null ],
|
||||
[ "tidyNodeIsMENU", "group__NodeIsElementName.html#ga41c2551e386adc53cd9ab0e00f707558", null ]
|
||||
];
|