Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
G
Gxml
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Canek Peláez Valdés
Gxml
Commits
0a80532c
Commit
0a80532c
authored
7 years ago
by
Daniel Espinosa
Browse files
Options
Downloads
Patches
Plain Diff
Removing HtmlDocument documentation warnings
parent
9ac913f2
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
gxml/GHtml.vala
+5
-5
5 additions, 5 deletions
gxml/GHtml.vala
with
5 additions
and
5 deletions
gxml/GHtml.vala
+
5
−
5
View file @
0a80532c
...
...
@@ -45,7 +45,7 @@ namespace GXml {
}
/**
* This method parse strings in a {@link GLib.File} using {@link
Xml.
Html.Doc.read_memory} method.
* This method parse strings in a {@link GLib.File} using {@link Html.Doc.read_memory} method.
* Refer to libxml2 documentation about limitations on parsing.
*
* In order to use a different parser, may you want to load in memory your file,
...
...
@@ -58,14 +58,14 @@ namespace GXml {
this
.
from_string
((
string
)
ostream
.
data
,
options
);
}
/**
* This method parse strings using {@link
Xml.
Html.Doc.read_memory} method.
* This method parse strings using {@link Html.Doc.read_memory} method.
* Refer to libxml2 documentation about limitations on parsing.
*/
public
HtmlDocument
.
from_string
(
string
html
,
int
options
=
0
)
{
base
.
from_doc
(
Html
.
Doc
.
read_memory
((
char
[])
html
,
html
.
length
,
""
,
null
,
options
));
}
/**
* This method parse strings using {@link
Xml.
Html.ParserCtxt} class.
* This method parse strings using {@link Html.ParserCtxt} class.
* Refer to libxml2 documentation about limitations on parsing.
*/
public
HtmlDocument
.
from_string_context
(
string
html
,
int
options
=
0
)
{
...
...
@@ -74,14 +74,14 @@ namespace GXml {
base
.
from_doc
(
doc
);
}
/**
* This method parse strings using {@link
Xml.
Html.read_doc} method.
* This method parse strings using {@link Html
.Doc
.read_doc} method.
* Refer to libxml2 documentation about limitations on parsing.
*/
public
HtmlDocument
.
from_string_doc
(
string
html
,
int
options
=
0
)
{
base
.
from_doc
(
Html
.
Doc
.
read_doc
(
html
,
""
,
null
,
options
));
}
/**
* This method dump to HTML string using {@link
Xml.
Html.dump_memory} method.
* This method dump to HTML string using {@link Html
.Doc
.dump_memory} method.
* Refer to libxml2 documentation about output.
*/
public
new
string
to_html
()
{
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment