browse
上传用户:kjfoods
上传日期:2020-07-06
资源大小:29949k
文件大小:2k
源码类别:

midi

开发平台:

Unix_Linux

  1. <?vlc --[[
  2. vim:syntax=html
  3. <!--  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - >
  4. <  browse: VLC media player web interface - remote file browse dialog
  5. < - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - >
  6. <  Copyright (C) 2005-2006 the VideoLAN team
  7. <  $Id$
  8. <  Authors: Antoine Cellerier <dionoea -at- videolan -dot- org>
  9. <  This program is free software; you can redistribute it and/or modify
  10. <  it under the terms of the GNU General Public License as published by
  11. <  the Free Software Foundation; either version 2 of the License, or
  12. <  (at your option) any later version.
  13. <  This program is distributed in the hope that it will be useful,
  14. <  but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. <  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  16. <  GNU General Public License for more details.
  17. <  You should have received a copy of the GNU General Public License
  18. <  along with this program; if not, write to the Free Software
  19. <  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
  20. < - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
  21. This dialog needs the following dialogs to be fully functional: <none>
  22. ]]?>
  23. <div id="browse" class="popup" style="display: none;">
  24.   <div class="title">
  25.     Browse
  26.     <img class="close" src="images/white_cross_small.png" alt="Close" onclick="hide('browse');"/>
  27.   </div>
  28.   <div id="browser">
  29.     <a href="javascript:browse_dir(document.getElementById( 'browse_lastdir' ).value);">Click here to browse</a>
  30.     ( or <a href="javascript:browse_dir('');">here</a> if it doesn't work )
  31.   </div>
  32.   <div class="controls">
  33.     <button id="btn_browse_close" onclick="hide('browse');">
  34.       Close
  35.     </button>
  36.     <input type="hidden" id="browse_lastdir" value="~" />
  37.     <input type="hidden" id="browse_dest" value="" />
  38.   </div>
  39. </div>