Skip to content

Commit

Permalink
현재 GitHub 웹 사이트 구조에 맞게 HTML 클래스 이름 업데이트
Browse files Browse the repository at this point in the history
  • Loading branch information
pyrasis committed May 3, 2016
1 parent f1d0d4f commit 3bcf85c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Unit 66/crawler.go
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ func parseFollowing(doc *html.Node) []string {
}
}

if a.Key == "class" && a.Val == "gravatar" { // class가 gravatar인 요소
if a.Key == "class" && a.Val == "avatar" { // class가 avatar인 요소
user := n.Parent.Attr[0].Val // 부모 요소의 첫 번째 속성(href)

// 사용자 이름으로 팔로잉 URL 조합
Expand Down
2 changes: 1 addition & 1 deletion Unit 66/crawler_interface.go
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ func (g *GitHubFollowing) Parse(doc *html.Node) <-chan string {
}
}

if a.Key == "class" && a.Val == "gravatar" {
if a.Key == "class" && a.Val == "avatar" {
// 부모 요소의 첫 번째 속성(href)
user := n.Parent.Attr[0].Val

Expand Down
2 changes: 1 addition & 1 deletion Unit 66/crawler_pipeline.go
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ func parseFollowing(doc *html.Node, urls chan string) <-chan string {
}
}

if a.Key == "class" && a.Val == "gravatar" { // class가 gravatar인 요소
if a.Key == "class" && a.Val == "avatar" { // class가 avatar인 요소
user := n.Parent.Attr[0].Val // 부모 요소의 첫 번째 속성(href)

// 사용자 이름으로 팔로잉 URL을 조합하여 urls 채널에 보냄
Expand Down

0 comments on commit 3bcf85c

Please sign in to comment.