##// END OF EJS Templates
specify windows working directory...
specify windows working directory The create_shortcut built-in function used in the windows post-installation script allows the working directory to be specified. If it is not specified, the working directory will default to something like "C:\Windows". Specifying the working directory as "%HOMEDRIVE%%HOMEPATH%" seems a better default, it sets the working directory the the current user's home directory.

File last commit:

r2277:dc983636
r3227:fd5c0928
Show More
layout.html
23 lines | 672 B | text/html | HtmlLexer
{% extends "!layout.html" %}
{% block rootrellink %}
<li><a href="{{ pathto('index') }}">home</a>|&nbsp;</li>
<li><a href="{{ pathto('search') }}">search</a>|&nbsp;</li>
<li><a href="{{ pathto('index') }}">documentation </a> &raquo;</li>
{% endblock %}
{% block relbar1 %}
<div style="background-color: white; text-align: left; padding: 10px 10px 15px 15px">
<a href="{{ pathto('index') }}"><img src="{{
pathto("_static/logo.png", 1) }}" border="0" alt="IPython Documentation"/></a>
</div>
{{ super() }}
{% endblock %}
{# put the sidebar before the body #}
{% block sidebar1 %}{{ sidebar() }}{% endblock %}
{% block sidebar2 %}{% endblock %}