parent
da4c549ea0
commit
4019fbadb0
@ -1,3 +0,0 @@
|
||||
cache/
|
||||
output
|
||||
.doit.db
|
@ -1,590 +0,0 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
|
||||
from __future__ import unicode_literals
|
||||
import time
|
||||
|
||||
# Configuration, please edit
|
||||
|
||||
# Data about this site
|
||||
BLOG_AUTHOR = "Salvo 'LtWorf' Tomaselli"
|
||||
BLOG_TITLE = "Relational"
|
||||
# This is the main URL for your site. It will be used
|
||||
# in a prominent link
|
||||
SITE_URL = "http://ltworf.github.io/relational/"
|
||||
# This is the URL where nikola's output will be deployed.
|
||||
# If not set, defaults to SITE_URL
|
||||
# BASE_URL = "http://getnikola.com/"
|
||||
BLOG_EMAIL = "tiposchi@tiscali.it"
|
||||
BLOG_DESCRIPTION = "Relational algebra project"
|
||||
|
||||
DEFAULT_LANG = "en"
|
||||
|
||||
# What other languages do you have?
|
||||
# The format is {"translationcode" : "path/to/translation" }
|
||||
# the path will be used as a prefix for the generated pages location
|
||||
TRANSLATIONS = {
|
||||
DEFAULT_LANG: "",
|
||||
# Example for another language:
|
||||
# "es": "./es",
|
||||
}
|
||||
|
||||
# Links for the sidebar / navigation bar.
|
||||
# You should provide a key-value pair for each used language.
|
||||
NAVIGATION_LINKS = {
|
||||
DEFAULT_LANG: (
|
||||
('/archive.html', 'Archives'),
|
||||
('/categories/index.html', 'Tags'),
|
||||
('/rss.xml', 'RSS'),
|
||||
),
|
||||
}
|
||||
|
||||
# Below this point, everything is optional
|
||||
|
||||
# While nikola can select a sensible locale for each language,
|
||||
# sometimes explicit control can come handy.
|
||||
# In this file we express locales in the string form that
|
||||
# python's locales will accept in your OS, by example
|
||||
# "en_US.utf8" in unix-like OS, "English_United States" in Windows.
|
||||
# LOCALES = dict mapping language --> explicit locale for the languages
|
||||
# in TRANSLATIONS. You can ommit one or more keys.
|
||||
# LOCALE_FALLBACK = locale to use when an explicit locale is unavailable
|
||||
# LOCALE_DEFAULT = locale to use for languages not mentioned in LOCALES; if
|
||||
# not set the default Nikola mapping is used.
|
||||
|
||||
# POSTS and PAGES contains (wildcard, destination, template) tuples.
|
||||
#
|
||||
# The wildcard is used to generate a list of reSt source files
|
||||
# (whatever/thing.txt).
|
||||
#
|
||||
# That fragment could have an associated metadata file (whatever/thing.meta),
|
||||
# and optionally translated files (example for spanish, with code "es"):
|
||||
# whatever/thing.txt.es and whatever/thing.meta.es
|
||||
#
|
||||
# From those files, a set of HTML fragment files will be generated:
|
||||
# cache/whatever/thing.html (and maybe cache/whatever/thing.html.es)
|
||||
#
|
||||
# These files are combinated with the template to produce rendered
|
||||
# pages, which will be placed at
|
||||
# output / TRANSLATIONS[lang] / destination / pagename.html
|
||||
#
|
||||
# where "pagename" is the "slug" specified in the metadata file.
|
||||
#
|
||||
# The difference between POSTS and PAGES is that POSTS are added
|
||||
# to feeds and are considered part of a blog, while PAGES are
|
||||
# just independent HTML pages.
|
||||
#
|
||||
|
||||
POSTS = (
|
||||
("posts/*.rst", "posts", "post.tmpl"),
|
||||
("posts/*.txt", "posts", "post.tmpl"),
|
||||
)
|
||||
PAGES = (
|
||||
("stories/*.rst", "stories", "story.tmpl"),
|
||||
("stories/*.txt", "stories", "story.tmpl"),
|
||||
)
|
||||
|
||||
# One or more folders containing files to be copied as-is into the output.
|
||||
# The format is a dictionary of "source" "relative destination".
|
||||
# Default is:
|
||||
# FILES_FOLDERS = {'files': '' }
|
||||
# Which means copy 'files' into 'output'
|
||||
|
||||
# A mapping of languages to file-extensions that represent that language.
|
||||
# Feel free to add or delete extensions to any list, but don't add any new
|
||||
# compilers unless you write the interface for it yourself.
|
||||
#
|
||||
# 'rest' is reStructuredText
|
||||
# 'markdown' is MarkDown
|
||||
# 'html' assumes the file is html and just copies it
|
||||
COMPILERS = {
|
||||
"rest": ('.rst', '.txt'),
|
||||
"markdown": ('.md', '.mdown', '.markdown'),
|
||||
"textile": ('.textile',),
|
||||
"txt2tags": ('.t2t',),
|
||||
"bbcode": ('.bb',),
|
||||
"wiki": ('.wiki',),
|
||||
"ipynb": ('.ipynb',),
|
||||
"html": ('.html', '.htm'),
|
||||
# Pandoc detects the input from the source filename
|
||||
# but is disabled by default as it would conflict
|
||||
# with many of the others.
|
||||
# "pandoc": ('.rst', '.md', '.txt'),
|
||||
}
|
||||
|
||||
# Create by default posts in one file format?
|
||||
# Set to False for two-file posts, with separate metadata.
|
||||
# ONE_FILE_POSTS = True
|
||||
|
||||
# If this is set to True, then posts that are not translated to a language
|
||||
# LANG will not be visible at all in the pages in that language.
|
||||
# If set to False, the DEFAULT_LANG version will be displayed for
|
||||
# untranslated posts.
|
||||
# HIDE_UNTRANSLATED_POSTS = False
|
||||
|
||||
# Paths for different autogenerated bits. These are combined with the
|
||||
# translation paths.
|
||||
|
||||
# Final locations are:
|
||||
# output / TRANSLATION[lang] / TAG_PATH / index.html (list of tags)
|
||||
# output / TRANSLATION[lang] / TAG_PATH / tag.html (list of posts for a tag)
|
||||
# output / TRANSLATION[lang] / TAG_PATH / tag.xml (RSS feed for a tag)
|
||||
# TAG_PATH = "categories"
|
||||
|
||||
# If TAG_PAGES_ARE_INDEXES is set to True, each tag's page will contain
|
||||
# the posts themselves. If set to False, it will be just a list of links.
|
||||
# TAG_PAGES_ARE_INDEXES = True
|
||||
|
||||
# Final location is output / TRANSLATION[lang] / INDEX_PATH / index-*.html
|
||||
# INDEX_PATH = ""
|
||||
|
||||
# Create per-month archives instead of per-year
|
||||
# CREATE_MONTHLY_ARCHIVE = False
|
||||
# Create one large archive instead of per-year
|
||||
# CREATE_SINGLE_ARCHIVE = False
|
||||
# Final locations for the archives are:
|
||||
# output / TRANSLATION[lang] / ARCHIVE_PATH / ARCHIVE_FILENAME
|
||||
# output / TRANSLATION[lang] / ARCHIVE_PATH / YEAR / index.html
|
||||
# output / TRANSLATION[lang] / ARCHIVE_PATH / YEAR / MONTH / index.html
|
||||
# ARCHIVE_PATH = ""
|
||||
# ARCHIVE_FILENAME = "archive.html"
|
||||
|
||||
# Final locations are:
|
||||
# output / TRANSLATION[lang] / RSS_PATH / rss.xml
|
||||
# RSS_PATH = ""
|
||||
|
||||
# Number of posts in RSS feeds
|
||||
# FEED_LENGTH = 10
|
||||
|
||||
# Slug the Tag URL easier for users to type, special characters are
|
||||
# often removed or replaced as well.
|
||||
# SLUG_TAG_PATH = True
|
||||
|
||||
# A list of redirection tuples, [("foo/from.html", "/bar/to.html")].
|
||||
#
|
||||
# A HTML file will be created in output/foo/from.html that redirects
|
||||
# to the "/bar/to.html" URL. notice that the "from" side MUST be a
|
||||
# relative URL.
|
||||
#
|
||||
# If you don't need any of these, just set to []
|
||||
# REDIRECTIONS = []
|
||||
|
||||
# Commands to execute to deploy. Can be anything, for example,
|
||||
# you may use rsync:
|
||||
# "rsync -rav output/* joe@my.site:/srv/www/site"
|
||||
# And then do a backup, or run `nikola ping` from the `ping`
|
||||
# plugin (`nikola install_plugin ping`).
|
||||
# To do manual deployment, set it to []
|
||||
# DEPLOY_COMMANDS = []
|
||||
|
||||
# Where the output site should be located
|
||||
# If you don't use an absolute path, it will be considered as relative
|
||||
# to the location of conf.py
|
||||
# OUTPUT_FOLDER = 'output'
|
||||
|
||||
# where the "cache" of partial generated content should be located
|
||||
# default: 'cache'
|
||||
# CACHE_FOLDER = 'cache'
|
||||
|
||||
# Filters to apply to the output.
|
||||
# A directory where the keys are either: a file extensions, or
|
||||
# a tuple of file extensions.
|
||||
#
|
||||
# And the value is a list of commands to be applied in order.
|
||||
#
|
||||
# Each command must be either:
|
||||
#
|
||||
# A string containing a '%s' which will
|
||||
# be replaced with a filename. The command *must* produce output
|
||||
# in place.
|
||||
#
|
||||
# Or:
|
||||
#
|
||||
# A python callable, which will be called with the filename as
|
||||
# argument.
|
||||
#
|
||||
# By default, there are no filters.
|
||||
#
|
||||
# Many filters are shipped with Nikola. A list is available in the manual:
|
||||
# <http://getnikola.com/handbook.html#post-processing-filters>
|
||||
# FILTERS = {
|
||||
# ".jpg": ["jpegoptim --strip-all -m75 -v %s"],
|
||||
# }
|
||||
|
||||
# Expert setting! Create a gzipped copy of each generated file. Cheap server-
|
||||
# side optimization for very high traffic sites or low memory servers.
|
||||
# GZIP_FILES = False
|
||||
# File extensions that will be compressed
|
||||
# GZIP_EXTENSIONS = ('.txt', '.htm', '.html', '.css', '.js', '.json', '.xml')
|
||||
# Use an external gzip command? None means no.
|
||||
# Example: GZIP_COMMAND = "pigz -k {filename}"
|
||||
# GZIP_COMMAND = None
|
||||
# Make sure the server does not return a "Accept-Ranges: bytes" header for
|
||||
# files compressed by this option! OR make sure that a ranged request does not
|
||||
# return partial content of another representation for these resources. Do not
|
||||
# use this feature if you do not understand what this means.
|
||||
|
||||
# #############################################################################
|
||||
# Image Gallery Options
|
||||
# #############################################################################
|
||||
|
||||
# Galleries are folders in galleries/
|
||||
# Final location of galleries will be output / GALLERY_PATH / gallery_name
|
||||
GALLERY_PATH = "galleries"
|
||||
THUMBNAIL_SIZE = 180
|
||||
MAX_IMAGE_SIZE = 1280
|
||||
USE_FILENAME_AS_TITLE = True
|
||||
# EXTRA_IMAGE_EXTENSIONS = []
|
||||
#
|
||||
# If set to False, it will sort by filename instead. Defaults to True
|
||||
# GALLERY_SORT_BY_DATE = True
|
||||
|
||||
# #############################################################################
|
||||
# HTML fragments and diverse things that are used by the templates
|
||||
# #############################################################################
|
||||
|
||||
# Data about post-per-page indexes
|
||||
# INDEXES_TITLE = "ciao" # If this is empty, the default is BLOG_TITLE
|
||||
# INDEXES_PAGES = "nonciao" # If this is empty, the default is 'old posts page %d'
|
||||
# translated
|
||||
|
||||
# Name of the theme to use.
|
||||
THEME = "monospace"
|
||||
|
||||
# Color scheme to be used for code blocks. If your theme provides
|
||||
# "assets/css/code.css" this is ignored.
|
||||
# Can be any of autumn borland bw colorful default emacs friendly fruity manni
|
||||
# monokai murphy native pastie perldoc rrt tango trac vim vs
|
||||
# CODE_COLOR_SCHEME = 'default'
|
||||
|
||||
# If you use 'site-reveal' theme you can select several subthemes
|
||||
# THEME_REVEAL_CONFIG_SUBTHEME = 'sky'
|
||||
# You can also use: beige/serif/simple/night/default
|
||||
|
||||
# Again, if you use 'site-reveal' theme you can select several transitions
|
||||
# between the slides
|
||||
# THEME_REVEAL_CONFIG_TRANSITION = 'cube'
|
||||
# You can also use: page/concave/linear/none/default
|
||||
|
||||
# date format used to display post dates.
|
||||
# (str used by datetime.datetime.strftime)
|
||||
# DATE_FORMAT = '%Y-%m-%d %H:%M'
|
||||
|
||||
# FAVICONS contains (name, file, size) tuples.
|
||||
# Used for create favicon link like this:
|
||||
# <link rel="name" href="file" sizes="size"/>
|
||||
# For creating favicons, take a look at:
|
||||
# http://www.netmagazine.com/features/create-perfect-favicon
|
||||
# FAVICONS = {
|
||||
# ("icon", "/favicon.ico", "16x16"),
|
||||
# ("icon", "/icon_128x128.png", "128x128"),
|
||||
# }
|
||||
|
||||
# Show only teasers in the index pages? Defaults to False.
|
||||
# INDEX_TEASERS = False
|
||||
|
||||
# A HTML fragment with the Read more... link.
|
||||
# The following tags exist and are replaced for you:
|
||||
# {link} A link to the full post page.
|
||||
# {read_more} The string “Read more” in the current language.
|
||||
# {{ A literal { (U+007B LEFT CURLY BRACKET)
|
||||
# }} A literal } (U+007D RIGHT CURLY BRACKET)
|
||||
# READ_MORE_LINK = '<p class="more"><a href="{link}">{read_more}…</a></p>'
|
||||
|
||||
# A HTML fragment describing the license, for the sidebar.
|
||||
LICENSE = ""
|
||||
# I recommend using the Creative Commons' wizard:
|
||||
# http://creativecommons.org/choose/
|
||||
# LICENSE = """
|
||||
# <a rel="license" href="http://creativecommons.org/licenses/by-nc-sa/2.5/ar/">
|
||||
# <img alt="Creative Commons License BY-NC-SA"
|
||||
# style="border-width:0; margin-bottom:12px;"
|
||||
# src="http://i.creativecommons.org/l/by-nc-sa/2.5/ar/88x31.png"></a>"""
|
||||
|
||||
# A small copyright notice for the page footer (in HTML).
|
||||
# Default is ''
|
||||
CONTENT_FOOTER = 'Contents © {date} <a href="mailto:{email}">{author}</a> - Powered by <a href="http://getnikola.com" rel="nofollow">Nikola</a> {license}'
|
||||
CONTENT_FOOTER = CONTENT_FOOTER.format(email=BLOG_EMAIL,
|
||||
author=BLOG_AUTHOR,
|
||||
date=time.gmtime().tm_year,
|
||||
license=LICENSE)
|
||||
|
||||
# To use comments, you can choose between different third party comment
|
||||
# systems, one of "disqus", "livefyre", "intensedebate", "moot",
|
||||
# "googleplus" or "facebook"
|
||||
# COMMENT_SYSTEM = "disqus"
|
||||
# And you also need to add your COMMENT_SYSTEM_ID which
|
||||
# depends on what comment system you use. The default is
|
||||
# "nikolademo" which is a test account for Disqus. More information
|
||||
# is in the manual.
|
||||
# COMMENT_SYSTEM_ID = "nikolademo"
|
||||
|
||||
# Enable annotations using annotateit.org?
|
||||
# If set to False, you can still enable them for individual posts and pages
|
||||
# setting the "annotations" metadata.
|
||||
# If set to True, you can disable them for individual posts and pages using
|
||||
# the "noannotations" metadata.
|
||||
# ANNOTATIONS = False
|
||||
|
||||
# Create index.html for story folders?
|
||||
STORY_INDEX = True
|
||||
# Enable comments on story pages?
|
||||
# COMMENTS_IN_STORIES = False
|
||||
# Enable comments on picture gallery pages?
|
||||
# COMMENTS_IN_GALLERIES = False
|
||||
|
||||
# What file should be used for directory indexes?
|
||||
# Defaults to index.html
|
||||
# Common other alternatives: default.html for IIS, index.php
|
||||
# INDEX_FILE = "index.html"
|
||||
|
||||
# If a link ends in /index.html, drop the index.html part.
|
||||
# http://mysite/foo/bar/index.html => http://mysite/foo/bar/
|
||||
# (Uses the INDEX_FILE setting, so if that is, say, default.html,
|
||||
# it will instead /foo/default.html => /foo)
|
||||
# (Note: This was briefly STRIP_INDEX_HTML in v 5.4.3 and 5.4.4)
|
||||
# Default = False
|
||||
STRIP_INDEXES = True
|
||||
|
||||
# Should the sitemap list directories which only include other directories
|
||||
# and no files.
|
||||
# Default to True
|
||||
# If this is False
|
||||
# e.g. /2012 includes only /01, /02, /03, /04, ...: don't add it to the sitemap
|
||||
# if /2012 includes any files (including index.html)... add it to the sitemap
|
||||
# SITEMAP_INCLUDE_FILELESS_DIRS = True
|
||||
|
||||
# Instead of putting files in <slug>.html, put them in
|
||||
# <slug>/index.html. Also enables STRIP_INDEXES
|
||||
# This can be disabled on a per-page/post basis by adding
|
||||
# .. pretty_url: False
|
||||
# to the metadata
|
||||
PRETTY_URLS = True
|
||||
|
||||
# If True, publish future dated posts right away instead of scheduling them.
|
||||
# Defaults to False.
|
||||
# FUTURE_IS_NOW = False
|
||||
|
||||
# If True, future dated posts are allowed in deployed output
|
||||
# Only the individual posts are published/deployed; not in indexes/sitemap
|
||||
# Generally, you want FUTURE_IS_NOW and DEPLOY_FUTURE to be the same value.
|
||||
# DEPLOY_FUTURE = False
|
||||
# If False, draft posts will not be deployed
|
||||
# DEPLOY_DRAFTS = True
|
||||
|
||||
# Allows scheduling of posts using the rule specified here (new_post -s)
|
||||
# Specify an iCal Recurrence Rule: http://www.kanzaki.com/docs/ical/rrule.html
|
||||
# SCHEDULE_RULE = ''
|
||||
# If True, use the scheduling rule to all posts by default
|
||||
# SCHEDULE_ALL = False
|
||||
# If True, schedules post to today if possible, even if scheduled hour is over
|
||||
# SCHEDULE_FORCE_TODAY = False
|
||||
|
||||
# Do you want a add a Mathjax config file?
|
||||
# MATHJAX_CONFIG = ""
|
||||
|
||||
# If you are using the compile-ipynb plugin, just add this one:
|
||||
#MATHJAX_CONFIG = """
|
||||
#<script type="text/x-mathjax-config">
|
||||
#MathJax.Hub.Config({
|
||||
# tex2jax: {
|
||||
# inlineMath: [ ['$','$'], ["\\\(","\\\)"] ],
|
||||
# displayMath: [ ['$$','$$'], ["\\\[","\\\]"] ]
|
||||
# },
|
||||
# displayAlign: 'left', // Change this to 'center' to center equations.
|
||||
# "HTML-CSS": {
|
||||
# styles: {'.MathJax_Display': {"margin": 0}}
|
||||
# }
|
||||
#});
|
||||
#</script>
|
||||
#"""
|
||||
|
||||
# Do you want to customize the nbconversion of your IPython notebook?
|
||||
# IPYNB_CONFIG = {}
|
||||
# With the following example configuracion you can use a custom jinja template
|
||||
# called `toggle.tpl` which has to be located in your site/blog main folder:
|
||||
# IPYNB_CONFIG = {'Exporter':{'template_file': 'toggle'}}
|
||||
|
||||
# What MarkDown extensions to enable?
|
||||
# You will also get gist, nikola and podcast because those are
|
||||
# done in the code, hope you don't mind ;-)
|
||||
# MARKDOWN_EXTENSIONS = ['fenced_code', 'codehilite']
|
||||
|
||||
# Social buttons. This is sample code for AddThis (which was the default for a
|
||||
# long time). Insert anything you want here, or even make it empty.
|
||||
SOCIAL_BUTTONS_CODE = ""
|
||||
|
||||
# Hide link to source for the posts?
|
||||
# HIDE_SOURCELINK = False
|
||||
# Copy the source files for your pages?
|
||||
# Setting it to False implies HIDE_SOURCELINK = True
|
||||
# COPY_SOURCES = True
|
||||
|
||||
# Modify the number of Post per Index Page
|
||||
# Defaults to 10
|
||||
# INDEX_DISPLAY_POST_COUNT = 10
|
||||
|
||||
# RSS_LINK is a HTML fragment to link the RSS or Atom feeds. If set to None,
|
||||
# the base.tmpl will use the feed Nikola generates. However, you may want to
|
||||
# change it for a feedburner feed or something else.
|
||||
# RSS_LINK = None
|
||||
|
||||
# Show only teasers in the RSS feed? Default to True
|
||||
RSS_TEASERS = False
|
||||
|
||||
# A search form to search this site, for the sidebar. You can use a google
|
||||
# custom search (http://www.google.com/cse/)
|
||||
# Or a duckduckgo search: https://duckduckgo.com/search_box.html
|
||||
# Default is no search form.
|
||||
# SEARCH_FORM = ""
|
||||
#
|
||||
# This search form works for any site and looks good in the "site" theme where
|
||||
# it appears on the navigation bar:
|
||||
#
|
||||
SEARCH_FORM = """i
|
||||
<!-- Custom search -->
|
||||
<form method="get" id="search" action="http://duckduckgo.com/"
|
||||
class="navbar-form pull-left">
|
||||
<input type="hidden" name="sites" value="%s"/>
|
||||
<input type="hidden" name="k8" value="#444444"/>
|
||||
<input type="hidden" name="k9" value="#D51920"/>
|
||||
<input type="hidden" name="kt" value="h"/>
|
||||
<input type="text" name="q" maxlength="255"
|
||||
placeholder="Search…" class="span2" style="margin-top: 4px;"/>
|
||||
<input type="submit" value="DuckDuckGo Search" style="visibility: hidden;" />
|
||||
</form>
|
||||
<!-- End of custom search -->
|
||||
""" % SITE_URL
|
||||
|
||||
# SEARCH_FORM = """
|
||||
# <span class="navbar-form pull-left">
|
||||
# <input type="text" id="tipue_search_input">
|
||||
# </span>"""
|
||||
#
|
||||
# BODY_END = """
|
||||
# <script type="text/javascript" src="/assets/js/tipuesearch_set.js"></script>
|
||||
# <script type="text/javascript" src="/assets/js/tipuesearch.js"></script>
|
||||
# <script type="text/javascript">
|
||||
# $(document).ready(function() {
|
||||
# $('#tipue_search_input').tipuesearch({
|
||||
# 'mode': 'json',
|
||||
# 'contentLocation': '/assets/js/tipuesearch_content.json',
|
||||
# 'showUrl': false
|
||||
# });
|
||||
# });
|
||||
# </script>
|
||||
# """
|
||||
|
||||
# EXTRA_HEAD_DATA = """
|
||||
# <link rel="stylesheet" type="text/css" href="/assets/css/tipuesearch.css">
|
||||
# <div id="tipue_search_content" style="margin-left: auto; margin-right: auto; padding: 20px;"></div>
|
||||
# """
|
||||
# ENABLED_EXTRAS = ['local_search']
|
||||
#
|
||||
|
||||
|
||||
# Use content distribution networks for jquery and twitter-bootstrap css and js
|
||||
# If this is True, jquery is served from the Google CDN and twitter-bootstrap
|
||||
# is served from the NetDNA CDN
|
||||
# Set this to False if you want to host your site without requiring access to
|
||||
# external resources.
|
||||
# USE_CDN = False
|
||||
|
||||
# Extra things you want in the pages HEAD tag. This will be added right
|
||||
# before </HEAD>
|
||||
# EXTRA_HEAD_DATA = ""
|
||||
# Google analytics or whatever else you use. Added to the bottom of <body>
|
||||
# in the default template (base.tmpl).
|
||||
# BODY_END = ""
|
||||
|
||||
# The possibility to extract metadata from the filename by using a
|
||||
# regular expression.
|
||||
# To make it work you need to name parts of your regular expression.
|
||||
# The following names will be used to extract metadata:
|
||||
# - title
|
||||
# - slug
|
||||
# - date
|
||||
# - tags
|
||||
# - link
|
||||
# - description
|
||||
#
|
||||
# An example re is the following:
|
||||
# '(?P<date>\d{4}-\d{2}-\d{2})-(?P<slug>.*)-(?P<title>.*)\.md'
|
||||
# FILE_METADATA_REGEXP = None
|
||||
|
||||
# Additional metadata that is added to a post when creating a new_post
|
||||
# ADDITIONAL_METADATA = {}
|
||||
|
||||
# Nikola supports Twitter Card summaries / Open Graph.
|
||||
# Twitter cards make it possible for you to attach media to Tweets
|
||||
# that link to your content.
|
||||
#
|
||||
# IMPORTANT:
|
||||
# Please note, that you need to opt-in for using Twitter Cards!
|
||||
# To do this please visit
|
||||
# https://dev.twitter.com/form/participate-twitter-cards
|
||||
#
|
||||
# Uncomment and modify to following lines to match your accounts.
|
||||
# Specifying the id for either 'site' or 'creator' will be preferred
|
||||
# over the cleartext username. Specifying an ID is not necessary.
|
||||
# Displaying images is currently not supported.
|
||||
# TWITTER_CARD = {
|
||||
# # 'use_twitter_cards': True, # enable Twitter Cards / Open Graph
|
||||
# # 'site': '@website', # twitter nick for the website
|
||||
# # 'site:id': 123456, # Same as site, but the website's Twitter user ID
|
||||
# # instead.
|
||||
# # 'creator': '@username', # Username for the content creator / author.
|
||||
# # 'creator:id': 654321, # Same as creator, but the Twitter user's ID.
|
||||
# }
|
||||
|
||||
|
||||
# Post's dates are considered in GMT by default, if you want to use
|
||||
# another timezone, please set TIMEZONE to match. Check the available
|
||||
# list from Wikipedia:
|
||||
# http://en.wikipedia.org/wiki/List_of_tz_database_time_zones
|
||||
# Also, if you want to use a different timezone in some of your posts,
|
||||
# you can use W3C-DTF Format (ex. 2012-03-30T23:00:00+02:00)
|
||||
#
|
||||
TIMEZONE = 'Europe/Rome'
|
||||
|
||||
# If webassets is installed, bundle JS and CSS to make site loading faster
|
||||
# USE_BUNDLES = True
|
||||
|
||||
# Plugins you don't want to use. Be careful :-)
|
||||
# DISABLED_PLUGINS = ["render_galleries"]
|
||||
|
||||
# Experimental plugins - use at your own risk.
|
||||
# They probably need some manual adjustments - please see their respective
|
||||
# readme.
|
||||
# ENABLED_EXTRAS = [
|
||||
# 'planetoid',
|
||||
# 'ipynb',
|
||||
# 'local_search',
|
||||
# 'render_mustache',
|
||||
# ]
|
||||
|
||||
# List of regular expressions, links matching them will always be considered
|
||||
# valid by "nikola check -l"
|
||||
# LINK_CHECK_WHITELIST = []
|
||||
|
||||
# If set to True, enable optional hyphenation in your posts (requires pyphen)
|
||||
# HYPHENATE = False
|
||||
|
||||
# You can configure the logging handlers installed as plugins or change the
|
||||
# log level of the default stdout handler.
|
||||
LOGGING_HANDLERS = {
|
||||
'stderr': {'loglevel': 'WARNING', 'bubble': True},
|
||||
#'smtp': {
|
||||
# 'from_addr': 'test-errors@example.com',
|
||||
# 'recipients': ('test@example.com'),
|
||||
# 'credentials':('testusername', 'password'),
|
||||
# 'server_addr': ('127.0.0.1', 25),
|
||||
# 'secure': (),
|
||||
# 'level': 'DEBUG',
|
||||
# 'bubble': True
|
||||
#}
|
||||
}
|
||||
|
||||
# Put in global_context things you want available on all your templates.
|
||||
# It can be anything, data, functions, modules, etc.
|
||||
|
||||
GLOBAL_CONTEXT = {}
|
Binary file not shown.
Before Width: | Height: | Size: 41 KiB |
Binary file not shown.
Before Width: | Height: | Size: 71 KiB |
Binary file not shown.
Before Width: | Height: | Size: 76 KiB |
Binary file not shown.
Before Width: | Height: | Size: 100 KiB |
Binary file not shown.
Before Width: | Height: | Size: 10 KiB |
Binary file not shown.
Before Width: | Height: | Size: 48 KiB |
@ -1,11 +0,0 @@
|
||||
.. link:
|
||||
.. description:
|
||||
.. tags:
|
||||
.. date: 2013/12/30 12:50:42
|
||||
.. title: Moving relational
|
||||
.. slug: moving-relational
|
||||
|
||||
This is the new official page for the Relational project.
|
||||
|
||||
Due to limitations of the new hosting, the previous website couldn't
|
||||
just be moved here.
|
@ -1,55 +0,0 @@
|
||||
.. link:
|
||||
.. description:
|
||||
.. tags:
|
||||
.. date: 2014/01/01 10:44:33
|
||||
.. title: Download
|
||||
.. slug: download
|
||||
|
||||
Check the downloads here: https://code.google.com/p/relational/downloads/
|
||||
|
||||
And remember that relational is already packaged for Debian, Ubuntu, Gentoo.
|
||||
|
||||
|
||||
Install on Debian/Ubuntu
|
||||
========================
|
||||
Relational is in the stable, testing and unstable repositories, so there is no need for particular efforts.
|
||||
|
||||
```
|
||||
# aptitude install relational
|
||||
```
|
||||
|
||||
A menu entry will be created.
|
||||
|
||||
If you don't want the QT deps, you can install relational-cli package, that runs inside the terminal.
|
||||
|
||||
Install on Gentoo
|
||||
=================
|
||||
|
||||
```
|
||||
emerge -av dev-python/PyQt4; emerge -av media-fonts/dejavu
|
||||
```
|
||||
|
||||
If you want the embedded documentation (not mandatory):
|
||||
|
||||
```
|
||||
emerge -av x11-libs/qt-webkit
|
||||
```
|
||||
|
||||
|
||||
Install on Windows
|
||||
==================
|
||||
|
||||
Download the .exe setup and install it.
|
||||
|
||||
On older versions of windows you might need to separately download and install the Microsoft Visual C++ 2008 Redistributable Package.
|
||||
|
||||
Install on OsX
|
||||
==============
|
||||
|
||||
Relational needs PyQt4 and Python2.7 to work, so make sure to have them on your system.
|
||||
|
||||
Download the source package, and then run
|
||||
|
||||
```
|
||||
./relational_gui.py
|
||||
```
|
@ -1,63 +0,0 @@
|
||||
.. link:
|
||||
.. description:
|
||||
.. tags:
|
||||
.. date: 2014/01/01 10:54:05
|
||||
.. title: Tutorial
|
||||
.. slug: tutorial
|
||||
|
||||
|
||||
Introduction
|
||||
============
|
||||
Relational is an educational software. The purpose is to show if the query is correct or not. It doesn't replace and will never be able to replace the knowledge of relational algebra. It is just a tool to check the queries, which can make life easier.
|
||||
Do not expect it to replace your brain please.
|
||||
|
||||
Create your own relation
|
||||
========================
|
||||
|
||||
Before starting, we will create an example relation, that we will use in this tutorial.
|
||||
|
||||
Relations are stored into text files. One relation into one file.
|
||||
By default relations will have .csv extension.
|
||||
|
||||
If you aren't interested in creating a new relation because you want to use the examples shipped with the installation, you can skip this.
|
||||
|
||||
Click on the "New relation" button.
|
||||
|
||||
Now, on the 1st row add the names of the columns you want for your relation, you can add more columns clicking on "Add column".
|
||||
|
||||
Now populate the table with the values.
|
||||
|
||||
When you are done click "Ok", you will be prompted to insert the name for the new relation. Just use letters, if the name you insert is not valid, the relation will be deleted and an error will be shown.
|
||||
|
||||
Load a relation
|
||||
===============
|
||||
To load a relation from disk, press the Load relation button.
|
||||
A file chooser dialog will be shown and you will need to select the file you want to open.
|
||||
Once you've selected the file, you will be required to give a name to the relation. This name will be used in the queries. Relational will automatically suggest to name the relation like the file, but the name can be changed.
|
||||
|
||||
Repeat the operation until you've opened all the relations you're interested in.
|
||||
|
||||
Show a relation
|
||||
===============
|
||||
Once a relation is opened, you will be able to display it in the center table.
|
||||
To show a relation, double click on it, in the list within the Relations frame.
|
||||
|
||||
You might be interested to show the fields of a relation, without showing it (because you want another relation in the center). To show the fields, single click on a relation in the Relations frame, and the fields will be listed in the Attributes frame.
|
||||
|
||||
|
||||
1st query
|
||||
=========
|
||||
The query must be inserted into the large text box at the bottom of the window.
|
||||
Try writing the name of one of the loaded relations and press Enter. This simple query will result a relation identical to the one requested.
|
||||
|
||||
Other queries
|
||||
=============
|
||||
By default the resulting query will be named _last1, but it is possible to override that writing a name for the resulting query in the small textbox in the left-bottom part of the window.
|
||||
|
||||
Since most of the symbols aren't present on keyboards, they are provided as buttons on the left part of the screen. Pressing one of those buttons will insert the corresponding symbol at the cursor's position in the query's textbox.
|
||||
|
||||
Save a relation
|
||||
===============
|
||||
A new relation created by a query or by editing a relation inserting and removing tuples can be saved pressing on the Save relation button. It will save the currently selected relation.
|
||||
A dialog will ask where to save the file.
|
||||
|
@ -1,9 +0,0 @@
|
||||
.. link:
|
||||
.. description:
|
||||
.. tags:
|
||||
.. date: 2014/01/01 11:02:03
|
||||
.. title: What is not supported
|
||||
.. slug: what-is-not-supported
|
||||
|
||||
* Conversion from SQL
|
||||
* Equijoin operator (maybe will never be supported, it is only a syntactic sugar)
|
@ -1,2 +0,0 @@
|
||||
Vinicius Massuchetto <http://vinicius.soylocoporti.org.br> [WordPress theme]
|
||||
Roberto Alsina <https://github.com/ralsina>
|
@ -1,43 +0,0 @@
|
||||
A Nikola port of Vinicius Massuchetto's monospace Wordpress theme. I have
|
||||
tried to keep it as faithful as possible, because I really liked it.
|
||||
This port uses twitter bootstrap.
|
||||
|
||||
You can see the original here: http://wordpress.org/themes/monospace
|
||||
|
||||
This theme is licensed under the GPL v2.0 like the original. Below is a fragment of
|
||||
the original theme's README:
|
||||
|
||||
|
||||
> Monospace WordPress Theme
|
||||
> -------------------------
|
||||
>
|
||||
> * Are you tired from polluted websites with useless images and
|
||||
> JavaScript effects?
|
||||
> * Are you a programmer, and just want to discuss some code?
|
||||
> * Do you usually write things in 80 columns and want your web content to
|
||||
> be like that?
|
||||
> * Do you send e-mails only in plain ASCII?
|
||||
> * Do you think information is way more important than anything around
|
||||
> the web?
|
||||
> * Do you enjoy a well written text in plain format?
|
||||
>
|
||||
> Features
|
||||
> --------
|
||||
>
|
||||
> * Clean, extra-light, easy, objective, image free and 80 columns monospaced
|
||||
> * Good for code, e-mails and indented content
|
||||
> * 2 columns layout, threaded comments, widget, and translation ready
|
||||
> * Automatically resize images to fit the 80 column / 500px text space
|
||||
> * Built-in related posts funcionality
|
||||
> * WordPress standard widgets already styled
|
||||
> * Twitter, Facebook, Google Reader and Orkut sharers
|
||||
> * Compatible with WP-Pagenavi and WP-Syntax plugins
|
||||
>
|
||||
> Links
|
||||
> -----
|
||||
>
|
||||
> * Theme Author: Vinicius Massuchetto
|
||||
> http://vinicius.soylocoporti.org.br
|
||||
>
|
||||
> * WordPress Theme's Trac Tickets
|
||||
> http://themes.trac.wordpress.org/query?keywords=~theme-monospace
|
@ -1,24 +0,0 @@
|
||||
body { margin:0px; padding:20px 0px; text-align:center; font-family:Monospace; color:#585858; }
|
||||
.post { margin:0px 0px 30px 0px; padding:0px 0px 30px 0px; border-bottom:1px dotted #C8C8C8; }
|
||||
.meta { margin:10px; padding:15px; background:#EAEAEA; clear:both; }
|
||||
#footer { text-align:center; clear:both; margin:30px 0px 0px 0px; padding:30px 0px 0px 0px; border-top:1px dotted #C8C8C8; }
|
||||
#wrap { margin:0px auto; text-align:left; font-size: 13px; line-height: 1.4; }
|
||||
#container { float:right; }
|
||||
#sidebar { overflow:hidden; clear:left; text-align:right; width:250px; height:auto; padding:0px 15px 0px 0px; border-right:1px dotted #C8C8C8; }
|
||||
#sidebar li { list-style-type:none; }
|
||||
#sidebar > li { margin:20px 0px; }
|
||||
#sidebar h1 { border-bottom:1px dotted #C8C8C8; }
|
||||
#sidebar .description { display:block; width:100%; height:auto; margin:0px 0px 10px 0px; }
|
||||
h1, h2, h3, h4, h5, h6, h7 { margin:0px; text-transform:uppercase; }
|
||||
h4, h5, h6 { font-size:14px; }
|
||||
#blog-title { margin-top: 0; line-height:48px;}
|
||||
.literal-block {padding: .5em;}
|
||||
div.sidebar, div.admonition, div.attention, div.caution, div.danger, div.error, div.hint, div.important, div.note, div.tip, div.warning {
|
||||
/* Issue 277 */
|
||||
border: 1px solid #aaa;
|
||||
border-radius: 5px;
|
||||
width: 100%;
|
||||
}
|
||||
ul.breadcrumb > li:before {
|
||||
content: " / ";
|
||||
}
|
@ -1 +0,0 @@
|
||||
bootstrap
|
@ -1,46 +0,0 @@
|
||||
## -*- coding: utf-8 -*-
|
||||
<%namespace name="base" file="base_helper.tmpl" import="*"/>
|
||||
<%namespace name="bootstrap" file="bootstrap_helper.tmpl" import="*" />
|
||||
${set_locale(lang)}
|
||||
<!DOCTYPE html>
|
||||
<html lang="${lang}">
|
||||
<head>
|
||||
${bootstrap.html_head()}
|
||||
<%block name="extra_head">
|
||||
</%block>
|
||||
${extra_head_data}
|
||||
</head>
|
||||
<body class="home blog">
|
||||
<div id="wrap" style="width:850px">
|
||||
<div id="container" style="width:560px">
|
||||
<%block name="content"></%block>
|
||||
</div>
|
||||
<div id="sidebar">
|
||||
<!--Sidebar content-->
|
||||
<h1 id="blog-title">
|
||||
<a href="${abs_link('/')}" title="${blog_title}">${blog_title}</a>
|
||||
</h1>
|
||||
<%block name="belowtitle">
|
||||
%if len(translations) > 1:
|
||||
<small>
|
||||
${messages("Also available in")}:
|
||||
${base.html_translations()}
|
||||
</small>
|
||||
%endif
|
||||
</%block>
|
||||
<ul class="unstyled">
|
||||
<li>${license}
|
||||
${base.html_social()}
|
||||
${bootstrap.html_navigation_links()}
|
||||
<li>${search_form}
|
||||
</ul>
|
||||
</div>
|
||||
<div id="footer">
|
||||
${content_footer}
|
||||
</div>
|
||||
</div>
|
||||
${bootstrap.late_load_js()}
|
||||
<script type="text/javascript">jQuery("a.image-reference").colorbox({rel:"gal",maxWidth:"100%",maxHeight:"100%",scalePhotos:true});</script>
|
||||
<%block name="extra_js"></%block>
|
||||
${body_end}
|
||||
</body>
|
@ -1,31 +0,0 @@
|
||||
## -*- coding: utf-8 -*-
|
||||
<%namespace name="helper" file="index_helper.tmpl"/>
|
||||
<%namespace name="comments" file="comments_helper.tmpl"/>
|
||||
<%inherit file="base.tmpl"/>
|
||||
<%block name="content">
|
||||
% for post in posts:
|
||||
<div class="postbox">
|
||||
<h1><a href="${post.permalink()}">${post.title()}</a></h1>
|
||||
<div class="meta" style="background-color: rgb(234, 234, 234); ">
|
||||
<span class="authordate">
|
||||
${messages("Posted")}: <time class="published" datetime="${post.date.isoformat()}">${post.formatted_date(date_format)}</time>
|
||||
</span>
|
||||
<br>
|
||||
<span class="tags">Tags:
|
||||
%if post.tags:
|
||||
%for tag in post.tags:
|
||||
<a class="tag" href="${_link('tag', tag)}"><span>${tag}</span></a>
|
||||
%endfor
|
||||
%endif
|
||||
</span>
|
||||
</div>
|
||||
${post.text(teaser_only=index_teasers)}
|
||||
% if not post.meta('nocomments'):
|
||||
${comments.comment_link(post.permalink(), post.base_path)}
|
||||
% endif
|
||||
</div>
|
||||
% endfor
|
||||
${helper.html_pager()}
|
||||
${comments.comment_link_script()}
|
||||
${helper.mathjax_script(posts)}
|
||||
</%block>
|
@ -1,41 +0,0 @@
|
||||
## -*- coding: utf-8 -*-
|
||||
<%namespace name="helper" file="post_helper.tmpl"/>
|
||||
<%namespace name="comments" file="comments_helper.tmpl"/>
|
||||
<%inherit file="base.tmpl"/>
|
||||
<%block name="extra_head">
|
||||
${helper.twitter_card_information(post)}
|
||||
% if post.meta('keywords'):
|
||||
<meta name="keywords" content="${post.meta('keywords')|h}"/>
|
||||
% endif
|
||||
</%block>
|
||||
<%block name="content">
|
||||
<div class="post">
|
||||
${helper.html_title()}
|
||||
<div class="meta" style="background-color: rgb(234, 234, 234); ">
|
||||
<span class="authordate">
|
||||
${messages("Posted")}: <time class="published" datetime="${post.date.isoformat()}">${post.formatted_date(date_format)}</time>
|
||||
% if not post.meta('password'):
|
||||
[<a href="${post.source_link()}" id="sourcelink">${messages("Source")}</a>]
|
||||
% endif
|
||||
</span>
|
||||
<br>
|
||||
%if post.tags:
|
||||
<span class="tags">${messages("Tags")}:
|
||||
%for tag in post.tags:
|
||||
<a class="tag" href="${_link('tag', tag)}"><span>${tag}</span></a>
|
||||
%endfor
|
||||
</span>
|
||||
<br>
|
||||
%endif
|
||||
<span class="authordate">
|
||||
${helper.html_translations(post)}
|
||||
</span>
|
||||
</div>
|
||||
${post.text()}
|
||||
${helper.html_pager(post)}
|
||||
% if not post.meta('nocomments'):
|
||||
${comments.comment_form(post.permalink(absolute=True), post.title(), post.base_path)}
|
||||
% endif
|
||||
${helper.mathjax_script(post)}
|
||||
</div>
|
||||
</%block>
|
Loading…
Reference in New Issue