2013-02-20 18:33:05 -07:00
<!DOCTYPE html>
< html >
< head >
< title > Media Browser< / title >
< / head >
< body >
< div id = "wizardLibraryPage" data-role = "page" class = "page standalonePage wizardPage mediaLibraryPage" >
< div data-role = "content" >
< div class = "ui-corner-all ui-shadow wizardContent" >
< h2 >
2013-03-26 10:04:50 -07:00
< img src = "css/images/mblogoicon.png" / > Media Library< / h2 >
2013-02-20 18:33:05 -07:00
< p id = "fldUseDefaultLibrary" style = "display: none;" >
< input type = "checkbox" id = "chkUseDefaultLibrary" name = "chkUseDefaultLibrary" onchange = "MediaLibraryPage.setUseDefaultMediaLibrary(this.checked);" / >
< label for = "chkUseDefaultLibrary" > Use default media library< / label >
< / p >
< div id = "divMediaLibrary" >
2013-06-13 08:58:13 -07:00
< p class = "editing_default" > This is the < strong > default media library< / strong > that will be shared with all users unless individual libraries are created.< / p >
2013-02-20 18:33:05 -07:00
< p >
< button type = "button" data-icon = "plus" onclick = "MediaLibraryPage.addVirtualFolder();" > Add media collection< / button >
< / p >
< div id = "divVirtualFolders" > < / div >
< / div >
2013-06-09 11:14:44 -07:00
< p > Read < a href = "https://github.com/MediaBrowser/MediaBrowser/wiki/Library-Structure" target = "_blank" > media library wiki.< / a > < / p >
2013-02-20 18:33:05 -07:00
< div data-role = "popup" id = "popupEnterText" class = "ui-corner-all popup" >
< div class = "ui-corner-top ui-bar-a" style = "text-align: center; padding: 0 20px;" >
< h3 > Rename< / h3 >
< / div >
< div data-role = "content" class = "ui-corner-bottom ui-content" >
< form id = "textEntryForm" >
2013-07-12 12:56:40 -07:00
< p >
< label id = "lblValue" for = "txtValue" > New name:< / label >
< input type = "text" name = "txtValue" id = "txtValue" required = "required" / >
< / p >
< p id = "fldCollectionType" >
< label for = "selectCollectionType" > Collection type:< / label >
< select id = "selectCollectionType" name = "selectCollectionType" > < / select >
< / p >
< p class = "fieldDescription" >
2013-07-20 13:37:00 -07:00
Anything unlisted should be classified as general or mixed content.
< / p >
< p class = "fieldDescription" >
* Requires the use of a plugin, e.g. GameBrowser or MB Photos.
2013-07-12 12:56:40 -07:00
< / p >
2013-02-20 18:33:05 -07:00
< p >
< button type = "submit" data-theme = "b" data-icon = "ok" >
Ok
< / button >
< button type = "button" data-icon = "delete" onclick = "$(this).parents('.popup').popup('close');" >
Cancel
< / button >
< / p >
< / form >
< / div >
< / div >
< div class = "wizardNavigation" >
< button type = "button" data-iconpos = "left" data-icon = "arrow-left" data-inline = "true" onclick = "history.back();" > Previous< / button >
2013-03-28 17:10:15 -07:00
< button type = "button" data-iconpos = "right" data-icon = "arrow-right" data-inline = "true" onclick = "Dashboard.navigate('wizardfinish.html');" > Next< / button >
2013-02-20 18:33:05 -07:00
< / div >
< / div >
< / div >
< / div >
< / body >
< / html >