http://git-wip-us.apache.org/repos/asf/mahout/blob/0e718ec9/website/oldsite/_posts/core-samples/2011-12-29-jekyll-introduction.md ---------------------------------------------------------------------- diff --git a/website/oldsite/_posts/core-samples/2011-12-29-jekyll-introduction.md b/website/oldsite/_posts/core-samples/2011-12-29-jekyll-introduction.md new file mode 100644 index 0000000..13fe3dc --- /dev/null +++ b/website/oldsite/_posts/core-samples/2011-12-29-jekyll-introduction.md @@ -0,0 +1,412 @@ +--- +layout: post +category : lessons +tagline: "Supporting tagline" +tags : [intro, beginner, jekyll, tutorial] +--- +{% include JB/setup %} + +This Jekyll introduction will outline specifically what Jekyll is and why you would want to use it. +Directly following the intro we'll learn exactly _how_ Jekyll does what it does. + +## Overview + +### What is Jekyll? + +Jekyll is a parsing engine bundled as a ruby gem used to build static websites from +dynamic components such as templates, partials, liquid code, markdown, etc. Jekyll is known as "a simple, blog aware, static site generator". + +### Examples + +This website is created with Jekyll. [Other Jekyll websites](https://github.com/mojombo/jekyll/wiki/Sites). + + + +### What does Jekyll Do? + +Jekyll is a ruby gem you install on your local system. +Once there you can call `jekyll --server` on a directory and provided that directory +is setup in a way jekyll expects, it will do magic stuff like parse markdown/textile files, +compute categories, tags, permalinks, and construct your pages from layout templates and partials. + +Once parsed, Jekyll stores the result in a self-contained static `_site` folder. +The intention here is that you can serve all contents in this folder statically from a plain static web-server. + +You can think of Jekyll as a normalish dynamic blog but rather than parsing content, templates, and tags +on each request, Jekyll does this once _beforehand_ and caches the _entire website_ in a folder for serving statically. + +### Jekyll is Not Blogging Software + +**Jekyll is a parsing engine.** + +Jekyll does not come with any content nor does it have any templates or design elements. +This is a common source of confusion when getting started. +Jekyll does not come with anything you actually use or see on your website - you have to make it. + +### Why Should I Care? + +Jekyll is very minimalistic and very efficient. +The most important thing to realize about Jekyll is that it creates a static representation of your website requiring only a static web-server. +Traditional dynamic blogs like Wordpress require a database and server-side code. +Heavily trafficked dynamic blogs must employ a caching layer that ultimately performs the same job Jekyll sets out to do; serve static content. + +Therefore if you like to keep things simple and you prefer the command-line over an admin panel UI then give Jekyll a try. + +**Developers like Jekyll because we can write content like we write code:** + +- Ability to write content in markdown or textile in your favorite text-editor. +- Ability to write and preview your content via localhost. +- No internet connection required. +- Ability to publish via git. +- Ability to host your blog on a static web-server. +- Ability to host freely on GitHub Pages. +- No database required. + +# How Jekyll Works + +The following is a complete but concise outline of exactly how Jekyll works. + +Be aware that core concepts are introduced in rapid succession without code examples. +This information is not intended to specifically teach you how to do anything, rather it +is intended to give you the _full picture_ relative to what is going on in Jekyll-world. + +Learning these core concepts should help you avoid common frustrations and ultimately +help you better understand the code examples contained throughout Jekyll-Bootstrap. + + +## Initial Setup + +After [installing jekyll](/index.html#start-now) you'll need to format your website directory in a way jekyll expects. +Jekyll-bootstrap conveniently provides the base directory format. + +### The Jekyll Application Base Format + +Jekyll expects your website directory to be laid out like so: + + . + |-- _config.yml + |-- _includes + |-- _layouts + | |-- default.html + | |-- post.html + |-- _posts + | |-- 2011-10-25-open-source-is-good.markdown + | |-- 2011-04-26-hello-world.markdown + |-- _site + |-- index.html + |-- assets + |-- css + |-- style.css + |-- javascripts + + +- **\_config.yml** + Stores configuration data. + +- **\_includes** + This folder is for partial views. + +- **\_layouts** + This folder is for the main templates your content will be inserted into. + You can have different layouts for different pages or page sections. + +- **\_posts** + This folder contains your dynamic content/posts. + the naming format is required to be `@YEAR-MONTH-DATE-title.MARKUP@`. + +- **\_site** + This is where the generated site will be placed once Jekyll is done transforming it. + +- **assets** + This folder is not part of the standard jekyll structure. + The assets folder represents _any generic_ folder you happen to create in your root directory. + Directories and files not properly formatted for jekyll will be left untouched for you to serve normally. + +(read more: <https://github.com/mojombo/jekyll/wiki/Usage>) + + +### Jekyll Configuration + +Jekyll supports various configuration options that are fully outlined here: +(<https://github.com/mojombo/jekyll/wiki/Configuration>) + + + + +## Content in Jekyll + +Content in Jekyll is either a post or a page. +These content "objects" get inserted into one or more templates to build the final output for its respective static-page. + +### Posts and Pages + +Both posts and pages should be written in markdown, textile, or HTML and may also contain Liquid templating syntax. +Both posts and pages can have meta-data assigned on a per-page basis such as title, url path, as well as arbitrary custom meta-data. + +### Working With Posts + +**Creating a Post** +Posts are created by properly formatting a file and placing it the `_posts` folder. + +**Formatting** +A post must have a valid filename in the form `YEAR-MONTH-DATE-title.MARKUP` and be placed in the `_posts` directory. +If the data format is invalid Jekyll will not recognize the file as a post. The date and title are automatically parsed from the filename of the post file. +Additionally, each file must have [YAML Front-Matter](https://github.com/mojombo/jekyll/wiki/YAML-Front-Matter) prepended to its content. +YAML Front-Matter is a valid YAML syntax specifying meta-data for the given file. + +**Order** +Ordering is an important part of Jekyll but it is hard to specify a custom ordering strategy. +Only reverse chronological and chronological ordering is supported in Jekyll. + +Since the date is hard-coded into the filename format, to change the order, you must change the dates in the filenames. + +**Tags** +Posts can have tags associated with them as part of their meta-data. +Tags may be placed on posts by providing them in the post's YAML front matter. +You have access to the post-specific tags in the templates. These tags also get added to the sitewide collection. + +**Categories** +Posts may be categorized by providing one or more categories in the YAML front matter. +Categories offer more significance over tags in that they can be reflected in the URL path to the given post. +Note categories in Jekyll work in a specific way. +If you define more than one category you are defining a category hierarchy "set". +Example: + + --- + title : Hello World + categories : [lessons, beginner] + --- + +This defines the category hierarchy "lessons/beginner". Note this is _one category_ node in Jekyll. +You won't find "lessons" and "beginner" as two separate categories unless you define them elsewhere as singular categories. + +### Working With Pages + +**Creating a Page** +Pages are created by properly formatting a file and placing it anywhere in the root directory or subdirectories that do _not_ start with an underscore. + +**Formatting** +In order to register as a Jekyll page the file must contain [YAML Front-Matter](https://github.com/mojombo/jekyll/wiki/YAML-Front-Matter). +Registering a page means 1) that Jekyll will process the page and 2) that the page object will be available in the `site.pages` array for inclusion into your templates. + +**Categories and Tags** +Pages do not compute categories nor tags so defining them will have no effect. + +**Sub-Directories** +If pages are defined in sub-directories, the path to the page will be reflected in the url. +Example: + + . + |-- people + |-- bob + |-- essay.html + +This page will be available at `http://yourdomain.com/people/bob/essay.html` + + +**Recommended Pages** + +- **index.html** + You will always want to define the root index.html page as this will display on your root URL. +- **404.html** + Create a root 404.html page and GitHub Pages will serve it as your 404 response. +- **sitemap.html** + Generating a sitemap is good practice for SEO. +- **about.html** + A nice about page is easy to do and gives the human perspective to your website. + + +## Templates in Jekyll + +Templates are used to contain a page's or post's content. +All templates have access to a global site object variable: `site` as well as a page object variable: `page`. +The site variable holds all accessible content and metadata relative to the site. +The page variable holds accessible data for the given page or post being rendered at that point. + +**Create a Template** +Templates are created by properly formatting a file and placing it in the `_layouts` directory. + +**Formatting** +Templates should be coded in HTML and contain YAML Front Matter. +All templates can contain Liquid code to work with your site's data. + +**Rending Page/Post Content in a Template** +There is a special variable in all templates named : `content`. +The `content` variable holds the page/post content including any sub-template content previously defined. +Render the content variable wherever you want your main content to be injected into your template: + +{% capture text %}... +<body> + <div id="sidebar"> ... </div> + <div id="main"> + |.{content}.| + </div> +</body> +...{% endcapture %} +{% include JB/liquid_raw %} + +### Sub-Templates + +Sub-templates are exactly templates with the only difference being they +define another "root" layout/template within their YAML Front Matter. +This essentially means a template will render inside of another template. + +### Includes +In Jekyll you can define include files by placing them in the `_includes` folder. +Includes are NOT templates, rather they are just code snippets that get included into templates. +In this way, you can treat the code inside includes as if it was native to the parent template. + +Any valid template code may be used in includes. + + +## Using Liquid for Templating + +Templating is perhaps the most confusing and frustrating part of Jekyll. +This is mainly due to the fact that Jekyll templates must use the Liquid Templating Language. + +### What is Liquid? + +[Liquid](https://github.com/Shopify/liquid) is a secure templating language developed by [Shopify](http://shopify.com). +Liquid is designed for end-users to be able to execute logic within template files +without imposing any security risk on the hosting server. + +Jekyll uses Liquid to generate the post content within the final page layout structure and as the primary interface for working with +your site and post/page data. + +### Why Do We Have to Use Liquid? + +GitHub uses Jekyll to power [GitHub Pages](http://pages.github.com/). +GitHub cannot afford to run arbitrary code on their servers so they lock developers down via Liquid. + +### Liquid is Not Programmer-Friendly. + +The short story is liquid is not real code and its not intended to execute real code. +The point being you can't do jackshit in liquid that hasn't been allowed explicitly by the implementation. +What's more you can only access data-structures that have been explicitly passed to the template. + +In Jekyll's case it is not possible to alter what is passed to Liquid without hacking the gem or running custom plugins. +Both of which cannot be supported by GitHub Pages. + +As a programmer - this is very frustrating. + +But rather than look a gift horse in the mouth we are going to +suck it up and view it as an opportunity to work around limitations and adopt client-side solutions when possible. + +**Aside** +My personal stance is to not invest time trying to hack liquid. It's really unnecessary +_from a programmer's_ perspective. That is to say if you have the ability to run custom plugins (i.e. run arbitrary ruby code) +you are better off sticking with ruby. Toward that end I've built [Mustache-with-Jekyll](http://github.com/plusjade/mustache-with-jekyll) + + +## Static Assets + +Static assets are any file in the root or non-underscored subfolders that are not pages. +That is they have no valid YAML Front Matter and are thus not treated as Jekyll Pages. + +Static assets should be used for images, css, and javascript files. + + + + +## How Jekyll Parses Files + +Remember Jekyll is a processing engine. There are two main types of parsing in Jekyll. + +- **Content parsing.** + This is done with textile or markdown. +- **Template parsing.** + This is done with the liquid templating language. + +And thus there are two main types of file formats needed for this parsing. + +- **Post and Page files.** + All content in Jekyll is either a post or a page so valid posts and pages are parsed with markdown or textile. +- **Template files.** + These files go in `_layouts` folder and contain your blogs **templates**. They should be made in HTML with the help of Liquid syntax. + Since include files are simply injected into templates they are essentially parsed as if they were native to the template. + +**Arbitrary files and folders.** +Files that _are not_ valid pages are treated as static content and pass through +Jekyll untouched and reside on your blog in the exact structure and format they originally existed in. + +### Formatting Files for Parsing. + +We've outlined the need for valid formatting using **YAML Front Matter**. +Templates, posts, and pages all need to provide valid YAML Front Matter even if the Matter is empty. +This is the only way Jekyll knows you want the file processed. + +YAML Front Matter must be prepended to the top of template/post/page files: + + --- + layout: post + category : pages + tags : [how-to, jekyll] + --- + + ... contents ... + +Three hyphens on a new line start the Front-Matter block and three hyphens on a new line end the block. +The data inside the block must be valid YAML. + +Configuration parameters for YAML Front-Matter is outlined here: +[A comprehensive explanation of YAML Front Matter](https://github.com/mojombo/jekyll/wiki/YAML-Front-Matter) + +#### Defining Layouts for Posts and Templates Parsing. + +The `layout` parameter in the YAML Front Matter defines the template file for which the given post or template should be injected into. +If a template file specifies its own layout, it is effectively being used as a `sub-template.` +That is to say loading a post file into a template file that refers to another template file with work in the way you'd expect; as a nested sub-template. + + + + + +## How Jekyll Generates the Final Static Files. + +Ultimately, Jekyll's job is to generate a static representation of your website. +The following is an outline of how that's done: + +1. **Jekyll collects data.** + Jekyll scans the posts directory and collects all posts files as post objects. It then scans the layout assets and collects those and finally scans other directories in search of pages. + +2. **Jekyll computes data.** + Jekyll takes these objects, computes metadata (permalinks, tags, categories, titles, dates) from them and constructs one + big `site` object that holds all the posts, pages, layouts, and respective metadata. + At this stage your site is one big computed ruby object. + +3. **Jekyll liquifies posts and templates.** + Next jekyll loops through each post file and converts (through markdown or textile) and **liquifies** the post inside of its respective layout(s). + Once the post is parsed and liquified inside the the proper layout structure, the layout itself is "liquified". + **Liquification** is defined as follows: Jekyll initiates a Liquid template, and passes a simpler hash representation of the ruby site object as well as a simpler + hash representation of the ruby post object. These simplified data structures are what you have access to in the templates. + +3. **Jekyll generates output.** + Finally the liquid templates are "rendered", thereby processing any liquid syntax provided in the templates + and saving the final, static representation of the file. + +**Notes.** +Because Jekyll computes the entire site in one fell swoop, each template is given access to +a global `site` hash that contains useful data. It is this data that you'll iterate through and format +using the Liquid tags and filters in order to render it onto a given page. + +Remember, in Jekyll you are an end-user. Your API has only two components: + +1. The manner in which you setup your directory. +2. The liquid syntax and variables passed into the liquid templates. + +All the data objects available to you in the templates via Liquid are outlined in the **API Section** of Jekyll-Bootstrap. +You can also read the original documentation here: <https://github.com/mojombo/jekyll/wiki/Template-Data> + +## Conclusion + +I hope this paints a clearer picture of what Jekyll is doing and why it works the way it does. +As noted, our main programming constraint is the fact that our API is limited to what is accessible via Liquid and Liquid only. + +Jekyll-bootstrap is intended to provide helper methods and strategies aimed at making it more intuitive and easier to work with Jekyll =) + +**Thank you** for reading this far. + +## Next Steps + +Please take a look at [{{ site.categories.api.first.title }}]({{ BASE_PATH }}{{ site.categories.api.first.url }}) +or jump right into [Usage]({{ BASE_PATH }}{{ site.categories.usage.first.url }}) if you'd like. \ No newline at end of file
http://git-wip-us.apache.org/repos/asf/mahout/blob/0e718ec9/website/oldsite/_site/404.html ---------------------------------------------------------------------- diff --git a/website/oldsite/_site/404.html b/website/oldsite/_site/404.html new file mode 100644 index 0000000..6904bcd --- /dev/null +++ b/website/oldsite/_site/404.html @@ -0,0 +1 @@ +Sorry this page does not exist =( http://git-wip-us.apache.org/repos/asf/mahout/blob/0e718ec9/website/oldsite/_site/Gemfile ---------------------------------------------------------------------- diff --git a/website/oldsite/_site/Gemfile b/website/oldsite/_site/Gemfile new file mode 100644 index 0000000..301d29c --- /dev/null +++ b/website/oldsite/_site/Gemfile @@ -0,0 +1,5 @@ +source "https://rubygems.org" + +gem "jekyll", "~> 3.1" +gem "jekyll-sitemap" +gem "pygments.rb" http://git-wip-us.apache.org/repos/asf/mahout/blob/0e718ec9/website/oldsite/_site/Gemfile.lock ---------------------------------------------------------------------- diff --git a/website/oldsite/_site/Gemfile.lock b/website/oldsite/_site/Gemfile.lock new file mode 100644 index 0000000..f3aff06 --- /dev/null +++ b/website/oldsite/_site/Gemfile.lock @@ -0,0 +1,56 @@ +GEM + remote: https://rubygems.org/ + specs: + addressable (2.5.1) + public_suffix (~> 2.0, >= 2.0.2) + colorator (1.1.0) + ffi (1.9.18) + forwardable-extended (2.6.0) + jekyll (3.4.3) + addressable (~> 2.4) + colorator (~> 1.0) + jekyll-sass-converter (~> 1.0) + jekyll-watch (~> 1.1) + kramdown (~> 1.3) + liquid (~> 3.0) + mercenary (~> 0.3.3) + pathutil (~> 0.9) + rouge (~> 1.7) + safe_yaml (~> 1.0) + jekyll-sass-converter (1.5.0) + sass (~> 3.4) + jekyll-sitemap (1.1.1) + jekyll (~> 3.3) + jekyll-watch (1.5.0) + listen (~> 3.0, < 3.1) + kramdown (1.13.2) + liquid (3.0.6) + listen (3.0.8) + rb-fsevent (~> 0.9, >= 0.9.4) + rb-inotify (~> 0.9, >= 0.9.7) + mercenary (0.3.6) + pathutil (0.14.0) + forwardable-extended (~> 2.6) + posix-spawn (0.3.6) + public_suffix (2.0.5) + pygments.rb (0.5.4) + posix-spawn (~> 0.3.6) + yajl-ruby (~> 1.1.0) + rb-fsevent (0.9.8) + rb-inotify (0.9.8) + ffi (>= 0.5.0) + rouge (1.11.1) + safe_yaml (1.0.4) + sass (3.4.23) + yajl-ruby (1.1.0) + +PLATFORMS + ruby + +DEPENDENCIES + jekyll (~> 3.1) + jekyll-sitemap + pygments.rb + +BUNDLED WITH + 1.14.6 http://git-wip-us.apache.org/repos/asf/mahout/blob/0e718ec9/website/oldsite/_site/History.markdown ---------------------------------------------------------------------- diff --git a/website/oldsite/_site/History.markdown b/website/oldsite/_site/History.markdown new file mode 100644 index 0000000..5ef89c1 --- /dev/null +++ b/website/oldsite/_site/History.markdown @@ -0,0 +1,16 @@ +## HEAD + +### Major Enhancements + +### Minor Enahncements + * Add `drafts` folder support (#167) + * Add `excerpt` support (#168) + * Create History.markdown to help project management (#169) + +### Bug Fixes + +### Site Enhancements + +### Compatibility updates + * Update `preview` task + http://git-wip-us.apache.org/repos/asf/mahout/blob/0e718ec9/website/oldsite/_site/LICENSE ---------------------------------------------------------------------- diff --git a/website/oldsite/_site/LICENSE b/website/oldsite/_site/LICENSE new file mode 100644 index 0000000..01a0839 --- /dev/null +++ b/website/oldsite/_site/LICENSE @@ -0,0 +1,21 @@ +The MIT License (MIT) + +Copyright (c) 2015 Jade Dominguez + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. http://git-wip-us.apache.org/repos/asf/mahout/blob/0e718ec9/website/oldsite/_site/assets/img/2dDirichletASN.png ---------------------------------------------------------------------- diff --git a/website/oldsite/_site/assets/img/2dDirichletASN.png b/website/oldsite/_site/assets/img/2dDirichletASN.png new file mode 100644 index 0000000..b4fafab Binary files /dev/null and b/website/oldsite/_site/assets/img/2dDirichletASN.png differ http://git-wip-us.apache.org/repos/asf/mahout/blob/0e718ec9/website/oldsite/_site/assets/img/2dDirichletASN4040.png ---------------------------------------------------------------------- diff --git a/website/oldsite/_site/assets/img/2dDirichletASN4040.png b/website/oldsite/_site/assets/img/2dDirichletASN4040.png new file mode 100644 index 0000000..7fb0508 Binary files /dev/null and b/website/oldsite/_site/assets/img/2dDirichletASN4040.png differ http://git-wip-us.apache.org/repos/asf/mahout/blob/0e718ec9/website/oldsite/_site/assets/img/2dDirichletSN.png ---------------------------------------------------------------------- diff --git a/website/oldsite/_site/assets/img/2dDirichletSN.png b/website/oldsite/_site/assets/img/2dDirichletSN.png new file mode 100644 index 0000000..31e45a7 Binary files /dev/null and b/website/oldsite/_site/assets/img/2dDirichletSN.png differ http://git-wip-us.apache.org/repos/asf/mahout/blob/0e718ec9/website/oldsite/_site/assets/img/2dFuzzyKMeans.png ---------------------------------------------------------------------- diff --git a/website/oldsite/_site/assets/img/2dFuzzyKMeans.png b/website/oldsite/_site/assets/img/2dFuzzyKMeans.png new file mode 100644 index 0000000..5e9f187 Binary files /dev/null and b/website/oldsite/_site/assets/img/2dFuzzyKMeans.png differ http://git-wip-us.apache.org/repos/asf/mahout/blob/0e718ec9/website/oldsite/_site/assets/img/2dKMeans.png ---------------------------------------------------------------------- diff --git a/website/oldsite/_site/assets/img/2dKMeans.png b/website/oldsite/_site/assets/img/2dKMeans.png new file mode 100644 index 0000000..877648a Binary files /dev/null and b/website/oldsite/_site/assets/img/2dKMeans.png differ http://git-wip-us.apache.org/repos/asf/mahout/blob/0e718ec9/website/oldsite/_site/assets/img/2dMeanShift.png ---------------------------------------------------------------------- diff --git a/website/oldsite/_site/assets/img/2dMeanShift.png b/website/oldsite/_site/assets/img/2dMeanShift.png new file mode 100644 index 0000000..4322ac4 Binary files /dev/null and b/website/oldsite/_site/assets/img/2dMeanShift.png differ http://git-wip-us.apache.org/repos/asf/mahout/blob/0e718ec9/website/oldsite/_site/assets/img/AsymmetricSampleData.png ---------------------------------------------------------------------- diff --git a/website/oldsite/_site/assets/img/AsymmetricSampleData.png b/website/oldsite/_site/assets/img/AsymmetricSampleData.png new file mode 100644 index 0000000..fd647fc Binary files /dev/null and b/website/oldsite/_site/assets/img/AsymmetricSampleData.png differ http://git-wip-us.apache.org/repos/asf/mahout/blob/0e718ec9/website/oldsite/_site/assets/img/Canopy.png ---------------------------------------------------------------------- diff --git a/website/oldsite/_site/assets/img/Canopy.png b/website/oldsite/_site/assets/img/Canopy.png new file mode 100644 index 0000000..934efd7 Binary files /dev/null and b/website/oldsite/_site/assets/img/Canopy.png differ http://git-wip-us.apache.org/repos/asf/mahout/blob/0e718ec9/website/oldsite/_site/assets/img/Canopy10.png ---------------------------------------------------------------------- diff --git a/website/oldsite/_site/assets/img/Canopy10.png b/website/oldsite/_site/assets/img/Canopy10.png new file mode 100644 index 0000000..4bb291c Binary files /dev/null and b/website/oldsite/_site/assets/img/Canopy10.png differ http://git-wip-us.apache.org/repos/asf/mahout/blob/0e718ec9/website/oldsite/_site/assets/img/DirichletASN.png ---------------------------------------------------------------------- diff --git a/website/oldsite/_site/assets/img/DirichletASN.png b/website/oldsite/_site/assets/img/DirichletASN.png new file mode 100644 index 0000000..eba9444 Binary files /dev/null and b/website/oldsite/_site/assets/img/DirichletASN.png differ http://git-wip-us.apache.org/repos/asf/mahout/blob/0e718ec9/website/oldsite/_site/assets/img/DirichletN.png ---------------------------------------------------------------------- diff --git a/website/oldsite/_site/assets/img/DirichletN.png b/website/oldsite/_site/assets/img/DirichletN.png new file mode 100644 index 0000000..9ae0fd3 Binary files /dev/null and b/website/oldsite/_site/assets/img/DirichletN.png differ http://git-wip-us.apache.org/repos/asf/mahout/blob/0e718ec9/website/oldsite/_site/assets/img/DirichletSN.png ---------------------------------------------------------------------- diff --git a/website/oldsite/_site/assets/img/DirichletSN.png b/website/oldsite/_site/assets/img/DirichletSN.png new file mode 100644 index 0000000..50d648b Binary files /dev/null and b/website/oldsite/_site/assets/img/DirichletSN.png differ http://git-wip-us.apache.org/repos/asf/mahout/blob/0e718ec9/website/oldsite/_site/assets/img/DirichletSN40.png ---------------------------------------------------------------------- diff --git a/website/oldsite/_site/assets/img/DirichletSN40.png b/website/oldsite/_site/assets/img/DirichletSN40.png new file mode 100644 index 0000000..51f2089 Binary files /dev/null and b/website/oldsite/_site/assets/img/DirichletSN40.png differ http://git-wip-us.apache.org/repos/asf/mahout/blob/0e718ec9/website/oldsite/_site/assets/img/Example implementation of k-Means provided with Mahout.png ---------------------------------------------------------------------- diff --git a/website/oldsite/_site/assets/img/Example implementation of k-Means provided with Mahout.png b/website/oldsite/_site/assets/img/Example implementation of k-Means provided with Mahout.png new file mode 100644 index 0000000..e8b7180 Binary files /dev/null and b/website/oldsite/_site/assets/img/Example implementation of k-Means provided with Mahout.png differ http://git-wip-us.apache.org/repos/asf/mahout/blob/0e718ec9/website/oldsite/_site/assets/img/FuzzyKMeans.png ---------------------------------------------------------------------- diff --git a/website/oldsite/_site/assets/img/FuzzyKMeans.png b/website/oldsite/_site/assets/img/FuzzyKMeans.png new file mode 100644 index 0000000..676574a Binary files /dev/null and b/website/oldsite/_site/assets/img/FuzzyKMeans.png differ http://git-wip-us.apache.org/repos/asf/mahout/blob/0e718ec9/website/oldsite/_site/assets/img/KMeans.png ---------------------------------------------------------------------- diff --git a/website/oldsite/_site/assets/img/KMeans.png b/website/oldsite/_site/assets/img/KMeans.png new file mode 100644 index 0000000..73d0a27 Binary files /dev/null and b/website/oldsite/_site/assets/img/KMeans.png differ http://git-wip-us.apache.org/repos/asf/mahout/blob/0e718ec9/website/oldsite/_site/assets/img/Mahout-logo-164x200.png ---------------------------------------------------------------------- diff --git a/website/oldsite/_site/assets/img/Mahout-logo-164x200.png b/website/oldsite/_site/assets/img/Mahout-logo-164x200.png new file mode 100644 index 0000000..69cd409 Binary files /dev/null and b/website/oldsite/_site/assets/img/Mahout-logo-164x200.png differ http://git-wip-us.apache.org/repos/asf/mahout/blob/0e718ec9/website/oldsite/_site/assets/img/Mahout-logo-245x300.png ---------------------------------------------------------------------- diff --git a/website/oldsite/_site/assets/img/Mahout-logo-245x300.png b/website/oldsite/_site/assets/img/Mahout-logo-245x300.png new file mode 100644 index 0000000..e43bcab Binary files /dev/null and b/website/oldsite/_site/assets/img/Mahout-logo-245x300.png differ http://git-wip-us.apache.org/repos/asf/mahout/blob/0e718ec9/website/oldsite/_site/assets/img/Mahout-logo-327x400.png ---------------------------------------------------------------------- diff --git a/website/oldsite/_site/assets/img/Mahout-logo-327x400.png b/website/oldsite/_site/assets/img/Mahout-logo-327x400.png new file mode 100644 index 0000000..f0341ac Binary files /dev/null and b/website/oldsite/_site/assets/img/Mahout-logo-327x400.png differ http://git-wip-us.apache.org/repos/asf/mahout/blob/0e718ec9/website/oldsite/_site/assets/img/Mahout-logo-82x100.png ---------------------------------------------------------------------- diff --git a/website/oldsite/_site/assets/img/Mahout-logo-82x100.png b/website/oldsite/_site/assets/img/Mahout-logo-82x100.png new file mode 100644 index 0000000..31d40c4 Binary files /dev/null and b/website/oldsite/_site/assets/img/Mahout-logo-82x100.png differ http://git-wip-us.apache.org/repos/asf/mahout/blob/0e718ec9/website/oldsite/_site/assets/img/MeanShift.png ---------------------------------------------------------------------- diff --git a/website/oldsite/_site/assets/img/MeanShift.png b/website/oldsite/_site/assets/img/MeanShift.png new file mode 100644 index 0000000..ea7f5e1 Binary files /dev/null and b/website/oldsite/_site/assets/img/MeanShift.png differ http://git-wip-us.apache.org/repos/asf/mahout/blob/0e718ec9/website/oldsite/_site/assets/img/SampleData.png ---------------------------------------------------------------------- diff --git a/website/oldsite/_site/assets/img/SampleData.png b/website/oldsite/_site/assets/img/SampleData.png new file mode 100644 index 0000000..48c4690 Binary files /dev/null and b/website/oldsite/_site/assets/img/SampleData.png differ http://git-wip-us.apache.org/repos/asf/mahout/blob/0e718ec9/website/oldsite/_site/assets/img/bg.png ---------------------------------------------------------------------- diff --git a/website/oldsite/_site/assets/img/bg.png b/website/oldsite/_site/assets/img/bg.png new file mode 100755 index 0000000..8c6d61b Binary files /dev/null and b/website/oldsite/_site/assets/img/bg.png differ http://git-wip-us.apache.org/repos/asf/mahout/blob/0e718ec9/website/oldsite/_site/assets/img/debug-config-2.png ---------------------------------------------------------------------- diff --git a/website/oldsite/_site/assets/img/debug-config-2.png b/website/oldsite/_site/assets/img/debug-config-2.png new file mode 100644 index 0000000..59a09b4 Binary files /dev/null and b/website/oldsite/_site/assets/img/debug-config-2.png differ http://git-wip-us.apache.org/repos/asf/mahout/blob/0e718ec9/website/oldsite/_site/assets/img/debug-config.png ---------------------------------------------------------------------- diff --git a/website/oldsite/_site/assets/img/debug-config.png b/website/oldsite/_site/assets/img/debug-config.png new file mode 100644 index 0000000..be49441 Binary files /dev/null and b/website/oldsite/_site/assets/img/debug-config.png differ http://git-wip-us.apache.org/repos/asf/mahout/blob/0e718ec9/website/oldsite/_site/assets/img/download-mahout.png ---------------------------------------------------------------------- diff --git a/website/oldsite/_site/assets/img/download-mahout.png b/website/oldsite/_site/assets/img/download-mahout.png new file mode 100644 index 0000000..77fa513 Binary files /dev/null and b/website/oldsite/_site/assets/img/download-mahout.png differ http://git-wip-us.apache.org/repos/asf/mahout/blob/0e718ec9/website/oldsite/_site/assets/img/download-original.png ---------------------------------------------------------------------- diff --git a/website/oldsite/_site/assets/img/download-original.png b/website/oldsite/_site/assets/img/download-original.png new file mode 100644 index 0000000..ef50ce9 Binary files /dev/null and b/website/oldsite/_site/assets/img/download-original.png differ http://git-wip-us.apache.org/repos/asf/mahout/blob/0e718ec9/website/oldsite/_site/assets/img/download.png ---------------------------------------------------------------------- diff --git a/website/oldsite/_site/assets/img/download.png b/website/oldsite/_site/assets/img/download.png new file mode 100644 index 0000000..ec24e77 Binary files /dev/null and b/website/oldsite/_site/assets/img/download.png differ http://git-wip-us.apache.org/repos/asf/mahout/blob/0e718ec9/website/oldsite/_site/assets/img/flink_squirrel_100_color.png ---------------------------------------------------------------------- diff --git a/website/oldsite/_site/assets/img/flink_squirrel_100_color.png b/website/oldsite/_site/assets/img/flink_squirrel_100_color.png new file mode 100644 index 0000000..c508e1e Binary files /dev/null and b/website/oldsite/_site/assets/img/flink_squirrel_100_color.png differ http://git-wip-us.apache.org/repos/asf/mahout/blob/0e718ec9/website/oldsite/_site/assets/img/generic page.png ---------------------------------------------------------------------- diff --git a/website/oldsite/_site/assets/img/generic page.png b/website/oldsite/_site/assets/img/generic page.png new file mode 100644 index 0000000..892564d Binary files /dev/null and b/website/oldsite/_site/assets/img/generic page.png differ http://git-wip-us.apache.org/repos/asf/mahout/blob/0e718ec9/website/oldsite/_site/assets/img/home-wrapper-original.png ---------------------------------------------------------------------- diff --git a/website/oldsite/_site/assets/img/home-wrapper-original.png b/website/oldsite/_site/assets/img/home-wrapper-original.png new file mode 100644 index 0000000..24b88c0 Binary files /dev/null and b/website/oldsite/_site/assets/img/home-wrapper-original.png differ http://git-wip-us.apache.org/repos/asf/mahout/blob/0e718ec9/website/oldsite/_site/assets/img/home-wrapper-v2.png ---------------------------------------------------------------------- diff --git a/website/oldsite/_site/assets/img/home-wrapper-v2.png b/website/oldsite/_site/assets/img/home-wrapper-v2.png new file mode 100644 index 0000000..8789219 Binary files /dev/null and b/website/oldsite/_site/assets/img/home-wrapper-v2.png differ http://git-wip-us.apache.org/repos/asf/mahout/blob/0e718ec9/website/oldsite/_site/assets/img/home-wrapper-v3.png ---------------------------------------------------------------------- diff --git a/website/oldsite/_site/assets/img/home-wrapper-v3.png b/website/oldsite/_site/assets/img/home-wrapper-v3.png new file mode 100644 index 0000000..bbcdd93 Binary files /dev/null and b/website/oldsite/_site/assets/img/home-wrapper-v3.png differ http://git-wip-us.apache.org/repos/asf/mahout/blob/0e718ec9/website/oldsite/_site/assets/img/home-wrapper.png ---------------------------------------------------------------------- diff --git a/website/oldsite/_site/assets/img/home-wrapper.png b/website/oldsite/_site/assets/img/home-wrapper.png new file mode 100644 index 0000000..02a7b72 Binary files /dev/null and b/website/oldsite/_site/assets/img/home-wrapper.png differ http://git-wip-us.apache.org/repos/asf/mahout/blob/0e718ec9/website/oldsite/_site/assets/img/instruction_arrow.png ---------------------------------------------------------------------- diff --git a/website/oldsite/_site/assets/img/instruction_arrow.png b/website/oldsite/_site/assets/img/instruction_arrow.png new file mode 100644 index 0000000..0fbc724 Binary files /dev/null and b/website/oldsite/_site/assets/img/instruction_arrow.png differ http://git-wip-us.apache.org/repos/asf/mahout/blob/0e718ec9/website/oldsite/_site/assets/img/logo.png ---------------------------------------------------------------------- diff --git a/website/oldsite/_site/assets/img/logo.png b/website/oldsite/_site/assets/img/logo.png new file mode 100644 index 0000000..c8e6c22 Binary files /dev/null and b/website/oldsite/_site/assets/img/logo.png differ http://git-wip-us.apache.org/repos/asf/mahout/blob/0e718ec9/website/oldsite/_site/assets/img/mahout-logo-100.png ---------------------------------------------------------------------- diff --git a/website/oldsite/_site/assets/img/mahout-logo-100.png b/website/oldsite/_site/assets/img/mahout-logo-100.png new file mode 100644 index 0000000..9868200 Binary files /dev/null and b/website/oldsite/_site/assets/img/mahout-logo-100.png differ http://git-wip-us.apache.org/repos/asf/mahout/blob/0e718ec9/website/oldsite/_site/assets/img/mahout-logo-200.png ---------------------------------------------------------------------- diff --git a/website/oldsite/_site/assets/img/mahout-logo-200.png b/website/oldsite/_site/assets/img/mahout-logo-200.png new file mode 100644 index 0000000..4ef5bdd Binary files /dev/null and b/website/oldsite/_site/assets/img/mahout-logo-200.png differ http://git-wip-us.apache.org/repos/asf/mahout/blob/0e718ec9/website/oldsite/_site/assets/img/mahout-logo-300.png ---------------------------------------------------------------------- diff --git a/website/oldsite/_site/assets/img/mahout-logo-300.png b/website/oldsite/_site/assets/img/mahout-logo-300.png new file mode 100644 index 0000000..2fbd589 Binary files /dev/null and b/website/oldsite/_site/assets/img/mahout-logo-300.png differ http://git-wip-us.apache.org/repos/asf/mahout/blob/0e718ec9/website/oldsite/_site/assets/img/mahout-logo-400.png ---------------------------------------------------------------------- diff --git a/website/oldsite/_site/assets/img/mahout-logo-400.png b/website/oldsite/_site/assets/img/mahout-logo-400.png new file mode 100644 index 0000000..d9ac832 Binary files /dev/null and b/website/oldsite/_site/assets/img/mahout-logo-400.png differ http://git-wip-us.apache.org/repos/asf/mahout/blob/0e718ec9/website/oldsite/_site/assets/img/mahout-logo-brudman.png ---------------------------------------------------------------------- diff --git a/website/oldsite/_site/assets/img/mahout-logo-brudman.png b/website/oldsite/_site/assets/img/mahout-logo-brudman.png new file mode 100644 index 0000000..5f515bf Binary files /dev/null and b/website/oldsite/_site/assets/img/mahout-logo-brudman.png differ http://git-wip-us.apache.org/repos/asf/mahout/blob/0e718ec9/website/oldsite/_site/assets/img/mahout-logo-poweredby-100.png ---------------------------------------------------------------------- diff --git a/website/oldsite/_site/assets/img/mahout-logo-poweredby-100.png b/website/oldsite/_site/assets/img/mahout-logo-poweredby-100.png new file mode 100644 index 0000000..8f8af00 Binary files /dev/null and b/website/oldsite/_site/assets/img/mahout-logo-poweredby-100.png differ http://git-wip-us.apache.org/repos/asf/mahout/blob/0e718ec9/website/oldsite/_site/assets/img/mahout-logo-poweredby-55.png ---------------------------------------------------------------------- diff --git a/website/oldsite/_site/assets/img/mahout-logo-poweredby-55.png b/website/oldsite/_site/assets/img/mahout-logo-poweredby-55.png new file mode 100644 index 0000000..9814d31 Binary files /dev/null and b/website/oldsite/_site/assets/img/mahout-logo-poweredby-55.png differ http://git-wip-us.apache.org/repos/asf/mahout/blob/0e718ec9/website/oldsite/_site/assets/img/mahout-logo-poweredby.png ---------------------------------------------------------------------- diff --git a/website/oldsite/_site/assets/img/mahout-logo-poweredby.png b/website/oldsite/_site/assets/img/mahout-logo-poweredby.png new file mode 100644 index 0000000..205fd60 Binary files /dev/null and b/website/oldsite/_site/assets/img/mahout-logo-poweredby.png differ http://git-wip-us.apache.org/repos/asf/mahout/blob/0e718ec9/website/oldsite/_site/assets/img/mahout-logo-transparent-400.png ---------------------------------------------------------------------- diff --git a/website/oldsite/_site/assets/img/mahout-logo-transparent-400.png b/website/oldsite/_site/assets/img/mahout-logo-transparent-400.png new file mode 100644 index 0000000..583436b Binary files /dev/null and b/website/oldsite/_site/assets/img/mahout-logo-transparent-400.png differ http://git-wip-us.apache.org/repos/asf/mahout/blob/0e718ec9/website/oldsite/_site/assets/img/mahout-logo.png ---------------------------------------------------------------------- diff --git a/website/oldsite/_site/assets/img/mahout-logo.png b/website/oldsite/_site/assets/img/mahout-logo.png new file mode 100644 index 0000000..b3dd9e9 Binary files /dev/null and b/website/oldsite/_site/assets/img/mahout-logo.png differ http://git-wip-us.apache.org/repos/asf/mahout/blob/0e718ec9/website/oldsite/_site/assets/img/mahout-lupe.png ---------------------------------------------------------------------- diff --git a/website/oldsite/_site/assets/img/mahout-lupe.png b/website/oldsite/_site/assets/img/mahout-lupe.png new file mode 100644 index 0000000..d9d3146 Binary files /dev/null and b/website/oldsite/_site/assets/img/mahout-lupe.png differ http://git-wip-us.apache.org/repos/asf/mahout/blob/0e718ec9/website/oldsite/_site/assets/img/mahout-strangelove-logo.png ---------------------------------------------------------------------- diff --git a/website/oldsite/_site/assets/img/mahout-strangelove-logo.png b/website/oldsite/_site/assets/img/mahout-strangelove-logo.png new file mode 100644 index 0000000..88bdfb4 Binary files /dev/null and b/website/oldsite/_site/assets/img/mahout-strangelove-logo.png differ http://git-wip-us.apache.org/repos/asf/mahout/blob/0e718ec9/website/oldsite/_site/assets/img/mahout2_theme.png ---------------------------------------------------------------------- diff --git a/website/oldsite/_site/assets/img/mahout2_theme.png b/website/oldsite/_site/assets/img/mahout2_theme.png new file mode 100644 index 0000000..0ca4740 Binary files /dev/null and b/website/oldsite/_site/assets/img/mahout2_theme.png differ http://git-wip-us.apache.org/repos/asf/mahout/blob/0e718ec9/website/oldsite/_site/assets/img/mahout_theme.png ---------------------------------------------------------------------- diff --git a/website/oldsite/_site/assets/img/mahout_theme.png b/website/oldsite/_site/assets/img/mahout_theme.png new file mode 100644 index 0000000..40c04ad Binary files /dev/null and b/website/oldsite/_site/assets/img/mahout_theme.png differ http://git-wip-us.apache.org/repos/asf/mahout/blob/0e718ec9/website/oldsite/_site/assets/img/mantle-1-original.png ---------------------------------------------------------------------- diff --git a/website/oldsite/_site/assets/img/mantle-1-original.png b/website/oldsite/_site/assets/img/mantle-1-original.png new file mode 100644 index 0000000..e5544b7 Binary files /dev/null and b/website/oldsite/_site/assets/img/mantle-1-original.png differ http://git-wip-us.apache.org/repos/asf/mahout/blob/0e718ec9/website/oldsite/_site/assets/img/mantle-asf.png ---------------------------------------------------------------------- diff --git a/website/oldsite/_site/assets/img/mantle-asf.png b/website/oldsite/_site/assets/img/mantle-asf.png new file mode 100644 index 0000000..96d73dd Binary files /dev/null and b/website/oldsite/_site/assets/img/mantle-asf.png differ http://git-wip-us.apache.org/repos/asf/mahout/blob/0e718ec9/website/oldsite/_site/assets/img/mantle-community.png ---------------------------------------------------------------------- diff --git a/website/oldsite/_site/assets/img/mantle-community.png b/website/oldsite/_site/assets/img/mantle-community.png new file mode 100644 index 0000000..0d93140 Binary files /dev/null and b/website/oldsite/_site/assets/img/mantle-community.png differ http://git-wip-us.apache.org/repos/asf/mahout/blob/0e718ec9/website/oldsite/_site/assets/img/mantle-hadoop.png ---------------------------------------------------------------------- diff --git a/website/oldsite/_site/assets/img/mantle-hadoop.png b/website/oldsite/_site/assets/img/mantle-hadoop.png new file mode 100644 index 0000000..9a33f1f Binary files /dev/null and b/website/oldsite/_site/assets/img/mantle-hadoop.png differ http://git-wip-us.apache.org/repos/asf/mahout/blob/0e718ec9/website/oldsite/_site/assets/img/mantle-mahout.png ---------------------------------------------------------------------- diff --git a/website/oldsite/_site/assets/img/mantle-mahout.png b/website/oldsite/_site/assets/img/mantle-mahout.png new file mode 100644 index 0000000..9bd33da Binary files /dev/null and b/website/oldsite/_site/assets/img/mantle-mahout.png differ http://git-wip-us.apache.org/repos/asf/mahout/blob/0e718ec9/website/oldsite/_site/assets/img/screen.png ---------------------------------------------------------------------- diff --git a/website/oldsite/_site/assets/img/screen.png b/website/oldsite/_site/assets/img/screen.png new file mode 100644 index 0000000..eb54507 Binary files /dev/null and b/website/oldsite/_site/assets/img/screen.png differ http://git-wip-us.apache.org/repos/asf/mahout/blob/0e718ec9/website/oldsite/_site/assets/img/sgd-class-hierarchy.png ---------------------------------------------------------------------- diff --git a/website/oldsite/_site/assets/img/sgd-class-hierarchy.png b/website/oldsite/_site/assets/img/sgd-class-hierarchy.png new file mode 100644 index 0000000..7d5364f Binary files /dev/null and b/website/oldsite/_site/assets/img/sgd-class-hierarchy.png differ http://git-wip-us.apache.org/repos/asf/mahout/blob/0e718ec9/website/oldsite/_site/assets/img/sidebar-original.png ---------------------------------------------------------------------- diff --git a/website/oldsite/_site/assets/img/sidebar-original.png b/website/oldsite/_site/assets/img/sidebar-original.png new file mode 100644 index 0000000..55ea78d Binary files /dev/null and b/website/oldsite/_site/assets/img/sidebar-original.png differ http://git-wip-us.apache.org/repos/asf/mahout/blob/0e718ec9/website/oldsite/_site/assets/img/sidebar.png ---------------------------------------------------------------------- diff --git a/website/oldsite/_site/assets/img/sidebar.png b/website/oldsite/_site/assets/img/sidebar.png new file mode 100644 index 0000000..37366aa Binary files /dev/null and b/website/oldsite/_site/assets/img/sidebar.png differ http://git-wip-us.apache.org/repos/asf/mahout/blob/0e718ec9/website/oldsite/_site/assets/img/taste-architecture.png ---------------------------------------------------------------------- diff --git a/website/oldsite/_site/assets/img/taste-architecture.png b/website/oldsite/_site/assets/img/taste-architecture.png new file mode 100644 index 0000000..d2f23e0 Binary files /dev/null and b/website/oldsite/_site/assets/img/taste-architecture.png differ http://git-wip-us.apache.org/repos/asf/mahout/blob/0e718ec9/website/oldsite/_site/assets/img/vector-class-hierarchy.png ---------------------------------------------------------------------- diff --git a/website/oldsite/_site/assets/img/vector-class-hierarchy.png b/website/oldsite/_site/assets/img/vector-class-hierarchy.png new file mode 100644 index 0000000..002626e Binary files /dev/null and b/website/oldsite/_site/assets/img/vector-class-hierarchy.png differ http://git-wip-us.apache.org/repos/asf/mahout/blob/0e718ec9/website/oldsite/_site/assets/img/wiki-bg.png ---------------------------------------------------------------------- diff --git a/website/oldsite/_site/assets/img/wiki-bg.png b/website/oldsite/_site/assets/img/wiki-bg.png new file mode 100644 index 0000000..73b65ae Binary files /dev/null and b/website/oldsite/_site/assets/img/wiki-bg.png differ http://git-wip-us.apache.org/repos/asf/mahout/blob/0e718ec9/website/oldsite/_site/assets/img/wiki-wrapper-original.png ---------------------------------------------------------------------- diff --git a/website/oldsite/_site/assets/img/wiki-wrapper-original.png b/website/oldsite/_site/assets/img/wiki-wrapper-original.png new file mode 100644 index 0000000..2d23ec0 Binary files /dev/null and b/website/oldsite/_site/assets/img/wiki-wrapper-original.png differ http://git-wip-us.apache.org/repos/asf/mahout/blob/0e718ec9/website/oldsite/_site/assets/img/wiki-wrapper.png ---------------------------------------------------------------------- diff --git a/website/oldsite/_site/assets/img/wiki-wrapper.png b/website/oldsite/_site/assets/img/wiki-wrapper.png new file mode 100644 index 0000000..d689225 Binary files /dev/null and b/website/oldsite/_site/assets/img/wiki-wrapper.png differ http://git-wip-us.apache.org/repos/asf/mahout/blob/0e718ec9/website/oldsite/_site/assets/themes/mahout-retro/css/bootstrap-responsive.css ---------------------------------------------------------------------- diff --git a/website/oldsite/_site/assets/themes/mahout-retro/css/bootstrap-responsive.css b/website/oldsite/_site/assets/themes/mahout-retro/css/bootstrap-responsive.css new file mode 100644 index 0000000..a3b0df3 --- /dev/null +++ b/website/oldsite/_site/assets/themes/mahout-retro/css/bootstrap-responsive.css @@ -0,0 +1,1112 @@ +/*! + * Bootstrap Responsive v2.3.1 + * + * Copyright 2012 Twitter, Inc + * Licensed under the Apache License v2.0 + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Designed and built with all the love in the world @twitter by @mdo and @fat. + */ + +.clearfix { + *zoom: 1; +} + +.clearfix:before, +.clearfix:after { + display: table; + line-height: 0; + content: ""; +} + +.clearfix:after { + clear: both; +} + +.hide-text { + font: 0/0 a; + color: transparent; + text-shadow: none; + background-color: transparent; + border: 0; +} + +.input-block-level { + display: block; + width: 100%; + min-height: 30px; + -webkit-box-sizing: border-box; + -moz-box-sizing: border-box; + box-sizing: border-box; +} + +@-ms-viewport { + width: device-width; +} + +.hidden { + display: none; + visibility: hidden; +} + +.visible-phone { + display: none !important; +} + +.visible-tablet { + display: none !important; +} + +.hidden-desktop { + display: none !important; +} + +.visible-desktop { + display: inherit !important; +} + +@media (min-width: 768px) and (max-width: 979px) { + .hidden-desktop { + display: inherit !important; + } + .visible-desktop { + display: none !important ; + } + .visible-tablet { + display: inherit !important; + } + .hidden-tablet { + display: none !important; + } +} + +@media (max-width: 767px) { + .hidden-desktop { + display: inherit !important; + } + .visible-desktop { + display: none !important; + } + .visible-phone { + display: inherit !important; + } + .hidden-phone { + display: none !important; + } +} + +.visible-print { + display: none !important; +} + +@media print { + .visible-print { + display: inherit !important; + } + .hidden-print { + display: none !important; + } +} + +@media (min-width: 1200px) { + .row { + margin-left: -30px; + *zoom: 1; + } + .row:before, + .row:after { + display: table; + line-height: 0; + content: ""; + } + .row:after { + clear: both; + } + [class*="span"] { + float: left; + min-height: 1px; + margin-left: 30px; + } + .container, + .navbar-static-top .container, + .navbar-fixed-top .container, + .navbar-fixed-bottom .container { + width: 1170px; + } + .span12 { + width: 1170px; + } + .span11 { + width: 1070px; + } + .span10 { + width: 970px; + } + .span9 { + width: 870px; + } + .span8 { + width: 770px; + } + .span7 { + width: 670px; + } + .span6 { + width: 570px; + } + .span5 { + width: 470px; + } + .span4 { + width: 370px; + } + .span3 { + width: 270px; + } + .span2 { + width: 170px; + } + .span1 { + width: 70px; + } + .offset12 { + margin-left: 1230px; + } + .offset11 { + margin-left: 1130px; + } + .offset10 { + margin-left: 1030px; + } + .offset9 { + margin-left: 930px; + } + .offset8 { + margin-left: 830px; + } + .offset7 { + margin-left: 730px; + } + .offset6 { + margin-left: 630px; + } + .offset5 { + margin-left: 530px; + } + .offset4 { + margin-left: 430px; + } + .offset3 { + margin-left: 330px; + } + .offset2 { + margin-left: 230px; + } + .offset1 { + margin-left: 130px; + } + .row-fluid { + width: 100%; + *zoom: 1; + } + .row-fluid:before, + .row-fluid:after { + display: table; + line-height: 0; + content: ""; + } + .row-fluid:after { + clear: both; + } + .row-fluid [class*="span"] { + display: block; + float: left; + width: 100%; + min-height: 30px; + margin-left: 2.564102564102564%; + *margin-left: 2.5109110747408616%; + -webkit-box-sizing: border-box; + -moz-box-sizing: border-box; + box-sizing: border-box; + } + .row-fluid [class*="span"]:first-child { + margin-left: 0; + } + .row-fluid .controls-row [class*="span"] + [class*="span"] { + margin-left: 2.564102564102564%; + } + .row-fluid .span12 { + width: 100%; + *width: 99.94680851063829%; + } + .row-fluid .span11 { + width: 91.45299145299145%; + *width: 91.39979996362975%; + } + .row-fluid .span10 { + width: 82.90598290598291%; + *width: 82.8527914166212%; + } + .row-fluid .span9 { + width: 74.35897435897436%; + *width: 74.30578286961266%; + } + .row-fluid .span8 { + width: 65.81196581196582%; + *width: 65.75877432260411%; + } + .row-fluid .span7 { + width: 57.26495726495726%; + *width: 57.21176577559556%; + } + .row-fluid .span6 { + width: 48.717948717948715%; + *width: 48.664757228587014%; + } + .row-fluid .span5 { + width: 40.17094017094017%; + *width: 40.11774868157847%; + } + .row-fluid .span4 { + width: 31.623931623931625%; + *width: 31.570740134569924%; + } + .row-fluid .span3 { + width: 23.076923076923077%; + *width: 23.023731587561375%; + } + .row-fluid .span2 { + width: 14.52991452991453%; + *width: 14.476723040552828%; + } + .row-fluid .span1 { + width: 5.982905982905983%; + *width: 5.929714493544281%; + } + .row-fluid .offset12 { + margin-left: 105.12820512820512%; + *margin-left: 105.02182214948171%; + } + .row-fluid .offset12:first-child { + margin-left: 102.56410256410257%; + *margin-left: 102.45771958537915%; + } + .row-fluid .offset11 { + margin-left: 96.58119658119658%; + *margin-left: 96.47481360247316%; + } + .row-fluid .offset11:first-child { + margin-left: 94.01709401709402%; + *margin-left: 93.91071103837061%; + } + .row-fluid .offset10 { + margin-left: 88.03418803418803%; + *margin-left: 87.92780505546462%; + } + .row-fluid .offset10:first-child { + margin-left: 85.47008547008548%; + *margin-left: 85.36370249136206%; + } + .row-fluid .offset9 { + margin-left: 79.48717948717949%; + *margin-left: 79.38079650845607%; + } + .row-fluid .offset9:first-child { + margin-left: 76.92307692307693%; + *margin-left: 76.81669394435352%; + } + .row-fluid .offset8 { + margin-left: 70.94017094017094%; + *margin-left: 70.83378796144753%; + } + .row-fluid .offset8:first-child { + margin-left: 68.37606837606839%; + *margin-left: 68.26968539734497%; + } + .row-fluid .offset7 { + margin-left: 62.393162393162385%; + *margin-left: 62.28677941443899%; + } + .row-fluid .offset7:first-child { + margin-left: 59.82905982905982%; + *margin-left: 59.72267685033642%; + } + .row-fluid .offset6 { + margin-left: 53.84615384615384%; + *margin-left: 53.739770867430444%; + } + .row-fluid .offset6:first-child { + margin-left: 51.28205128205128%; + *margin-left: 51.175668303327875%; + } + .row-fluid .offset5 { + margin-left: 45.299145299145295%; + *margin-left: 45.1927623204219%; + } + .row-fluid .offset5:first-child { + margin-left: 42.73504273504273%; + *margin-left: 42.62865975631933%; + } + .row-fluid .offset4 { + margin-left: 36.75213675213675%; + *margin-left: 36.645753773413354%; + } + .row-fluid .offset4:first-child { + margin-left: 34.18803418803419%; + *margin-left: 34.081651209310785%; + } + .row-fluid .offset3 { + margin-left: 28.205128205128204%; + *margin-left: 28.0987452264048%; + } + .row-fluid .offset3:first-child { + margin-left: 25.641025641025642%; + *margin-left: 25.53464266230224%; + } + .row-fluid .offset2 { + margin-left: 19.65811965811966%; + *margin-left: 19.551736679396257%; + } + .row-fluid .offset2:first-child { + margin-left: 17.094017094017094%; + *margin-left: 16.98763411529369%; + } + .row-fluid .offset1 { + margin-left: 11.11111111111111%; + *margin-left: 11.004728132387708%; + } + .row-fluid .offset1:first-child { + margin-left: 8.547008547008547%; + *margin-left: 8.440625568285142%; + } + input, + textarea, + .uneditable-input { + margin-left: 0; + } + .controls-row [class*="span"] + [class*="span"] { + margin-left: 30px; + } + input.span12, + textarea.span12, + .uneditable-input.span12 { + width: 1156px; + } + input.span11, + textarea.span11, + .uneditable-input.span11 { + width: 1056px; + } + input.span10, + textarea.span10, + .uneditable-input.span10 { + width: 956px; + } + input.span9, + textarea.span9, + .uneditable-input.span9 { + width: 856px; + } + input.span8, + textarea.span8, + .uneditable-input.span8 { + width: 756px; + } + input.span7, + textarea.span7, + .uneditable-input.span7 { + width: 656px; + } + input.span6, + textarea.span6, + .uneditable-input.span6 { + width: 556px; + } + input.span5, + textarea.span5, + .uneditable-input.span5 { + width: 456px; + } + input.span4, + textarea.span4, + .uneditable-input.span4 { + width: 356px; + } + input.span3, + textarea.span3, + .uneditable-input.span3 { + width: 256px; + } + input.span2, + textarea.span2, + .uneditable-input.span2 { + width: 156px; + } + input.span1, + textarea.span1, + .uneditable-input.span1 { + width: 56px; + } + .thumbnails { + margin-left: -30px; + } + .thumbnails > li { + margin-left: 30px; + } + .row-fluid .thumbnails { + margin-left: 0; + } +} + +@media (min-width: 768px) and (max-width: 979px) { + .row { + margin-left: -20px; + *zoom: 1; + } + .row:before, + .row:after { + display: table; + line-height: 0; + content: ""; + } + .row:after { + clear: both; + } + [class*="span"] { + float: left; + min-height: 1px; + margin-left: 20px; + } + .container, + .navbar-static-top .container, + .navbar-fixed-top .container, + .navbar-fixed-bottom .container { + width: 724px; + } + .span12 { + width: 724px; + } + .span11 { + width: 662px; + } + .span10 { + width: 600px; + } + .span9 { + width: 538px; + } + .span8 { + width: 476px; + } + .span7 { + width: 414px; + } + .span6 { + width: 352px; + } + .span5 { + width: 290px; + } + .span4 { + width: 228px; + } + .span3 { + width: 166px; + } + .span2 { + width: 104px; + } + .span1 { + width: 42px; + } + .offset12 { + margin-left: 764px; + } + .offset11 { + margin-left: 702px; + } + .offset10 { + margin-left: 640px; + } + .offset9 { + margin-left: 578px; + } + .offset8 { + margin-left: 516px; + } + .offset7 { + margin-left: 454px; + } + .offset6 { + margin-left: 392px; + } + .offset5 { + margin-left: 330px; + } + .offset4 { + margin-left: 268px; + } + .offset3 { + margin-left: 206px; + } + .offset2 { + margin-left: 144px; + } + .offset1 { + margin-left: 82px; + } + .row-fluid { + width: 100%; + *zoom: 1; + } + .row-fluid:before, + .row-fluid:after { + display: table; + line-height: 0; + content: ""; + } + .row-fluid:after { + clear: both; + } + .row-fluid [class*="span"] { + display: block; + float: left; + width: 100%; + min-height: 30px; + margin-left: 2.7624309392265194%; + *margin-left: 2.709239449864817%; + -webkit-box-sizing: border-box; + -moz-box-sizing: border-box; + box-sizing: border-box; + } + .row-fluid [class*="span"]:first-child { + margin-left: 0; + } + .row-fluid .controls-row [class*="span"] + [class*="span"] { + margin-left: 2.7624309392265194%; + } + .row-fluid .span12 { + width: 100%; + *width: 99.94680851063829%; + } + .row-fluid .span11 { + width: 91.43646408839778%; + *width: 91.38327259903608%; + } + .row-fluid .span10 { + width: 82.87292817679558%; + *width: 82.81973668743387%; + } + .row-fluid .span9 { + width: 74.30939226519337%; + *width: 74.25620077583166%; + } + .row-fluid .span8 { + width: 65.74585635359117%; + *width: 65.69266486422946%; + } + .row-fluid .span7 { + width: 57.18232044198895%; + *width: 57.12912895262725%; + } + .row-fluid .span6 { + width: 48.61878453038674%; + *width: 48.56559304102504%; + } + .row-fluid .span5 { + width: 40.05524861878453%; + *width: 40.00205712942283%; + } + .row-fluid .span4 { + width: 31.491712707182323%; + *width: 31.43852121782062%; + } + .row-fluid .span3 { + width: 22.92817679558011%; + *width: 22.87498530621841%; + } + .row-fluid .span2 { + width: 14.3646408839779%; + *width: 14.311449394616199%; + } + .row-fluid .span1 { + width: 5.801104972375691%; + *width: 5.747913483013988%; + } + .row-fluid .offset12 { + margin-left: 105.52486187845304%; + *margin-left: 105.41847889972962%; + } + .row-fluid .offset12:first-child { + margin-left: 102.76243093922652%; + *margin-left: 102.6560479605031%; + } + .row-fluid .offset11 { + margin-left: 96.96132596685082%; + *margin-left: 96.8549429881274%; + } + .row-fluid .offset11:first-child { + margin-left: 94.1988950276243%; + *margin-left: 94.09251204890089%; + } + .row-fluid .offset10 { + margin-left: 88.39779005524862%; + *margin-left: 88.2914070765252%; + } + .row-fluid .offset10:first-child { + margin-left: 85.6353591160221%; + *margin-left: 85.52897613729868%; + } + .row-fluid .offset9 { + margin-left: 79.8342541436464%; + *margin-left: 79.72787116492299%; + } + .row-fluid .offset9:first-child { + margin-left: 77.07182320441989%; + *margin-left: 76.96544022569647%; + } + .row-fluid .offset8 { + margin-left: 71.2707182320442%; + *margin-left: 71.16433525332079%; + } + .row-fluid .offset8:first-child { + margin-left: 68.50828729281768%; + *margin-left: 68.40190431409427%; + } + .row-fluid .offset7 { + margin-left: 62.70718232044199%; + *margin-left: 62.600799341718584%; + } + .row-fluid .offset7:first-child { + margin-left: 59.94475138121547%; + *margin-left: 59.838368402492065%; + } + .row-fluid .offset6 { + margin-left: 54.14364640883978%; + *margin-left: 54.037263430116376%; + } + .row-fluid .offset6:first-child { + margin-left: 51.38121546961326%; + *margin-left: 51.27483249088986%; + } + .row-fluid .offset5 { + margin-left: 45.58011049723757%; + *margin-left: 45.47372751851417%; + } + .row-fluid .offset5:first-child { + margin-left: 42.81767955801105%; + *margin-left: 42.71129657928765%; + } + .row-fluid .offset4 { + margin-left: 37.01657458563536%; + *margin-left: 36.91019160691196%; + } + .row-fluid .offset4:first-child { + margin-left: 34.25414364640884%; + *margin-left: 34.14776066768544%; + } + .row-fluid .offset3 { + margin-left: 28.45303867403315%; + *margin-left: 28.346655695309746%; + } + .row-fluid .offset3:first-child { + margin-left: 25.69060773480663%; + *margin-left: 25.584224756083227%; + } + .row-fluid .offset2 { + margin-left: 19.88950276243094%; + *margin-left: 19.783119783707537%; + } + .row-fluid .offset2:first-child { + margin-left: 17.12707182320442%; + *margin-left: 17.02068884448102%; + } + .row-fluid .offset1 { + margin-left: 11.32596685082873%; + *margin-left: 11.219583872105325%; + } + .row-fluid .offset1:first-child { + margin-left: 8.56353591160221%; + *margin-left: 8.457152932878806%; + } + input, + textarea, + .uneditable-input { + margin-left: 0; + } + .controls-row [class*="span"] + [class*="span"] { + margin-left: 20px; + } + input.span12, + textarea.span12, + .uneditable-input.span12 { + width: 710px; + } + input.span11, + textarea.span11, + .uneditable-input.span11 { + width: 648px; + } + input.span10, + textarea.span10, + .uneditable-input.span10 { + width: 586px; + } + input.span9, + textarea.span9, + .uneditable-input.span9 { + width: 524px; + } + input.span8, + textarea.span8, + .uneditable-input.span8 { + width: 462px; + } + input.span7, + textarea.span7, + .uneditable-input.span7 { + width: 400px; + } + input.span6, + textarea.span6, + .uneditable-input.span6 { + width: 338px; + } + input.span5, + textarea.span5, + .uneditable-input.span5 { + width: 276px; + } + input.span4, + textarea.span4, + .uneditable-input.span4 { + width: 214px; + } + input.span3, + textarea.span3, + .uneditable-input.span3 { + width: 152px; + } + input.span2, + textarea.span2, + .uneditable-input.span2 { + width: 90px; + } + input.span1, + textarea.span1, + .uneditable-input.span1 { + width: 28px; + } +} + +@media (max-width: 767px) { + body { + padding-right: 20px; + padding-left: 20px; + } + .navbar-fixed-top, + .navbar-fixed-bottom, + .navbar-static-top { + margin-right: -20px; + margin-left: -20px; + } + .container-fluid { + padding: 0; + } + .dl-horizontal dt { + float: none; + width: auto; + clear: none; + text-align: left; + } + .dl-horizontal dd { + margin-left: 0; + } + .container { + width: auto; + } + .row-fluid { + width: 100%; + } + .row, + .thumbnails { + margin-left: 0; + } + .thumbnails > li { + float: none; + margin-left: 0; + } + [class*="span"], + .uneditable-input[class*="span"], + .row-fluid [class*="span"] { + display: block; + float: none; + width: 100%; + margin-left: 0; + -webkit-box-sizing: border-box; + -moz-box-sizing: border-box; + box-sizing: border-box; + } + .span12, + .row-fluid .span12 { + width: 100%; + -webkit-box-sizing: border-box; + -moz-box-sizing: border-box; + box-sizing: border-box; + } + .row-fluid [class*="offset"]:first-child { + margin-left: 0; + } + .input-large, + .input-xlarge, + .input-xxlarge, + input[class*="span"], + select[class*="span"], + textarea[class*="span"], + .uneditable-input { + display: block; + width: 100%; + min-height: 30px; + -webkit-box-sizing: border-box; + -moz-box-sizing: border-box; + box-sizing: border-box; + } + .input-prepend input, + .input-append input, + .input-prepend input[class*="span"], + .input-append input[class*="span"] { + display: inline-block; + width: auto; + } + .controls-row [class*="span"] + [class*="span"] { + margin-left: 0; + } + .modal { + position: fixed; + top: 20px; + right: 20px; + left: 20px; + width: auto; + margin: 0; + } + .modal.fade { + top: -100px; + } + .modal.fade.in { + top: 20px; + } +} + +@media (max-width: 480px) { + .navbar-collapse { + -webkit-transform: translate3d(0, 0, 0); + } + .page-header h1 small { + display: block; + line-height: 20px; + } + input[type="checkbox"], + input[type="radio"] { + border: 1px solid #ccc; + } + .form-horizontal .control-label { + float: none; + width: auto; + padding-top: 0; + text-align: left; + } + .form-horizontal .controls { + margin-left: 0; + } + .form-horizontal .control-list { + padding-top: 0; + } + .form-horizontal .form-actions { + padding-right: 10px; + padding-left: 10px; + } + .media .pull-left, + .media .pull-right { + display: block; + float: none; + margin-bottom: 10px; + } + .media-object { + margin-right: 0; + margin-left: 0; + } + .modal { + top: 10px; + right: 10px; + left: 10px; + } + .modal-header .close { + padding: 10px; + margin: -10px; + } + .carousel-caption { + position: static; + } +} + +@media (max-width: 979px) { + body { + padding-top: 0; + } + .navbar-fixed-top, + .navbar-fixed-bottom { + position: static; + } + .navbar-fixed-top { + margin-bottom: 20px; + } + .navbar-fixed-bottom { + margin-top: 20px; + } + .navbar-fixed-top .navbar-inner, + .navbar-fixed-bottom .navbar-inner { + padding: 5px; + } + .navbar .container { + width: auto; + padding: 0; + } + .navbar .brand { + padding-right: 10px; + padding-left: 10px; + margin: 0 0 0 -5px; + } + /************************/ + + /************************/ + .navbar-collapse { + clear: both; + } + .navbar-collapse .nav { + float: none; + margin: 0 0 10px; + } + .navbar-collapse .nav > li { + float: none; + } + .navbar-collapse .nav > li > a { + margin-bottom: 2px; + } + .navbar-collapse .nav > .divider-vertical { + display: none; + } + .navbar-collapse .nav .nav-header { + color: #777777; + text-shadow: none; + } + .navbar-collapse .nav > li > a, + .navbar-collapse .dropdown-menu a { + padding: 9px 15px; + font-weight: bold; + color: #777777; + -webkit-border-radius: 3px; + -moz-border-radius: 3px; + border-radius: 3px; + } + .navbar-collapse .btn { + padding: 4px 10px 4px; + font-weight: normal; + -webkit-border-radius: 4px; + -moz-border-radius: 4px; + border-radius: 4px; + } + .navbar-collapse .dropdown-menu li + li a { + margin-bottom: 2px; + } + .navbar-collapse .nav > li > a:hover, + .navbar-collapse .nav > li > a:focus, + .navbar-collapse .dropdown-menu a:hover, + .navbar-collapse .dropdown-menu a:focus { + background-color: #f2f2f2; + } + .navbar-inverse .navbar-collapse .nav > li > a, + .navbar-inverse .navbar-collapse .dropdown-menu a { + color: #999999; + } + .navbar-inverse .navbar-collapse .nav > li > a:hover, + .navbar-inverse .navbar-collapse .nav > li > a:focus, + .navbar-inverse .navbar-collapse .dropdown-menu a:hover, + .navbar-inverse .navbar-collapse .dropdown-menu a:focus { + background-color: #111111; + } + .navbar-collapse.in .btn-group { + padding: 0; + margin-top: 5px; + } + .navbar-collapse .dropdown-menu { + position: static; + top: auto; + left: auto; + display: none; + float: none; + max-width: none; + padding: 0; + margin: 0 15px; + background-color: transparent; + border: none; + -webkit-border-radius: 0; + -moz-border-radius: 0; + border-radius: 0; + -webkit-box-shadow: none; + -moz-box-shadow: none; + box-shadow: none; + } + .navbar-collapse .open > .dropdown-menu { + display: block; + } + .navbar-collapse .dropdown-menu:before, + .navbar-collapse .dropdown-menu:after { + display: none; + } + .navbar-collapse .dropdown-menu .divider { + display: none; + } + .navbar-collapse .nav > li > .dropdown-menu:before, + .navbar-collapse .nav > li > .dropdown-menu:after { + display: none; + } + .navbar-collapse .navbar-form, + .navbar-collapse .navbar-search { + float: none; + padding: 10px 15px; + margin: 10px 0; + border-top: 1px solid #f2f2f2; + border-bottom: 1px solid #f2f2f2; + -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1); + -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1); + box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1); + } + .navbar-inverse .navbar-collapse .navbar-form, + .navbar-inverse .navbar-collapse .navbar-search { + border-top-color: #111111; + border-bottom-color: #111111; + } + .navbar .navbar-collapse .nav.pull-right { + float: none; + margin-left: 0; + } + .navbar-collapse, + .navbar-collapse.collapse { + height: 0; + overflow: hidden; + } + .navbar .btn-navbar { + display: block; + } + .navbar-static .navbar-inner { + padding-right: 10px; + padding-left: 10px; + } +} + +@media (min-width: 980px) { + .navbar-collapse.collapse { + height: auto !important; + overflow: visible !important; + } +}
