Skip to content

Commit

Permalink
Merged.
Browse files Browse the repository at this point in the history
  • Loading branch information
informatimago committed Jun 16, 2019
2 parents a886852 + 0bf99b9 commit e354286
Show file tree
Hide file tree
Showing 15 changed files with 979 additions and 100 deletions.
4 changes: 2 additions & 2 deletions android-classes.el
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
(packages (mapcar (lambda (li)
(let* ((a (get-first-child-tagged li 'a))
(href (attribute-value (get-attribute-named a 'href )))
(name (string-trim " \n\t" (first (element-children a)))))
(name (cl:string-trim " \n\t" (first (element-children a)))))
(make-android-package-info name href)))
lis))
(table (get-first-child-tagged body 'table))
Expand All @@ -30,7 +30,7 @@
(let* ((linkcol (get-first-child-valued tr 'class "jd-linkcol"))
(a (get-first-child-tagged linkcol 'a))
(url (attribute-value (get-attribute-named a 'href)))
(name (string-trim " \n\t" (first (element-children a))))
(name (cl:string-trim " \n\t" (first (element-children a))))
(package (if (and (prefixp root url)
(suffixp ".html" url))
(substitute (character ".") (character "/")
Expand Down

0 comments on commit e354286

Please sign in to comment.