svgui/pyjs/build.py
changeset 1746 45d6f5fba016
parent 1744 69dfdb26f600
child 1749 d73b64672238
equal deleted inserted replaced
1745:f9d32913bad4 1746:45d6f5fba016
   136       <script language="javascript" src="pygwt.js"></script>
   136       <script language="javascript" src="pygwt.js"></script>
   137     </body>
   137     </body>
   138 </html>
   138 </html>
   139 """
   139 """
   140 
   140 
   141     filename = os.path.split    ( source_file )[1]
   141     filename  = os.path.split   (source_file)[1]
   142     mod_name = os.path.splitext ( filename    )[0]
   142     mod_name  = os.path.splitext(filename)[0]
   143     file_name = os.path.join     ( dest_path, mod_name + '.html' )
   143     file_name = os.path.join    (dest_path, mod_name + '.html')
   144 
   144 
   145     # if html file in output directory exists, leave it alone.
   145     # if html file in output directory exists, leave it alone.
   146     if os.path.exists ( file_name ):
   146     if os.path.exists (file_name):
   147         return 0
   147         return 0
   148 
   148 
   149     if os.path.exists (
   149     if os.path.exists(os.path.join(dest_path, mod_name + '.css')):
   150         os.path.join ( dest_path, mod_name + '.css' ) ):
       
   151         css = "<link rel='stylesheet' href='" + mod_name + ".css'>"
   150         css = "<link rel='stylesheet' href='" + mod_name + ".css'>"
   152     elif os.path.exists (
   151     elif os.path.exists(os.path.join(dest_path, 'pyjamas_default.css')):
   153         os.path.join ( dest_path, 'pyjamas_default.css' ) ):
       
   154         css = "<link rel='stylesheet' href='pyjamas_default.css'>"
   152         css = "<link rel='stylesheet' href='pyjamas_default.css'>"
   155 
   153 
   156     else:
   154     else:
   157         css = ''
   155         css = ''
   158 
   156