forked from scikit-learn/scikit-learn
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Design by Angel Soler (http://webylimonada.com), HTML and CSS implementation by me.
- Loading branch information
Fabian Pedregosa
committed
Sep 27, 2010
1 parent
6e982be
commit 42fca0f
Showing
11 changed files
with
554 additions
and
89 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
There are several ways to get in touch with the developers | ||
|
||
Mailing List | ||
============ | ||
|
||
Main mailing list is `scikit-learn-general | ||
<https://lists.sourceforge.net/lists/listinfo/scikit-learn-general>`_. There | ||
is also a commit list, where updates to the main repo get notified: `scikit-learn-commits <https://lists.sourceforge.net/lists/listinfo/scikit-learn-commits>`_ | ||
|
||
|
||
|
||
Bug tracker | ||
=========== | ||
|
||
If you think you've encoutered a bug, please report it to the issue tracker: | ||
|
||
http://sourceforge.net/apps/trac/scikit-learn/report/1 | ||
|
||
IRC | ||
=== | ||
Some devs like to hang out on channel #learn on irc.freenode.net | ||
|
||
If you do not have an irc client or are behind a firewall this web | ||
client works fine: http://webchat.freenode.net |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,108 @@ | ||
{# | ||
scikit-learn/layout.html | ||
~~~~~~~~~~~~~~~~~ | ||
|
||
Layout for scikit-learn, after a design made by Angel Soler | ||
(http://webylimonada.org) | ||
|
||
:copyright: Fabian Pedregosa | ||
:license: BSD | ||
#} | ||
{% extends "basic/layout.html" %} | ||
|
||
{% block header %} | ||
<div class="header-wrapper"> | ||
<div class="header"> | ||
{%- if logo %} | ||
<p class="logo"><a href="{{ pathto(master_doc) }}"> | ||
<img src="{{ pathto('_static/' + logo, 1) }}" alt="Logo"/> | ||
</a> | ||
</p> | ||
{%- endif %} | ||
|
||
|
||
|
||
{%- block navbar -%} | ||
<div class="navbar"> | ||
<ul> | ||
<li><a href="http://sourceforge.net/projects/scikit-learn/files/">download</a></li> | ||
<li><a href="{{pathto('support')}}">support</a></li> | ||
<li><a href="{{pathto('modules/classes')}}">reference</a></li> | ||
<li><a href="{{pathto('auto_examples/index')}}">gallery</a></li> | ||
<li><a href="{{pathto('developers/index')}}">development</a></li> | ||
</ul> | ||
|
||
<form class="search" action="{{ pathto('search') }}" method="get"> | ||
<input id="search_input" | ||
type="text" name="q" size="18" value=" search..." | ||
onfocus="if(this.value==this.defaultValue)this.value='';this.style.color='black'" | ||
onblur="if(this.value=='') { this.value=this.defaultValue;this.style.color='#cccccc'}"/> | ||
<input type="submit" value="{{ _('Go') }}" /> | ||
<input type="hidden" name="check_keywords" value="yes" /> | ||
<input type="hidden" name="area" value="default" /> | ||
</form> | ||
</div> <!-- end navbar --> | ||
{%- endblock -%} | ||
|
||
|
||
</div> | ||
</div> | ||
{% endblock %} | ||
|
||
{% block content %} | ||
<div class="content-wrapper"> | ||
|
||
<!-- <div id="blue_tile"></div> --> | ||
|
||
<div class="sphinxsidebar"> | ||
|
||
{%- if pagename != 'index' %} | ||
<div class="rel"> | ||
{%- for rellink in rellinks|reverse %} | ||
<a href="{{ pathto(rellink[0]) }}" title="{{ rellink[1]|striptags|e }}" | ||
{{ accesskey(rellink[2]) }}>{{ rellink[3] }}</a> | ||
{%- if not loop.last %}{{ reldelim2 }}{% endif %} | ||
{%- endfor %} | ||
</div> | ||
{% endif %} | ||
|
||
<h3><a href="{{ pathto(master_doc) }}">{{ _('Table Of Contents') }}</a></h3> | ||
{{ toc }} | ||
|
||
</div> | ||
|
||
<div class="content"> | ||
{%- block document %} | ||
{{ super() }} | ||
{%- endblock %} | ||
<div class="clearer"></div> | ||
</div> | ||
</div> | ||
{% endblock %} | ||
|
||
{% block footer %} | ||
<div class="footer-wrapper"> | ||
<div class="footer"> | ||
<div class="left"> | ||
{%- for rellink in rellinks|reverse %} | ||
<a href="{{ pathto(rellink[0]) }}" title="{{ rellink[1]|striptags|e }}" | ||
{{ accesskey(rellink[2]) }}>{{ rellink[3] }}</a> | ||
{%- if not loop.last %}{{ reldelim2 }}{% endif %} | ||
{%- endfor %} | ||
{%- if show_source and has_source and sourcename %} | ||
<br/> | ||
<a href="{{ pathto('_sources/' + sourcename, true)|e }}" | ||
rel="nofollow">{{ _('Show Source') }}</a> | ||
{%- endif %} | ||
</div> | ||
|
||
<div class="right"> | ||
{{ super() }} | ||
</div> | ||
<div class="clearer"></div> | ||
</div> | ||
</div> | ||
{% endblock %} | ||
|
||
{% block relbar1 %}{% endblock %} | ||
{% block relbar2 %}{% endblock %} |
Oops, something went wrong.