Merge branch 'master' of https://github.com/Sarsoo/fmframework
This commit is contained in:
commit
caa408aadd
@ -50,6 +50,7 @@ public class AlbumView extends JFrame {
|
|||||||
|
|
||||||
buttons.add(open);
|
buttons.add(open);
|
||||||
buttons.add(viewArtist);
|
buttons.add(viewArtist);
|
||||||
|
|
||||||
if (album.getWiki() != null)
|
if (album.getWiki() != null)
|
||||||
buttons2.add(viewWiki);
|
buttons2.add(viewWiki);
|
||||||
if (album.getMbid() != null)
|
if (album.getMbid() != null)
|
||||||
|
@ -75,7 +75,6 @@ public class Parser {
|
|||||||
return album;
|
return album;
|
||||||
}
|
}
|
||||||
return null;
|
return null;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public static Artist parseArtist(Document doc) {
|
public static Artist parseArtist(Document doc) {
|
||||||
@ -125,7 +124,7 @@ public class Parser {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if(date != null && content != null)
|
if (date != null && content != null)
|
||||||
wiki = new Wiki(date, summary, content);
|
wiki = new Wiki(date, summary, content);
|
||||||
// if (wikiNodeList.item(0) != null) {
|
// if (wikiNodeList.item(0) != null) {
|
||||||
// String date = wikiNodeList.item(0).getFirstChild().getTextContent();
|
// String date = wikiNodeList.item(0).getFirstChild().getTextContent();
|
||||||
@ -224,13 +223,14 @@ public class Parser {
|
|||||||
}
|
}
|
||||||
|
|
||||||
public static Track parseLastTrack(Document doc) {
|
public static Track parseLastTrack(Document doc) {
|
||||||
|
|
||||||
if (doc.getDocumentElement().getAttribute("status").equals("ok")) {
|
if (doc.getDocumentElement().getAttribute("status").equals("ok")) {
|
||||||
String name = doc.getElementsByTagName("name").item(0).getTextContent();
|
String name = doc.getElementsByTagName("name").item(0).getTextContent();
|
||||||
// System.out.println(name);
|
// System.out.println(name);
|
||||||
String artistName = doc.getElementsByTagName("artist").item(0).getTextContent();
|
String artistName = doc.getElementsByTagName("artist").item(0).getTextContent();
|
||||||
|
|
||||||
String albumName = doc.getElementsByTagName("album").item(0).getTextContent();
|
String albumName = doc.getElementsByTagName("album").item(0).getTextContent();
|
||||||
// System.out.println(albumName);
|
|
||||||
Track track = Track.getTrack(name, artistName, Reference.getUserName());
|
Track track = Track.getTrack(name, artistName, Reference.getUserName());
|
||||||
|
|
||||||
Album album = Album.getAlbum(albumName, artistName, Reference.getUserName());
|
Album album = Album.getAlbum(albumName, artistName, Reference.getUserName());
|
||||||
|
Loading…
Reference in New Issue
Block a user