##// END OF EJS Templates
Added webbroser to auto open the slideshow.
damianavila -
Show More
@@ -1,48 +1,53 b''
1 """
1 """
2 Contains postprocessor for serving nbconvert output.
2 Contains postprocessor for serving nbconvert output.
3 """
3 """
4 #-----------------------------------------------------------------------------
4 #-----------------------------------------------------------------------------
5 #Copyright (c) 2013, the IPython Development Team.
5 #Copyright (c) 2013, the IPython Development Team.
6 #
6 #
7 #Distributed under the terms of the Modified BSD License.
7 #Distributed under the terms of the Modified BSD License.
8 #
8 #
9 #The full license is in the file COPYING.txt, distributed with this software.
9 #The full license is in the file COPYING.txt, distributed with this software.
10 #-----------------------------------------------------------------------------
10 #-----------------------------------------------------------------------------
11
11
12 #-----------------------------------------------------------------------------
12 #-----------------------------------------------------------------------------
13 # Imports
13 # Imports
14 #-----------------------------------------------------------------------------
14 #-----------------------------------------------------------------------------
15
15
16 import os
16 import os
17 import webbrowser
18
17 from BaseHTTPServer import HTTPServer
19 from BaseHTTPServer import HTTPServer
18 from SimpleHTTPServer import SimpleHTTPRequestHandler
20 from SimpleHTTPServer import SimpleHTTPRequestHandler
19
21
20 from IPython.utils.traitlets import Unicode
22 from IPython.utils.traitlets import Unicode
21
23
22 from .base import PostProcessorBase
24 from .base import PostProcessorBase
23
25
24 #-----------------------------------------------------------------------------
26 #-----------------------------------------------------------------------------
25 # Classes
27 # Classes
26 #-----------------------------------------------------------------------------
28 #-----------------------------------------------------------------------------
27 class ServePostProcessor(PostProcessorBase):
29 class ServePostProcessor(PostProcessorBase):
28 """Post processor designed to serve files"""
30 """Post processor designed to serve files"""
29
31
30
32
31 build_directory = Unicode(".", config=True,
33 build_directory = Unicode(".", config=True,
32 help="""Directory to write output to. Leave blank
34 help="""Directory to write output to. Leave blank
33 to output to the current directory""")
35 to output to the current directory""")
34
36
35 def call(self, input):
37 def call(self, input):
36 """
38 """
37 Simple implementation to serve the build directory.
39 Simple implementation to serve the build directory.
38 """
40 """
39
41
40 try:
42 try:
41 os.chdir(self.build_directory)
43 os.chdir(self.build_directory)
42 httpd = HTTPServer(('127.0.0.1', 8000), SimpleHTTPRequestHandler)
44 httpd = HTTPServer(('127.0.0.1', 8000), SimpleHTTPRequestHandler)
43 sa = httpd.socket.getsockname()
45 sa = httpd.socket.getsockname()
44 print("Serving " + input[2:] + " on http://" + sa[0] + ":" + str(sa[1]))
46 name = input[2:]
47 url = "http://" + sa[0] + ":" + str(sa[1]) + "/" + name
48 webbrowser.open(url, new=2)
49 print("Serving " + name + " on " + url)
45 print("Use Control-C to stop this server.")
50 print("Use Control-C to stop this server.")
46 httpd.serve_forever()
51 httpd.serve_forever()
47 except KeyboardInterrupt:
52 except KeyboardInterrupt:
48 print("The server is shut down.")
53 print("The server is shut down.")
General Comments 0
You need to be logged in to leave comments. Login now