Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
go
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
go
Commits
e57acdca
Commit
e57acdca
authored
Nov 05, 2009
by
Robert Griesemer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
gofmt-ify parts of xml
R=rsc
http://go/go-review/1017049
parent
12dbd06f
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
35 additions
and
34 deletions
+35
-34
src/pkg/xml/read.go
src/pkg/xml/read.go
+8
-7
src/pkg/xml/read_test.go
src/pkg/xml/read_test.go
+27
-27
No files found.
src/pkg/xml/read.go
View file @
e57acdca
...
...
@@ -127,6 +127,7 @@ func Unmarshal(r io.Reader, val interface{}) os.Error {
// An UnmarshalError represents an error in the unmarshalling process.
type
UnmarshalError
string
func
(
e
UnmarshalError
)
String
()
string
{
return
string
(
e
);
}
...
...
@@ -232,7 +233,7 @@ func (p *Parser) unmarshal(val reflect.Value, start *StartElement) os.Error {
ns
:=
""
;
i
:=
strings
.
LastIndex
(
tag
,
" "
);
if
i
>=
0
{
ns
,
tag
=
tag
[
0
:
i
],
tag
[
i
+
1
:
len
(
tag
)];
ns
,
tag
=
tag
[
0
:
i
],
tag
[
i
+
1
:
len
(
tag
)];
}
if
tag
!=
start
.
Name
.
Local
{
return
UnmarshalError
(
"expected element type <"
+
tag
+
"> but have <"
+
start
.
Name
.
Local
+
">"
);
...
...
src/pkg/xml/read_test.go
View file @
e57acdca
...
...
@@ -124,7 +124,7 @@ var rssFeed = Feed{
Id
:
"http://codereview.appspot.com/"
,
Updated
:
"2009-10-04T01:35:58+00:00"
,
Author
:
Person
{
Name
:
"rietveld"
Name
:
"rietveld"
,
},
Entry
:
[]
Entry
{
Entry
{
...
...
@@ -134,7 +134,7 @@ var rssFeed = Feed{
},
Updated
:
"2009-10-04T01:35:58+00:00"
,
Author
:
Person
{
Name
:
"email-address-removed"
Name
:
"email-address-removed"
,
},
Id
:
"urn:md5:134d9179c41f806be79b3a5f7877d19a"
,
Summary
:
Text
{
...
...
@@ -170,7 +170,7 @@ feedback on the right way to get the two values at
the top of feeds.py marked NOTE(rsc).
`
`
,
},
},
Entry
{
...
...
@@ -180,7 +180,7 @@ the top of feeds.py marked NOTE(rsc).
},
Updated
:
"2009-10-03T23:02:17+00:00"
,
Author
:
Person
{
Name
:
"email-address-removed"
Name
:
"email-address-removed"
,
},
Id
:
"urn:md5:0a2a4f19bb815101f0ba2904aed7c35a"
,
Summary
:
Text
{
...
...
@@ -203,8 +203,8 @@ call sites. I also wanted to verify that ExpandTabs was
not being used from outside intra_region_diff.py.
`
}
`
,
},
},
},
}
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment