~ubuntu-branches/ubuntu/vivid/tidy/vivid-updates

« back to all changes in this revision

Viewing changes to include/tidy.h

  • Committer: Bazaar Package Importer
  • Author(s): Jason Thomas
  • Date: 2008-12-24 13:25:54 UTC
  • mfrom: (0.2.4 upstream)
  • Revision ID: james.westby@ubuntu.com-20081224132554-khlgxooo36p391lt
Tags: 20081224cvs-1
* New cvs snapshot
* debian/control: add debhelper ${misc:Depends} to all packages
- add versioned depend on libtidy-0.99-0 (>= 20081224cvs-1) for tidy
  (closes: #470764)
- add Homepage field
- update standards-version from 3.7.3.0 to 3.8.0.0
* debian/tidy-doc.doc-base: change section from App/Text to Web Development
* debian/tidy.postinst + tidy.preinst: set the -e flag
* debian/README.source: new, how to build source tarball from upstream
* debian/README.Debian: add urls to more documentation
  (closes: #353912)
* debian/patches/03overview-tab-size.patch: add patch to fix tab-size
  (closes: #353907)
* tidy doc has been built from same source as tidy for a while
  (closes: #364960)
* debian/rules:
  - add -xml-config to generated manpage
  - clean up generated files
  (closes: #471107)
* manpage: -latin0 options has correct info as of 20080116cvs-1
  (closes: #506394 )

Show diffs side-by-side

added added

removed removed

Lines of Context:
11
11
  this-equivalent as 1st arg.
12
12
 
13
13
 
14
 
  Copyright (c) 1998-2007 World Wide Web Consortium
 
14
  Copyright (c) 1998-2008 World Wide Web Consortium
15
15
  (Massachusetts Institute of Technology, European Research 
16
16
  Consortium for Informatics and Mathematics, Keio University).
17
17
  All Rights Reserved.
19
19
  CVS Info :
20
20
 
21
21
    $Author: arnaud02 $ 
22
 
    $Date: 2007/02/07 11:02:54 $ 
23
 
    $Revision: 1.20 $ 
 
22
    $Date: 2008/04/22 11:00:42 $ 
 
23
    $Revision: 1.22 $ 
24
24
 
25
25
  Contributing Author(s):
26
26
 
101
101
*/
102
102
opaque_type( TidyAttr );
103
103
 
104
 
/** @} */
 
104
/** @} end Opaque group */
105
105
 
106
106
TIDY_STRUCT struct _TidyBuffer;
107
107
typedef struct _TidyBuffer TidyBuffer;
848
848
TIDY_EXPORT Bool TIDY_CALL tidyNodeHasText( TidyDoc tdoc, TidyNode tnod );
849
849
TIDY_EXPORT Bool TIDY_CALL tidyNodeGetText( TidyDoc tdoc, TidyNode tnod, TidyBuffer* buf );
850
850
 
 
851
/* Copy the unescaped value of this node into the given TidyBuffer as UTF-8 */
 
852
TIDY_EXPORT Bool TIDY_CALL tidyNodeGetValue( TidyDoc tdoc, TidyNode tnod, TidyBuffer* buf );
 
853
 
851
854
TIDY_EXPORT TidyTagId TIDY_CALL tidyNodeGetId( TidyNode tnod );
852
855
 
853
856
TIDY_EXPORT uint TIDY_CALL tidyNodeLine( TidyNode tnod );
854
857
TIDY_EXPORT uint TIDY_CALL tidyNodeColumn( TidyNode tnod );
855
858
 
856
 
/** @defgroup NodeIsElementName
 
859
/** @defgroup NodeIsElementName Deprecated node interrogation per TagId
857
860
**
858
861
** @deprecated The functions tidyNodeIs{ElementName} are deprecated and 
859
862
** should be replaced by tidyNodeGetId.
955
958
TIDY_EXPORT Bool TIDY_CALL tidyAttrIsEvent( TidyAttr tattr );
956
959
TIDY_EXPORT Bool TIDY_CALL tidyAttrIsProp( TidyAttr tattr );
957
960
 
958
 
/** @defgroup AttrIsAttributeName
 
961
/** @defgroup AttrIsAttributeName Deprecated attribute interrogation per AttrId
959
962
**
960
963
** @deprecated The functions  tidyAttrIs{AttributeName} are deprecated and 
961
964
** should be replaced by tidyAttrGetId.
1020
1023
 
1021
1024
TIDY_EXPORT TidyAttr TIDY_CALL tidyAttrGetById( TidyNode tnod, TidyAttrId attId );
1022
1025
 
1023
 
/** @defgroup AttrGetAttributeName
 
1026
/** @defgroup AttrGetAttributeName Deprecated attribute retrieval per AttrId
1024
1027
**
1025
1028
** @deprecated The functions tidyAttrGet{AttributeName} are deprecated and 
1026
1029
** should be replaced by tidyAttrGetById.