forked from filipg/twilight-library
nawet cos dziala
This commit is contained in:
parent
f14d53337e
commit
fbd7f7e448
@ -13,8 +13,9 @@ import Text.Printf
|
|||||||
|
|
||||||
|
|
||||||
extractRecords = extractLinksWithText "//a[@class='image-link']" -- pary adres-tytuł
|
extractRecords = extractLinksWithText "//a[@class='image-link']" -- pary adres-tytuł
|
||||||
>>> second (arr $ replace "\n" "")
|
>>> second (arr $ replace "\n" " ")
|
||||||
>>> first (extractLinksWithText "//a[@class='image-link']")
|
>>> first (extractLinksWithText "//div/a[contains(@href,'.pdf') and not(@class)]") -- pobieramy stronę z adresu URL i wyciągamy linki z tej strony pasujące do wyrażenia XPathowego
|
||||||
|
-- ostatecznie wyjdą trójki ((adres URL, tytuł artykułu), tytuł rocznika)
|
||||||
|
|
||||||
-- ... a tutaj te trójki przerabiamy do docelowej struktury ShadowItem
|
-- ... a tutaj te trójki przerabiamy do docelowej struktury ShadowItem
|
||||||
toShadowItem :: ((String, String), String) -> ShadowItem
|
toShadowItem :: ((String, String), String) -> ShadowItem
|
||||||
@ -26,6 +27,7 @@ toShadowItem ((url, articleTitle), yearlyTitle) =
|
|||||||
finalUrl = url
|
finalUrl = url
|
||||||
}
|
}
|
||||||
where title = "Pbsociety " ++ yearlyTitle
|
where title = "Pbsociety " ++ yearlyTitle
|
||||||
|
date = getDate url
|
||||||
|
|
||||||
getDate url =
|
getDate url =
|
||||||
case url =~~ "/(19[0-9][0-9]|20[0-9][0-9])/" :: Maybe [[String]] of
|
case url =~~ "/(19[0-9][0-9]|20[0-9][0-9])/" :: Maybe [[String]] of
|
||||||
|
Loading…
Reference in New Issue
Block a user