add setup.py jsversion

for writing the IPython version to `IPython.version` in javascript.

supersedes #4357
This commit is contained in:
MinRK 2013-10-25 14:01:31 -07:00
parent 5e4d0fb0e2
commit 71d6a80629
3 changed files with 27 additions and 1 deletions

View File

@ -1,5 +1,5 @@
//----------------------------------------------------------------------------
// Copyright (C) 2008-2011 The IPython Development Team
// Copyright (C) 2011 The IPython Development Team
//
// Distributed under the terms of the BSD License. The full license is in
// the file COPYING, distributed as part of this software.
@ -7,6 +7,8 @@
var IPython = IPython || {};
IPython.version = "2.0.0-dev";
IPython.namespace = function (ns_string) {
"use strict";

View File

@ -68,6 +68,7 @@ from setupbase import (
require_submodules,
UpdateSubmodules,
CompileCSS,
JavascriptVersion,
install_symlinked,
install_lib_symlink,
install_scripts_for_symlink,
@ -236,6 +237,7 @@ setup_args['cmdclass'] = {
'symlink': install_symlinked,
'install_lib_symlink': install_lib_symlink,
'install_scripts_sym': install_scripts_for_symlink,
'jsversion' : JavascriptVersion,
}
#---------------------------------------------------------------------------

View File

@ -564,3 +564,25 @@ class CompileCSS(Command):
def run(self):
call("fab css", shell=True, cwd=pjoin(repo_root, "IPython", "html"))
class JavascriptVersion(Command):
"""write the javascript version to notebook javascript"""
description = "Write IPython version to javascript"
user_options = []
def initialize_options(self):
pass
def finalize_options(self):
pass
def run(self):
nsfile = pjoin(repo_root, "IPython", "html", "static", "base", "js", "namespace.js")
with open(nsfile) as f:
lines = f.readlines()
with open(nsfile, 'w') as f:
for line in lines:
if line.startswith("IPython.version"):
line = 'IPython.version = "{0}";\n'.format(version)
f.write(line)