commit 3a3112626eb0a3c70d5a008b7f04d5f7b1ec9b99 Author: LongHairedHacker Date: Mon Dec 16 14:34:01 2019 +0100 Initial commit diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..b76d883 --- /dev/null +++ b/.gitignore @@ -0,0 +1,5 @@ +virtenv +output +cache +__pycache__ +.doit.db diff --git a/c3space.de/conf.py b/c3space.de/conf.py new file mode 100644 index 0000000..82da536 --- /dev/null +++ b/c3space.de/conf.py @@ -0,0 +1,1355 @@ +# -*- coding: utf-8 -*- + +import time + +# !! This is the configuration of Nikola. !! # +# !! You should edit it to your liking. !! # + + +# ! Some settings can be different in different languages. +# ! A comment stating (translatable) is used to denote those. +# ! There are two ways to specify a translatable setting: +# ! (a) BLOG_TITLE = "My Blog" +# ! (b) BLOG_TITLE = {"en": "My Blog", "es": "Mi Blog"} +# ! Option (a) is used when you don't want that setting translated. +# ! Option (b) is used for settings that are different in different languages. + + +# Data about this site +BLOG_AUTHOR = "Jebediah Kerman" # (translatable) +BLOG_TITLE = "C3Space" # (translatable) +# This is the main URL for your site. It will be used +# in a prominent link. Don't forget the protocol (http/https)! +SITE_URL = "https://c3space.de/" +# This is the URL where Nikola's output will be deployed. +# If not set, defaults to SITE_URL +# BASE_URL = "https://c3space.de/" +BLOG_EMAIL = "web@c3space.de" +BLOG_DESCRIPTION = "Website for C3Space" # (translatable) + +# Nikola is multilingual! +# +# Currently supported languages are: +# +# en English +# af Afrikaans +# ar Arabic +# az Azerbaijani +# bg Bulgarian +# bs Bosnian +# ca Catalan +# cs Czech [ALTERNATIVELY cz] +# da Danish +# de German +# el Greek [NOT gr] +# eo Esperanto +# es Spanish +# et Estonian +# eu Basque +# fa Persian +# fi Finnish +# fr French +# fur Friulian +# gl Galician +# he Hebrew +# hi Hindi +# hr Croatian +# hu Hungarian +# ia Interlingua +# id Indonesian +# it Italian +# ja Japanese [NOT jp] +# ko Korean +# lt Lithuanian +# ml Malayalam +# nb Norwegian (Bokmål) +# nl Dutch +# pa Punjabi +# pl Polish +# pt Portuguese +# pt_br Portuguese (Brazil) +# ru Russian +# sk Slovak +# sl Slovene +# sq Albanian +# sr Serbian (Cyrillic) +# sr_latin Serbian (Latin) +# sv Swedish +# te Telugu +# th Thai +# tr Turkish [NOT tr_TR] +# uk Ukrainian +# ur Urdu +# vi Vietnamese +# zh_cn Chinese (Simplified) +# zh_tw Chinese (Traditional) +# +# If you want to use Nikola with a non-supported language you have to provide +# a module containing the necessary translations +# (cf. the modules at nikola/data/themes/base/messages/). +# If a specific post is not translated to a language, then the version +# in the default language will be shown instead. + +# What is the default language? +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", +} + +# What will translated input files be named like? + +# If you have a page something.rst, then something.pl.rst will be considered +# its Polish translation. +# (in the above example: path == "something", ext == "rst", lang == "pl") +# this pattern is also used for metadata: +# something.meta -> something.pl.meta + +TRANSLATIONS_PATTERN = '{path}.{lang}.{ext}' + +# Links for the sidebar / navigation bar. (translatable) +# This is a dict. The keys are languages, and values are tuples. +# +# For regular links: +# ('https://getnikola.com/', 'Nikola Homepage') +# +# For submenus: +# ( +# ( +# ('https://apple.com/', 'Apple'), +# ('https://orange.com/', 'Orange'), +# ), +# 'Fruits' +# ) +# +# WARNING: Support for submenus is theme-dependent. +# Only one level of submenus is supported. +# WARNING: Some themes, including the default Bootstrap 4 theme, +# may present issues if the menu is too large. +# (in Bootstrap, the navbar can grow too large and cover contents.) +# WARNING: If you link to directories, make sure to follow +# ``STRIP_INDEXES``. If it’s set to ``True``, end your links +# with a ``/``, otherwise end them with ``/index.html`` — or +# else they won’t be highlighted when active. + +NAVIGATION_LINKS = { + DEFAULT_LANG: ( + (( + ("#", "36C3"), + ("/events/35C3/index.html", "35C3"), + ("/events/34C3/index.html", "34C3") + ), "Events"), + ("/blog/", "Blog"), + ), +} + +# Alternative navigation links. Works the same way NAVIGATION_LINKS does, +# although themes may not always support them. (translatable) +# (Bootstrap 4: right-side of navbar, Bootblog 4: right side of title) +NAVIGATION_ALT_LINKS = { + DEFAULT_LANG: () +} + +# Name of the theme to use. +THEME = 'c3space' + +# Primary color of your theme. This will be used to customize your theme. +# Must be a HEX value. +THEME_COLOR = '#5670d4' + +# Theme configuration. Fully theme-dependent. (translatable) +# Examples below are for bootblog4. +# bootblog4 supports: featured_large featured_small featured_on_mobile +# featured_large_image_on_mobile featured_strip_html sidebar +# bootstrap4 supports: navbar_light (defaults to False) +THEME_CONFIG = { + DEFAULT_LANG: { + # Show the latest featured post in a large box, with the previewimage as its background. + 'featured_large': False, + # Show the first (remaining) two featured posts in small boxes. + 'featured_small': False, + # Show featured posts on mobile. + 'featured_on_mobile': True, + # Show image in `featured_large` on mobile. + # `featured_small` displays them only on desktop. + 'featured_large_image_on_mobile': True, + # Strip HTML from featured post text. + 'featured_strip_html': False, + # Contents of the sidebar, If empty, the sidebar is not displayed. + 'sidebar': '' + } +} + +# POSTS and PAGES contains (wildcard, destination, template) tuples. +# (translatable) +# +# The wildcard is used to generate a list of source files +# (whatever/thing.rst, for example). +# +# That fragment could have an associated metadata file (whatever/thing.meta), +# and optionally translated files (example for Spanish, with code "es"): +# whatever/thing.es.rst and whatever/thing.es.meta +# +# This assumes you use the default TRANSLATIONS_PATTERN. +# +# 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 combined 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 page might also be placed in /destination/pagename/index.html +# if PRETTY_URLS are enabled. +# +# The difference between POSTS and PAGES is that POSTS are added +# to feeds, indexes, tag lists and archives and are considered part +# of a blog, while PAGES are just independent HTML pages. +# +# Finally, note that destination can be translated, i.e. you can +# specify a different translation folder per language. Example: +# PAGES = ( +# ("pages/*.rst", {"en": "pages", "de": "seiten"}, "page.tmpl"), +# ("pages/*.md", {"en": "pages", "de": "seiten"}, "page.tmpl"), +# ) + +POSTS = ( + ("posts/*.rst", "posts", "post.tmpl"), + ("posts/*.md", "posts", "post.tmpl"), + ("posts/*.txt", "posts", "post.tmpl"), + ("posts/*.html", "posts", "post.tmpl"), +) +PAGES = ( + ("pages/*.rst", "", "page.tmpl"), + ("pages/*.md", "", "page.tmpl"), + ("pages/*.txt", "", "page.tmpl"), + ("pages/*.html", "", "page.tmpl"), +) + + +# Below this point, everything is optional + +# Post's dates are considered in UTC by default, if you want to use +# another time zone, please set TIMEZONE to match. Check the available +# list from Wikipedia: +# https://en.wikipedia.org/wiki/List_of_tz_database_time_zones +# (e.g. 'Europe/Zurich') +# Also, if you want to use a different time zone in some of your posts, +# you can use the ISO 8601/RFC 3339 format (ex. 2012-03-30T23:00:00+02:00) +TIMEZONE = "Europe/Berlin" + +# If you want to use ISO 8601 (also valid RFC 3339) throughout Nikola +# (especially in new_post), set this to True. +# Note that this does not affect DATE_FORMAT. +# FORCE_ISO8601 = False + +# Date format used to display post dates. (translatable) +# Used by babel.dates, CLDR style: http://cldr.unicode.org/translation/date-time +# You can also use 'full', 'long', 'medium', or 'short' +# DATE_FORMAT = 'YYYY-MM-dd HH:mm' + +# Date format used to display post dates, if local dates are used. (translatable) +# Used by moment.js: https://momentjs.com/docs/#/displaying/format/ +# JS_DATE_FORMAT = 'YYYY-MM-DD HH:mm' + +# Date fanciness. +# +# 0 = using DATE_FORMAT and TIMEZONE +# 1 = using JS_DATE_FORMAT and local user time (via moment.js) +# 2 = using a string like “2 days ago” +# +# Your theme must support it, Bootstrap already does. +# DATE_FANCINESS = 0 + +# Customize the locale/region used for a language. +# For example, to use British instead of US English: LOCALES = {'en': 'en_GB'} +# LOCALES = {} + +# 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' + +# One or more folders containing code listings to be processed and published on +# the site. The format is a dictionary of {source: relative destination}. +# Default is: +# LISTINGS_FOLDERS = {'listings': 'listings'} +# Which means process listings from 'listings' into 'output/listings' + +# 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. +# +# The default compiler for `new_post` is the first entry in the POSTS tuple. +# +# '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'), + # PHP files are rendered the usual way (i.e. with the full templates). + # The resulting files have .php extensions, making it possible to run + # them without reconfiguring your server to recognize them. + "php": ('.php',), + # 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'), +} + +# Enable reST directives that insert the contents of external files such +# as "include" and "raw." This maps directly to the docutils file_insertion_enabled +# config. See: http://docutils.sourceforge.net/docs/user/config.html#file-insertion-enabled +# REST_FILE_INSERTION_ENABLED = True + +# Create by default posts in one file format? +# Set to False for two-file posts, with separate metadata. +# ONE_FILE_POSTS = True + +# Preferred metadata format for new posts +# "Nikola": reST comments, wrapped in a HTML comment if needed (default) +# "YAML": YAML wrapped in "---" +# "TOML": TOML wrapped in "+++" +# "Pelican": Native markdown metadata or reST docinfo fields. Nikola style for other formats. +# METADATA_FORMAT = "Nikola" + +# Use date-based path when creating posts? +# Can be enabled on a per-post basis with `nikola new_post -d`. +# The setting is ignored when creating pages. +# NEW_POST_DATE_PATH = False + +# What format to use when creating posts with date paths? +# Default is '%Y/%m/%d', other possibilities include '%Y' or '%Y/%m'. +# NEW_POST_DATE_PATH_FORMAT = '%Y/%m/%d' + +# If this is set to True, the DEFAULT_LANG version will be displayed for +# untranslated posts. +# If this is set to False, then posts that are not translated to a language +# LANG will not be visible at all in the pages in that language. +# SHOW_UNTRANSLATED_POSTS = True + +# Nikola supports logo display. If you have one, you can put the URL here. +# Final output is . +# The URL may be relative to the site root. +LOGO_URL = '/logo.svg' + +# If you want to hide the title of your website (for example, if your logo +# already contains the text), set this to False. +SHOW_BLOG_TITLE = 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 RSS_EXTENSION (RSS feed for a tag) +# (translatable) +# TAG_PATH = "categories" + +# By default, the list of tags is stored in +# output / TRANSLATION[lang] / TAG_PATH / index.html +# (see explanation for TAG_PATH). This location can be changed to +# output / TRANSLATION[lang] / TAGS_INDEX_PATH +# with an arbitrary relative path TAGS_INDEX_PATH. +# (translatable) +# TAGS_INDEX_PATH = "tags.html" + +# 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 = False + +# Set descriptions for tag pages to make them more interesting. The +# default is no description. The value is used in the meta description +# and displayed underneath the tag list or index page’s title. +# TAG_DESCRIPTIONS = { +# DEFAULT_LANG: { +# "blogging": "Meta-blog posts about blogging.", +# "open source": "My contributions to my many, varied, ever-changing, and eternal libre software projects." +# }, +# } + +# Set special titles for tag pages. The default is "Posts about TAG". +# TAG_TITLES = { +# DEFAULT_LANG: { +# "blogging": "Meta-posts about blogging", +# "open source": "Posts about open source software" +# }, +# } + +# If you do not want to display a tag publicly, you can mark it as hidden. +# The tag will not be displayed on the tag list page and posts. +# Tag pages will still be generated. +HIDDEN_TAGS = ['mathjax'] + +# Only include tags on the tag list/overview page if there are at least +# TAGLIST_MINIMUM_POSTS number of posts or more with every tag. Every tag +# page is still generated, linked from posts, and included in the sitemap. +# However, more obscure tags can be hidden from the tag index page. +# TAGLIST_MINIMUM_POSTS = 1 + +# A list of dictionaries specifying tags which translate to each other. +# Format: a list of dicts {language: translation, language2: translation2, …} +# For example: +# [ +# {'en': 'private', 'de': 'Privat'}, +# {'en': 'work', 'fr': 'travail', 'de': 'Arbeit'}, +# ] +# TAG_TRANSLATIONS = [] + +# If set to True, a tag in a language will be treated as a translation +# of the literally same tag in all other languages. Enable this if you +# do not translate tags, for example. +# TAG_TRANSLATIONS_ADD_DEFAULTS = True + +# Final locations are: +# output / TRANSLATION[lang] / CATEGORY_PATH / index.html (list of categories) +# output / TRANSLATION[lang] / CATEGORY_PATH / CATEGORY_PREFIX category.html (list of posts for a category) +# output / TRANSLATION[lang] / CATEGORY_PATH / CATEGORY_PREFIX category RSS_EXTENSION (RSS feed for a category) +# (translatable) +# CATEGORY_PATH = "categories" +# CATEGORY_PREFIX = "cat_" + +# By default, the list of categories is stored in +# output / TRANSLATION[lang] / CATEGORY_PATH / index.html +# (see explanation for CATEGORY_PATH). This location can be changed to +# output / TRANSLATION[lang] / CATEGORIES_INDEX_PATH +# with an arbitrary relative path CATEGORIES_INDEX_PATH. +# (translatable) +# CATEGORIES_INDEX_PATH = "categories.html" + +# If CATEGORY_ALLOW_HIERARCHIES is set to True, categories can be organized in +# hierarchies. For a post, the whole path in the hierarchy must be specified, +# using a forward slash ('/') to separate paths. Use a backslash ('\') to escape +# a forward slash or a backslash (i.e. '\//\\' is a path specifying the +# subcategory called '\' of the top-level category called '/'). +CATEGORY_ALLOW_HIERARCHIES = False +# If CATEGORY_OUTPUT_FLAT_HIERARCHY is set to True, the output written to output +# contains only the name of the leaf category and not the whole path. +CATEGORY_OUTPUT_FLAT_HIERARCHY = False + +# If CATEGORY_PAGES_ARE_INDEXES is set to True, each category's page will contain +# the posts themselves. If set to False, it will be just a list of links. +# CATEGORY_PAGES_ARE_INDEXES = False + +# Set descriptions for category pages to make them more interesting. The +# default is no description. The value is used in the meta description +# and displayed underneath the category list or index page’s title. +# CATEGORY_DESCRIPTIONS = { +# DEFAULT_LANG: { +# "blogging": "Meta-blog posts about blogging.", +# "open source": "My contributions to my many, varied, ever-changing, and eternal libre software projects." +# }, +# } + +# Set special titles for category pages. The default is "Posts about CATEGORY". +# CATEGORY_TITLES = { +# DEFAULT_LANG: { +# "blogging": "Meta-posts about blogging", +# "open source": "Posts about open source software" +# }, +# } + +# If you do not want to display a category publicly, you can mark it as hidden. +# The category will not be displayed on the category list page. +# Category pages will still be generated. +HIDDEN_CATEGORIES = [] + +# A list of dictionaries specifying categories which translate to each other. +# Format: a list of dicts {language: translation, language2: translation2, …} +# See TAG_TRANSLATIONS example above. +# CATEGORY_TRANSLATIONS = [] + +# If set to True, a category in a language will be treated as a translation +# of the literally same category in all other languages. Enable this if you +# do not translate categories, for example. +# CATEGORY_TRANSLATIONS_ADD_DEFAULTS = True + +# If no category is specified in a post, the destination path of the post +# can be used in its place. This replaces the sections feature. Using +# category hierarchies is recommended. +# CATEGORY_DESTPATH_AS_DEFAULT = False + +# If True, the prefix will be trimmed from the category name, eg. if the +# POSTS destination is "foo/bar", and the path is "foo/bar/baz/quux", +# the category will be "baz/quux" (or "baz" if only the first directory is considered). +# Note that prefixes coming from translations are always ignored. +# CATEGORY_DESTPATH_TRIM_PREFIX = False + +# If True, only the first directory of a path will be used. +# CATEGORY_DESTPATH_FIRST_DIRECTORY_ONLY = True + +# Map paths to prettier category names. (translatable) +# CATEGORY_DESTPATH_NAMES = { +# DEFAULT_LANG: { +# 'webdev': 'Web Development', +# 'webdev/django': 'Web Development/Django', +# 'random': 'Odds and Ends', +# }, +# } + +# By default, category indexes will appear in CATEGORY_PATH and use +# CATEGORY_PREFIX. If this is enabled, those settings will be ignored (except +# for the index) and instead, they will follow destination paths (eg. category +# 'foo' might appear in 'posts/foo'). If the category does not come from a +# destpath, first entry in POSTS followed by the category name will be used. +# For this setting, category hierarchies are required and cannot be flattened. +# CATEGORY_PAGES_FOLLOW_DESTPATH = False + +# If ENABLE_AUTHOR_PAGES is set to True and there is more than one +# author, author pages are generated. +# ENABLE_AUTHOR_PAGES = True + +# Path to author pages. Final locations are: +# output / TRANSLATION[lang] / AUTHOR_PATH / index.html (list of authors) +# output / TRANSLATION[lang] / AUTHOR_PATH / author.html (list of posts by an author) +# output / TRANSLATION[lang] / AUTHOR_PATH / author RSS_EXTENSION (RSS feed for an author) +# (translatable) +# AUTHOR_PATH = "authors" + +# If AUTHOR_PAGES_ARE_INDEXES is set to True, each author's page will contain +# the posts themselves. If set to False, it will be just a list of links. +# AUTHOR_PAGES_ARE_INDEXES = False + +# Set descriptions for author pages to make them more interesting. The +# default is no description. The value is used in the meta description +# and displayed underneath the author list or index page’s title. +# AUTHOR_PAGES_DESCRIPTIONS = { +# DEFAULT_LANG: { +# "Juanjo Conti": "Python coder and writer.", +# "Roberto Alsina": "Nikola father." +# }, +# } + + +# If you do not want to display an author publicly, you can mark it as hidden. +# The author will not be displayed on the author list page and posts. +# Tag pages will still be generated. +HIDDEN_AUTHORS = ['Guest'] + +# Final location for the main blog page and sibling paginated pages is +# output / TRANSLATION[lang] / INDEX_PATH / index-*.html +# (translatable) +INDEX_PATH = "blog" + +# Optional HTML that displayed on “main” blog index.html files. +# May be used for a greeting. (translatable) +FRONT_INDEX_HEADER = { + DEFAULT_LANG: '' +} + +# Create per-month archives instead of per-year +# CREATE_MONTHLY_ARCHIVE = False +# Create one large archive instead of per-year +# CREATE_SINGLE_ARCHIVE = False +# Create year, month, and day archives each with a (long) list of posts +# (overrides both CREATE_MONTHLY_ARCHIVE and CREATE_SINGLE_ARCHIVE) +# CREATE_FULL_ARCHIVES = False +# If monthly archives or full archives are created, adds also one archive per day +# CREATE_DAILY_ARCHIVE = False +# Create previous, up, next navigation links for archives +# CREATE_ARCHIVE_NAVIGATION = 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 +# output / TRANSLATION[lang] / ARCHIVE_PATH / YEAR / MONTH / DAY / index.html +# (translatable) +# ARCHIVE_PATH = "" +# ARCHIVE_FILENAME = "archive.html" + +# If ARCHIVES_ARE_INDEXES is set to True, each archive page which contains a list +# of posts will contain the posts themselves. If set to False, it will be just a +# list of links. +# ARCHIVES_ARE_INDEXES = False + +# URLs to other posts/pages can take 3 forms: +# rel_path: a relative URL to the current page/post (default) +# full_path: a URL with the full path from the root +# absolute: a complete URL (that includes the SITE_URL) +# URL_TYPE = 'rel_path' + +# Extension for RSS feed files +# RSS_EXTENSION = ".xml" + +# RSS filename base (without extension); used for indexes and galleries. +# (translatable) +# RSS_FILENAME_BASE = "rss" + +# Final location for the blog main RSS feed is: +# output / TRANSLATION[lang] / RSS_PATH / RSS_FILENAME_BASE RSS_EXTENSION +# (translatable) +# RSS_PATH = "" + +# Final location for the blog main Atom feed is: +# output / TRANSLATION[lang] / ATOM_PATH / ATOM_FILENAME_BASE ATOM_EXTENSION +# (translatable) +# ATOM_PATH = "" + +# Atom filename base (without extension); used for indexes. +# (translatable) +ATOM_FILENAME_BASE = "feed" + +# Extension for Atom feed files +# ATOM_EXTENSION = ".atom" + +# Slug the Tag URL. Easier for users to type, special characters are +# often removed or replaced as well. +# SLUG_TAG_PATH = True + +# Slug the Author URL. Easier for users to type, special characters are +# often removed or replaced as well. +# SLUG_AUTHOR_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 = [] + +# Presets of commands to execute to deploy. Can be anything, for +# example, you may use rsync: +# "rsync -rav --delete output/ joe@my.site:/srv/www/site" +# And then do a backup, or run `nikola ping` from the `ping` +# plugin (`nikola plugin -i ping`). Or run `nikola check -l`. +# You may also want to use github_deploy (see below). +# You can define multiple presets and specify them as arguments +# to `nikola deploy`. If no arguments are specified, a preset +# named `default` will be executed. You can use as many presets +# in a `nikola deploy` command as you like. +# DEPLOY_COMMANDS = { +# 'default': [ +# "rsync -rav --delete output/ joe@my.site:/srv/www/site", +# ] +# } + +# github_deploy configuration +# For more details, read the manual: +# https://getnikola.com/handbook.html#deploying-to-github +# You will need to configure the deployment branch on GitHub. +GITHUB_SOURCE_BRANCH = 'src' +GITHUB_DEPLOY_BRANCH = 'master' + +# The name of the remote where you wish to push to, using github_deploy. +GITHUB_REMOTE_NAME = 'origin' + +# Whether or not github_deploy should commit to the source branch automatically +# before deploying. +GITHUB_COMMIT_SOURCE = True + +# 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, only .php files uses filters to inject PHP into +# Nikola’s templates. All other filters must be enabled through FILTERS. +# +# Many filters are shipped with Nikola. A list is available in the manual: +# +# +# from nikola import filters +# FILTERS = { +# ".html": [filters.typogrify], +# ".js": [filters.closure_compiler], +# ".jpg": ["jpegoptim --strip-all -m75 -v %s"], +# } + +# Executable for the "yui_compressor" filter (defaults to 'yui-compressor'). +# YUI_COMPRESSOR_EXECUTABLE = 'yui-compressor' + +# Executable for the "closure_compiler" filter (defaults to 'closure-compiler'). +# CLOSURE_COMPILER_EXECUTABLE = 'closure-compiler' + +# Executable for the "optipng" filter (defaults to 'optipng'). +# OPTIPNG_EXECUTABLE = 'optipng' + +# Executable for the "jpegoptim" filter (defaults to 'jpegoptim'). +# JPEGOPTIM_EXECUTABLE = 'jpegoptim' + +# Executable for the "html_tidy_withconfig", "html_tidy_nowrap", +# "html_tidy_wrap", "html_tidy_wrap_attr" and "html_tidy_mini" filters +# (defaults to 'tidy5'). +# HTML_TIDY_EXECUTABLE = 'tidy5' + +# List of XPath expressions which should be used for finding headers +# ({hx} is replaced by headers h1 through h6). +# You must change this if you use a custom theme that does not use +# "e-content entry-content" as a class for post and page contents. +# HEADER_PERMALINKS_XPATH_LIST = ['*//div[@class="e-content entry-content"]//{hx}'] +# Include *every* header (not recommended): +# HEADER_PERMALINKS_XPATH_LIST = ['*//{hx}'] + +# File blacklist for header permalinks. Contains output path +# (eg. 'output/index.html') +# HEADER_PERMALINKS_FILE_BLACKLIST = [] + +# 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', '.atom', '.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 +# ############################################################################# + +# One or more folders containing galleries. The format is a dictionary of +# {"source": "relative_destination"}, where galleries are looked for in +# "source/" and the results will be located in +# "OUTPUT_PATH/relative_destination/gallery_name" +# Default is: +# GALLERY_FOLDERS = {"galleries": "galleries"} +# More gallery options: +# 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 + +# If set to True, EXIF data will be copied when an image is thumbnailed or +# resized. (See also EXIF_WHITELIST) +# PRESERVE_EXIF_DATA = False + +# If you have enabled PRESERVE_EXIF_DATA, this option lets you choose EXIF +# fields you want to keep in images. (See also PRESERVE_EXIF_DATA) +# +# For a full list of field names, please see here: +# http://www.cipa.jp/std/documents/e/DC-008-2012_E.pdf +# +# This is a dictionary of lists. Each key in the dictionary is the +# name of a IDF, and each list item is a field you want to preserve. +# If you have a IDF with only a '*' item, *EVERY* item in it will be +# preserved. If you don't want to preserve anything in a IDF, remove it +# from the setting. By default, no EXIF information is kept. +# Setting the whitelist to anything other than {} implies +# PRESERVE_EXIF_DATA is set to True +# To preserve ALL EXIF data, set EXIF_WHITELIST to {"*": "*"} + +# EXIF_WHITELIST = {} + +# Some examples of EXIF_WHITELIST settings: + +# Basic image information: +# EXIF_WHITELIST['0th'] = [ +# "Orientation", +# "XResolution", +# "YResolution", +# ] + +# If you want to keep GPS data in the images: +# EXIF_WHITELIST['GPS'] = ["*"] + +# Embedded thumbnail information: +# EXIF_WHITELIST['1st'] = ["*"] + +# If set to True, any ICC profile will be copied when an image is thumbnailed or +# resized. +# PRESERVE_ICC_PROFILES = False + +# Folders containing images to be used in normal posts or pages. +# IMAGE_FOLDERS is a dictionary of the form {"source": "destination"}, +# where "source" is the folder containing the images to be published, and +# "destination" is the folder under OUTPUT_PATH containing the images copied +# to the site. Thumbnail images will be created there as well. + +# To reference the images in your posts, include a leading slash in the path. +# For example, if IMAGE_FOLDERS = {'images': 'images'}, write +# +# .. image:: /images/tesla.jpg +# +# See the Nikola Handbook for details (in the “Embedding Images” and +# “Thumbnails” sections) + +# Images will be scaled down according to IMAGE_THUMBNAIL_SIZE and MAX_IMAGE_SIZE +# options, but will have to be referenced manually to be visible on the site +# (the thumbnail has ``.thumbnail`` added before the file extension by default, +# but a different naming template can be configured with IMAGE_THUMBNAIL_FORMAT). + +IMAGE_FOLDERS = {'images': 'images'} +# IMAGE_THUMBNAIL_SIZE = 400 +# IMAGE_THUMBNAIL_FORMAT = '{name}.thumbnail{ext}' + +# ############################################################################# +# HTML fragments and diverse things that are used by the templates +# ############################################################################# + +# Data about post-per-page indexes. +# INDEXES_PAGES defaults to ' old posts, page %d' or ' page %d' (translated), +# depending on the value of INDEXES_PAGES_MAIN. +# +# (translatable) If the following is empty, defaults to BLOG_TITLE: +# INDEXES_TITLE = "" +# +# (translatable) If the following is empty, defaults to ' [old posts,] page %d' (see above): +# INDEXES_PAGES = "" +# +# If the following is True, INDEXES_PAGES is also displayed on the main (the +# newest) index page (index.html): +# INDEXES_PAGES_MAIN = True +# +# If the following is True, index-1.html has the oldest posts, index-2.html the +# second-oldest posts, etc., and index.html has the newest posts. This ensures +# that all posts on index-x.html will forever stay on that page, now matter how +# many new posts are added. +# If False, index-1.html has the second-newest posts, index-2.html the third-newest, +# and index-n.html the oldest posts. When this is active, old posts can be moved +# to other index pages when new posts are added. +# INDEXES_STATIC = True +# +# (translatable) If PRETTY_URLS is set to True, this setting will be used to create +# prettier URLs for index pages, such as page/2/index.html instead of index-2.html. +# Valid values for this settings are: +# * False, +# * a list or tuple, specifying the path to be generated, +# * a dictionary mapping languages to lists or tuples. +# Every list or tuple must consist of strings which are used to combine the path; +# for example: +# ['page', '{number}', '{index_file}'] +# The replacements +# {number} --> (logical) page number; +# {old_number} --> the page number inserted into index-n.html before (zero for +# the main page); +# {index_file} --> value of option INDEX_FILE +# are made. +# Note that in case INDEXES_PAGES_MAIN is set to True, a redirection will be created +# for the full URL with the page number of the main page to the normal (shorter) main +# page URL. +# INDEXES_PRETTY_PAGE_URL = False +# +# If the following is true, a page range navigation will be inserted to indices. +# Please note that this will undo the effect of INDEXES_STATIC, as all index pages +# must be recreated whenever the number of pages changes. +# SHOW_INDEX_PAGE_NAVIGATION = False + +# If the following is True, a meta name="generator" tag is added to pages. The +# generator tag is used to specify the software used to generate the page +# (it promotes Nikola). +# META_GENERATOR_TAG = True + +# Color scheme to be used for code blocks. If your theme provides +# "assets/css/code.css" this is ignored. Set to None to disable. +# Can be any of: +# algol, algol_nu, autumn, borland, bw, colorful, default, emacs, friendly, +# fruity, igor, lovelace, manni, monokai, murphy, native, paraiso-dark, +# paraiso-light, pastie, perldoc, rrt, tango, trac, vim, vs, xcode +# This list MAY be incomplete since pygments adds styles every now and then. +# Check with list(pygments.styles.get_all_styles()) in an interpreter. +# +# CODE_COLOR_SCHEME = 'default' + +# FAVICONS contains (name, file, size) tuples. +# Used to create favicon link like this: +# +# FAVICONS = ( +# ("icon", "/favicon.ico", "16x16"), +# ("icon", "/icon_128x128.png", "128x128"), +# ) + +# Show teasers (instead of full posts) in indexes? Defaults to False. +# INDEX_TEASERS = False + +# HTML fragments with the Read more... links. +# 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. +# {reading_time} An estimate of how long it will take to read the post. +# {remaining_reading_time} An estimate of how long it will take to read the post, sans the teaser. +# {min_remaining_read} The string “{remaining_reading_time} min remaining to read” in the current language. +# {paragraph_count} The amount of paragraphs in the post. +# {remaining_paragraph_count} The amount of paragraphs in the post, sans the teaser. +# {post_title} The title of the post. +# {{ A literal { (U+007B LEFT CURLY BRACKET) +# }} A literal } (U+007D RIGHT CURLY BRACKET) + +# 'Read more...' for the index page, if INDEX_TEASERS is True (translatable) +INDEX_READ_MORE_LINK = '

{read_more}…

' +# 'Read more...' for the feeds, if FEED_TEASERS is True (translatable) +FEED_READ_MORE_LINK = '

{read_more}… ({min_remaining_read})

' + +# Append a URL query to the FEED_READ_MORE_LINK in Atom and RSS feeds. Advanced +# option used for traffic source tracking. +# Minimum example for use with Piwik: "pk_campaign=feed" +# The following tags exist and are replaced for you: +# {feedRelUri} A relative link to the feed. +# {feedFormat} The name of the syndication format. +# Example using replacement for use with Google Analytics: +# "utm_source={feedRelUri}&utm_medium=nikola_feed&utm_campaign={feedFormat}_feed" +FEED_LINKS_APPEND_QUERY = False + +# A HTML fragment describing the license, for the sidebar. +# (translatable) +LICENSE = "" +# I recommend using the Creative Commons' wizard: +# https://creativecommons.org/choose/ +# LICENSE = """ +# +# Creative Commons License BY-NC-SA""" + +# A small copyright notice for the page footer (in HTML). +# (translatable) +CONTENT_FOOTER = 'Contents © {date} {author} - Powered by Nikola {license}' + +# Things that will be passed to CONTENT_FOOTER.format(). This is done +# for translatability, as dicts are not formattable. Nikola will +# intelligently format the setting properly. +# The setting takes a dict. The keys are languages. The values are +# tuples of tuples of positional arguments and dicts of keyword arguments +# to format(). For example, {'en': (('Hello'), {'target': 'World'})} +# results in CONTENT_FOOTER['en'].format('Hello', target='World'). +# If you need to use the literal braces '{' and '}' in your footer text, use +# '{{' and '}}' to escape them (str.format is used) +# WARNING: If you do not use multiple languages with CONTENT_FOOTER, this +# still needs to be a dict of this format. (it can be empty if you +# do not need formatting) +# (translatable) +CONTENT_FOOTER_FORMATS = { + DEFAULT_LANG: ( + (), + { + "email": BLOG_EMAIL, + "author": BLOG_AUTHOR, + "date": time.gmtime().tm_year, + "license": LICENSE + } + ) +} + +# A simple copyright tag for inclusion in RSS feeds that works just +# like CONTENT_FOOTER and CONTENT_FOOTER_FORMATS +RSS_COPYRIGHT = 'Contents © {date} {author} {license}' +RSS_COPYRIGHT_PLAIN = 'Contents © {date} {author} {license}' +RSS_COPYRIGHT_FORMATS = CONTENT_FOOTER_FORMATS + +# To use comments, you can choose between different third party comment +# systems. The following comment systems are supported by Nikola: +# disqus, facebook, intensedebate, isso, muut, commento +# You can leave this option blank to disable comments. +COMMENT_SYSTEM = "" +# 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 = "" + +# Create index.html for page folders? +# WARNING: if a page would conflict with the index file (usually +# caused by setting slug to `index`), the PAGE_INDEX +# will not be generated for that directory. +# PAGE_INDEX = False +# Enable comments on pages (i.e. not posts)? +# COMMENTS_IN_PAGES = 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) +STRIP_INDEXES = True + +# List of files relative to the server root (!) that will be asked to be excluded +# from indexing and other robotic spidering. * is supported. Will only be effective +# if SITE_URL points to server root. The list is used to exclude resources from +# /robots.txt and /sitemap.xml, and to inform search engines about /sitemapindex.xml. +# ROBOTS_EXCLUSIONS = ["/archive.html", "/category/*.html"] + +# Instead of putting files in .html, put them in /index.html. +# No web server configuration is required. 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 (not pages!) by default +# SCHEDULE_ALL = False + +# Do you want a add a Mathjax config file? +# MATHJAX_CONFIG = "" + +# If you want support for the $.$ syntax (which may conflict with running +# text!), just use this config: +# MATHJAX_CONFIG = """ +# +# """ + +# Want to use KaTeX instead of MathJax? While KaTeX may not support every +# feature yet, it's faster and the output looks better. +# USE_KATEX = False + +# KaTeX auto-render settings. If you want support for the $.$ syntax (which may +# conflict with running text!), just use this config: +# KATEX_AUTO_RENDER = """ +# delimiters: [ +# {left: "$$", right: "$$", display: true}, +# {left: "\\\\[", right: "\\\\]", display: true}, +# {left: "\\\\begin{equation*}", right: "\\\\end{equation*}", display: true}, +# {left: "$", right: "$", display: false}, +# {left: "\\\\(", right: "\\\\)", display: false} +# ] +# """ + +# Do you want to customize the nbconversion of your IPython notebook? +# IPYNB_CONFIG = {} +# With the following example configuration 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 ;-) +# Note: most Nikola-specific extensions are done via the Nikola plugin system, +# with the MarkdownExtension class and should not be added here. +# Defaults are markdown.extensions.(fenced_code|codehilite|extra) +# markdown.extensions.meta is required for Markdown metadata. +MARKDOWN_EXTENSIONS = ['markdown.extensions.fenced_code', 'markdown.extensions.codehilite', 'markdown.extensions.extra'] + +# Options to be passed to markdown extensions (See https://python-markdown.github.io/reference/) +# Default is {} (no config at all) +# MARKDOWN_EXTENSION_CONFIGS = {} + + +# Extra options to pass to the pandoc command. +# by default, it's empty, is a list of strings, for example +# ['-F', 'pandoc-citeproc', '--bibliography=/Users/foo/references.bib'] +# Pandoc does not demote headers by default. To enable this, you can use, for example +# ['--base-header-level=2'] +# PANDOC_OPTIONS = [] + +# 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 (which is +# the default right now) +# (translatable) +# SOCIAL_BUTTONS_CODE = """ +# +#
+# Share +#
  • +#
  • +#
  • +#
  • +#
+#
+# +# +# """ + +# Show link to source for the posts? +# SHOW_SOURCELINK = True +# Copy the source files for your pages? +# Setting it to False implies SHOW_SOURCELINK = False +# COPY_SOURCES = True + +# Modify the number of Post per Index Page +# Defaults to 10 +# INDEX_DISPLAY_POST_COUNT = 10 + +# By default, Nikola generates RSS files for the website and for tags, and +# links to it. Set this to False to disable everything RSS-related. +# GENERATE_RSS = True + +# By default, Nikola does not generates Atom files for indexes and links to +# them. Generate Atom for tags by setting TAG_PAGES_ARE_INDEXES to True. +# Atom feeds are built based on INDEX_DISPLAY_POST_COUNT and not FEED_LENGTH +# Switch between plain-text summaries and full HTML content using the +# FEED_TEASER option. FEED_LINKS_APPEND_QUERY is also respected. Atom feeds +# are generated even for old indexes and have pagination link relations +# between each other. Old Atom feeds with no changes are marked as archived. +# GENERATE_ATOM = False + +# Only include teasers in Atom and RSS feeds. Disabling include the full +# content. Defaults to True. +# FEED_TEASERS = True + +# Strip HTML from Atom and RSS feed summaries and content. Defaults to False. +# FEED_PLAIN = False + +# Number of posts in Atom and RSS feeds. +# FEED_LENGTH = 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 + +# A search form to search this site, for the sidebar. You can use a Google +# custom search (https://www.google.com/cse/) +# Or a DuckDuckGo search: https://duckduckgo.com/search_box.html +# Default is no search form. +# (translatable) +# 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 = """ +# +# +# +# """ % SITE_URL +# +# If you prefer a Google search form, here's an example that should just work: +# SEARCH_FORM = """ +# +# +# +# """ % SITE_URL + +# Use content distribution networks for jQuery, twitter-bootstrap css and js, +# and html5shiv (for older versions of Internet Explorer) +# If this is True, jQuery and html5shiv are served from the Google CDN and +# Bootstrap is served from BootstrapCDN (provided by MaxCDN) +# Set this to False if you want to host your site without requiring access to +# external resources. +# USE_CDN = False + +# Check for USE_CDN compatibility. +# If you are using custom themes, have configured the CSS properly and are +# receiving warnings about incompatibility but believe they are incorrect, you +# can set this to False. +# USE_CDN_WARNING = True + +# Extra things you want in the pages HEAD tag. This will be added right +# before +# (translatable) +# EXTRA_HEAD_DATA = "" +# Google Analytics or whatever else you use. Added to the bottom of +# in the default template (base.tmpl). +# (translatable) +# 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\d{4}-\d{2}-\d{2})-(?P.*)-(?P.*)\.rst' +# (Note the '.*\/' in the beginning -- matches source paths relative to conf.py) +# FILE_METADATA_REGEXP = None + +# Should titles fetched from file metadata be unslugified (made prettier?) +# FILE_METADATA_UNSLUGIFY_TITLES = True + +# If enabled, extract metadata from docinfo fields in reST documents. +# If your text files start with a level 1 heading, it will be treated as the +# document title and will be removed from the text. +# USE_REST_DOCINFO_METADATA = False + +# If enabled, hide docinfo fields in reST document output +# HIDE_REST_DOCINFO = False + +# Map metadata from other formats to Nikola names. +# Supported formats: yaml, toml, rest_docinfo, markdown_metadata +# METADATA_MAPPING = {} +# +# Example for Pelican compatibility: +# METADATA_MAPPING = { +# "rest_docinfo": {"summary": "description", "modified": "updated"}, +# "markdown_metadata": {"summary": "description", "modified": "updated"} +# } +# Other examples: https://getnikola.com/handbook.html#mapping-metadata-from-other-formats + +# Map metadata between types/values. (Runs after METADATA_MAPPING.) +# Supported formats: nikola, yaml, toml, rest_docinfo, markdown_metadata +# The value on the right should be a dict of callables. +# METADATA_VALUE_MAPPING = {} +# Examples: +# METADATA_VALUE_MAPPING = { +# "yaml": {"keywords": lambda value: ', '.join(value)}, # yaml: 'keywords' list -> str +# "nikola": { +# "widgets": lambda value: value.split(', '), # nikola: 'widgets' comma-separated string -> list +# "tags": str.lower # nikola: force lowercase 'tags' (input would be string) +# } +# } + +# Additional metadata that is added to a post when creating a new_post +# ADDITIONAL_METADATA = {} + +# Nikola supports Twitter Card summaries, but they are disabled by default. +# They make it possible for you to attach media to Tweets that link +# to your content. +# +# Uncomment and modify to following lines to match your accounts. +# Images displayed come from the `previewimage` meta tag. +# You can specify the card type by using the `card` parameter in TWITTER_CARD. +# TWITTER_CARD = { +# # 'use_twitter_cards': True, # enable Twitter Cards +# # 'card': 'summary', # Card type, you can also use 'summary_large_image', +# # see https://dev.twitter.com/cards/types +# # 'site': '@website', # twitter nick for the website +# # 'creator': '@username', # Username for the content creator / author. +# } + +# Bundle JS and CSS into single files to make site loading faster in a HTTP/1.1 +# environment but is not recommended for HTTP/2.0 when caching is used. +# Defaults to True. +# USE_BUNDLES = True + +# Plugins you don't want to use. Be careful :-) +# DISABLED_PLUGINS = ["render_galleries"] + +# Special settings to disable only parts of the indexes plugin. +# Use with care. +# DISABLE_INDEXES = False +# DISABLE_MAIN_ATOM_FEED = False +# DISABLE_MAIN_RSS_FEED = False + +# Add the absolute paths to directories containing plugins to use them. +# For example, the `plugins` directory of your clone of the Nikola plugins +# repository. +# EXTRA_PLUGINS_DIRS = [] + +# Add the absolute paths to directories containing themes to use them. +# For example, the `v7` directory of your clone of the Nikola themes +# repository. +# EXTRA_THEMES_DIRS = [] + +# 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) +# Enabling hyphenation has been shown to break math support in some cases, +# use with caution. +# HYPHENATE = False + +# The <hN> tags in HTML generated by certain compilers (reST/Markdown) +# will be demoted by that much (1 → h1 will become h2 and so on) +# This was a hidden feature of the Markdown and reST compilers in the +# past. Useful especially if your post titles are in <h1> tags too, for +# example. +# (defaults to 1.) +# DEMOTE_HEADERS = 1 + +# If you don’t like slugified file names ([a-z0-9] and a literal dash), +# and would prefer to use all the characters your file system allows. +# USE WITH CARE! This is also not guaranteed to be perfect, and may +# sometimes crash Nikola, your web server, or eat your cat. +# USE_SLUGIFY = True + +# If set to True, the tags 'draft', 'mathjax' and 'private' have special +# meaning. If set to False, these tags are handled like regular tags. +USE_TAG_METADATA = False + +# If set to True, a warning is issued if one of the 'draft', 'mathjax' +# and 'private' tags are found in a post. Useful for checking that +# migration was successful. +WARN_ABOUT_TAG_METADATA = False + +# Templates will use those filters, along with the defaults. +# Consult your engine's documentation on filters if you need help defining +# those. +# TEMPLATE_FILTERS = {} + +# Put in global_context things you want available on all your templates. +# It can be anything, data, functions, modules, etc. +GLOBAL_CONTEXT = {} + +# Add functions here and they will be called with template +# GLOBAL_CONTEXT as parameter when the template is about to be +# rendered +GLOBAL_CONTEXT_FILLER = [] diff --git a/c3space.de/files/events/34C3/background.jpg b/c3space.de/files/events/34C3/background.jpg new file mode 100644 index 0000000..84fedfe Binary files /dev/null and b/c3space.de/files/events/34C3/background.jpg differ diff --git a/c3space.de/files/events/34C3/index.html b/c3space.de/files/events/34C3/index.html new file mode 100644 index 0000000..c7264e7 --- /dev/null +++ b/c3space.de/files/events/34C3/index.html @@ -0,0 +1,276 @@ +<!DOCTYPE html> +<html> +<head> + <meta charset="UTF-8"> + + <title>Chaos Space Operation Center - Assembly:CSOC + + + + + + + + + + + + + + + + + + + + + +
+
+ + +

Chaos Space Operation Center

+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Website + https://codicill.us/pad/p/1bc59d5c6ea6c786-CSOC-34C3 +
Contact + IRC: #csoc34c3 auf irc.hackint.org +

Matrix: #csoc34c3:irc.hackint.org (https://riot.im/app/#/room/%23csoc34c3:irc.hackint.org) +

+
Description + Named after the European mission control ESOC, the Chaos Space Operation Centre want to provide a space for people interested in space exploration (in a wide sense) to meet, discuss and show of projects. Please be aware, that we aim to provide a safe environment for all galactic life forms (although we are only able to provide an oxygen atmosphere). We come in peace! +
Members + INCO, Sebastian, VanillaChief +
Projects + Radio astronomy +
Self-organized Sessions + create self-organized session +
chaos competence center + Cluster:Open Infrastructure Orbit +
Tags + space, sdr, rocketscience, satellites, cubesats +
Registered on + +
Provides stage + no +
Location for self-organized sessions + maybe +
Self-organized session notes + An in depth look at the APT signal format (short talk), more will be announced soonish. +

We'd be happy to share the space for sessions with other assemblies. +

+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Orga contact + csoc@sebastians-site.de +
Brings + Antennas +

Radioequipment +SDRs +Projector and Screen +

+
Projects + +
Uses money + no money handling +
Need fibre + no +
Extra Power + {{{Extra power}}} +
Near passage + whatever +
Character of assembly + place to show and meet +
Seats needed + 18 +
Extra seats + 10 +
Aread needed + 25 +
Arrival and build up + Most of us will arrive at day 0, we won't have much of a build as we don't have any large installations. +
+
+
+

refresh +

+
+

Named after the european mission control ESOC, the Chaos Space Operation Centre want to provide a space for people interested in space exploration (in a wide sense) to meet, discuss and show of projects. +The goal is to organize bring all the different people hacking on space topics in the hacker community in place, explore existing projects and come up with new ideas to hack where no congress has hacked before. +

Please be aware, that we aim to provide a safe environment for all galactic life forms (although we are only able to provide an oxygen atmosphere). We come in peace! +

+ + +

Topics[edit]

+

This is just an incomplete list of examples, feel free to add to it +

+
  • Building a satellite
  • +
  • How to receive and decode signals from space +
    • Weather satellites: APT, HRPT, ...
    • +
    • Cubesats e.g. Flying Laptop, FunCube ...
    • +
    • radio astronomy
  • +
  • General rocket science +
    • Model/Experimental rockets
    • +
    • DIY rocket engines
    • +
    • Nerding about real rockets and how they work
  • +
  • History of space flight and exploration
+

Talks[edit]

+

We will also present talks on the Open Infra Stage. +Please refer to our flightplan for exact dates and times. +


+

+

Projects[edit]

+

List Projects that people will show off, or work on at the assembly +

+ +
  • DIY Groundstation for the Flying Latop (@ar3itrary / sebastian) +
    • Idea for an on-site project
    • +
    • Use Wifi-Antennas, cheap-chineses filters and LNAs and the rad1o to receive telemetry from the Flying Laptop
    • +
    • Maybe recruit Chaoswelle for help
+ +


+

+

Self-Organized Sessions / Workshops[edit]

+
  • How to solder for space applications (INCO) +
    • When it has to be reliable... and you are NOT in a hurry...
+
  • Interplanetary Travel Agency (INCO) +
    • Calculating & optimizing orbit trajectories accross the solar system using professional open source tools
+


+

+

Links[edit]

+ + + + + + + + + +
+
+ + + \ No newline at end of file diff --git a/c3space.de/files/events/34C3/logo.png b/c3space.de/files/events/34C3/logo.png new file mode 100644 index 0000000..a58c74c Binary files /dev/null and b/c3space.de/files/events/34C3/logo.png differ diff --git a/c3space.de/files/events/34C3/logo_favicon.ico b/c3space.de/files/events/34C3/logo_favicon.ico new file mode 100644 index 0000000..3848616 Binary files /dev/null and b/c3space.de/files/events/34C3/logo_favicon.ico differ diff --git a/c3space.de/files/events/34C3/logo_og.png b/c3space.de/files/events/34C3/logo_og.png new file mode 100644 index 0000000..c31ae55 Binary files /dev/null and b/c3space.de/files/events/34C3/logo_og.png differ diff --git a/c3space.de/files/events/34C3/normalize.css b/c3space.de/files/events/34C3/normalize.css new file mode 100644 index 0000000..18ddf7f --- /dev/null +++ b/c3space.de/files/events/34C3/normalize.css @@ -0,0 +1,419 @@ +/*! normalize.css v4.1.1 | MIT License | github.com/necolas/normalize.css */ + +/** + * 1. Change the default font family in all browsers (opinionated). + * 2. Prevent adjustments of font size after orientation changes in IE and iOS. + */ + +html { + font-family: sans-serif; /* 1 */ + -ms-text-size-adjust: 100%; /* 2 */ + -webkit-text-size-adjust: 100%; /* 2 */ +} + +/** + * Remove the margin in all browsers (opinionated). + */ + +body { + margin: 0; +} + +/* HTML5 display definitions + ========================================================================== */ + +/** + * Add the correct display in IE 9-. + * 1. Add the correct display in Edge, IE, and Firefox. + * 2. Add the correct display in IE. + */ + +article, +aside, +details, /* 1 */ +figcaption, +figure, +footer, +header, +main, /* 2 */ +menu, +nav, +section, +summary { /* 1 */ + display: block; +} + +/** + * Add the correct display in IE 9-. + */ + +audio, +canvas, +progress, +video { + display: inline-block; +} + +/** + * Add the correct display in iOS 4-7. + */ + +audio:not([controls]) { + display: none; + height: 0; +} + +/** + * Add the correct vertical alignment in Chrome, Firefox, and Opera. + */ + +progress { + vertical-align: baseline; +} + +/** + * Add the correct display in IE 10-. + * 1. Add the correct display in IE. + */ + +template, /* 1 */ +[hidden] { + display: none; +} + +/* Links + ========================================================================== */ + +/** + * 1. Remove the gray background on active links in IE 10. + * 2. Remove gaps in links underline in iOS 8+ and Safari 8+. + */ + +a { + background-color: transparent; /* 1 */ + -webkit-text-decoration-skip: objects; /* 2 */ +} + +/** + * Remove the outline on focused links when they are also active or hovered + * in all browsers (opinionated). + */ + +a:active, +a:hover { + outline-width: 0; +} + +/* Text-level semantics + ========================================================================== */ + +/** + * 1. Remove the bottom border in Firefox 39-. + * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari. + */ + +abbr[title] { + border-bottom: none; /* 1 */ + text-decoration: underline; /* 2 */ + text-decoration: underline dotted; /* 2 */ +} + +/** + * Prevent the duplicate application of `bolder` by the next rule in Safari 6. + */ + +b, +strong { + font-weight: inherit; +} + +/** + * Add the correct font weight in Chrome, Edge, and Safari. + */ + +b, +strong { + font-weight: bolder; +} + +/** + * Add the correct font style in Android 4.3-. + */ + +dfn { + font-style: italic; +} + +/** + * Correct the font size and margin on `h1` elements within `section` and + * `article` contexts in Chrome, Firefox, and Safari. + */ + +h1 { + font-size: 2em; + margin: 0.67em 0; +} + +/** + * Add the correct background and color in IE 9-. + */ + +mark { + background-color: #ff0; + color: #000; +} + +/** + * Add the correct font size in all browsers. + */ + +small { + font-size: 80%; +} + +/** + * Prevent `sub` and `sup` elements from affecting the line height in + * all browsers. + */ + +sub, +sup { + font-size: 75%; + line-height: 0; + position: relative; + vertical-align: baseline; +} + +sub { + bottom: -0.25em; +} + +sup { + top: -0.5em; +} + +/* Embedded content + ========================================================================== */ + +/** + * Remove the border on images inside links in IE 10-. + */ + +img { + border-style: none; +} + +/** + * Hide the overflow in IE. + */ + +svg:not(:root) { + overflow: hidden; +} + +/* Grouping content + ========================================================================== */ + +/** + * 1. Correct the inheritance and scaling of font size in all browsers. + * 2. Correct the odd `em` font sizing in all browsers. + */ + +code, +kbd, +pre, +samp { + font-family: monospace, monospace; /* 1 */ + font-size: 1em; /* 2 */ +} + +/** + * Add the correct margin in IE 8. + */ + +figure { + margin: 1em 40px; +} + +/** + * 1. Add the correct box sizing in Firefox. + * 2. Show the overflow in Edge and IE. + */ + +hr { + box-sizing: content-box; /* 1 */ + height: 0; /* 1 */ + overflow: visible; /* 2 */ +} + +/* Forms + ========================================================================== */ + +/** + * 1. Change font properties to `inherit` in all browsers (opinionated). + * 2. Remove the margin in Firefox and Safari. + */ + +button, +input, +select, +textarea { + font: inherit; /* 1 */ + margin: 0; /* 2 */ +} + +/** + * Restore the font weight unset by the previous rule. + */ + +optgroup { + font-weight: bold; +} + +/** + * Show the overflow in IE. + * 1. Show the overflow in Edge. + */ + +button, +input { /* 1 */ + overflow: visible; +} + +/** + * Remove the inheritance of text transform in Edge, Firefox, and IE. + * 1. Remove the inheritance of text transform in Firefox. + */ + +button, +select { /* 1 */ + text-transform: none; +} + +/** + * 1. Prevent a WebKit bug where (2) destroys native `audio` and `video` + * controls in Android 4. + * 2. Correct the inability to style clickable types in iOS and Safari. + */ + +button, +html [type="button"], /* 1 */ +[type="reset"], +[type="submit"] { + -webkit-appearance: button; /* 2 */ +} + +/** + * Remove the inner border and padding in Firefox. + */ + +button::-moz-focus-inner, +[type="button"]::-moz-focus-inner, +[type="reset"]::-moz-focus-inner, +[type="submit"]::-moz-focus-inner { + border-style: none; + padding: 0; +} + +/** + * Restore the focus styles unset by the previous rule. + */ + +button:-moz-focusring, +[type="button"]:-moz-focusring, +[type="reset"]:-moz-focusring, +[type="submit"]:-moz-focusring { + outline: 1px dotted ButtonText; +} + +/** + * Change the border, margin, and padding in all browsers (opinionated). + */ + +fieldset { + border: 1px solid #c0c0c0; + margin: 0 2px; + padding: 0.35em 0.625em 0.75em; +} + +/** + * 1. Correct the text wrapping in Edge and IE. + * 2. Correct the color inheritance from `fieldset` elements in IE. + * 3. Remove the padding so developers are not caught out when they zero out + * `fieldset` elements in all browsers. + */ + +legend { + box-sizing: border-box; /* 1 */ + color: inherit; /* 2 */ + display: table; /* 1 */ + max-width: 100%; /* 1 */ + padding: 0; /* 3 */ + white-space: normal; /* 1 */ +} + +/** + * Remove the default vertical scrollbar in IE. + */ + +textarea { + overflow: auto; +} + +/** + * 1. Add the correct box sizing in IE 10-. + * 2. Remove the padding in IE 10-. + */ + +[type="checkbox"], +[type="radio"] { + box-sizing: border-box; /* 1 */ + padding: 0; /* 2 */ +} + +/** + * Correct the cursor style of increment and decrement buttons in Chrome. + */ + +[type="number"]::-webkit-inner-spin-button, +[type="number"]::-webkit-outer-spin-button { + height: auto; +} + +/** + * 1. Correct the odd appearance in Chrome and Safari. + * 2. Correct the outline style in Safari. + */ + +[type="search"] { + -webkit-appearance: textfield; /* 1 */ + outline-offset: -2px; /* 2 */ +} + +/** + * Remove the inner padding and cancel buttons in Chrome and Safari on OS X. + */ + +[type="search"]::-webkit-search-cancel-button, +[type="search"]::-webkit-search-decoration { + -webkit-appearance: none; +} + +/** + * Correct the text style of placeholders in Chrome, Edge, and Safari. + */ + +::-webkit-input-placeholder { + color: inherit; + opacity: 0.54; +} + +/** + * 1. Correct the inability to style clickable types in iOS and Safari. + * 2. Change font properties to `inherit` in Safari. + */ + +::-webkit-file-upload-button { + -webkit-appearance: button; /* 1 */ + font: inherit; /* 2 */ +} diff --git a/c3space.de/files/events/34C3/schedule.html b/c3space.de/files/events/34C3/schedule.html new file mode 100644 index 0000000..6e404c8 --- /dev/null +++ b/c3space.de/files/events/34C3/schedule.html @@ -0,0 +1,123 @@ + + + + + + Chaos Space Operation Center - Flightplan + + + + + + + + + + + + + + + + + + + + + +
+
+ + +

Chaos Space Operation Center

+

Flightplan

+ + +
+

T-Minus Zero

+ + The first days in the life of the "Flying Laptop" satellite
+ + + Day 1 - 20:00 (00:45) :: Open Infra Stage
+ INCO +
+ +
+ +
+

Nuclear Power in Space

+ + + Day 1 - 21:00 (00:45) :: Open Infra Stage
+ TP1024 +
+ +
+ +
+

SatNOGS hands-on

+ + Operating a global ground station network
+ + + Day 2 - 13:00 (01:00) :: Open Infra Stage
+ Nikos Roussos, Pierros Papadeas +
+ +
+ +
+

An in depth look at APT signals

+ + + Day 3 - 15:00 (00:45) :: Open Infra Stage
+ ar3itrary +
+ +
+ +
+

In Elon we trust?

+ + A look into NewSpace beyond SpaceX
+ + + Day 3 - 16:00 (00:45) :: Open Infra Stage
+ VanillaChief +
+ +
+ +
+

Can Helium-3 save our ass?

+ + + Day 3 - 17:30 (00:45) :: Open Infra Stage
+ TP1024 +
+ +
+ +
+

Soldering your Spaceship

+ + Introduction to soldering techniques for space applications
+ + + Day 3 - 16:30 (02:30) :: Workshop Area
+ INCO +
+ +
+ + + + +
+
+ + + \ No newline at end of file diff --git a/c3space.de/files/events/34C3/source-code-pro/EOT/SourceCodePro-Black.eot b/c3space.de/files/events/34C3/source-code-pro/EOT/SourceCodePro-Black.eot new file mode 100644 index 0000000..570ee1b Binary files /dev/null and b/c3space.de/files/events/34C3/source-code-pro/EOT/SourceCodePro-Black.eot differ diff --git a/c3space.de/files/events/34C3/source-code-pro/EOT/SourceCodePro-BlackIt.eot b/c3space.de/files/events/34C3/source-code-pro/EOT/SourceCodePro-BlackIt.eot new file mode 100644 index 0000000..fb2cae7 Binary files /dev/null and b/c3space.de/files/events/34C3/source-code-pro/EOT/SourceCodePro-BlackIt.eot differ diff --git a/c3space.de/files/events/34C3/source-code-pro/EOT/SourceCodePro-Bold.eot b/c3space.de/files/events/34C3/source-code-pro/EOT/SourceCodePro-Bold.eot new file mode 100644 index 0000000..d24cc39 Binary files /dev/null and b/c3space.de/files/events/34C3/source-code-pro/EOT/SourceCodePro-Bold.eot differ diff --git a/c3space.de/files/events/34C3/source-code-pro/EOT/SourceCodePro-BoldIt.eot b/c3space.de/files/events/34C3/source-code-pro/EOT/SourceCodePro-BoldIt.eot new file mode 100644 index 0000000..dba94c6 Binary files /dev/null and b/c3space.de/files/events/34C3/source-code-pro/EOT/SourceCodePro-BoldIt.eot differ diff --git a/c3space.de/files/events/34C3/source-code-pro/EOT/SourceCodePro-ExtraLight.eot b/c3space.de/files/events/34C3/source-code-pro/EOT/SourceCodePro-ExtraLight.eot new file mode 100644 index 0000000..8852705 Binary files /dev/null and b/c3space.de/files/events/34C3/source-code-pro/EOT/SourceCodePro-ExtraLight.eot differ diff --git a/c3space.de/files/events/34C3/source-code-pro/EOT/SourceCodePro-ExtraLightIt.eot b/c3space.de/files/events/34C3/source-code-pro/EOT/SourceCodePro-ExtraLightIt.eot new file mode 100644 index 0000000..9e208da Binary files /dev/null and b/c3space.de/files/events/34C3/source-code-pro/EOT/SourceCodePro-ExtraLightIt.eot differ diff --git a/c3space.de/files/events/34C3/source-code-pro/EOT/SourceCodePro-It.eot b/c3space.de/files/events/34C3/source-code-pro/EOT/SourceCodePro-It.eot new file mode 100644 index 0000000..cb4a8f6 Binary files /dev/null and b/c3space.de/files/events/34C3/source-code-pro/EOT/SourceCodePro-It.eot differ diff --git a/c3space.de/files/events/34C3/source-code-pro/EOT/SourceCodePro-Light.eot b/c3space.de/files/events/34C3/source-code-pro/EOT/SourceCodePro-Light.eot new file mode 100644 index 0000000..d9b4eb9 Binary files /dev/null and b/c3space.de/files/events/34C3/source-code-pro/EOT/SourceCodePro-Light.eot differ diff --git a/c3space.de/files/events/34C3/source-code-pro/EOT/SourceCodePro-LightIt.eot b/c3space.de/files/events/34C3/source-code-pro/EOT/SourceCodePro-LightIt.eot new file mode 100644 index 0000000..a7c5ce0 Binary files /dev/null and b/c3space.de/files/events/34C3/source-code-pro/EOT/SourceCodePro-LightIt.eot differ diff --git a/c3space.de/files/events/34C3/source-code-pro/EOT/SourceCodePro-Medium.eot b/c3space.de/files/events/34C3/source-code-pro/EOT/SourceCodePro-Medium.eot new file mode 100644 index 0000000..2388fa2 Binary files /dev/null and b/c3space.de/files/events/34C3/source-code-pro/EOT/SourceCodePro-Medium.eot differ diff --git a/c3space.de/files/events/34C3/source-code-pro/EOT/SourceCodePro-MediumIt.eot b/c3space.de/files/events/34C3/source-code-pro/EOT/SourceCodePro-MediumIt.eot new file mode 100644 index 0000000..c844f91 Binary files /dev/null and b/c3space.de/files/events/34C3/source-code-pro/EOT/SourceCodePro-MediumIt.eot differ diff --git a/c3space.de/files/events/34C3/source-code-pro/EOT/SourceCodePro-Regular.eot b/c3space.de/files/events/34C3/source-code-pro/EOT/SourceCodePro-Regular.eot new file mode 100644 index 0000000..09e9473 Binary files /dev/null and b/c3space.de/files/events/34C3/source-code-pro/EOT/SourceCodePro-Regular.eot differ diff --git a/c3space.de/files/events/34C3/source-code-pro/EOT/SourceCodePro-Semibold.eot b/c3space.de/files/events/34C3/source-code-pro/EOT/SourceCodePro-Semibold.eot new file mode 100644 index 0000000..0c35176 Binary files /dev/null and b/c3space.de/files/events/34C3/source-code-pro/EOT/SourceCodePro-Semibold.eot differ diff --git a/c3space.de/files/events/34C3/source-code-pro/EOT/SourceCodePro-SemiboldIt.eot b/c3space.de/files/events/34C3/source-code-pro/EOT/SourceCodePro-SemiboldIt.eot new file mode 100644 index 0000000..bfcbe6f Binary files /dev/null and b/c3space.de/files/events/34C3/source-code-pro/EOT/SourceCodePro-SemiboldIt.eot differ diff --git a/c3space.de/files/events/34C3/source-code-pro/LICENSE.txt b/c3space.de/files/events/34C3/source-code-pro/LICENSE.txt new file mode 100755 index 0000000..d154618 --- /dev/null +++ b/c3space.de/files/events/34C3/source-code-pro/LICENSE.txt @@ -0,0 +1,93 @@ +Copyright 2010, 2012 Adobe Systems Incorporated (http://www.adobe.com/), with Reserved Font Name 'Source'. All Rights Reserved. Source is a trademark of Adobe Systems Incorporated in the United States and/or other countries. + +This Font Software is licensed under the SIL Open Font License, Version 1.1. + +This license is copied below, and is also available with a FAQ at: http://scripts.sil.org/OFL + + +----------------------------------------------------------- +SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007 +----------------------------------------------------------- + +PREAMBLE +The goals of the Open Font License (OFL) are to stimulate worldwide +development of collaborative font projects, to support the font creation +efforts of academic and linguistic communities, and to provide a free and +open framework in which fonts may be shared and improved in partnership +with others. + +The OFL allows the licensed fonts to be used, studied, modified and +redistributed freely as long as they are not sold by themselves. The +fonts, including any derivative works, can be bundled, embedded, +redistributed and/or sold with any software provided that any reserved +names are not used by derivative works. The fonts and derivatives, +however, cannot be released under any other type of license. The +requirement for fonts to remain under this license does not apply +to any document created using the fonts or their derivatives. + +DEFINITIONS +"Font Software" refers to the set of files released by the Copyright +Holder(s) under this license and clearly marked as such. This may +include source files, build scripts and documentation. + +"Reserved Font Name" refers to any names specified as such after the +copyright statement(s). + +"Original Version" refers to the collection of Font Software components as +distributed by the Copyright Holder(s). + +"Modified Version" refers to any derivative made by adding to, deleting, +or substituting -- in part or in whole -- any of the components of the +Original Version, by changing formats or by porting the Font Software to a +new environment. + +"Author" refers to any designer, engineer, programmer, technical +writer or other person who contributed to the Font Software. + +PERMISSION & CONDITIONS +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Font Software, to use, study, copy, merge, embed, modify, +redistribute, and sell modified and unmodified copies of the Font +Software, subject to the following conditions: + +1) Neither the Font Software nor any of its individual components, +in Original or Modified Versions, may be sold by itself. + +2) Original or Modified Versions of the Font Software may be bundled, +redistributed and/or sold with any software, provided that each copy +contains the above copyright notice and this license. These can be +included either as stand-alone text files, human-readable headers or +in the appropriate machine-readable metadata fields within text or +binary files as long as those fields can be easily viewed by the user. + +3) No Modified Version of the Font Software may use the Reserved Font +Name(s) unless explicit written permission is granted by the corresponding +Copyright Holder. This restriction only applies to the primary font name as +presented to the users. + +4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font +Software shall not be used to promote, endorse or advertise any +Modified Version, except to acknowledge the contribution(s) of the +Copyright Holder(s) and the Author(s) or with their explicit written +permission. + +5) The Font Software, modified or unmodified, in part or in whole, +must be distributed entirely under this license, and must not be +distributed under any other license. The requirement for fonts to +remain under this license does not apply to any document created +using the Font Software. + +TERMINATION +This license becomes null and void if any of the above conditions are +not met. + +DISCLAIMER +THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT +OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE +COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, +INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL +DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING +FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM +OTHER DEALINGS IN THE FONT SOFTWARE. diff --git a/c3space.de/files/events/34C3/source-code-pro/OTF/SourceCodePro-Black.otf b/c3space.de/files/events/34C3/source-code-pro/OTF/SourceCodePro-Black.otf new file mode 100644 index 0000000..bbbbf64 Binary files /dev/null and b/c3space.de/files/events/34C3/source-code-pro/OTF/SourceCodePro-Black.otf differ diff --git a/c3space.de/files/events/34C3/source-code-pro/OTF/SourceCodePro-BlackIt.otf b/c3space.de/files/events/34C3/source-code-pro/OTF/SourceCodePro-BlackIt.otf new file mode 100644 index 0000000..9835c17 Binary files /dev/null and b/c3space.de/files/events/34C3/source-code-pro/OTF/SourceCodePro-BlackIt.otf differ diff --git a/c3space.de/files/events/34C3/source-code-pro/OTF/SourceCodePro-Bold.otf b/c3space.de/files/events/34C3/source-code-pro/OTF/SourceCodePro-Bold.otf new file mode 100644 index 0000000..f4e576c Binary files /dev/null and b/c3space.de/files/events/34C3/source-code-pro/OTF/SourceCodePro-Bold.otf differ diff --git a/c3space.de/files/events/34C3/source-code-pro/OTF/SourceCodePro-BoldIt.otf b/c3space.de/files/events/34C3/source-code-pro/OTF/SourceCodePro-BoldIt.otf new file mode 100644 index 0000000..681a937 Binary files /dev/null and b/c3space.de/files/events/34C3/source-code-pro/OTF/SourceCodePro-BoldIt.otf differ diff --git a/c3space.de/files/events/34C3/source-code-pro/OTF/SourceCodePro-ExtraLight.otf b/c3space.de/files/events/34C3/source-code-pro/OTF/SourceCodePro-ExtraLight.otf new file mode 100644 index 0000000..de41f8b Binary files /dev/null and b/c3space.de/files/events/34C3/source-code-pro/OTF/SourceCodePro-ExtraLight.otf differ diff --git a/c3space.de/files/events/34C3/source-code-pro/OTF/SourceCodePro-ExtraLightIt.otf b/c3space.de/files/events/34C3/source-code-pro/OTF/SourceCodePro-ExtraLightIt.otf new file mode 100644 index 0000000..49813d0 Binary files /dev/null and b/c3space.de/files/events/34C3/source-code-pro/OTF/SourceCodePro-ExtraLightIt.otf differ diff --git a/c3space.de/files/events/34C3/source-code-pro/OTF/SourceCodePro-It.otf b/c3space.de/files/events/34C3/source-code-pro/OTF/SourceCodePro-It.otf new file mode 100644 index 0000000..0ab9eea Binary files /dev/null and b/c3space.de/files/events/34C3/source-code-pro/OTF/SourceCodePro-It.otf differ diff --git a/c3space.de/files/events/34C3/source-code-pro/OTF/SourceCodePro-Light.otf b/c3space.de/files/events/34C3/source-code-pro/OTF/SourceCodePro-Light.otf new file mode 100644 index 0000000..834a29b Binary files /dev/null and b/c3space.de/files/events/34C3/source-code-pro/OTF/SourceCodePro-Light.otf differ diff --git a/c3space.de/files/events/34C3/source-code-pro/OTF/SourceCodePro-LightIt.otf b/c3space.de/files/events/34C3/source-code-pro/OTF/SourceCodePro-LightIt.otf new file mode 100644 index 0000000..cd833d2 Binary files /dev/null and b/c3space.de/files/events/34C3/source-code-pro/OTF/SourceCodePro-LightIt.otf differ diff --git a/c3space.de/files/events/34C3/source-code-pro/OTF/SourceCodePro-Medium.otf b/c3space.de/files/events/34C3/source-code-pro/OTF/SourceCodePro-Medium.otf new file mode 100644 index 0000000..c5dddda Binary files /dev/null and b/c3space.de/files/events/34C3/source-code-pro/OTF/SourceCodePro-Medium.otf differ diff --git a/c3space.de/files/events/34C3/source-code-pro/OTF/SourceCodePro-MediumIt.otf b/c3space.de/files/events/34C3/source-code-pro/OTF/SourceCodePro-MediumIt.otf new file mode 100644 index 0000000..77cd5da Binary files /dev/null and b/c3space.de/files/events/34C3/source-code-pro/OTF/SourceCodePro-MediumIt.otf differ diff --git a/c3space.de/files/events/34C3/source-code-pro/OTF/SourceCodePro-Regular.otf b/c3space.de/files/events/34C3/source-code-pro/OTF/SourceCodePro-Regular.otf new file mode 100644 index 0000000..4e3b9d0 Binary files /dev/null and b/c3space.de/files/events/34C3/source-code-pro/OTF/SourceCodePro-Regular.otf differ diff --git a/c3space.de/files/events/34C3/source-code-pro/OTF/SourceCodePro-Semibold.otf b/c3space.de/files/events/34C3/source-code-pro/OTF/SourceCodePro-Semibold.otf new file mode 100644 index 0000000..2c4b5b4 Binary files /dev/null and b/c3space.de/files/events/34C3/source-code-pro/OTF/SourceCodePro-Semibold.otf differ diff --git a/c3space.de/files/events/34C3/source-code-pro/OTF/SourceCodePro-SemiboldIt.otf b/c3space.de/files/events/34C3/source-code-pro/OTF/SourceCodePro-SemiboldIt.otf new file mode 100644 index 0000000..cb064e7 Binary files /dev/null and b/c3space.de/files/events/34C3/source-code-pro/OTF/SourceCodePro-SemiboldIt.otf differ diff --git a/c3space.de/files/events/34C3/source-code-pro/README.md b/c3space.de/files/events/34C3/source-code-pro/README.md new file mode 100644 index 0000000..20be1f3 --- /dev/null +++ b/c3space.de/files/events/34C3/source-code-pro/README.md @@ -0,0 +1,20 @@ +# Source Code Pro + +Source Code Pro is a set of OpenType fonts that have been designed to work well +in user interface (UI) environments. In addition to a functional OpenType font, this open +source project provides all of the source files that were used to build this OpenType font +by using the AFDKO makeotf tool. + +## Font installation instructions + +* [Mac OS X](http://support.apple.com/kb/HT2509) +* [Windows](http://windows.microsoft.com/en-us/windows-vista/install-or-uninstall-fonts) +* [Linux/Unix-based systems](https://github.com/adobe-fonts/source-code-pro/issues/17#issuecomment-8967116) + +## Getting Involved + +Send suggestions for changes to the Source Code OpenType font project maintainer, [Paul D. Hunt](mailto:opensourcefonts@adobe.com?subject=[GitHub] Source Code Pro), for consideration. + +## Further information + +For information about the design and background of Source Code, please refer to the [official font readme file](http://www.adobe.com/products/type/font-information/source-code-pro-readme.html). diff --git a/c3space.de/files/events/34C3/source-code-pro/TTF/SourceCodePro-Black.ttf b/c3space.de/files/events/34C3/source-code-pro/TTF/SourceCodePro-Black.ttf new file mode 100644 index 0000000..844d283 Binary files /dev/null and b/c3space.de/files/events/34C3/source-code-pro/TTF/SourceCodePro-Black.ttf differ diff --git a/c3space.de/files/events/34C3/source-code-pro/TTF/SourceCodePro-BlackIt.ttf b/c3space.de/files/events/34C3/source-code-pro/TTF/SourceCodePro-BlackIt.ttf new file mode 100644 index 0000000..79931f1 Binary files /dev/null and b/c3space.de/files/events/34C3/source-code-pro/TTF/SourceCodePro-BlackIt.ttf differ diff --git a/c3space.de/files/events/34C3/source-code-pro/TTF/SourceCodePro-Bold.ttf b/c3space.de/files/events/34C3/source-code-pro/TTF/SourceCodePro-Bold.ttf new file mode 100644 index 0000000..e0c576f Binary files /dev/null and b/c3space.de/files/events/34C3/source-code-pro/TTF/SourceCodePro-Bold.ttf differ diff --git a/c3space.de/files/events/34C3/source-code-pro/TTF/SourceCodePro-BoldIt.ttf b/c3space.de/files/events/34C3/source-code-pro/TTF/SourceCodePro-BoldIt.ttf new file mode 100644 index 0000000..9a4010d Binary files /dev/null and b/c3space.de/files/events/34C3/source-code-pro/TTF/SourceCodePro-BoldIt.ttf differ diff --git a/c3space.de/files/events/34C3/source-code-pro/TTF/SourceCodePro-ExtraLight.ttf b/c3space.de/files/events/34C3/source-code-pro/TTF/SourceCodePro-ExtraLight.ttf new file mode 100644 index 0000000..cc27695 Binary files /dev/null and b/c3space.de/files/events/34C3/source-code-pro/TTF/SourceCodePro-ExtraLight.ttf differ diff --git a/c3space.de/files/events/34C3/source-code-pro/TTF/SourceCodePro-ExtraLightIt.ttf b/c3space.de/files/events/34C3/source-code-pro/TTF/SourceCodePro-ExtraLightIt.ttf new file mode 100644 index 0000000..3791b37 Binary files /dev/null and b/c3space.de/files/events/34C3/source-code-pro/TTF/SourceCodePro-ExtraLightIt.ttf differ diff --git a/c3space.de/files/events/34C3/source-code-pro/TTF/SourceCodePro-It.ttf b/c3space.de/files/events/34C3/source-code-pro/TTF/SourceCodePro-It.ttf new file mode 100644 index 0000000..e7f1541 Binary files /dev/null and b/c3space.de/files/events/34C3/source-code-pro/TTF/SourceCodePro-It.ttf differ diff --git a/c3space.de/files/events/34C3/source-code-pro/TTF/SourceCodePro-Light.ttf b/c3space.de/files/events/34C3/source-code-pro/TTF/SourceCodePro-Light.ttf new file mode 100644 index 0000000..f08bf6c Binary files /dev/null and b/c3space.de/files/events/34C3/source-code-pro/TTF/SourceCodePro-Light.ttf differ diff --git a/c3space.de/files/events/34C3/source-code-pro/TTF/SourceCodePro-LightIt.ttf b/c3space.de/files/events/34C3/source-code-pro/TTF/SourceCodePro-LightIt.ttf new file mode 100644 index 0000000..a491684 Binary files /dev/null and b/c3space.de/files/events/34C3/source-code-pro/TTF/SourceCodePro-LightIt.ttf differ diff --git a/c3space.de/files/events/34C3/source-code-pro/TTF/SourceCodePro-Medium.ttf b/c3space.de/files/events/34C3/source-code-pro/TTF/SourceCodePro-Medium.ttf new file mode 100644 index 0000000..d2c5dd8 Binary files /dev/null and b/c3space.de/files/events/34C3/source-code-pro/TTF/SourceCodePro-Medium.ttf differ diff --git a/c3space.de/files/events/34C3/source-code-pro/TTF/SourceCodePro-MediumIt.ttf b/c3space.de/files/events/34C3/source-code-pro/TTF/SourceCodePro-MediumIt.ttf new file mode 100644 index 0000000..5c02c02 Binary files /dev/null and b/c3space.de/files/events/34C3/source-code-pro/TTF/SourceCodePro-MediumIt.ttf differ diff --git a/c3space.de/files/events/34C3/source-code-pro/TTF/SourceCodePro-Regular.ttf b/c3space.de/files/events/34C3/source-code-pro/TTF/SourceCodePro-Regular.ttf new file mode 100644 index 0000000..437f472 Binary files /dev/null and b/c3space.de/files/events/34C3/source-code-pro/TTF/SourceCodePro-Regular.ttf differ diff --git a/c3space.de/files/events/34C3/source-code-pro/TTF/SourceCodePro-Semibold.ttf b/c3space.de/files/events/34C3/source-code-pro/TTF/SourceCodePro-Semibold.ttf new file mode 100644 index 0000000..f1eab99 Binary files /dev/null and b/c3space.de/files/events/34C3/source-code-pro/TTF/SourceCodePro-Semibold.ttf differ diff --git a/c3space.de/files/events/34C3/source-code-pro/TTF/SourceCodePro-SemiboldIt.ttf b/c3space.de/files/events/34C3/source-code-pro/TTF/SourceCodePro-SemiboldIt.ttf new file mode 100644 index 0000000..c4d2a04 Binary files /dev/null and b/c3space.de/files/events/34C3/source-code-pro/TTF/SourceCodePro-SemiboldIt.ttf differ diff --git a/c3space.de/files/events/34C3/source-code-pro/WOFF/OTF/SourceCodePro-Black.otf.woff b/c3space.de/files/events/34C3/source-code-pro/WOFF/OTF/SourceCodePro-Black.otf.woff new file mode 100644 index 0000000..d08a984 Binary files /dev/null and b/c3space.de/files/events/34C3/source-code-pro/WOFF/OTF/SourceCodePro-Black.otf.woff differ diff --git a/c3space.de/files/events/34C3/source-code-pro/WOFF/OTF/SourceCodePro-BlackIt.otf.woff b/c3space.de/files/events/34C3/source-code-pro/WOFF/OTF/SourceCodePro-BlackIt.otf.woff new file mode 100644 index 0000000..1061185 Binary files /dev/null and b/c3space.de/files/events/34C3/source-code-pro/WOFF/OTF/SourceCodePro-BlackIt.otf.woff differ diff --git a/c3space.de/files/events/34C3/source-code-pro/WOFF/OTF/SourceCodePro-Bold.otf.woff b/c3space.de/files/events/34C3/source-code-pro/WOFF/OTF/SourceCodePro-Bold.otf.woff new file mode 100644 index 0000000..cf96099 Binary files /dev/null and b/c3space.de/files/events/34C3/source-code-pro/WOFF/OTF/SourceCodePro-Bold.otf.woff differ diff --git a/c3space.de/files/events/34C3/source-code-pro/WOFF/OTF/SourceCodePro-BoldIt.otf.woff b/c3space.de/files/events/34C3/source-code-pro/WOFF/OTF/SourceCodePro-BoldIt.otf.woff new file mode 100644 index 0000000..e8702f9 Binary files /dev/null and b/c3space.de/files/events/34C3/source-code-pro/WOFF/OTF/SourceCodePro-BoldIt.otf.woff differ diff --git a/c3space.de/files/events/34C3/source-code-pro/WOFF/OTF/SourceCodePro-ExtraLight.otf.woff b/c3space.de/files/events/34C3/source-code-pro/WOFF/OTF/SourceCodePro-ExtraLight.otf.woff new file mode 100644 index 0000000..54e6b36 Binary files /dev/null and b/c3space.de/files/events/34C3/source-code-pro/WOFF/OTF/SourceCodePro-ExtraLight.otf.woff differ diff --git a/c3space.de/files/events/34C3/source-code-pro/WOFF/OTF/SourceCodePro-ExtraLightIt.otf.woff b/c3space.de/files/events/34C3/source-code-pro/WOFF/OTF/SourceCodePro-ExtraLightIt.otf.woff new file mode 100644 index 0000000..c57443c Binary files /dev/null and b/c3space.de/files/events/34C3/source-code-pro/WOFF/OTF/SourceCodePro-ExtraLightIt.otf.woff differ diff --git a/c3space.de/files/events/34C3/source-code-pro/WOFF/OTF/SourceCodePro-It.otf.woff b/c3space.de/files/events/34C3/source-code-pro/WOFF/OTF/SourceCodePro-It.otf.woff new file mode 100644 index 0000000..cc67c99 Binary files /dev/null and b/c3space.de/files/events/34C3/source-code-pro/WOFF/OTF/SourceCodePro-It.otf.woff differ diff --git a/c3space.de/files/events/34C3/source-code-pro/WOFF/OTF/SourceCodePro-Light.otf.woff b/c3space.de/files/events/34C3/source-code-pro/WOFF/OTF/SourceCodePro-Light.otf.woff new file mode 100644 index 0000000..c62373f Binary files /dev/null and b/c3space.de/files/events/34C3/source-code-pro/WOFF/OTF/SourceCodePro-Light.otf.woff differ diff --git a/c3space.de/files/events/34C3/source-code-pro/WOFF/OTF/SourceCodePro-LightIt.otf.woff b/c3space.de/files/events/34C3/source-code-pro/WOFF/OTF/SourceCodePro-LightIt.otf.woff new file mode 100644 index 0000000..c4cd646 Binary files /dev/null and b/c3space.de/files/events/34C3/source-code-pro/WOFF/OTF/SourceCodePro-LightIt.otf.woff differ diff --git a/c3space.de/files/events/34C3/source-code-pro/WOFF/OTF/SourceCodePro-Medium.otf.woff b/c3space.de/files/events/34C3/source-code-pro/WOFF/OTF/SourceCodePro-Medium.otf.woff new file mode 100644 index 0000000..826a854 Binary files /dev/null and b/c3space.de/files/events/34C3/source-code-pro/WOFF/OTF/SourceCodePro-Medium.otf.woff differ diff --git a/c3space.de/files/events/34C3/source-code-pro/WOFF/OTF/SourceCodePro-MediumIt.otf.woff b/c3space.de/files/events/34C3/source-code-pro/WOFF/OTF/SourceCodePro-MediumIt.otf.woff new file mode 100644 index 0000000..5c538de Binary files /dev/null and b/c3space.de/files/events/34C3/source-code-pro/WOFF/OTF/SourceCodePro-MediumIt.otf.woff differ diff --git a/c3space.de/files/events/34C3/source-code-pro/WOFF/OTF/SourceCodePro-Regular.otf.woff b/c3space.de/files/events/34C3/source-code-pro/WOFF/OTF/SourceCodePro-Regular.otf.woff new file mode 100644 index 0000000..395436e Binary files /dev/null and b/c3space.de/files/events/34C3/source-code-pro/WOFF/OTF/SourceCodePro-Regular.otf.woff differ diff --git a/c3space.de/files/events/34C3/source-code-pro/WOFF/OTF/SourceCodePro-Semibold.otf.woff b/c3space.de/files/events/34C3/source-code-pro/WOFF/OTF/SourceCodePro-Semibold.otf.woff new file mode 100644 index 0000000..83ec113 Binary files /dev/null and b/c3space.de/files/events/34C3/source-code-pro/WOFF/OTF/SourceCodePro-Semibold.otf.woff differ diff --git a/c3space.de/files/events/34C3/source-code-pro/WOFF/OTF/SourceCodePro-SemiboldIt.otf.woff b/c3space.de/files/events/34C3/source-code-pro/WOFF/OTF/SourceCodePro-SemiboldIt.otf.woff new file mode 100644 index 0000000..be0bd90 Binary files /dev/null and b/c3space.de/files/events/34C3/source-code-pro/WOFF/OTF/SourceCodePro-SemiboldIt.otf.woff differ diff --git a/c3space.de/files/events/34C3/source-code-pro/WOFF/TTF/SourceCodePro-Black.ttf.woff b/c3space.de/files/events/34C3/source-code-pro/WOFF/TTF/SourceCodePro-Black.ttf.woff new file mode 100644 index 0000000..c7f8906 Binary files /dev/null and b/c3space.de/files/events/34C3/source-code-pro/WOFF/TTF/SourceCodePro-Black.ttf.woff differ diff --git a/c3space.de/files/events/34C3/source-code-pro/WOFF/TTF/SourceCodePro-BlackIt.ttf.woff b/c3space.de/files/events/34C3/source-code-pro/WOFF/TTF/SourceCodePro-BlackIt.ttf.woff new file mode 100644 index 0000000..1c80efe Binary files /dev/null and b/c3space.de/files/events/34C3/source-code-pro/WOFF/TTF/SourceCodePro-BlackIt.ttf.woff differ diff --git a/c3space.de/files/events/34C3/source-code-pro/WOFF/TTF/SourceCodePro-Bold.ttf.woff b/c3space.de/files/events/34C3/source-code-pro/WOFF/TTF/SourceCodePro-Bold.ttf.woff new file mode 100644 index 0000000..c65ba84 Binary files /dev/null and b/c3space.de/files/events/34C3/source-code-pro/WOFF/TTF/SourceCodePro-Bold.ttf.woff differ diff --git a/c3space.de/files/events/34C3/source-code-pro/WOFF/TTF/SourceCodePro-BoldIt.ttf.woff b/c3space.de/files/events/34C3/source-code-pro/WOFF/TTF/SourceCodePro-BoldIt.ttf.woff new file mode 100644 index 0000000..6a6798a Binary files /dev/null and b/c3space.de/files/events/34C3/source-code-pro/WOFF/TTF/SourceCodePro-BoldIt.ttf.woff differ diff --git a/c3space.de/files/events/34C3/source-code-pro/WOFF/TTF/SourceCodePro-ExtraLight.ttf.woff b/c3space.de/files/events/34C3/source-code-pro/WOFF/TTF/SourceCodePro-ExtraLight.ttf.woff new file mode 100644 index 0000000..6eaab13 Binary files /dev/null and b/c3space.de/files/events/34C3/source-code-pro/WOFF/TTF/SourceCodePro-ExtraLight.ttf.woff differ diff --git a/c3space.de/files/events/34C3/source-code-pro/WOFF/TTF/SourceCodePro-ExtraLightIt.ttf.woff b/c3space.de/files/events/34C3/source-code-pro/WOFF/TTF/SourceCodePro-ExtraLightIt.ttf.woff new file mode 100644 index 0000000..466d3cb Binary files /dev/null and b/c3space.de/files/events/34C3/source-code-pro/WOFF/TTF/SourceCodePro-ExtraLightIt.ttf.woff differ diff --git a/c3space.de/files/events/34C3/source-code-pro/WOFF/TTF/SourceCodePro-It.ttf.woff b/c3space.de/files/events/34C3/source-code-pro/WOFF/TTF/SourceCodePro-It.ttf.woff new file mode 100644 index 0000000..6dca188 Binary files /dev/null and b/c3space.de/files/events/34C3/source-code-pro/WOFF/TTF/SourceCodePro-It.ttf.woff differ diff --git a/c3space.de/files/events/34C3/source-code-pro/WOFF/TTF/SourceCodePro-Light.ttf.woff b/c3space.de/files/events/34C3/source-code-pro/WOFF/TTF/SourceCodePro-Light.ttf.woff new file mode 100644 index 0000000..7750718 Binary files /dev/null and b/c3space.de/files/events/34C3/source-code-pro/WOFF/TTF/SourceCodePro-Light.ttf.woff differ diff --git a/c3space.de/files/events/34C3/source-code-pro/WOFF/TTF/SourceCodePro-LightIt.ttf.woff b/c3space.de/files/events/34C3/source-code-pro/WOFF/TTF/SourceCodePro-LightIt.ttf.woff new file mode 100644 index 0000000..a08555e Binary files /dev/null and b/c3space.de/files/events/34C3/source-code-pro/WOFF/TTF/SourceCodePro-LightIt.ttf.woff differ diff --git a/c3space.de/files/events/34C3/source-code-pro/WOFF/TTF/SourceCodePro-Medium.ttf.woff b/c3space.de/files/events/34C3/source-code-pro/WOFF/TTF/SourceCodePro-Medium.ttf.woff new file mode 100644 index 0000000..1c558ed Binary files /dev/null and b/c3space.de/files/events/34C3/source-code-pro/WOFF/TTF/SourceCodePro-Medium.ttf.woff differ diff --git a/c3space.de/files/events/34C3/source-code-pro/WOFF/TTF/SourceCodePro-MediumIt.ttf.woff b/c3space.de/files/events/34C3/source-code-pro/WOFF/TTF/SourceCodePro-MediumIt.ttf.woff new file mode 100644 index 0000000..f639924 Binary files /dev/null and b/c3space.de/files/events/34C3/source-code-pro/WOFF/TTF/SourceCodePro-MediumIt.ttf.woff differ diff --git a/c3space.de/files/events/34C3/source-code-pro/WOFF/TTF/SourceCodePro-Regular.ttf.woff b/c3space.de/files/events/34C3/source-code-pro/WOFF/TTF/SourceCodePro-Regular.ttf.woff new file mode 100644 index 0000000..0af792a Binary files /dev/null and b/c3space.de/files/events/34C3/source-code-pro/WOFF/TTF/SourceCodePro-Regular.ttf.woff differ diff --git a/c3space.de/files/events/34C3/source-code-pro/WOFF/TTF/SourceCodePro-Semibold.ttf.woff b/c3space.de/files/events/34C3/source-code-pro/WOFF/TTF/SourceCodePro-Semibold.ttf.woff new file mode 100644 index 0000000..0fbe76a Binary files /dev/null and b/c3space.de/files/events/34C3/source-code-pro/WOFF/TTF/SourceCodePro-Semibold.ttf.woff differ diff --git a/c3space.de/files/events/34C3/source-code-pro/WOFF/TTF/SourceCodePro-SemiboldIt.ttf.woff b/c3space.de/files/events/34C3/source-code-pro/WOFF/TTF/SourceCodePro-SemiboldIt.ttf.woff new file mode 100644 index 0000000..1f40de2 Binary files /dev/null and b/c3space.de/files/events/34C3/source-code-pro/WOFF/TTF/SourceCodePro-SemiboldIt.ttf.woff differ diff --git a/c3space.de/files/events/34C3/source-code-pro/WOFF2/OTF/SourceCodePro-Black.otf.woff2 b/c3space.de/files/events/34C3/source-code-pro/WOFF2/OTF/SourceCodePro-Black.otf.woff2 new file mode 100644 index 0000000..2d4acb5 Binary files /dev/null and b/c3space.de/files/events/34C3/source-code-pro/WOFF2/OTF/SourceCodePro-Black.otf.woff2 differ diff --git a/c3space.de/files/events/34C3/source-code-pro/WOFF2/OTF/SourceCodePro-BlackIt.otf.woff2 b/c3space.de/files/events/34C3/source-code-pro/WOFF2/OTF/SourceCodePro-BlackIt.otf.woff2 new file mode 100644 index 0000000..f3349d1 Binary files /dev/null and b/c3space.de/files/events/34C3/source-code-pro/WOFF2/OTF/SourceCodePro-BlackIt.otf.woff2 differ diff --git a/c3space.de/files/events/34C3/source-code-pro/WOFF2/OTF/SourceCodePro-Bold.otf.woff2 b/c3space.de/files/events/34C3/source-code-pro/WOFF2/OTF/SourceCodePro-Bold.otf.woff2 new file mode 100644 index 0000000..cbe3835 Binary files /dev/null and b/c3space.de/files/events/34C3/source-code-pro/WOFF2/OTF/SourceCodePro-Bold.otf.woff2 differ diff --git a/c3space.de/files/events/34C3/source-code-pro/WOFF2/OTF/SourceCodePro-BoldIt.otf.woff2 b/c3space.de/files/events/34C3/source-code-pro/WOFF2/OTF/SourceCodePro-BoldIt.otf.woff2 new file mode 100644 index 0000000..3b4481a Binary files /dev/null and b/c3space.de/files/events/34C3/source-code-pro/WOFF2/OTF/SourceCodePro-BoldIt.otf.woff2 differ diff --git a/c3space.de/files/events/34C3/source-code-pro/WOFF2/OTF/SourceCodePro-ExtraLight.otf.woff2 b/c3space.de/files/events/34C3/source-code-pro/WOFF2/OTF/SourceCodePro-ExtraLight.otf.woff2 new file mode 100644 index 0000000..f7a5aef Binary files /dev/null and b/c3space.de/files/events/34C3/source-code-pro/WOFF2/OTF/SourceCodePro-ExtraLight.otf.woff2 differ diff --git a/c3space.de/files/events/34C3/source-code-pro/WOFF2/OTF/SourceCodePro-ExtraLightIt.otf.woff2 b/c3space.de/files/events/34C3/source-code-pro/WOFF2/OTF/SourceCodePro-ExtraLightIt.otf.woff2 new file mode 100644 index 0000000..b4f3607 Binary files /dev/null and b/c3space.de/files/events/34C3/source-code-pro/WOFF2/OTF/SourceCodePro-ExtraLightIt.otf.woff2 differ diff --git a/c3space.de/files/events/34C3/source-code-pro/WOFF2/OTF/SourceCodePro-It.otf.woff2 b/c3space.de/files/events/34C3/source-code-pro/WOFF2/OTF/SourceCodePro-It.otf.woff2 new file mode 100644 index 0000000..74d1695 Binary files /dev/null and b/c3space.de/files/events/34C3/source-code-pro/WOFF2/OTF/SourceCodePro-It.otf.woff2 differ diff --git a/c3space.de/files/events/34C3/source-code-pro/WOFF2/OTF/SourceCodePro-Light.otf.woff2 b/c3space.de/files/events/34C3/source-code-pro/WOFF2/OTF/SourceCodePro-Light.otf.woff2 new file mode 100644 index 0000000..121eb53 Binary files /dev/null and b/c3space.de/files/events/34C3/source-code-pro/WOFF2/OTF/SourceCodePro-Light.otf.woff2 differ diff --git a/c3space.de/files/events/34C3/source-code-pro/WOFF2/OTF/SourceCodePro-LightIt.otf.woff2 b/c3space.de/files/events/34C3/source-code-pro/WOFF2/OTF/SourceCodePro-LightIt.otf.woff2 new file mode 100644 index 0000000..cc818c3 Binary files /dev/null and b/c3space.de/files/events/34C3/source-code-pro/WOFF2/OTF/SourceCodePro-LightIt.otf.woff2 differ diff --git a/c3space.de/files/events/34C3/source-code-pro/WOFF2/OTF/SourceCodePro-Medium.otf.woff2 b/c3space.de/files/events/34C3/source-code-pro/WOFF2/OTF/SourceCodePro-Medium.otf.woff2 new file mode 100644 index 0000000..961ce88 Binary files /dev/null and b/c3space.de/files/events/34C3/source-code-pro/WOFF2/OTF/SourceCodePro-Medium.otf.woff2 differ diff --git a/c3space.de/files/events/34C3/source-code-pro/WOFF2/OTF/SourceCodePro-MediumIt.otf.woff2 b/c3space.de/files/events/34C3/source-code-pro/WOFF2/OTF/SourceCodePro-MediumIt.otf.woff2 new file mode 100644 index 0000000..9385a97 Binary files /dev/null and b/c3space.de/files/events/34C3/source-code-pro/WOFF2/OTF/SourceCodePro-MediumIt.otf.woff2 differ diff --git a/c3space.de/files/events/34C3/source-code-pro/WOFF2/OTF/SourceCodePro-Regular.otf.woff2 b/c3space.de/files/events/34C3/source-code-pro/WOFF2/OTF/SourceCodePro-Regular.otf.woff2 new file mode 100644 index 0000000..65cd591 Binary files /dev/null and b/c3space.de/files/events/34C3/source-code-pro/WOFF2/OTF/SourceCodePro-Regular.otf.woff2 differ diff --git a/c3space.de/files/events/34C3/source-code-pro/WOFF2/OTF/SourceCodePro-Semibold.otf.woff2 b/c3space.de/files/events/34C3/source-code-pro/WOFF2/OTF/SourceCodePro-Semibold.otf.woff2 new file mode 100644 index 0000000..45620b1 Binary files /dev/null and b/c3space.de/files/events/34C3/source-code-pro/WOFF2/OTF/SourceCodePro-Semibold.otf.woff2 differ diff --git a/c3space.de/files/events/34C3/source-code-pro/WOFF2/OTF/SourceCodePro-SemiboldIt.otf.woff2 b/c3space.de/files/events/34C3/source-code-pro/WOFF2/OTF/SourceCodePro-SemiboldIt.otf.woff2 new file mode 100644 index 0000000..dca024c Binary files /dev/null and b/c3space.de/files/events/34C3/source-code-pro/WOFF2/OTF/SourceCodePro-SemiboldIt.otf.woff2 differ diff --git a/c3space.de/files/events/34C3/source-code-pro/WOFF2/TTF/SourceCodePro-Black.ttf.woff2 b/c3space.de/files/events/34C3/source-code-pro/WOFF2/TTF/SourceCodePro-Black.ttf.woff2 new file mode 100644 index 0000000..e01216e Binary files /dev/null and b/c3space.de/files/events/34C3/source-code-pro/WOFF2/TTF/SourceCodePro-Black.ttf.woff2 differ diff --git a/c3space.de/files/events/34C3/source-code-pro/WOFF2/TTF/SourceCodePro-BlackIt.ttf.woff2 b/c3space.de/files/events/34C3/source-code-pro/WOFF2/TTF/SourceCodePro-BlackIt.ttf.woff2 new file mode 100644 index 0000000..9d86570 Binary files /dev/null and b/c3space.de/files/events/34C3/source-code-pro/WOFF2/TTF/SourceCodePro-BlackIt.ttf.woff2 differ diff --git a/c3space.de/files/events/34C3/source-code-pro/WOFF2/TTF/SourceCodePro-Bold.ttf.woff2 b/c3space.de/files/events/34C3/source-code-pro/WOFF2/TTF/SourceCodePro-Bold.ttf.woff2 new file mode 100644 index 0000000..b78d523 Binary files /dev/null and b/c3space.de/files/events/34C3/source-code-pro/WOFF2/TTF/SourceCodePro-Bold.ttf.woff2 differ diff --git a/c3space.de/files/events/34C3/source-code-pro/WOFF2/TTF/SourceCodePro-BoldIt.ttf.woff2 b/c3space.de/files/events/34C3/source-code-pro/WOFF2/TTF/SourceCodePro-BoldIt.ttf.woff2 new file mode 100644 index 0000000..2551c2e Binary files /dev/null and b/c3space.de/files/events/34C3/source-code-pro/WOFF2/TTF/SourceCodePro-BoldIt.ttf.woff2 differ diff --git a/c3space.de/files/events/34C3/source-code-pro/WOFF2/TTF/SourceCodePro-ExtraLight.ttf.woff2 b/c3space.de/files/events/34C3/source-code-pro/WOFF2/TTF/SourceCodePro-ExtraLight.ttf.woff2 new file mode 100644 index 0000000..bd47286 Binary files /dev/null and b/c3space.de/files/events/34C3/source-code-pro/WOFF2/TTF/SourceCodePro-ExtraLight.ttf.woff2 differ diff --git a/c3space.de/files/events/34C3/source-code-pro/WOFF2/TTF/SourceCodePro-ExtraLightIt.ttf.woff2 b/c3space.de/files/events/34C3/source-code-pro/WOFF2/TTF/SourceCodePro-ExtraLightIt.ttf.woff2 new file mode 100644 index 0000000..9f211fe Binary files /dev/null and b/c3space.de/files/events/34C3/source-code-pro/WOFF2/TTF/SourceCodePro-ExtraLightIt.ttf.woff2 differ diff --git a/c3space.de/files/events/34C3/source-code-pro/WOFF2/TTF/SourceCodePro-It.ttf.woff2 b/c3space.de/files/events/34C3/source-code-pro/WOFF2/TTF/SourceCodePro-It.ttf.woff2 new file mode 100644 index 0000000..4673f48 Binary files /dev/null and b/c3space.de/files/events/34C3/source-code-pro/WOFF2/TTF/SourceCodePro-It.ttf.woff2 differ diff --git a/c3space.de/files/events/34C3/source-code-pro/WOFF2/TTF/SourceCodePro-Light.ttf.woff2 b/c3space.de/files/events/34C3/source-code-pro/WOFF2/TTF/SourceCodePro-Light.ttf.woff2 new file mode 100644 index 0000000..8a2ed8f Binary files /dev/null and b/c3space.de/files/events/34C3/source-code-pro/WOFF2/TTF/SourceCodePro-Light.ttf.woff2 differ diff --git a/c3space.de/files/events/34C3/source-code-pro/WOFF2/TTF/SourceCodePro-LightIt.ttf.woff2 b/c3space.de/files/events/34C3/source-code-pro/WOFF2/TTF/SourceCodePro-LightIt.ttf.woff2 new file mode 100644 index 0000000..4a9bb34 Binary files /dev/null and b/c3space.de/files/events/34C3/source-code-pro/WOFF2/TTF/SourceCodePro-LightIt.ttf.woff2 differ diff --git a/c3space.de/files/events/34C3/source-code-pro/WOFF2/TTF/SourceCodePro-Medium.ttf.woff2 b/c3space.de/files/events/34C3/source-code-pro/WOFF2/TTF/SourceCodePro-Medium.ttf.woff2 new file mode 100644 index 0000000..ea961dd Binary files /dev/null and b/c3space.de/files/events/34C3/source-code-pro/WOFF2/TTF/SourceCodePro-Medium.ttf.woff2 differ diff --git a/c3space.de/files/events/34C3/source-code-pro/WOFF2/TTF/SourceCodePro-MediumIt.ttf.woff2 b/c3space.de/files/events/34C3/source-code-pro/WOFF2/TTF/SourceCodePro-MediumIt.ttf.woff2 new file mode 100644 index 0000000..cc4fe89 Binary files /dev/null and b/c3space.de/files/events/34C3/source-code-pro/WOFF2/TTF/SourceCodePro-MediumIt.ttf.woff2 differ diff --git a/c3space.de/files/events/34C3/source-code-pro/WOFF2/TTF/SourceCodePro-Regular.ttf.woff2 b/c3space.de/files/events/34C3/source-code-pro/WOFF2/TTF/SourceCodePro-Regular.ttf.woff2 new file mode 100644 index 0000000..18d2199 Binary files /dev/null and b/c3space.de/files/events/34C3/source-code-pro/WOFF2/TTF/SourceCodePro-Regular.ttf.woff2 differ diff --git a/c3space.de/files/events/34C3/source-code-pro/WOFF2/TTF/SourceCodePro-Semibold.ttf.woff2 b/c3space.de/files/events/34C3/source-code-pro/WOFF2/TTF/SourceCodePro-Semibold.ttf.woff2 new file mode 100644 index 0000000..8baef8f Binary files /dev/null and b/c3space.de/files/events/34C3/source-code-pro/WOFF2/TTF/SourceCodePro-Semibold.ttf.woff2 differ diff --git a/c3space.de/files/events/34C3/source-code-pro/WOFF2/TTF/SourceCodePro-SemiboldIt.ttf.woff2 b/c3space.de/files/events/34C3/source-code-pro/WOFF2/TTF/SourceCodePro-SemiboldIt.ttf.woff2 new file mode 100644 index 0000000..1e846ca Binary files /dev/null and b/c3space.de/files/events/34C3/source-code-pro/WOFF2/TTF/SourceCodePro-SemiboldIt.ttf.woff2 differ diff --git a/c3space.de/files/events/34C3/source-code-pro/bower.json b/c3space.de/files/events/34C3/source-code-pro/bower.json new file mode 100755 index 0000000..d59dda4 --- /dev/null +++ b/c3space.de/files/events/34C3/source-code-pro/bower.json @@ -0,0 +1,15 @@ +{ + "name": "source-code-pro", + "version": "1.017", + "main": "source-code-pro.css", + "homepage": "https://github.com/adobe-fonts/source-code-pro", + "repository": { + "type": "git", + "url": "https://github.com/adobe-fonts/source-code-pro.git" + }, + "authors": [ + { "name": "Paul D. Hunt" } + ], + "description": "Source Code Pro font family by Adobe", + "license": "SIL OFL 1.1" +} diff --git a/c3space.de/files/events/34C3/source-code-pro/source-code-pro.css b/c3space.de/files/events/34C3/source-code-pro/source-code-pro.css new file mode 100755 index 0000000..93e787c --- /dev/null +++ b/c3space.de/files/events/34C3/source-code-pro/source-code-pro.css @@ -0,0 +1,167 @@ +@font-face{ + font-family: 'Source Code Pro'; + font-weight: 200; + font-style: normal; + font-stretch: normal; + src: url('EOT/SourceCodePro-ExtraLight.eot') format('embedded-opentype'), + url('WOFF2/TTF/SourceCodePro-ExtraLight.ttf.woff2') format('woff2'), + url('WOFF/OTF/SourceCodePro-ExtraLight.otf.woff') format('woff'), + url('OTF/SourceCodePro-ExtraLight.otf') format('opentype'), + url('TTF/SourceCodePro-ExtraLight.ttf') format('truetype'); +} + +@font-face{ + font-family: 'Source Code Pro'; + font-weight: 200; + font-style: italic; + font-stretch: normal; + src: url('EOT/SourceCodePro-ExtraLightIt.eot') format('embedded-opentype'), + url('WOFF2/TTF/SourceCodePro-ExtraLightIt.ttf.woff2') format('woff2'), + url('WOFF/OTF/SourceCodePro-ExtraLightIt.otf.woff') format('woff'), + url('OTF/SourceCodePro-ExtraLightIt.otf') format('opentype'), + url('TTF/SourceCodePro-ExtraLightIt.ttf') format('truetype'); +} + +@font-face{ + font-family: 'Source Code Pro'; + font-weight: 300; + font-style: normal; + font-stretch: normal; + src: url('EOT/SourceCodePro-Light.eot') format('embedded-opentype'), + url('WOFF2/TTF/SourceCodePro-Light.ttf.woff2') format('woff2'), + url('WOFF/OTF/SourceCodePro-Light.otf.woff') format('woff'), + url('OTF/SourceCodePro-Light.otf') format('opentype'), + url('TTF/SourceCodePro-Light.ttf') format('truetype'); +} + +@font-face{ + font-family: 'Source Code Pro'; + font-weight: 300; + font-style: italic; + font-stretch: normal; + src: url('EOT/SourceCodePro-LightIt.eot') format('embedded-opentype'), + url('WOFF2/TTF/SourceCodePro-LightIt.ttf.woff2') format('woff2'), + url('WOFF/OTF/SourceCodePro-LightIt.otf.woff') format('woff'), + url('OTF/SourceCodePro-LightIt.otf') format('opentype'), + url('TTF/SourceCodePro-LightIt.ttf') format('truetype'); +} + +@font-face{ + font-family: 'Source Code Pro'; + font-weight: 400; + font-style: normal; + font-stretch: normal; + src: url('EOT/SourceCodePro-Regular.eot') format('embedded-opentype'), + url('WOFF2/TTF/SourceCodePro-Regular.ttf.woff2') format('woff2'), + url('WOFF/OTF/SourceCodePro-Regular.otf.woff') format('woff'), + url('OTF/SourceCodePro-Regular.otf') format('opentype'), + url('TTF/SourceCodePro-Regular.ttf') format('truetype'); +} + +@font-face{ + font-family: 'Source Code Pro'; + font-weight: 400; + font-style: italic; + font-stretch: normal; + src: url('EOT/SourceCodePro-It.eot') format('embedded-opentype'), + url('WOFF2/TTF/SourceCodePro-It.ttf.woff2') format('woff2'), + url('WOFF/OTF/SourceCodePro-It.otf.woff') format('woff'), + url('OTF/SourceCodePro-It.otf') format('opentype'), + url('TTF/SourceCodePro-It.ttf') format('truetype'); +} + +@font-face{ + font-family: 'Source Code Pro'; + font-weight: 500; + font-style: normal; + font-stretch: normal; + src: url('EOT/SourceCodePro-Medium.eot') format('embedded-opentype'), + url('WOFF2/TTF/SourceCodePro-Medium.ttf.woff2') format('woff2'), + url('WOFF/OTF/SourceCodePro-Medium.otf.woff') format('woff'), + url('OTF/SourceCodePro-Medium.otf') format('opentype'), + url('TTF/SourceCodePro-Medium.ttf') format('truetype'); +} + +@font-face{ + font-family: 'Source Code Pro'; + font-weight: 500; + font-style: italic; + font-stretch: normal; + src: url('EOT/SourceCodePro-MediumIt.eot') format('embedded-opentype'), + url('WOFF2/TTF/SourceCodePro-MediumIt.ttf.woff2') format('woff2'), + url('WOFF/OTF/SourceCodePro-MediumIt.otf.woff') format('woff'), + url('OTF/SourceCodePro-MediumIt.otf') format('opentype'), + url('TTF/SourceCodePro-MediumIt.ttf') format('truetype'); +} + +@font-face{ + font-family: 'Source Code Pro'; + font-weight: 600; + font-style: normal; + font-stretch: normal; + src: url('EOT/SourceCodePro-Semibold.eot') format('embedded-opentype'), + url('WOFF2/TTF/SourceCodePro-Semibold.ttf.woff2') format('woff2'), + url('WOFF/OTF/SourceCodePro-Semibold.otf.woff') format('woff'), + url('OTF/SourceCodePro-Semibold.otf') format('opentype'), + url('TTF/SourceCodePro-Semibold.ttf') format('truetype'); +} + +@font-face{ + font-family: 'Source Code Pro'; + font-weight: 600; + font-style: italic; + font-stretch: normal; + src: url('EOT/SourceCodePro-SemiboldIt.eot') format('embedded-opentype'), + url('WOFF2/TTF/SourceCodePro-SemiboldIt.ttf.woff2') format('woff2'), + url('WOFF/OTF/SourceCodePro-SemiboldIt.otf.woff') format('woff'), + url('OTF/SourceCodePro-SemiboldIt.otf') format('opentype'), + url('TTF/SourceCodePro-SemiboldIt.ttf') format('truetype'); +} + +@font-face{ + font-family: 'Source Code Pro'; + font-weight: 700; + font-style: normal; + font-stretch: normal; + src: url('EOT/SourceCodePro-Bold.eot') format('embedded-opentype'), + url('WOFF2/TTF/SourceCodePro-Bold.ttf.woff2') format('woff2'), + url('WOFF/OTF/SourceCodePro-Bold.otf.woff') format('woff'), + url('OTF/SourceCodePro-Bold.otf') format('opentype'), + url('TTF/SourceCodePro-Bold.ttf') format('truetype'); +} + +@font-face{ + font-family: 'Source Code Pro'; + font-weight: 700; + font-style: italic; + font-stretch: normal; + src: url('EOT/SourceCodePro-BoldIt.eot') format('embedded-opentype'), + url('WOFF2/TTF/SourceCodePro-BoldIt.ttf.woff2') format('woff2'), + url('WOFF/OTF/SourceCodePro-BoldIt.otf.woff') format('woff'), + url('OTF/SourceCodePro-BoldIt.otf') format('opentype'), + url('TTF/SourceCodePro-BoldIt.ttf') format('truetype'); +} + +@font-face{ + font-family: 'Source Code Pro'; + font-weight: 900; + font-style: normal; + font-stretch: normal; + src: url('EOT/SourceCodePro-Black.eot') format('embedded-opentype'), + url('WOFF2/TTF/SourceCodePro-Black.ttf.woff2') format('woff2'), + url('WOFF/OTF/SourceCodePro-Black.otf.woff') format('woff'), + url('OTF/SourceCodePro-Black.otf') format('opentype'), + url('TTF/SourceCodePro-Black.ttf') format('truetype'); +} + +@font-face{ + font-family: 'Source Code Pro'; + font-weight: 900; + font-style: italic; + font-stretch: normal; + src: url('EOT/SourceCodePro-BlackIt.eot') format('embedded-opentype'), + url('WOFF2/TTF/SourceCodePro-BlackIt.ttf.woff2') format('woff2'), + url('WOFF/OTF/SourceCodePro-BlackIt.otf.woff') format('woff'), + url('OTF/SourceCodePro-BlackIt.otf') format('opentype'), + url('TTF/SourceCodePro-BlackIt.ttf') format('truetype'); +} diff --git a/c3space.de/files/events/34C3/source-serif-pro/EOT/SourceSerifPro-Black.eot b/c3space.de/files/events/34C3/source-serif-pro/EOT/SourceSerifPro-Black.eot new file mode 100644 index 0000000..b6f111e Binary files /dev/null and b/c3space.de/files/events/34C3/source-serif-pro/EOT/SourceSerifPro-Black.eot differ diff --git a/c3space.de/files/events/34C3/source-serif-pro/EOT/SourceSerifPro-Bold.eot b/c3space.de/files/events/34C3/source-serif-pro/EOT/SourceSerifPro-Bold.eot new file mode 100644 index 0000000..94d75e9 Binary files /dev/null and b/c3space.de/files/events/34C3/source-serif-pro/EOT/SourceSerifPro-Bold.eot differ diff --git a/c3space.de/files/events/34C3/source-serif-pro/EOT/SourceSerifPro-ExtraLight.eot b/c3space.de/files/events/34C3/source-serif-pro/EOT/SourceSerifPro-ExtraLight.eot new file mode 100644 index 0000000..3ab1eec Binary files /dev/null and b/c3space.de/files/events/34C3/source-serif-pro/EOT/SourceSerifPro-ExtraLight.eot differ diff --git a/c3space.de/files/events/34C3/source-serif-pro/EOT/SourceSerifPro-Light.eot b/c3space.de/files/events/34C3/source-serif-pro/EOT/SourceSerifPro-Light.eot new file mode 100644 index 0000000..8b580d3 Binary files /dev/null and b/c3space.de/files/events/34C3/source-serif-pro/EOT/SourceSerifPro-Light.eot differ diff --git a/c3space.de/files/events/34C3/source-serif-pro/EOT/SourceSerifPro-Regular.eot b/c3space.de/files/events/34C3/source-serif-pro/EOT/SourceSerifPro-Regular.eot new file mode 100644 index 0000000..f731543 Binary files /dev/null and b/c3space.de/files/events/34C3/source-serif-pro/EOT/SourceSerifPro-Regular.eot differ diff --git a/c3space.de/files/events/34C3/source-serif-pro/EOT/SourceSerifPro-Semibold.eot b/c3space.de/files/events/34C3/source-serif-pro/EOT/SourceSerifPro-Semibold.eot new file mode 100644 index 0000000..13c0f8e Binary files /dev/null and b/c3space.de/files/events/34C3/source-serif-pro/EOT/SourceSerifPro-Semibold.eot differ diff --git a/c3space.de/files/events/34C3/source-serif-pro/LICENSE.txt b/c3space.de/files/events/34C3/source-serif-pro/LICENSE.txt new file mode 100755 index 0000000..6cb6fac --- /dev/null +++ b/c3space.de/files/events/34C3/source-serif-pro/LICENSE.txt @@ -0,0 +1,93 @@ +Copyright 2014 Adobe Systems Incorporated (http://www.adobe.com/), with Reserved Font Name 'Source'. All Rights Reserved. Source is a trademark of Adobe Systems Incorporated in the United States and/or other countries. + +This Font Software is licensed under the SIL Open Font License, Version 1.1. + +This license is copied below, and is also available with a FAQ at: http://scripts.sil.org/OFL + + +----------------------------------------------------------- +SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007 +----------------------------------------------------------- + +PREAMBLE +The goals of the Open Font License (OFL) are to stimulate worldwide +development of collaborative font projects, to support the font creation +efforts of academic and linguistic communities, and to provide a free and +open framework in which fonts may be shared and improved in partnership +with others. + +The OFL allows the licensed fonts to be used, studied, modified and +redistributed freely as long as they are not sold by themselves. The +fonts, including any derivative works, can be bundled, embedded, +redistributed and/or sold with any software provided that any reserved +names are not used by derivative works. The fonts and derivatives, +however, cannot be released under any other type of license. The +requirement for fonts to remain under this license does not apply +to any document created using the fonts or their derivatives. + +DEFINITIONS +"Font Software" refers to the set of files released by the Copyright +Holder(s) under this license and clearly marked as such. This may +include source files, build scripts and documentation. + +"Reserved Font Name" refers to any names specified as such after the +copyright statement(s). + +"Original Version" refers to the collection of Font Software components as +distributed by the Copyright Holder(s). + +"Modified Version" refers to any derivative made by adding to, deleting, +or substituting -- in part or in whole -- any of the components of the +Original Version, by changing formats or by porting the Font Software to a +new environment. + +"Author" refers to any designer, engineer, programmer, technical +writer or other person who contributed to the Font Software. + +PERMISSION & CONDITIONS +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Font Software, to use, study, copy, merge, embed, modify, +redistribute, and sell modified and unmodified copies of the Font +Software, subject to the following conditions: + +1) Neither the Font Software nor any of its individual components, +in Original or Modified Versions, may be sold by itself. + +2) Original or Modified Versions of the Font Software may be bundled, +redistributed and/or sold with any software, provided that each copy +contains the above copyright notice and this license. These can be +included either as stand-alone text files, human-readable headers or +in the appropriate machine-readable metadata fields within text or +binary files as long as those fields can be easily viewed by the user. + +3) No Modified Version of the Font Software may use the Reserved Font +Name(s) unless explicit written permission is granted by the corresponding +Copyright Holder. This restriction only applies to the primary font name as +presented to the users. + +4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font +Software shall not be used to promote, endorse or advertise any +Modified Version, except to acknowledge the contribution(s) of the +Copyright Holder(s) and the Author(s) or with their explicit written +permission. + +5) The Font Software, modified or unmodified, in part or in whole, +must be distributed entirely under this license, and must not be +distributed under any other license. The requirement for fonts to +remain under this license does not apply to any document created +using the Font Software. + +TERMINATION +This license becomes null and void if any of the above conditions are +not met. + +DISCLAIMER +THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT +OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE +COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, +INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL +DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING +FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM +OTHER DEALINGS IN THE FONT SOFTWARE. diff --git a/c3space.de/files/events/34C3/source-serif-pro/OTF/SourceSerifPro-Black.otf b/c3space.de/files/events/34C3/source-serif-pro/OTF/SourceSerifPro-Black.otf new file mode 100644 index 0000000..d63bde7 Binary files /dev/null and b/c3space.de/files/events/34C3/source-serif-pro/OTF/SourceSerifPro-Black.otf differ diff --git a/c3space.de/files/events/34C3/source-serif-pro/OTF/SourceSerifPro-Bold.otf b/c3space.de/files/events/34C3/source-serif-pro/OTF/SourceSerifPro-Bold.otf new file mode 100644 index 0000000..1142950 Binary files /dev/null and b/c3space.de/files/events/34C3/source-serif-pro/OTF/SourceSerifPro-Bold.otf differ diff --git a/c3space.de/files/events/34C3/source-serif-pro/OTF/SourceSerifPro-ExtraLight.otf b/c3space.de/files/events/34C3/source-serif-pro/OTF/SourceSerifPro-ExtraLight.otf new file mode 100644 index 0000000..9cd91d8 Binary files /dev/null and b/c3space.de/files/events/34C3/source-serif-pro/OTF/SourceSerifPro-ExtraLight.otf differ diff --git a/c3space.de/files/events/34C3/source-serif-pro/OTF/SourceSerifPro-Light.otf b/c3space.de/files/events/34C3/source-serif-pro/OTF/SourceSerifPro-Light.otf new file mode 100644 index 0000000..0ba7bf7 Binary files /dev/null and b/c3space.de/files/events/34C3/source-serif-pro/OTF/SourceSerifPro-Light.otf differ diff --git a/c3space.de/files/events/34C3/source-serif-pro/OTF/SourceSerifPro-Regular.otf b/c3space.de/files/events/34C3/source-serif-pro/OTF/SourceSerifPro-Regular.otf new file mode 100644 index 0000000..ad044c7 Binary files /dev/null and b/c3space.de/files/events/34C3/source-serif-pro/OTF/SourceSerifPro-Regular.otf differ diff --git a/c3space.de/files/events/34C3/source-serif-pro/OTF/SourceSerifPro-Semibold.otf b/c3space.de/files/events/34C3/source-serif-pro/OTF/SourceSerifPro-Semibold.otf new file mode 100644 index 0000000..76a41f7 Binary files /dev/null and b/c3space.de/files/events/34C3/source-serif-pro/OTF/SourceSerifPro-Semibold.otf differ diff --git a/c3space.de/files/events/34C3/source-serif-pro/README.md b/c3space.de/files/events/34C3/source-serif-pro/README.md new file mode 100644 index 0000000..a3cf79e --- /dev/null +++ b/c3space.de/files/events/34C3/source-serif-pro/README.md @@ -0,0 +1,18 @@ +# Source Serif Pro + +Source Serif Pro is a set of OpenType fonts to complement the [Source Sans Pro](https://github.com/adobe-fonts/source-sans-pro) family. +In addition to a functional OpenType font, this open source project provides all of the source files that were used to build this OpenType font by using the AFDKO makeotf tool. + +## Installation instructions + +* [Mac OS X](http://support.apple.com/kb/HT2509) +* [Windows](http://windows.microsoft.com/en-us/windows-vista/install-or-uninstall-fonts) +* [Linux/Unix-based systems](https://github.com/adobe-fonts/source-code-pro/issues/17#issuecomment-8967116) + +## Getting Involved + +Send suggestions for changes to the Source Serif OpenType font project maintainer, [Frank Grießhammer](mailto:opensourcefonts@adobe.com?subject=[GitHub] Source Serif Pro), for consideration. + +## Further information + +For information about the design and background of Source Serif, please refer to the [official font readme file](http://htmlpreview.github.io/?https://github.com/adobe-fonts/source-serif-pro/blob/master/SourceSerifProReadMe.html). diff --git a/c3space.de/files/events/34C3/source-serif-pro/ReadMe.html b/c3space.de/files/events/34C3/source-serif-pro/ReadMe.html new file mode 100755 index 0000000..1aeb775 --- /dev/null +++ b/c3space.de/files/events/34C3/source-serif-pro/ReadMe.html @@ -0,0 +1,72 @@ + + + + Read Me File for Adobe® OpenType® Fonts + + + +

Adobe® OpenType® Fonts

+

Thank +you for licensing Adobe OpenType fonts. In order to ensure that you +have the most up-to-date product information, Adobe has posted an OpenType +Read Me file on the Adobe web site that contains information such +as minimum system requirements, technical support contact information +and software installation notes. We have also posted an OpenType +User's Guide in PDF format on the Adobe web site that can be +viewed online and downloaded to your computer.

If you have +licensed an Adobe OpenType Pro font, there may be additional PDF +documents, such as a specimen book, a glyph complement showing, and a +typeface-specific Read Me file, available on the typeface’s +product pages on the Adobe web site. These additional files may be +viewed online or downloaded to your computer.

To get you started +quickly, below are links to localized installation instructions for +your fonts. + +

Installation Instructions


+

English
+Instructions for installing this font can be found online at http://www.adobe.com/type/browser/fontinstall/instructions_main.html.

+

French / Français
+Le mode d'installation de cette police de caractère se trouve en +ligne à http://www.adobe.com/type/browser/fontinstall/instructions_main.html.

+

German / Deutsch
+Die Anweisungen zur Installation dieser Schriftart finden Sie online +unter http://www.adobe.com/type/browser/fontinstall/instructions_main.html.

+

Italian / Italiano
+Le istruzioni per l'installazione di questo font sono disponibili +online all'indirizzo http://www.adobe.com/type/browser/fontinstall/instructions_main.html.

+

Spanish / Español
+Las instrucciones para instalar esta fuente se pueden encontrar +online en http://www.adobe.com/type/browser/fontinstall/instructions_main.html.

+

Dutch / Hollands
+De instructies voor de installatie van dit lettertype vindt u op http://www.adobe.com/type/browser/fontinstall/instructions_main.html.

+

Swedish / Svenska
+Anvisningar för hur det här teckensnittet installeras finns +online på http://www.adobe.com/type/browser/fontinstall/instructions_main.html.

+

Norwegian / Norsk
+Instruksjoner for installering av skrifttypen finnes online på +http://www.adobe.com/type/browser/fontinstall/instructions_main.html.

+

Finnish / Suomi
+Ohjeet tämän fontin asentamiseen löytyvät +osoitteesta http://www.adobe.com/type/browser/fontinstall/instructions_main.html.

+

Danish / Dansk
+Du finder en vejledning i installation af denne skrifttype online +på adressen http://www.adobe.com/type/browser/fontinstall/instructions_main.html.

+

Japanese / 日本語
+このフォントをインストールする手順は、オンラインで http://www.adobe.com/type/browser/fontinstall/instructions_main.html +を参照してください。

+ + diff --git a/c3space.de/files/events/34C3/source-serif-pro/SourceSerifProReadMe.html b/c3space.de/files/events/34C3/source-serif-pro/SourceSerifProReadMe.html new file mode 100644 index 0000000..da1f9e5 --- /dev/null +++ b/c3space.de/files/events/34C3/source-serif-pro/SourceSerifProReadMe.html @@ -0,0 +1,189 @@ + + + + + + + + Source Serif Pro Read Me + + + +
+

+ Source™ Serif Pro Read Me +

+
+
+

This document contains late-breaking product information, updates, and troubleshooting tips. +
+
+ Minimum system requirements and font installation instructions +
+ Font versions +
+ Family information +
+ Release Notes +
+ Known issues +
+ Customer care +
+ Other resources +
+ +

+
+
+ +

Minimum system requirements and font installation instructions

+
+
+

For information on minimum system requirements and font installation, see + http://www.adobe.com/go/learn_fontinstall_en.

+
+
+ +

Font versions

+
+
+

To check that you have the correct font file, compare the font version of your font file to the font version provided in the Release Notes section below.

+
+ +
+

+ History +

Source Serif Pro is a serif typeface in the transitional style, designed to complement Source Sans. Their close companionship is achieved by a careful match of letter proportions and typographic color. While designed to harmonize with its serif-less counterpart, Source Serif often takes its own direction, in part because the two are inspired by different historical precedents. Source Serif is loosely based on the work of Pierre Simon Fournier, and many idiosyncrasies typical to Fournier’s designs (like the bottom serif on the b or the middle serif on the w) are also found in Source Serif. Without being a pure historical revival, Source Serif takes cues from the Fournier model and reworks it for a modern age.

Source Sans and Source Serif also have different personalities because they spring from the hands of different designers. Source Serif was designed by Frank Grießhammer, Source Sans was designed by Paul Hunt. Robert Slimbach consulted on both designs, which helped maintain the overall family harmony. Either design feels confident on its own but also works in combination with the other — just like their designers do.

Source Serif continues Adobe’s line of high-quality open source typefaces. Designed for a digital environment, the letter shapes are simplified and highly readable. Its historical roots, combined with the guidance through an experienced designer give the typeface a strong character of its own that will shine when used for extended text on paper or on screen.

There is still more to come for Source Serif. Additional weights, Italic cuts, and Cyrillic and Greek language support are all planned. If you are interested in contributing to this open source project, please visit this project page for information on how to become involved. Source Serif Pro can be adapted and redistributed according to the terms of the Open Font License (OFL) agreement. +

+ Menu Names And Style Linking +

+

In many Windows® applications, instead of every font appearing on +the menu, fonts are grouped into style-linked sets, and only the name of +the base style font for a set is shown in the menu. The italic and the +bold weight fonts of the set (if any) are not shown in the font menu, but can still be +accessed by selecting the base style font, and then using the italic +and bold style buttons. In this family, such programs will show only the +following base style font names in the menu:

+

Source Serif Pro
+Source Serif Pro Black
+Source Serif Pro ExtraLight
+Source Serif Pro Light
+Source Serif Pro SemiBold

+

The other fonts in this family must be selected by choosing a menu name +and then a style option following the guide below.

+ + + + + + + + + + + + + +
Menu Name plus Style Option... selects this font
Source Serif Pro [none] Source Serif Pro Regular
Source Serif Pro Bold Source Serif Pro Bold
Source Serif Pro Black [none] Source Serif Pro Black
Source Serif Pro ExtraLight [none] Source Serif Pro ExtraLight
Source Serif Pro Light [none] Source Serif Pro Light
Source Serif Pro SemiBold [none] Source Serif Pro Semibold
+

On the Mac OS operating system, although each font appears as a separate entry on the +font menu, users may also select fonts by means of style links. +Selecting a base style font and then using the style links (as described +above for Windows applications) enhances cross-platform document compatibility with +many applications, such as Microsoft Word and Adobe® PageMaker® software, +although it is unnecessary with more sophisticated Adobe applications +such as recent versions of Illustrator®, Photoshop® or +InDesign® software.

+

One should not, however, select a base font which has no style-linked +variant, and then use the bold or italic styling button. Doing so will +either have no effect, or result in programmatic bolding or slanting of +the base font, which will usually produce inferior screen and print +results.

+
+
+

+ Release Notes +

+
+

For all fonts of family Source Serif Pro: version 1.017 created on Tue Sep 16 17:12:36 2014.

+

version 1.017 created 2014/09/16

+
    +
  • Added three more weights: Black, Light, ExtraLight.
  • +
  • Added missing L/lcommaaccent (U+013B/C) to all fonts.
  • +
+

version 1.014 created 2014/04/27

+
    +
  • First release.
  • +
+
+
+

+ Known issues +

+
+
  • Some glyphs in the font cannot be accessed unless you are using an OpenType® compatible application. +
  • +
+
+

+ Customer care +

+
+
+

+ Customer Service +
Adobe Customer Service provides assistance with product information, sales, registration, and other non-technical issues. + To find out how to contact Adobe Customer Service, please visit Adobe.com for your region or country and click on Contact Adobe.

+

+ Support Plan Options and Technical Resources +
If you require technical assistance for your product, including information on free and paid support options and troubleshooting resources, more information is available at + + http://www.adobe.com/go/support/. + Outside of North America, go to + + http://www.adobe.com/go/intlsupport/. + Font specific resources include the Font Folio and Type Product Help page and the Adobe Type user-to-user forums.

+
+
+

+ Other resources +

+
+
+

+ Adobe Type Showroom +
+ Index page for all family Read Me files +
+

+

+
+ Adobe, the Adobe Logo, Source, Illustrator, InDesign, PageMaker and Photoshop are either registered trademarks or trademarks of Adobe Systems Incorporated in the United States and/or other countries. Windows and OpenType are either registered trademarks or trademarks of Microsoft Corporation in the United States and/or other countries. Mac, Mac OS and TrueType are trademarks of Apple Inc., registered in the U.S. and other countries. All other trademarks are the property of their respective owners.
+
+ + © 2014 Adobe Systems Incorporated. All rights reserved.

created 2014 Sep 24 + +

+
+
+ + diff --git a/c3space.de/files/events/34C3/source-serif-pro/TTF/SourceSerifPro-Black.ttf b/c3space.de/files/events/34C3/source-serif-pro/TTF/SourceSerifPro-Black.ttf new file mode 100644 index 0000000..bfa258b Binary files /dev/null and b/c3space.de/files/events/34C3/source-serif-pro/TTF/SourceSerifPro-Black.ttf differ diff --git a/c3space.de/files/events/34C3/source-serif-pro/TTF/SourceSerifPro-Bold.ttf b/c3space.de/files/events/34C3/source-serif-pro/TTF/SourceSerifPro-Bold.ttf new file mode 100644 index 0000000..4e8b429 Binary files /dev/null and b/c3space.de/files/events/34C3/source-serif-pro/TTF/SourceSerifPro-Bold.ttf differ diff --git a/c3space.de/files/events/34C3/source-serif-pro/TTF/SourceSerifPro-ExtraLight.ttf b/c3space.de/files/events/34C3/source-serif-pro/TTF/SourceSerifPro-ExtraLight.ttf new file mode 100644 index 0000000..ae8e2ed Binary files /dev/null and b/c3space.de/files/events/34C3/source-serif-pro/TTF/SourceSerifPro-ExtraLight.ttf differ diff --git a/c3space.de/files/events/34C3/source-serif-pro/TTF/SourceSerifPro-Light.ttf b/c3space.de/files/events/34C3/source-serif-pro/TTF/SourceSerifPro-Light.ttf new file mode 100644 index 0000000..1fd150b Binary files /dev/null and b/c3space.de/files/events/34C3/source-serif-pro/TTF/SourceSerifPro-Light.ttf differ diff --git a/c3space.de/files/events/34C3/source-serif-pro/TTF/SourceSerifPro-Regular.ttf b/c3space.de/files/events/34C3/source-serif-pro/TTF/SourceSerifPro-Regular.ttf new file mode 100644 index 0000000..62fedd6 Binary files /dev/null and b/c3space.de/files/events/34C3/source-serif-pro/TTF/SourceSerifPro-Regular.ttf differ diff --git a/c3space.de/files/events/34C3/source-serif-pro/TTF/SourceSerifPro-Semibold.ttf b/c3space.de/files/events/34C3/source-serif-pro/TTF/SourceSerifPro-Semibold.ttf new file mode 100644 index 0000000..78c178f Binary files /dev/null and b/c3space.de/files/events/34C3/source-serif-pro/TTF/SourceSerifPro-Semibold.ttf differ diff --git a/c3space.de/files/events/34C3/source-serif-pro/WOFF/OTF/SourceSerifPro-Black.otf.woff b/c3space.de/files/events/34C3/source-serif-pro/WOFF/OTF/SourceSerifPro-Black.otf.woff new file mode 100644 index 0000000..9044ee9 Binary files /dev/null and b/c3space.de/files/events/34C3/source-serif-pro/WOFF/OTF/SourceSerifPro-Black.otf.woff differ diff --git a/c3space.de/files/events/34C3/source-serif-pro/WOFF/OTF/SourceSerifPro-Bold.otf.woff b/c3space.de/files/events/34C3/source-serif-pro/WOFF/OTF/SourceSerifPro-Bold.otf.woff new file mode 100644 index 0000000..a907b53 Binary files /dev/null and b/c3space.de/files/events/34C3/source-serif-pro/WOFF/OTF/SourceSerifPro-Bold.otf.woff differ diff --git a/c3space.de/files/events/34C3/source-serif-pro/WOFF/OTF/SourceSerifPro-ExtraLight.otf.woff b/c3space.de/files/events/34C3/source-serif-pro/WOFF/OTF/SourceSerifPro-ExtraLight.otf.woff new file mode 100644 index 0000000..b990a76 Binary files /dev/null and b/c3space.de/files/events/34C3/source-serif-pro/WOFF/OTF/SourceSerifPro-ExtraLight.otf.woff differ diff --git a/c3space.de/files/events/34C3/source-serif-pro/WOFF/OTF/SourceSerifPro-Light.otf.woff b/c3space.de/files/events/34C3/source-serif-pro/WOFF/OTF/SourceSerifPro-Light.otf.woff new file mode 100644 index 0000000..6d6c4ba Binary files /dev/null and b/c3space.de/files/events/34C3/source-serif-pro/WOFF/OTF/SourceSerifPro-Light.otf.woff differ diff --git a/c3space.de/files/events/34C3/source-serif-pro/WOFF/OTF/SourceSerifPro-Regular.otf.woff b/c3space.de/files/events/34C3/source-serif-pro/WOFF/OTF/SourceSerifPro-Regular.otf.woff new file mode 100644 index 0000000..a6fbe17 Binary files /dev/null and b/c3space.de/files/events/34C3/source-serif-pro/WOFF/OTF/SourceSerifPro-Regular.otf.woff differ diff --git a/c3space.de/files/events/34C3/source-serif-pro/WOFF/OTF/SourceSerifPro-Semibold.otf.woff b/c3space.de/files/events/34C3/source-serif-pro/WOFF/OTF/SourceSerifPro-Semibold.otf.woff new file mode 100644 index 0000000..6847179 Binary files /dev/null and b/c3space.de/files/events/34C3/source-serif-pro/WOFF/OTF/SourceSerifPro-Semibold.otf.woff differ diff --git a/c3space.de/files/events/34C3/source-serif-pro/WOFF/TTF/SourceSerifPro-Black.ttf.woff b/c3space.de/files/events/34C3/source-serif-pro/WOFF/TTF/SourceSerifPro-Black.ttf.woff new file mode 100644 index 0000000..db1b1f6 Binary files /dev/null and b/c3space.de/files/events/34C3/source-serif-pro/WOFF/TTF/SourceSerifPro-Black.ttf.woff differ diff --git a/c3space.de/files/events/34C3/source-serif-pro/WOFF/TTF/SourceSerifPro-Bold.ttf.woff b/c3space.de/files/events/34C3/source-serif-pro/WOFF/TTF/SourceSerifPro-Bold.ttf.woff new file mode 100644 index 0000000..056a5ad Binary files /dev/null and b/c3space.de/files/events/34C3/source-serif-pro/WOFF/TTF/SourceSerifPro-Bold.ttf.woff differ diff --git a/c3space.de/files/events/34C3/source-serif-pro/WOFF/TTF/SourceSerifPro-ExtraLight.ttf.woff b/c3space.de/files/events/34C3/source-serif-pro/WOFF/TTF/SourceSerifPro-ExtraLight.ttf.woff new file mode 100644 index 0000000..53b296d Binary files /dev/null and b/c3space.de/files/events/34C3/source-serif-pro/WOFF/TTF/SourceSerifPro-ExtraLight.ttf.woff differ diff --git a/c3space.de/files/events/34C3/source-serif-pro/WOFF/TTF/SourceSerifPro-Light.ttf.woff b/c3space.de/files/events/34C3/source-serif-pro/WOFF/TTF/SourceSerifPro-Light.ttf.woff new file mode 100644 index 0000000..b8de713 Binary files /dev/null and b/c3space.de/files/events/34C3/source-serif-pro/WOFF/TTF/SourceSerifPro-Light.ttf.woff differ diff --git a/c3space.de/files/events/34C3/source-serif-pro/WOFF/TTF/SourceSerifPro-Regular.ttf.woff b/c3space.de/files/events/34C3/source-serif-pro/WOFF/TTF/SourceSerifPro-Regular.ttf.woff new file mode 100644 index 0000000..84f3777 Binary files /dev/null and b/c3space.de/files/events/34C3/source-serif-pro/WOFF/TTF/SourceSerifPro-Regular.ttf.woff differ diff --git a/c3space.de/files/events/34C3/source-serif-pro/WOFF/TTF/SourceSerifPro-Semibold.ttf.woff b/c3space.de/files/events/34C3/source-serif-pro/WOFF/TTF/SourceSerifPro-Semibold.ttf.woff new file mode 100644 index 0000000..3ba4993 Binary files /dev/null and b/c3space.de/files/events/34C3/source-serif-pro/WOFF/TTF/SourceSerifPro-Semibold.ttf.woff differ diff --git a/c3space.de/files/events/34C3/source-serif-pro/bower.json b/c3space.de/files/events/34C3/source-serif-pro/bower.json new file mode 100755 index 0000000..4775f7c --- /dev/null +++ b/c3space.de/files/events/34C3/source-serif-pro/bower.json @@ -0,0 +1,15 @@ +{ + "name": "source-serif-pro", + "version": "1.014", + "main": "source-serif-pro.css", + "homepage": "https://github.com/adobe-fonts/source-serif-pro", + "repository": { + "type": "git", + "url": "https://github.com/adobe-fonts/source-serif-pro.git" + }, + "authors": [ + { "name": "Frank Grießhammer" } + ], + "description": "Source Serif Pro font family by Adobe", + "license": "SIL OFL 1.1" +} diff --git a/c3space.de/files/events/34C3/source-serif-pro/source-serif-pro.css b/c3space.de/files/events/34C3/source-serif-pro/source-serif-pro.css new file mode 100755 index 0000000..697763f --- /dev/null +++ b/c3space.de/files/events/34C3/source-serif-pro/source-serif-pro.css @@ -0,0 +1,65 @@ +@font-face{ + font-family: 'Source Serif Pro'; + font-weight: 200; + font-style: normal; + font-stretch: normal; + src: url('EOT/SourceSerifPro-ExtraLight.eot') format('embedded-opentype'), + url('WOFF/OTF/SourceSerifPro-ExtraLight.otf.woff') format('woff'), + url('OTF/SourceSerifPro-ExtraLight.otf') format('opentype'), + url('TTF/SourceSerifPro-ExtraLight.ttf') format('truetype'); +} + +@font-face{ + font-family: 'Source Serif Pro'; + font-weight: 300; + font-style: normal; + font-stretch: normal; + src: url('EOT/SourceSerifPro-Light.eot') format('embedded-opentype'), + url('WOFF/OTF/SourceSerifPro-Light.otf.woff') format('woff'), + url('OTF/SourceSerifPro-Light.otf') format('opentype'), + url('TTF/SourceSerifPro-Light.ttf') format('truetype'); +} + +@font-face{ + font-family: 'Source Serif Pro'; + font-weight: 400; + font-style: normal; + font-stretch: normal; + src: url('EOT/SourceSerifPro-Regular.eot') format('embedded-opentype'), + url('WOFF/OTF/SourceSerifPro-Regular.otf.woff') format('woff'), + url('OTF/SourceSerifPro-Regular.otf') format('opentype'), + url('TTF/SourceSerifPro-Regular.ttf') format('truetype'); +} + +@font-face{ + font-family: 'Source Serif Pro'; + font-weight: 600; + font-style: normal; + font-stretch: normal; + src: url('EOT/SourceSerifPro-Semibold.eot') format('embedded-opentype'), + url('WOFF/OTF/SourceSerifPro-Semibold.otf.woff') format('woff'), + url('OTF/SourceSerifPro-Semibold.otf') format('opentype'), + url('TTF/SourceSerifPro-Semibold.ttf') format('truetype'); +} + +@font-face{ + font-family: 'Source Serif Pro'; + font-weight: 700; + font-style: normal; + font-stretch: normal; + src: url('EOT/SourceSerifPro-Bold.eot') format('embedded-opentype'), + url('WOFF/OTF/SourceSerifPro-Bold.otf.woff') format('woff'), + url('OTF/SourceSerifPro-Bold.otf') format('opentype'), + url('TTF/SourceSerifPro-Bold.ttf') format('truetype'); +} + +@font-face{ + font-family: 'Source Serif Pro'; + font-weight: 900; + font-style: normal; + font-stretch: normal; + src: url('EOT/SourceSerifPro-Black.eot') format('embedded-opentype'), + url('WOFF/OTF/SourceSerifPro-Black.otf.woff') format('woff'), + url('OTF/SourceSerifPro-Black.otf') format('opentype'), + url('TTF/SourceSerifPro-Black.ttf') format('truetype'); +} diff --git a/c3space.de/files/events/34C3/stylesheet.css b/c3space.de/files/events/34C3/stylesheet.css new file mode 100644 index 0000000..aaf5f49 --- /dev/null +++ b/c3space.de/files/events/34C3/stylesheet.css @@ -0,0 +1,122 @@ +html { + height:100%; +} + +body { + padding : 0px; + margin: 0px; + height: 100%; + width: 100%; + + font-family: 'Source Serif Pro'; + background-color: #000000; +} + +.container { + background-color: #000000; + background-image: url('background.jpg'); + background-repeat:no-repeat; + background-size: cover; + + margin: 0px; + width: 100%; + + display: flex; + flex-direction: column; + align-items: center; + justify-content: flex-start; +} + +.content { + color: #ffffff; + background-color: rgba(0, 0, 0, 0.6); + display: block; + padding: 10px; + overflow-wrap: break-word; + + font-size: 120%; +} + +.content a { + text-decoration: none; + word-break: break-all; + color: #C0C0C0; +} + +.content ul { + padding-left: 25px; +} + +.content ul ul { + padding-left: 15px; +} + +.content .infobox { + display: none; +} + +.content .mw-editsection { + display: none; +} + + +h1 { + font-family: 'Source Code Pro'; +} + +.logo { + text-align: center; + display: none; +} + +.logo img { + width: 40%; +} + + + +@media screen and (min-width: 800px) { + .container { + justify-content: space-around; + } + + .content { + margin-left: 10%; + margin-right: 10%; + + padding: 50px; + + } + + .content ul { + padding-left: 50px; + } + + .content ul ul { + padding-left: 50px; + } + + + .logo { + display: block; + } +} + +h2 { + font-family: 'Source Code Pro'; + margin-bottom: 10px; +} + +h3 { + font-family: 'Source Code Pro'; + margin-bottom: 5px; +} + +.lecture .subtitle { + font-weight: bold; + font-family: 'Source Code Pro'; +} + +.lecture .infos { + font-family: 'Source Code Pro'; +} diff --git a/c3space.de/files/events/35C3/background.jpg b/c3space.de/files/events/35C3/background.jpg new file mode 100644 index 0000000..9eaae36 Binary files /dev/null and b/c3space.de/files/events/35C3/background.jpg differ diff --git a/c3space.de/files/events/35C3/index.html b/c3space.de/files/events/35C3/index.html new file mode 100644 index 0000000..d52f3e7 --- /dev/null +++ b/c3space.de/files/events/35C3/index.html @@ -0,0 +1,246 @@ + + + + + + Chaos Space Operation Center - Assembly:C3Space + + + + + + + + + + + + + + + + + + + + +
+
+ + +

Chaos Space Operation Center

+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Website +https://c3space.de +
Contact +Matrix/IRC: #c3space:irc.hackint.org +
Description +Like last year's CSOC the assembly is intended as place to hang out (and to show of projects) for everyone interested in space exploration, space travel, satellites, cubesats, satellite tracking, diy astronomy, amateur rocketry ... you name it. +
Members +Bastla, Hpfmn +
Projects +create project +
Self-organized Sessions +create self-organized session +
Tags +space, satellites, rockets, exploration, astronomy, research +
Registered on + +
Provides stage +no +
Location for self-organized sessions +no +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Orga contact +{{{Has orga contact}}}URIs of the form "{{{Has orga contact}}}" are not allowed. +
Brings + +
Projects + +
Uses money +{{{Uses money}}}"{{{Uses money}}}" is not in the list (yes we handle money, no money handling) of allowed values for the "Uses money" property. +
Need fibre +{{{Need fibre}}}"{{{Need fibre}}}" is not in the list (no, yes would be great, yes its essential) of allowed values for the "Need fibre" property. +
Extra Power +{{{Extra power}}} +
Near passage +{{{Near passage}}}"{{{Near passage}}}" is not in the list (whatever, yes its essential, would be great, definitively not) of allowed values for the "Near passage" property. +
Character of assembly +{{{Has assembly type}}}"{{{Has assembly type}}}" is not in the list (just a gathering space, place to show and meet) of allowed values for the "Has assembly type" property. +
Seats needed +0 +
Extra seats +0 +
Aread needed +0 +
Arrival and build up + +
+
+
+

(Click here to refresh this page.) +

+
+

Like last year's CSOC the assembly is intended as place to hang out (and to show of projects) for everyone interested in space exploration, space travel, satellites, cubesats, satellite tracking, diy astronomy, amateur rocketry ... you name it. The goal is to bring all the different people hacking on space topics in our community in one place, explore existing projects and come up with new ideas to hack where no congress has hacked before. +

Please be aware, that we aim to provide a safe environment for all galactic life forms (although we are only able to provide an oxygen atmosphere). We come in peace! +


+

+

Topics[edit]

+

This is just an incomplete list of examples, feel free to add to it +

+
  • Building a satellite
  • +
  • How to receive and decode signals from space +
    • Weather satellites: APT, HRPT, ...
    • +
    • Cubesats
    • +
    • Amateur Radio Satellites
    • +
    • DIY radio astronomy
  • +
  • General rocket science +
    • Model/Experimental rockets
    • +
    • DIY rocket engines
    • +
    • Nerding about real rockets and how they work
  • +
  • History of space flight and exploration
+


+

+

Our Projects[edit]

+

Unfortunately we could not bring everything on this list along to show it to you, +so you might have to talk to us if you want more info. +

+
  • Rotorless Satnogs Station (sebastian) +
    • A little demo for a beginner friendly, cheap and simple Satnogs Setup
    • +
    • Can be build for under 150€ if you can get access to 3D-printer
+
  • Telescope with 3D-Printed Open Source GOTO Controll (h3rb3rn)
+ +
  • Robotron KC 85/3 & KC85/4 DDR Computer (h3rb3rn) +
    • No strictly space related, but 100% rocket science from distant past
+


+

+

Getting in Touch[edit]

+ + + + +
+ + + +
+
+ Older versions of this page: 34C3 +
+
+ + + \ No newline at end of file diff --git a/c3space.de/files/events/35C3/logo.png b/c3space.de/files/events/35C3/logo.png new file mode 100644 index 0000000..52e921c Binary files /dev/null and b/c3space.de/files/events/35C3/logo.png differ diff --git a/c3space.de/files/events/35C3/logo_favicon.ico b/c3space.de/files/events/35C3/logo_favicon.ico new file mode 100644 index 0000000..5de89be Binary files /dev/null and b/c3space.de/files/events/35C3/logo_favicon.ico differ diff --git a/c3space.de/files/events/35C3/logo_og.png b/c3space.de/files/events/35C3/logo_og.png new file mode 100644 index 0000000..dc59ff1 Binary files /dev/null and b/c3space.de/files/events/35C3/logo_og.png differ diff --git a/c3space.de/files/events/35C3/montserrat/font.css b/c3space.de/files/events/35C3/montserrat/font.css new file mode 100644 index 0000000..fea1a2c --- /dev/null +++ b/c3space.de/files/events/35C3/montserrat/font.css @@ -0,0 +1,47 @@ +/*! Generated by Font Squirrel (https://www.fontsquirrel.com) on December 21, 2018 */ + + + +@font-face { + font-family: 'Montserrat Black'; + src: url('montserrat-black-webfont.woff2') format('woff2'), + url('montserrat-black-webfont.woff') format('woff'); + font-weight: normal; + font-style: normal; + +} + + + + +@font-face { + font-family: 'Montserrat'; + src: url('montserrat-bold-webfont.woff2') format('woff2'), + url('montserrat-bold-webfont.woff') format('woff'); + font-weight: bold; + font-style: normal; + +} + + + + +@font-face { + font-family: 'Montserrat'; + src: url('montserrat-italic-webfont.woff2') format('woff2'), + url('montserrat-italic-webfont.woff') format('woff'); + font-weight: normal; + font-style: italic; + +} + + + + +@font-face { + font-family: 'Montserrat'; + src: url('montserrat-regular-webfont.woff2') format('woff2'), + url('montserrat-regular-webfont.woff') format('woff'); + font-weight: normal; + font-style: normal; +} diff --git a/c3space.de/files/events/35C3/montserrat/montserrat-black-webfont.woff b/c3space.de/files/events/35C3/montserrat/montserrat-black-webfont.woff new file mode 100644 index 0000000..341de59 Binary files /dev/null and b/c3space.de/files/events/35C3/montserrat/montserrat-black-webfont.woff differ diff --git a/c3space.de/files/events/35C3/montserrat/montserrat-black-webfont.woff2 b/c3space.de/files/events/35C3/montserrat/montserrat-black-webfont.woff2 new file mode 100644 index 0000000..67afaa1 Binary files /dev/null and b/c3space.de/files/events/35C3/montserrat/montserrat-black-webfont.woff2 differ diff --git a/c3space.de/files/events/35C3/montserrat/montserrat-bold-webfont.woff b/c3space.de/files/events/35C3/montserrat/montserrat-bold-webfont.woff new file mode 100644 index 0000000..3f8b36b Binary files /dev/null and b/c3space.de/files/events/35C3/montserrat/montserrat-bold-webfont.woff differ diff --git a/c3space.de/files/events/35C3/montserrat/montserrat-bold-webfont.woff2 b/c3space.de/files/events/35C3/montserrat/montserrat-bold-webfont.woff2 new file mode 100644 index 0000000..a241c2d Binary files /dev/null and b/c3space.de/files/events/35C3/montserrat/montserrat-bold-webfont.woff2 differ diff --git a/c3space.de/files/events/35C3/montserrat/montserrat-italic-webfont.woff b/c3space.de/files/events/35C3/montserrat/montserrat-italic-webfont.woff new file mode 100644 index 0000000..180ef8b Binary files /dev/null and b/c3space.de/files/events/35C3/montserrat/montserrat-italic-webfont.woff differ diff --git a/c3space.de/files/events/35C3/montserrat/montserrat-italic-webfont.woff2 b/c3space.de/files/events/35C3/montserrat/montserrat-italic-webfont.woff2 new file mode 100644 index 0000000..9c60ec7 Binary files /dev/null and b/c3space.de/files/events/35C3/montserrat/montserrat-italic-webfont.woff2 differ diff --git a/c3space.de/files/events/35C3/montserrat/montserrat-regular-webfont.woff b/c3space.de/files/events/35C3/montserrat/montserrat-regular-webfont.woff new file mode 100644 index 0000000..417f105 Binary files /dev/null and b/c3space.de/files/events/35C3/montserrat/montserrat-regular-webfont.woff differ diff --git a/c3space.de/files/events/35C3/montserrat/montserrat-regular-webfont.woff2 b/c3space.de/files/events/35C3/montserrat/montserrat-regular-webfont.woff2 new file mode 100644 index 0000000..4a64add Binary files /dev/null and b/c3space.de/files/events/35C3/montserrat/montserrat-regular-webfont.woff2 differ diff --git a/c3space.de/files/events/35C3/normalize.css b/c3space.de/files/events/35C3/normalize.css new file mode 100644 index 0000000..18ddf7f --- /dev/null +++ b/c3space.de/files/events/35C3/normalize.css @@ -0,0 +1,419 @@ +/*! normalize.css v4.1.1 | MIT License | github.com/necolas/normalize.css */ + +/** + * 1. Change the default font family in all browsers (opinionated). + * 2. Prevent adjustments of font size after orientation changes in IE and iOS. + */ + +html { + font-family: sans-serif; /* 1 */ + -ms-text-size-adjust: 100%; /* 2 */ + -webkit-text-size-adjust: 100%; /* 2 */ +} + +/** + * Remove the margin in all browsers (opinionated). + */ + +body { + margin: 0; +} + +/* HTML5 display definitions + ========================================================================== */ + +/** + * Add the correct display in IE 9-. + * 1. Add the correct display in Edge, IE, and Firefox. + * 2. Add the correct display in IE. + */ + +article, +aside, +details, /* 1 */ +figcaption, +figure, +footer, +header, +main, /* 2 */ +menu, +nav, +section, +summary { /* 1 */ + display: block; +} + +/** + * Add the correct display in IE 9-. + */ + +audio, +canvas, +progress, +video { + display: inline-block; +} + +/** + * Add the correct display in iOS 4-7. + */ + +audio:not([controls]) { + display: none; + height: 0; +} + +/** + * Add the correct vertical alignment in Chrome, Firefox, and Opera. + */ + +progress { + vertical-align: baseline; +} + +/** + * Add the correct display in IE 10-. + * 1. Add the correct display in IE. + */ + +template, /* 1 */ +[hidden] { + display: none; +} + +/* Links + ========================================================================== */ + +/** + * 1. Remove the gray background on active links in IE 10. + * 2. Remove gaps in links underline in iOS 8+ and Safari 8+. + */ + +a { + background-color: transparent; /* 1 */ + -webkit-text-decoration-skip: objects; /* 2 */ +} + +/** + * Remove the outline on focused links when they are also active or hovered + * in all browsers (opinionated). + */ + +a:active, +a:hover { + outline-width: 0; +} + +/* Text-level semantics + ========================================================================== */ + +/** + * 1. Remove the bottom border in Firefox 39-. + * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari. + */ + +abbr[title] { + border-bottom: none; /* 1 */ + text-decoration: underline; /* 2 */ + text-decoration: underline dotted; /* 2 */ +} + +/** + * Prevent the duplicate application of `bolder` by the next rule in Safari 6. + */ + +b, +strong { + font-weight: inherit; +} + +/** + * Add the correct font weight in Chrome, Edge, and Safari. + */ + +b, +strong { + font-weight: bolder; +} + +/** + * Add the correct font style in Android 4.3-. + */ + +dfn { + font-style: italic; +} + +/** + * Correct the font size and margin on `h1` elements within `section` and + * `article` contexts in Chrome, Firefox, and Safari. + */ + +h1 { + font-size: 2em; + margin: 0.67em 0; +} + +/** + * Add the correct background and color in IE 9-. + */ + +mark { + background-color: #ff0; + color: #000; +} + +/** + * Add the correct font size in all browsers. + */ + +small { + font-size: 80%; +} + +/** + * Prevent `sub` and `sup` elements from affecting the line height in + * all browsers. + */ + +sub, +sup { + font-size: 75%; + line-height: 0; + position: relative; + vertical-align: baseline; +} + +sub { + bottom: -0.25em; +} + +sup { + top: -0.5em; +} + +/* Embedded content + ========================================================================== */ + +/** + * Remove the border on images inside links in IE 10-. + */ + +img { + border-style: none; +} + +/** + * Hide the overflow in IE. + */ + +svg:not(:root) { + overflow: hidden; +} + +/* Grouping content + ========================================================================== */ + +/** + * 1. Correct the inheritance and scaling of font size in all browsers. + * 2. Correct the odd `em` font sizing in all browsers. + */ + +code, +kbd, +pre, +samp { + font-family: monospace, monospace; /* 1 */ + font-size: 1em; /* 2 */ +} + +/** + * Add the correct margin in IE 8. + */ + +figure { + margin: 1em 40px; +} + +/** + * 1. Add the correct box sizing in Firefox. + * 2. Show the overflow in Edge and IE. + */ + +hr { + box-sizing: content-box; /* 1 */ + height: 0; /* 1 */ + overflow: visible; /* 2 */ +} + +/* Forms + ========================================================================== */ + +/** + * 1. Change font properties to `inherit` in all browsers (opinionated). + * 2. Remove the margin in Firefox and Safari. + */ + +button, +input, +select, +textarea { + font: inherit; /* 1 */ + margin: 0; /* 2 */ +} + +/** + * Restore the font weight unset by the previous rule. + */ + +optgroup { + font-weight: bold; +} + +/** + * Show the overflow in IE. + * 1. Show the overflow in Edge. + */ + +button, +input { /* 1 */ + overflow: visible; +} + +/** + * Remove the inheritance of text transform in Edge, Firefox, and IE. + * 1. Remove the inheritance of text transform in Firefox. + */ + +button, +select { /* 1 */ + text-transform: none; +} + +/** + * 1. Prevent a WebKit bug where (2) destroys native `audio` and `video` + * controls in Android 4. + * 2. Correct the inability to style clickable types in iOS and Safari. + */ + +button, +html [type="button"], /* 1 */ +[type="reset"], +[type="submit"] { + -webkit-appearance: button; /* 2 */ +} + +/** + * Remove the inner border and padding in Firefox. + */ + +button::-moz-focus-inner, +[type="button"]::-moz-focus-inner, +[type="reset"]::-moz-focus-inner, +[type="submit"]::-moz-focus-inner { + border-style: none; + padding: 0; +} + +/** + * Restore the focus styles unset by the previous rule. + */ + +button:-moz-focusring, +[type="button"]:-moz-focusring, +[type="reset"]:-moz-focusring, +[type="submit"]:-moz-focusring { + outline: 1px dotted ButtonText; +} + +/** + * Change the border, margin, and padding in all browsers (opinionated). + */ + +fieldset { + border: 1px solid #c0c0c0; + margin: 0 2px; + padding: 0.35em 0.625em 0.75em; +} + +/** + * 1. Correct the text wrapping in Edge and IE. + * 2. Correct the color inheritance from `fieldset` elements in IE. + * 3. Remove the padding so developers are not caught out when they zero out + * `fieldset` elements in all browsers. + */ + +legend { + box-sizing: border-box; /* 1 */ + color: inherit; /* 2 */ + display: table; /* 1 */ + max-width: 100%; /* 1 */ + padding: 0; /* 3 */ + white-space: normal; /* 1 */ +} + +/** + * Remove the default vertical scrollbar in IE. + */ + +textarea { + overflow: auto; +} + +/** + * 1. Add the correct box sizing in IE 10-. + * 2. Remove the padding in IE 10-. + */ + +[type="checkbox"], +[type="radio"] { + box-sizing: border-box; /* 1 */ + padding: 0; /* 2 */ +} + +/** + * Correct the cursor style of increment and decrement buttons in Chrome. + */ + +[type="number"]::-webkit-inner-spin-button, +[type="number"]::-webkit-outer-spin-button { + height: auto; +} + +/** + * 1. Correct the odd appearance in Chrome and Safari. + * 2. Correct the outline style in Safari. + */ + +[type="search"] { + -webkit-appearance: textfield; /* 1 */ + outline-offset: -2px; /* 2 */ +} + +/** + * Remove the inner padding and cancel buttons in Chrome and Safari on OS X. + */ + +[type="search"]::-webkit-search-cancel-button, +[type="search"]::-webkit-search-decoration { + -webkit-appearance: none; +} + +/** + * Correct the text style of placeholders in Chrome, Edge, and Safari. + */ + +::-webkit-input-placeholder { + color: inherit; + opacity: 0.54; +} + +/** + * 1. Correct the inability to style clickable types in iOS and Safari. + * 2. Change font properties to `inherit` in Safari. + */ + +::-webkit-file-upload-button { + -webkit-appearance: button; /* 1 */ + font: inherit; /* 2 */ +} diff --git a/c3space.de/files/events/35C3/schedule.html b/c3space.de/files/events/35C3/schedule.html new file mode 100644 index 0000000..6e404c8 --- /dev/null +++ b/c3space.de/files/events/35C3/schedule.html @@ -0,0 +1,123 @@ + + + + + + Chaos Space Operation Center - Flightplan + + + + + + + + + + + + + + + + + + + + + +
+
+ + +

Chaos Space Operation Center

+

Flightplan

+ + +
+

T-Minus Zero

+ + The first days in the life of the "Flying Laptop" satellite
+ + + Day 1 - 20:00 (00:45) :: Open Infra Stage
+ INCO +
+ +
+ +
+

Nuclear Power in Space

+ + + Day 1 - 21:00 (00:45) :: Open Infra Stage
+ TP1024 +
+ +
+ +
+

SatNOGS hands-on

+ + Operating a global ground station network
+ + + Day 2 - 13:00 (01:00) :: Open Infra Stage
+ Nikos Roussos, Pierros Papadeas +
+ +
+ +
+

An in depth look at APT signals

+ + + Day 3 - 15:00 (00:45) :: Open Infra Stage
+ ar3itrary +
+ +
+ +
+

In Elon we trust?

+ + A look into NewSpace beyond SpaceX
+ + + Day 3 - 16:00 (00:45) :: Open Infra Stage
+ VanillaChief +
+ +
+ +
+

Can Helium-3 save our ass?

+ + + Day 3 - 17:30 (00:45) :: Open Infra Stage
+ TP1024 +
+ +
+ +
+

Soldering your Spaceship

+ + Introduction to soldering techniques for space applications
+ + + Day 3 - 16:30 (02:30) :: Workshop Area
+ INCO +
+ +
+ + + + +
+
+ + + \ No newline at end of file diff --git a/c3space.de/files/events/35C3/source-code-pro/EOT/SourceCodePro-Black.eot b/c3space.de/files/events/35C3/source-code-pro/EOT/SourceCodePro-Black.eot new file mode 100644 index 0000000..570ee1b Binary files /dev/null and b/c3space.de/files/events/35C3/source-code-pro/EOT/SourceCodePro-Black.eot differ diff --git a/c3space.de/files/events/35C3/source-code-pro/EOT/SourceCodePro-BlackIt.eot b/c3space.de/files/events/35C3/source-code-pro/EOT/SourceCodePro-BlackIt.eot new file mode 100644 index 0000000..fb2cae7 Binary files /dev/null and b/c3space.de/files/events/35C3/source-code-pro/EOT/SourceCodePro-BlackIt.eot differ diff --git a/c3space.de/files/events/35C3/source-code-pro/EOT/SourceCodePro-Bold.eot b/c3space.de/files/events/35C3/source-code-pro/EOT/SourceCodePro-Bold.eot new file mode 100644 index 0000000..d24cc39 Binary files /dev/null and b/c3space.de/files/events/35C3/source-code-pro/EOT/SourceCodePro-Bold.eot differ diff --git a/c3space.de/files/events/35C3/source-code-pro/EOT/SourceCodePro-BoldIt.eot b/c3space.de/files/events/35C3/source-code-pro/EOT/SourceCodePro-BoldIt.eot new file mode 100644 index 0000000..dba94c6 Binary files /dev/null and b/c3space.de/files/events/35C3/source-code-pro/EOT/SourceCodePro-BoldIt.eot differ diff --git a/c3space.de/files/events/35C3/source-code-pro/EOT/SourceCodePro-ExtraLight.eot b/c3space.de/files/events/35C3/source-code-pro/EOT/SourceCodePro-ExtraLight.eot new file mode 100644 index 0000000..8852705 Binary files /dev/null and b/c3space.de/files/events/35C3/source-code-pro/EOT/SourceCodePro-ExtraLight.eot differ diff --git a/c3space.de/files/events/35C3/source-code-pro/EOT/SourceCodePro-ExtraLightIt.eot b/c3space.de/files/events/35C3/source-code-pro/EOT/SourceCodePro-ExtraLightIt.eot new file mode 100644 index 0000000..9e208da Binary files /dev/null and b/c3space.de/files/events/35C3/source-code-pro/EOT/SourceCodePro-ExtraLightIt.eot differ diff --git a/c3space.de/files/events/35C3/source-code-pro/EOT/SourceCodePro-It.eot b/c3space.de/files/events/35C3/source-code-pro/EOT/SourceCodePro-It.eot new file mode 100644 index 0000000..cb4a8f6 Binary files /dev/null and b/c3space.de/files/events/35C3/source-code-pro/EOT/SourceCodePro-It.eot differ diff --git a/c3space.de/files/events/35C3/source-code-pro/EOT/SourceCodePro-Light.eot b/c3space.de/files/events/35C3/source-code-pro/EOT/SourceCodePro-Light.eot new file mode 100644 index 0000000..d9b4eb9 Binary files /dev/null and b/c3space.de/files/events/35C3/source-code-pro/EOT/SourceCodePro-Light.eot differ diff --git a/c3space.de/files/events/35C3/source-code-pro/EOT/SourceCodePro-LightIt.eot b/c3space.de/files/events/35C3/source-code-pro/EOT/SourceCodePro-LightIt.eot new file mode 100644 index 0000000..a7c5ce0 Binary files /dev/null and b/c3space.de/files/events/35C3/source-code-pro/EOT/SourceCodePro-LightIt.eot differ diff --git a/c3space.de/files/events/35C3/source-code-pro/EOT/SourceCodePro-Medium.eot b/c3space.de/files/events/35C3/source-code-pro/EOT/SourceCodePro-Medium.eot new file mode 100644 index 0000000..2388fa2 Binary files /dev/null and b/c3space.de/files/events/35C3/source-code-pro/EOT/SourceCodePro-Medium.eot differ diff --git a/c3space.de/files/events/35C3/source-code-pro/EOT/SourceCodePro-MediumIt.eot b/c3space.de/files/events/35C3/source-code-pro/EOT/SourceCodePro-MediumIt.eot new file mode 100644 index 0000000..c844f91 Binary files /dev/null and b/c3space.de/files/events/35C3/source-code-pro/EOT/SourceCodePro-MediumIt.eot differ diff --git a/c3space.de/files/events/35C3/source-code-pro/EOT/SourceCodePro-Regular.eot b/c3space.de/files/events/35C3/source-code-pro/EOT/SourceCodePro-Regular.eot new file mode 100644 index 0000000..09e9473 Binary files /dev/null and b/c3space.de/files/events/35C3/source-code-pro/EOT/SourceCodePro-Regular.eot differ diff --git a/c3space.de/files/events/35C3/source-code-pro/EOT/SourceCodePro-Semibold.eot b/c3space.de/files/events/35C3/source-code-pro/EOT/SourceCodePro-Semibold.eot new file mode 100644 index 0000000..0c35176 Binary files /dev/null and b/c3space.de/files/events/35C3/source-code-pro/EOT/SourceCodePro-Semibold.eot differ diff --git a/c3space.de/files/events/35C3/source-code-pro/EOT/SourceCodePro-SemiboldIt.eot b/c3space.de/files/events/35C3/source-code-pro/EOT/SourceCodePro-SemiboldIt.eot new file mode 100644 index 0000000..bfcbe6f Binary files /dev/null and b/c3space.de/files/events/35C3/source-code-pro/EOT/SourceCodePro-SemiboldIt.eot differ diff --git a/c3space.de/files/events/35C3/source-code-pro/LICENSE.txt b/c3space.de/files/events/35C3/source-code-pro/LICENSE.txt new file mode 100755 index 0000000..d154618 --- /dev/null +++ b/c3space.de/files/events/35C3/source-code-pro/LICENSE.txt @@ -0,0 +1,93 @@ +Copyright 2010, 2012 Adobe Systems Incorporated (http://www.adobe.com/), with Reserved Font Name 'Source'. All Rights Reserved. Source is a trademark of Adobe Systems Incorporated in the United States and/or other countries. + +This Font Software is licensed under the SIL Open Font License, Version 1.1. + +This license is copied below, and is also available with a FAQ at: http://scripts.sil.org/OFL + + +----------------------------------------------------------- +SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007 +----------------------------------------------------------- + +PREAMBLE +The goals of the Open Font License (OFL) are to stimulate worldwide +development of collaborative font projects, to support the font creation +efforts of academic and linguistic communities, and to provide a free and +open framework in which fonts may be shared and improved in partnership +with others. + +The OFL allows the licensed fonts to be used, studied, modified and +redistributed freely as long as they are not sold by themselves. The +fonts, including any derivative works, can be bundled, embedded, +redistributed and/or sold with any software provided that any reserved +names are not used by derivative works. The fonts and derivatives, +however, cannot be released under any other type of license. The +requirement for fonts to remain under this license does not apply +to any document created using the fonts or their derivatives. + +DEFINITIONS +"Font Software" refers to the set of files released by the Copyright +Holder(s) under this license and clearly marked as such. This may +include source files, build scripts and documentation. + +"Reserved Font Name" refers to any names specified as such after the +copyright statement(s). + +"Original Version" refers to the collection of Font Software components as +distributed by the Copyright Holder(s). + +"Modified Version" refers to any derivative made by adding to, deleting, +or substituting -- in part or in whole -- any of the components of the +Original Version, by changing formats or by porting the Font Software to a +new environment. + +"Author" refers to any designer, engineer, programmer, technical +writer or other person who contributed to the Font Software. + +PERMISSION & CONDITIONS +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Font Software, to use, study, copy, merge, embed, modify, +redistribute, and sell modified and unmodified copies of the Font +Software, subject to the following conditions: + +1) Neither the Font Software nor any of its individual components, +in Original or Modified Versions, may be sold by itself. + +2) Original or Modified Versions of the Font Software may be bundled, +redistributed and/or sold with any software, provided that each copy +contains the above copyright notice and this license. These can be +included either as stand-alone text files, human-readable headers or +in the appropriate machine-readable metadata fields within text or +binary files as long as those fields can be easily viewed by the user. + +3) No Modified Version of the Font Software may use the Reserved Font +Name(s) unless explicit written permission is granted by the corresponding +Copyright Holder. This restriction only applies to the primary font name as +presented to the users. + +4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font +Software shall not be used to promote, endorse or advertise any +Modified Version, except to acknowledge the contribution(s) of the +Copyright Holder(s) and the Author(s) or with their explicit written +permission. + +5) The Font Software, modified or unmodified, in part or in whole, +must be distributed entirely under this license, and must not be +distributed under any other license. The requirement for fonts to +remain under this license does not apply to any document created +using the Font Software. + +TERMINATION +This license becomes null and void if any of the above conditions are +not met. + +DISCLAIMER +THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT +OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE +COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, +INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL +DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING +FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM +OTHER DEALINGS IN THE FONT SOFTWARE. diff --git a/c3space.de/files/events/35C3/source-code-pro/OTF/SourceCodePro-Black.otf b/c3space.de/files/events/35C3/source-code-pro/OTF/SourceCodePro-Black.otf new file mode 100644 index 0000000..bbbbf64 Binary files /dev/null and b/c3space.de/files/events/35C3/source-code-pro/OTF/SourceCodePro-Black.otf differ diff --git a/c3space.de/files/events/35C3/source-code-pro/OTF/SourceCodePro-BlackIt.otf b/c3space.de/files/events/35C3/source-code-pro/OTF/SourceCodePro-BlackIt.otf new file mode 100644 index 0000000..9835c17 Binary files /dev/null and b/c3space.de/files/events/35C3/source-code-pro/OTF/SourceCodePro-BlackIt.otf differ diff --git a/c3space.de/files/events/35C3/source-code-pro/OTF/SourceCodePro-Bold.otf b/c3space.de/files/events/35C3/source-code-pro/OTF/SourceCodePro-Bold.otf new file mode 100644 index 0000000..f4e576c Binary files /dev/null and b/c3space.de/files/events/35C3/source-code-pro/OTF/SourceCodePro-Bold.otf differ diff --git a/c3space.de/files/events/35C3/source-code-pro/OTF/SourceCodePro-BoldIt.otf b/c3space.de/files/events/35C3/source-code-pro/OTF/SourceCodePro-BoldIt.otf new file mode 100644 index 0000000..681a937 Binary files /dev/null and b/c3space.de/files/events/35C3/source-code-pro/OTF/SourceCodePro-BoldIt.otf differ diff --git a/c3space.de/files/events/35C3/source-code-pro/OTF/SourceCodePro-ExtraLight.otf b/c3space.de/files/events/35C3/source-code-pro/OTF/SourceCodePro-ExtraLight.otf new file mode 100644 index 0000000..de41f8b Binary files /dev/null and b/c3space.de/files/events/35C3/source-code-pro/OTF/SourceCodePro-ExtraLight.otf differ diff --git a/c3space.de/files/events/35C3/source-code-pro/OTF/SourceCodePro-ExtraLightIt.otf b/c3space.de/files/events/35C3/source-code-pro/OTF/SourceCodePro-ExtraLightIt.otf new file mode 100644 index 0000000..49813d0 Binary files /dev/null and b/c3space.de/files/events/35C3/source-code-pro/OTF/SourceCodePro-ExtraLightIt.otf differ diff --git a/c3space.de/files/events/35C3/source-code-pro/OTF/SourceCodePro-It.otf b/c3space.de/files/events/35C3/source-code-pro/OTF/SourceCodePro-It.otf new file mode 100644 index 0000000..0ab9eea Binary files /dev/null and b/c3space.de/files/events/35C3/source-code-pro/OTF/SourceCodePro-It.otf differ diff --git a/c3space.de/files/events/35C3/source-code-pro/OTF/SourceCodePro-Light.otf b/c3space.de/files/events/35C3/source-code-pro/OTF/SourceCodePro-Light.otf new file mode 100644 index 0000000..834a29b Binary files /dev/null and b/c3space.de/files/events/35C3/source-code-pro/OTF/SourceCodePro-Light.otf differ diff --git a/c3space.de/files/events/35C3/source-code-pro/OTF/SourceCodePro-LightIt.otf b/c3space.de/files/events/35C3/source-code-pro/OTF/SourceCodePro-LightIt.otf new file mode 100644 index 0000000..cd833d2 Binary files /dev/null and b/c3space.de/files/events/35C3/source-code-pro/OTF/SourceCodePro-LightIt.otf differ diff --git a/c3space.de/files/events/35C3/source-code-pro/OTF/SourceCodePro-Medium.otf b/c3space.de/files/events/35C3/source-code-pro/OTF/SourceCodePro-Medium.otf new file mode 100644 index 0000000..c5dddda Binary files /dev/null and b/c3space.de/files/events/35C3/source-code-pro/OTF/SourceCodePro-Medium.otf differ diff --git a/c3space.de/files/events/35C3/source-code-pro/OTF/SourceCodePro-MediumIt.otf b/c3space.de/files/events/35C3/source-code-pro/OTF/SourceCodePro-MediumIt.otf new file mode 100644 index 0000000..77cd5da Binary files /dev/null and b/c3space.de/files/events/35C3/source-code-pro/OTF/SourceCodePro-MediumIt.otf differ diff --git a/c3space.de/files/events/35C3/source-code-pro/OTF/SourceCodePro-Regular.otf b/c3space.de/files/events/35C3/source-code-pro/OTF/SourceCodePro-Regular.otf new file mode 100644 index 0000000..4e3b9d0 Binary files /dev/null and b/c3space.de/files/events/35C3/source-code-pro/OTF/SourceCodePro-Regular.otf differ diff --git a/c3space.de/files/events/35C3/source-code-pro/OTF/SourceCodePro-Semibold.otf b/c3space.de/files/events/35C3/source-code-pro/OTF/SourceCodePro-Semibold.otf new file mode 100644 index 0000000..2c4b5b4 Binary files /dev/null and b/c3space.de/files/events/35C3/source-code-pro/OTF/SourceCodePro-Semibold.otf differ diff --git a/c3space.de/files/events/35C3/source-code-pro/OTF/SourceCodePro-SemiboldIt.otf b/c3space.de/files/events/35C3/source-code-pro/OTF/SourceCodePro-SemiboldIt.otf new file mode 100644 index 0000000..cb064e7 Binary files /dev/null and b/c3space.de/files/events/35C3/source-code-pro/OTF/SourceCodePro-SemiboldIt.otf differ diff --git a/c3space.de/files/events/35C3/source-code-pro/README.md b/c3space.de/files/events/35C3/source-code-pro/README.md new file mode 100644 index 0000000..20be1f3 --- /dev/null +++ b/c3space.de/files/events/35C3/source-code-pro/README.md @@ -0,0 +1,20 @@ +# Source Code Pro + +Source Code Pro is a set of OpenType fonts that have been designed to work well +in user interface (UI) environments. In addition to a functional OpenType font, this open +source project provides all of the source files that were used to build this OpenType font +by using the AFDKO makeotf tool. + +## Font installation instructions + +* [Mac OS X](http://support.apple.com/kb/HT2509) +* [Windows](http://windows.microsoft.com/en-us/windows-vista/install-or-uninstall-fonts) +* [Linux/Unix-based systems](https://github.com/adobe-fonts/source-code-pro/issues/17#issuecomment-8967116) + +## Getting Involved + +Send suggestions for changes to the Source Code OpenType font project maintainer, [Paul D. Hunt](mailto:opensourcefonts@adobe.com?subject=[GitHub] Source Code Pro), for consideration. + +## Further information + +For information about the design and background of Source Code, please refer to the [official font readme file](http://www.adobe.com/products/type/font-information/source-code-pro-readme.html). diff --git a/c3space.de/files/events/35C3/source-code-pro/TTF/SourceCodePro-Black.ttf b/c3space.de/files/events/35C3/source-code-pro/TTF/SourceCodePro-Black.ttf new file mode 100644 index 0000000..844d283 Binary files /dev/null and b/c3space.de/files/events/35C3/source-code-pro/TTF/SourceCodePro-Black.ttf differ diff --git a/c3space.de/files/events/35C3/source-code-pro/TTF/SourceCodePro-BlackIt.ttf b/c3space.de/files/events/35C3/source-code-pro/TTF/SourceCodePro-BlackIt.ttf new file mode 100644 index 0000000..79931f1 Binary files /dev/null and b/c3space.de/files/events/35C3/source-code-pro/TTF/SourceCodePro-BlackIt.ttf differ diff --git a/c3space.de/files/events/35C3/source-code-pro/TTF/SourceCodePro-Bold.ttf b/c3space.de/files/events/35C3/source-code-pro/TTF/SourceCodePro-Bold.ttf new file mode 100644 index 0000000..e0c576f Binary files /dev/null and b/c3space.de/files/events/35C3/source-code-pro/TTF/SourceCodePro-Bold.ttf differ diff --git a/c3space.de/files/events/35C3/source-code-pro/TTF/SourceCodePro-BoldIt.ttf b/c3space.de/files/events/35C3/source-code-pro/TTF/SourceCodePro-BoldIt.ttf new file mode 100644 index 0000000..9a4010d Binary files /dev/null and b/c3space.de/files/events/35C3/source-code-pro/TTF/SourceCodePro-BoldIt.ttf differ diff --git a/c3space.de/files/events/35C3/source-code-pro/TTF/SourceCodePro-ExtraLight.ttf b/c3space.de/files/events/35C3/source-code-pro/TTF/SourceCodePro-ExtraLight.ttf new file mode 100644 index 0000000..cc27695 Binary files /dev/null and b/c3space.de/files/events/35C3/source-code-pro/TTF/SourceCodePro-ExtraLight.ttf differ diff --git a/c3space.de/files/events/35C3/source-code-pro/TTF/SourceCodePro-ExtraLightIt.ttf b/c3space.de/files/events/35C3/source-code-pro/TTF/SourceCodePro-ExtraLightIt.ttf new file mode 100644 index 0000000..3791b37 Binary files /dev/null and b/c3space.de/files/events/35C3/source-code-pro/TTF/SourceCodePro-ExtraLightIt.ttf differ diff --git a/c3space.de/files/events/35C3/source-code-pro/TTF/SourceCodePro-It.ttf b/c3space.de/files/events/35C3/source-code-pro/TTF/SourceCodePro-It.ttf new file mode 100644 index 0000000..e7f1541 Binary files /dev/null and b/c3space.de/files/events/35C3/source-code-pro/TTF/SourceCodePro-It.ttf differ diff --git a/c3space.de/files/events/35C3/source-code-pro/TTF/SourceCodePro-Light.ttf b/c3space.de/files/events/35C3/source-code-pro/TTF/SourceCodePro-Light.ttf new file mode 100644 index 0000000..f08bf6c Binary files /dev/null and b/c3space.de/files/events/35C3/source-code-pro/TTF/SourceCodePro-Light.ttf differ diff --git a/c3space.de/files/events/35C3/source-code-pro/TTF/SourceCodePro-LightIt.ttf b/c3space.de/files/events/35C3/source-code-pro/TTF/SourceCodePro-LightIt.ttf new file mode 100644 index 0000000..a491684 Binary files /dev/null and b/c3space.de/files/events/35C3/source-code-pro/TTF/SourceCodePro-LightIt.ttf differ diff --git a/c3space.de/files/events/35C3/source-code-pro/TTF/SourceCodePro-Medium.ttf b/c3space.de/files/events/35C3/source-code-pro/TTF/SourceCodePro-Medium.ttf new file mode 100644 index 0000000..d2c5dd8 Binary files /dev/null and b/c3space.de/files/events/35C3/source-code-pro/TTF/SourceCodePro-Medium.ttf differ diff --git a/c3space.de/files/events/35C3/source-code-pro/TTF/SourceCodePro-MediumIt.ttf b/c3space.de/files/events/35C3/source-code-pro/TTF/SourceCodePro-MediumIt.ttf new file mode 100644 index 0000000..5c02c02 Binary files /dev/null and b/c3space.de/files/events/35C3/source-code-pro/TTF/SourceCodePro-MediumIt.ttf differ diff --git a/c3space.de/files/events/35C3/source-code-pro/TTF/SourceCodePro-Regular.ttf b/c3space.de/files/events/35C3/source-code-pro/TTF/SourceCodePro-Regular.ttf new file mode 100644 index 0000000..437f472 Binary files /dev/null and b/c3space.de/files/events/35C3/source-code-pro/TTF/SourceCodePro-Regular.ttf differ diff --git a/c3space.de/files/events/35C3/source-code-pro/TTF/SourceCodePro-Semibold.ttf b/c3space.de/files/events/35C3/source-code-pro/TTF/SourceCodePro-Semibold.ttf new file mode 100644 index 0000000..f1eab99 Binary files /dev/null and b/c3space.de/files/events/35C3/source-code-pro/TTF/SourceCodePro-Semibold.ttf differ diff --git a/c3space.de/files/events/35C3/source-code-pro/TTF/SourceCodePro-SemiboldIt.ttf b/c3space.de/files/events/35C3/source-code-pro/TTF/SourceCodePro-SemiboldIt.ttf new file mode 100644 index 0000000..c4d2a04 Binary files /dev/null and b/c3space.de/files/events/35C3/source-code-pro/TTF/SourceCodePro-SemiboldIt.ttf differ diff --git a/c3space.de/files/events/35C3/source-code-pro/WOFF/OTF/SourceCodePro-Black.otf.woff b/c3space.de/files/events/35C3/source-code-pro/WOFF/OTF/SourceCodePro-Black.otf.woff new file mode 100644 index 0000000..d08a984 Binary files /dev/null and b/c3space.de/files/events/35C3/source-code-pro/WOFF/OTF/SourceCodePro-Black.otf.woff differ diff --git a/c3space.de/files/events/35C3/source-code-pro/WOFF/OTF/SourceCodePro-BlackIt.otf.woff b/c3space.de/files/events/35C3/source-code-pro/WOFF/OTF/SourceCodePro-BlackIt.otf.woff new file mode 100644 index 0000000..1061185 Binary files /dev/null and b/c3space.de/files/events/35C3/source-code-pro/WOFF/OTF/SourceCodePro-BlackIt.otf.woff differ diff --git a/c3space.de/files/events/35C3/source-code-pro/WOFF/OTF/SourceCodePro-Bold.otf.woff b/c3space.de/files/events/35C3/source-code-pro/WOFF/OTF/SourceCodePro-Bold.otf.woff new file mode 100644 index 0000000..cf96099 Binary files /dev/null and b/c3space.de/files/events/35C3/source-code-pro/WOFF/OTF/SourceCodePro-Bold.otf.woff differ diff --git a/c3space.de/files/events/35C3/source-code-pro/WOFF/OTF/SourceCodePro-BoldIt.otf.woff b/c3space.de/files/events/35C3/source-code-pro/WOFF/OTF/SourceCodePro-BoldIt.otf.woff new file mode 100644 index 0000000..e8702f9 Binary files /dev/null and b/c3space.de/files/events/35C3/source-code-pro/WOFF/OTF/SourceCodePro-BoldIt.otf.woff differ diff --git a/c3space.de/files/events/35C3/source-code-pro/WOFF/OTF/SourceCodePro-ExtraLight.otf.woff b/c3space.de/files/events/35C3/source-code-pro/WOFF/OTF/SourceCodePro-ExtraLight.otf.woff new file mode 100644 index 0000000..54e6b36 Binary files /dev/null and b/c3space.de/files/events/35C3/source-code-pro/WOFF/OTF/SourceCodePro-ExtraLight.otf.woff differ diff --git a/c3space.de/files/events/35C3/source-code-pro/WOFF/OTF/SourceCodePro-ExtraLightIt.otf.woff b/c3space.de/files/events/35C3/source-code-pro/WOFF/OTF/SourceCodePro-ExtraLightIt.otf.woff new file mode 100644 index 0000000..c57443c Binary files /dev/null and b/c3space.de/files/events/35C3/source-code-pro/WOFF/OTF/SourceCodePro-ExtraLightIt.otf.woff differ diff --git a/c3space.de/files/events/35C3/source-code-pro/WOFF/OTF/SourceCodePro-It.otf.woff b/c3space.de/files/events/35C3/source-code-pro/WOFF/OTF/SourceCodePro-It.otf.woff new file mode 100644 index 0000000..cc67c99 Binary files /dev/null and b/c3space.de/files/events/35C3/source-code-pro/WOFF/OTF/SourceCodePro-It.otf.woff differ diff --git a/c3space.de/files/events/35C3/source-code-pro/WOFF/OTF/SourceCodePro-Light.otf.woff b/c3space.de/files/events/35C3/source-code-pro/WOFF/OTF/SourceCodePro-Light.otf.woff new file mode 100644 index 0000000..c62373f Binary files /dev/null and b/c3space.de/files/events/35C3/source-code-pro/WOFF/OTF/SourceCodePro-Light.otf.woff differ diff --git a/c3space.de/files/events/35C3/source-code-pro/WOFF/OTF/SourceCodePro-LightIt.otf.woff b/c3space.de/files/events/35C3/source-code-pro/WOFF/OTF/SourceCodePro-LightIt.otf.woff new file mode 100644 index 0000000..c4cd646 Binary files /dev/null and b/c3space.de/files/events/35C3/source-code-pro/WOFF/OTF/SourceCodePro-LightIt.otf.woff differ diff --git a/c3space.de/files/events/35C3/source-code-pro/WOFF/OTF/SourceCodePro-Medium.otf.woff b/c3space.de/files/events/35C3/source-code-pro/WOFF/OTF/SourceCodePro-Medium.otf.woff new file mode 100644 index 0000000..826a854 Binary files /dev/null and b/c3space.de/files/events/35C3/source-code-pro/WOFF/OTF/SourceCodePro-Medium.otf.woff differ diff --git a/c3space.de/files/events/35C3/source-code-pro/WOFF/OTF/SourceCodePro-MediumIt.otf.woff b/c3space.de/files/events/35C3/source-code-pro/WOFF/OTF/SourceCodePro-MediumIt.otf.woff new file mode 100644 index 0000000..5c538de Binary files /dev/null and b/c3space.de/files/events/35C3/source-code-pro/WOFF/OTF/SourceCodePro-MediumIt.otf.woff differ diff --git a/c3space.de/files/events/35C3/source-code-pro/WOFF/OTF/SourceCodePro-Regular.otf.woff b/c3space.de/files/events/35C3/source-code-pro/WOFF/OTF/SourceCodePro-Regular.otf.woff new file mode 100644 index 0000000..395436e Binary files /dev/null and b/c3space.de/files/events/35C3/source-code-pro/WOFF/OTF/SourceCodePro-Regular.otf.woff differ diff --git a/c3space.de/files/events/35C3/source-code-pro/WOFF/OTF/SourceCodePro-Semibold.otf.woff b/c3space.de/files/events/35C3/source-code-pro/WOFF/OTF/SourceCodePro-Semibold.otf.woff new file mode 100644 index 0000000..83ec113 Binary files /dev/null and b/c3space.de/files/events/35C3/source-code-pro/WOFF/OTF/SourceCodePro-Semibold.otf.woff differ diff --git a/c3space.de/files/events/35C3/source-code-pro/WOFF/OTF/SourceCodePro-SemiboldIt.otf.woff b/c3space.de/files/events/35C3/source-code-pro/WOFF/OTF/SourceCodePro-SemiboldIt.otf.woff new file mode 100644 index 0000000..be0bd90 Binary files /dev/null and b/c3space.de/files/events/35C3/source-code-pro/WOFF/OTF/SourceCodePro-SemiboldIt.otf.woff differ diff --git a/c3space.de/files/events/35C3/source-code-pro/WOFF/TTF/SourceCodePro-Black.ttf.woff b/c3space.de/files/events/35C3/source-code-pro/WOFF/TTF/SourceCodePro-Black.ttf.woff new file mode 100644 index 0000000..c7f8906 Binary files /dev/null and b/c3space.de/files/events/35C3/source-code-pro/WOFF/TTF/SourceCodePro-Black.ttf.woff differ diff --git a/c3space.de/files/events/35C3/source-code-pro/WOFF/TTF/SourceCodePro-BlackIt.ttf.woff b/c3space.de/files/events/35C3/source-code-pro/WOFF/TTF/SourceCodePro-BlackIt.ttf.woff new file mode 100644 index 0000000..1c80efe Binary files /dev/null and b/c3space.de/files/events/35C3/source-code-pro/WOFF/TTF/SourceCodePro-BlackIt.ttf.woff differ diff --git a/c3space.de/files/events/35C3/source-code-pro/WOFF/TTF/SourceCodePro-Bold.ttf.woff b/c3space.de/files/events/35C3/source-code-pro/WOFF/TTF/SourceCodePro-Bold.ttf.woff new file mode 100644 index 0000000..c65ba84 Binary files /dev/null and b/c3space.de/files/events/35C3/source-code-pro/WOFF/TTF/SourceCodePro-Bold.ttf.woff differ diff --git a/c3space.de/files/events/35C3/source-code-pro/WOFF/TTF/SourceCodePro-BoldIt.ttf.woff b/c3space.de/files/events/35C3/source-code-pro/WOFF/TTF/SourceCodePro-BoldIt.ttf.woff new file mode 100644 index 0000000..6a6798a Binary files /dev/null and b/c3space.de/files/events/35C3/source-code-pro/WOFF/TTF/SourceCodePro-BoldIt.ttf.woff differ diff --git a/c3space.de/files/events/35C3/source-code-pro/WOFF/TTF/SourceCodePro-ExtraLight.ttf.woff b/c3space.de/files/events/35C3/source-code-pro/WOFF/TTF/SourceCodePro-ExtraLight.ttf.woff new file mode 100644 index 0000000..6eaab13 Binary files /dev/null and b/c3space.de/files/events/35C3/source-code-pro/WOFF/TTF/SourceCodePro-ExtraLight.ttf.woff differ diff --git a/c3space.de/files/events/35C3/source-code-pro/WOFF/TTF/SourceCodePro-ExtraLightIt.ttf.woff b/c3space.de/files/events/35C3/source-code-pro/WOFF/TTF/SourceCodePro-ExtraLightIt.ttf.woff new file mode 100644 index 0000000..466d3cb Binary files /dev/null and b/c3space.de/files/events/35C3/source-code-pro/WOFF/TTF/SourceCodePro-ExtraLightIt.ttf.woff differ diff --git a/c3space.de/files/events/35C3/source-code-pro/WOFF/TTF/SourceCodePro-It.ttf.woff b/c3space.de/files/events/35C3/source-code-pro/WOFF/TTF/SourceCodePro-It.ttf.woff new file mode 100644 index 0000000..6dca188 Binary files /dev/null and b/c3space.de/files/events/35C3/source-code-pro/WOFF/TTF/SourceCodePro-It.ttf.woff differ diff --git a/c3space.de/files/events/35C3/source-code-pro/WOFF/TTF/SourceCodePro-Light.ttf.woff b/c3space.de/files/events/35C3/source-code-pro/WOFF/TTF/SourceCodePro-Light.ttf.woff new file mode 100644 index 0000000..7750718 Binary files /dev/null and b/c3space.de/files/events/35C3/source-code-pro/WOFF/TTF/SourceCodePro-Light.ttf.woff differ diff --git a/c3space.de/files/events/35C3/source-code-pro/WOFF/TTF/SourceCodePro-LightIt.ttf.woff b/c3space.de/files/events/35C3/source-code-pro/WOFF/TTF/SourceCodePro-LightIt.ttf.woff new file mode 100644 index 0000000..a08555e Binary files /dev/null and b/c3space.de/files/events/35C3/source-code-pro/WOFF/TTF/SourceCodePro-LightIt.ttf.woff differ diff --git a/c3space.de/files/events/35C3/source-code-pro/WOFF/TTF/SourceCodePro-Medium.ttf.woff b/c3space.de/files/events/35C3/source-code-pro/WOFF/TTF/SourceCodePro-Medium.ttf.woff new file mode 100644 index 0000000..1c558ed Binary files /dev/null and b/c3space.de/files/events/35C3/source-code-pro/WOFF/TTF/SourceCodePro-Medium.ttf.woff differ diff --git a/c3space.de/files/events/35C3/source-code-pro/WOFF/TTF/SourceCodePro-MediumIt.ttf.woff b/c3space.de/files/events/35C3/source-code-pro/WOFF/TTF/SourceCodePro-MediumIt.ttf.woff new file mode 100644 index 0000000..f639924 Binary files /dev/null and b/c3space.de/files/events/35C3/source-code-pro/WOFF/TTF/SourceCodePro-MediumIt.ttf.woff differ diff --git a/c3space.de/files/events/35C3/source-code-pro/WOFF/TTF/SourceCodePro-Regular.ttf.woff b/c3space.de/files/events/35C3/source-code-pro/WOFF/TTF/SourceCodePro-Regular.ttf.woff new file mode 100644 index 0000000..0af792a Binary files /dev/null and b/c3space.de/files/events/35C3/source-code-pro/WOFF/TTF/SourceCodePro-Regular.ttf.woff differ diff --git a/c3space.de/files/events/35C3/source-code-pro/WOFF/TTF/SourceCodePro-Semibold.ttf.woff b/c3space.de/files/events/35C3/source-code-pro/WOFF/TTF/SourceCodePro-Semibold.ttf.woff new file mode 100644 index 0000000..0fbe76a Binary files /dev/null and b/c3space.de/files/events/35C3/source-code-pro/WOFF/TTF/SourceCodePro-Semibold.ttf.woff differ diff --git a/c3space.de/files/events/35C3/source-code-pro/WOFF/TTF/SourceCodePro-SemiboldIt.ttf.woff b/c3space.de/files/events/35C3/source-code-pro/WOFF/TTF/SourceCodePro-SemiboldIt.ttf.woff new file mode 100644 index 0000000..1f40de2 Binary files /dev/null and b/c3space.de/files/events/35C3/source-code-pro/WOFF/TTF/SourceCodePro-SemiboldIt.ttf.woff differ diff --git a/c3space.de/files/events/35C3/source-code-pro/WOFF2/OTF/SourceCodePro-Black.otf.woff2 b/c3space.de/files/events/35C3/source-code-pro/WOFF2/OTF/SourceCodePro-Black.otf.woff2 new file mode 100644 index 0000000..2d4acb5 Binary files /dev/null and b/c3space.de/files/events/35C3/source-code-pro/WOFF2/OTF/SourceCodePro-Black.otf.woff2 differ diff --git a/c3space.de/files/events/35C3/source-code-pro/WOFF2/OTF/SourceCodePro-BlackIt.otf.woff2 b/c3space.de/files/events/35C3/source-code-pro/WOFF2/OTF/SourceCodePro-BlackIt.otf.woff2 new file mode 100644 index 0000000..f3349d1 Binary files /dev/null and b/c3space.de/files/events/35C3/source-code-pro/WOFF2/OTF/SourceCodePro-BlackIt.otf.woff2 differ diff --git a/c3space.de/files/events/35C3/source-code-pro/WOFF2/OTF/SourceCodePro-Bold.otf.woff2 b/c3space.de/files/events/35C3/source-code-pro/WOFF2/OTF/SourceCodePro-Bold.otf.woff2 new file mode 100644 index 0000000..cbe3835 Binary files /dev/null and b/c3space.de/files/events/35C3/source-code-pro/WOFF2/OTF/SourceCodePro-Bold.otf.woff2 differ diff --git a/c3space.de/files/events/35C3/source-code-pro/WOFF2/OTF/SourceCodePro-BoldIt.otf.woff2 b/c3space.de/files/events/35C3/source-code-pro/WOFF2/OTF/SourceCodePro-BoldIt.otf.woff2 new file mode 100644 index 0000000..3b4481a Binary files /dev/null and b/c3space.de/files/events/35C3/source-code-pro/WOFF2/OTF/SourceCodePro-BoldIt.otf.woff2 differ diff --git a/c3space.de/files/events/35C3/source-code-pro/WOFF2/OTF/SourceCodePro-ExtraLight.otf.woff2 b/c3space.de/files/events/35C3/source-code-pro/WOFF2/OTF/SourceCodePro-ExtraLight.otf.woff2 new file mode 100644 index 0000000..f7a5aef Binary files /dev/null and b/c3space.de/files/events/35C3/source-code-pro/WOFF2/OTF/SourceCodePro-ExtraLight.otf.woff2 differ diff --git a/c3space.de/files/events/35C3/source-code-pro/WOFF2/OTF/SourceCodePro-ExtraLightIt.otf.woff2 b/c3space.de/files/events/35C3/source-code-pro/WOFF2/OTF/SourceCodePro-ExtraLightIt.otf.woff2 new file mode 100644 index 0000000..b4f3607 Binary files /dev/null and b/c3space.de/files/events/35C3/source-code-pro/WOFF2/OTF/SourceCodePro-ExtraLightIt.otf.woff2 differ diff --git a/c3space.de/files/events/35C3/source-code-pro/WOFF2/OTF/SourceCodePro-It.otf.woff2 b/c3space.de/files/events/35C3/source-code-pro/WOFF2/OTF/SourceCodePro-It.otf.woff2 new file mode 100644 index 0000000..74d1695 Binary files /dev/null and b/c3space.de/files/events/35C3/source-code-pro/WOFF2/OTF/SourceCodePro-It.otf.woff2 differ diff --git a/c3space.de/files/events/35C3/source-code-pro/WOFF2/OTF/SourceCodePro-Light.otf.woff2 b/c3space.de/files/events/35C3/source-code-pro/WOFF2/OTF/SourceCodePro-Light.otf.woff2 new file mode 100644 index 0000000..121eb53 Binary files /dev/null and b/c3space.de/files/events/35C3/source-code-pro/WOFF2/OTF/SourceCodePro-Light.otf.woff2 differ diff --git a/c3space.de/files/events/35C3/source-code-pro/WOFF2/OTF/SourceCodePro-LightIt.otf.woff2 b/c3space.de/files/events/35C3/source-code-pro/WOFF2/OTF/SourceCodePro-LightIt.otf.woff2 new file mode 100644 index 0000000..cc818c3 Binary files /dev/null and b/c3space.de/files/events/35C3/source-code-pro/WOFF2/OTF/SourceCodePro-LightIt.otf.woff2 differ diff --git a/c3space.de/files/events/35C3/source-code-pro/WOFF2/OTF/SourceCodePro-Medium.otf.woff2 b/c3space.de/files/events/35C3/source-code-pro/WOFF2/OTF/SourceCodePro-Medium.otf.woff2 new file mode 100644 index 0000000..961ce88 Binary files /dev/null and b/c3space.de/files/events/35C3/source-code-pro/WOFF2/OTF/SourceCodePro-Medium.otf.woff2 differ diff --git a/c3space.de/files/events/35C3/source-code-pro/WOFF2/OTF/SourceCodePro-MediumIt.otf.woff2 b/c3space.de/files/events/35C3/source-code-pro/WOFF2/OTF/SourceCodePro-MediumIt.otf.woff2 new file mode 100644 index 0000000..9385a97 Binary files /dev/null and b/c3space.de/files/events/35C3/source-code-pro/WOFF2/OTF/SourceCodePro-MediumIt.otf.woff2 differ diff --git a/c3space.de/files/events/35C3/source-code-pro/WOFF2/OTF/SourceCodePro-Regular.otf.woff2 b/c3space.de/files/events/35C3/source-code-pro/WOFF2/OTF/SourceCodePro-Regular.otf.woff2 new file mode 100644 index 0000000..65cd591 Binary files /dev/null and b/c3space.de/files/events/35C3/source-code-pro/WOFF2/OTF/SourceCodePro-Regular.otf.woff2 differ diff --git a/c3space.de/files/events/35C3/source-code-pro/WOFF2/OTF/SourceCodePro-Semibold.otf.woff2 b/c3space.de/files/events/35C3/source-code-pro/WOFF2/OTF/SourceCodePro-Semibold.otf.woff2 new file mode 100644 index 0000000..45620b1 Binary files /dev/null and b/c3space.de/files/events/35C3/source-code-pro/WOFF2/OTF/SourceCodePro-Semibold.otf.woff2 differ diff --git a/c3space.de/files/events/35C3/source-code-pro/WOFF2/OTF/SourceCodePro-SemiboldIt.otf.woff2 b/c3space.de/files/events/35C3/source-code-pro/WOFF2/OTF/SourceCodePro-SemiboldIt.otf.woff2 new file mode 100644 index 0000000..dca024c Binary files /dev/null and b/c3space.de/files/events/35C3/source-code-pro/WOFF2/OTF/SourceCodePro-SemiboldIt.otf.woff2 differ diff --git a/c3space.de/files/events/35C3/source-code-pro/WOFF2/TTF/SourceCodePro-Black.ttf.woff2 b/c3space.de/files/events/35C3/source-code-pro/WOFF2/TTF/SourceCodePro-Black.ttf.woff2 new file mode 100644 index 0000000..e01216e Binary files /dev/null and b/c3space.de/files/events/35C3/source-code-pro/WOFF2/TTF/SourceCodePro-Black.ttf.woff2 differ diff --git a/c3space.de/files/events/35C3/source-code-pro/WOFF2/TTF/SourceCodePro-BlackIt.ttf.woff2 b/c3space.de/files/events/35C3/source-code-pro/WOFF2/TTF/SourceCodePro-BlackIt.ttf.woff2 new file mode 100644 index 0000000..9d86570 Binary files /dev/null and b/c3space.de/files/events/35C3/source-code-pro/WOFF2/TTF/SourceCodePro-BlackIt.ttf.woff2 differ diff --git a/c3space.de/files/events/35C3/source-code-pro/WOFF2/TTF/SourceCodePro-Bold.ttf.woff2 b/c3space.de/files/events/35C3/source-code-pro/WOFF2/TTF/SourceCodePro-Bold.ttf.woff2 new file mode 100644 index 0000000..b78d523 Binary files /dev/null and b/c3space.de/files/events/35C3/source-code-pro/WOFF2/TTF/SourceCodePro-Bold.ttf.woff2 differ diff --git a/c3space.de/files/events/35C3/source-code-pro/WOFF2/TTF/SourceCodePro-BoldIt.ttf.woff2 b/c3space.de/files/events/35C3/source-code-pro/WOFF2/TTF/SourceCodePro-BoldIt.ttf.woff2 new file mode 100644 index 0000000..2551c2e Binary files /dev/null and b/c3space.de/files/events/35C3/source-code-pro/WOFF2/TTF/SourceCodePro-BoldIt.ttf.woff2 differ diff --git a/c3space.de/files/events/35C3/source-code-pro/WOFF2/TTF/SourceCodePro-ExtraLight.ttf.woff2 b/c3space.de/files/events/35C3/source-code-pro/WOFF2/TTF/SourceCodePro-ExtraLight.ttf.woff2 new file mode 100644 index 0000000..bd47286 Binary files /dev/null and b/c3space.de/files/events/35C3/source-code-pro/WOFF2/TTF/SourceCodePro-ExtraLight.ttf.woff2 differ diff --git a/c3space.de/files/events/35C3/source-code-pro/WOFF2/TTF/SourceCodePro-ExtraLightIt.ttf.woff2 b/c3space.de/files/events/35C3/source-code-pro/WOFF2/TTF/SourceCodePro-ExtraLightIt.ttf.woff2 new file mode 100644 index 0000000..9f211fe Binary files /dev/null and b/c3space.de/files/events/35C3/source-code-pro/WOFF2/TTF/SourceCodePro-ExtraLightIt.ttf.woff2 differ diff --git a/c3space.de/files/events/35C3/source-code-pro/WOFF2/TTF/SourceCodePro-It.ttf.woff2 b/c3space.de/files/events/35C3/source-code-pro/WOFF2/TTF/SourceCodePro-It.ttf.woff2 new file mode 100644 index 0000000..4673f48 Binary files /dev/null and b/c3space.de/files/events/35C3/source-code-pro/WOFF2/TTF/SourceCodePro-It.ttf.woff2 differ diff --git a/c3space.de/files/events/35C3/source-code-pro/WOFF2/TTF/SourceCodePro-Light.ttf.woff2 b/c3space.de/files/events/35C3/source-code-pro/WOFF2/TTF/SourceCodePro-Light.ttf.woff2 new file mode 100644 index 0000000..8a2ed8f Binary files /dev/null and b/c3space.de/files/events/35C3/source-code-pro/WOFF2/TTF/SourceCodePro-Light.ttf.woff2 differ diff --git a/c3space.de/files/events/35C3/source-code-pro/WOFF2/TTF/SourceCodePro-LightIt.ttf.woff2 b/c3space.de/files/events/35C3/source-code-pro/WOFF2/TTF/SourceCodePro-LightIt.ttf.woff2 new file mode 100644 index 0000000..4a9bb34 Binary files /dev/null and b/c3space.de/files/events/35C3/source-code-pro/WOFF2/TTF/SourceCodePro-LightIt.ttf.woff2 differ diff --git a/c3space.de/files/events/35C3/source-code-pro/WOFF2/TTF/SourceCodePro-Medium.ttf.woff2 b/c3space.de/files/events/35C3/source-code-pro/WOFF2/TTF/SourceCodePro-Medium.ttf.woff2 new file mode 100644 index 0000000..ea961dd Binary files /dev/null and b/c3space.de/files/events/35C3/source-code-pro/WOFF2/TTF/SourceCodePro-Medium.ttf.woff2 differ diff --git a/c3space.de/files/events/35C3/source-code-pro/WOFF2/TTF/SourceCodePro-MediumIt.ttf.woff2 b/c3space.de/files/events/35C3/source-code-pro/WOFF2/TTF/SourceCodePro-MediumIt.ttf.woff2 new file mode 100644 index 0000000..cc4fe89 Binary files /dev/null and b/c3space.de/files/events/35C3/source-code-pro/WOFF2/TTF/SourceCodePro-MediumIt.ttf.woff2 differ diff --git a/c3space.de/files/events/35C3/source-code-pro/WOFF2/TTF/SourceCodePro-Regular.ttf.woff2 b/c3space.de/files/events/35C3/source-code-pro/WOFF2/TTF/SourceCodePro-Regular.ttf.woff2 new file mode 100644 index 0000000..18d2199 Binary files /dev/null and b/c3space.de/files/events/35C3/source-code-pro/WOFF2/TTF/SourceCodePro-Regular.ttf.woff2 differ diff --git a/c3space.de/files/events/35C3/source-code-pro/WOFF2/TTF/SourceCodePro-Semibold.ttf.woff2 b/c3space.de/files/events/35C3/source-code-pro/WOFF2/TTF/SourceCodePro-Semibold.ttf.woff2 new file mode 100644 index 0000000..8baef8f Binary files /dev/null and b/c3space.de/files/events/35C3/source-code-pro/WOFF2/TTF/SourceCodePro-Semibold.ttf.woff2 differ diff --git a/c3space.de/files/events/35C3/source-code-pro/WOFF2/TTF/SourceCodePro-SemiboldIt.ttf.woff2 b/c3space.de/files/events/35C3/source-code-pro/WOFF2/TTF/SourceCodePro-SemiboldIt.ttf.woff2 new file mode 100644 index 0000000..1e846ca Binary files /dev/null and b/c3space.de/files/events/35C3/source-code-pro/WOFF2/TTF/SourceCodePro-SemiboldIt.ttf.woff2 differ diff --git a/c3space.de/files/events/35C3/source-code-pro/bower.json b/c3space.de/files/events/35C3/source-code-pro/bower.json new file mode 100755 index 0000000..d59dda4 --- /dev/null +++ b/c3space.de/files/events/35C3/source-code-pro/bower.json @@ -0,0 +1,15 @@ +{ + "name": "source-code-pro", + "version": "1.017", + "main": "source-code-pro.css", + "homepage": "https://github.com/adobe-fonts/source-code-pro", + "repository": { + "type": "git", + "url": "https://github.com/adobe-fonts/source-code-pro.git" + }, + "authors": [ + { "name": "Paul D. Hunt" } + ], + "description": "Source Code Pro font family by Adobe", + "license": "SIL OFL 1.1" +} diff --git a/c3space.de/files/events/35C3/source-code-pro/source-code-pro.css b/c3space.de/files/events/35C3/source-code-pro/source-code-pro.css new file mode 100755 index 0000000..93e787c --- /dev/null +++ b/c3space.de/files/events/35C3/source-code-pro/source-code-pro.css @@ -0,0 +1,167 @@ +@font-face{ + font-family: 'Source Code Pro'; + font-weight: 200; + font-style: normal; + font-stretch: normal; + src: url('EOT/SourceCodePro-ExtraLight.eot') format('embedded-opentype'), + url('WOFF2/TTF/SourceCodePro-ExtraLight.ttf.woff2') format('woff2'), + url('WOFF/OTF/SourceCodePro-ExtraLight.otf.woff') format('woff'), + url('OTF/SourceCodePro-ExtraLight.otf') format('opentype'), + url('TTF/SourceCodePro-ExtraLight.ttf') format('truetype'); +} + +@font-face{ + font-family: 'Source Code Pro'; + font-weight: 200; + font-style: italic; + font-stretch: normal; + src: url('EOT/SourceCodePro-ExtraLightIt.eot') format('embedded-opentype'), + url('WOFF2/TTF/SourceCodePro-ExtraLightIt.ttf.woff2') format('woff2'), + url('WOFF/OTF/SourceCodePro-ExtraLightIt.otf.woff') format('woff'), + url('OTF/SourceCodePro-ExtraLightIt.otf') format('opentype'), + url('TTF/SourceCodePro-ExtraLightIt.ttf') format('truetype'); +} + +@font-face{ + font-family: 'Source Code Pro'; + font-weight: 300; + font-style: normal; + font-stretch: normal; + src: url('EOT/SourceCodePro-Light.eot') format('embedded-opentype'), + url('WOFF2/TTF/SourceCodePro-Light.ttf.woff2') format('woff2'), + url('WOFF/OTF/SourceCodePro-Light.otf.woff') format('woff'), + url('OTF/SourceCodePro-Light.otf') format('opentype'), + url('TTF/SourceCodePro-Light.ttf') format('truetype'); +} + +@font-face{ + font-family: 'Source Code Pro'; + font-weight: 300; + font-style: italic; + font-stretch: normal; + src: url('EOT/SourceCodePro-LightIt.eot') format('embedded-opentype'), + url('WOFF2/TTF/SourceCodePro-LightIt.ttf.woff2') format('woff2'), + url('WOFF/OTF/SourceCodePro-LightIt.otf.woff') format('woff'), + url('OTF/SourceCodePro-LightIt.otf') format('opentype'), + url('TTF/SourceCodePro-LightIt.ttf') format('truetype'); +} + +@font-face{ + font-family: 'Source Code Pro'; + font-weight: 400; + font-style: normal; + font-stretch: normal; + src: url('EOT/SourceCodePro-Regular.eot') format('embedded-opentype'), + url('WOFF2/TTF/SourceCodePro-Regular.ttf.woff2') format('woff2'), + url('WOFF/OTF/SourceCodePro-Regular.otf.woff') format('woff'), + url('OTF/SourceCodePro-Regular.otf') format('opentype'), + url('TTF/SourceCodePro-Regular.ttf') format('truetype'); +} + +@font-face{ + font-family: 'Source Code Pro'; + font-weight: 400; + font-style: italic; + font-stretch: normal; + src: url('EOT/SourceCodePro-It.eot') format('embedded-opentype'), + url('WOFF2/TTF/SourceCodePro-It.ttf.woff2') format('woff2'), + url('WOFF/OTF/SourceCodePro-It.otf.woff') format('woff'), + url('OTF/SourceCodePro-It.otf') format('opentype'), + url('TTF/SourceCodePro-It.ttf') format('truetype'); +} + +@font-face{ + font-family: 'Source Code Pro'; + font-weight: 500; + font-style: normal; + font-stretch: normal; + src: url('EOT/SourceCodePro-Medium.eot') format('embedded-opentype'), + url('WOFF2/TTF/SourceCodePro-Medium.ttf.woff2') format('woff2'), + url('WOFF/OTF/SourceCodePro-Medium.otf.woff') format('woff'), + url('OTF/SourceCodePro-Medium.otf') format('opentype'), + url('TTF/SourceCodePro-Medium.ttf') format('truetype'); +} + +@font-face{ + font-family: 'Source Code Pro'; + font-weight: 500; + font-style: italic; + font-stretch: normal; + src: url('EOT/SourceCodePro-MediumIt.eot') format('embedded-opentype'), + url('WOFF2/TTF/SourceCodePro-MediumIt.ttf.woff2') format('woff2'), + url('WOFF/OTF/SourceCodePro-MediumIt.otf.woff') format('woff'), + url('OTF/SourceCodePro-MediumIt.otf') format('opentype'), + url('TTF/SourceCodePro-MediumIt.ttf') format('truetype'); +} + +@font-face{ + font-family: 'Source Code Pro'; + font-weight: 600; + font-style: normal; + font-stretch: normal; + src: url('EOT/SourceCodePro-Semibold.eot') format('embedded-opentype'), + url('WOFF2/TTF/SourceCodePro-Semibold.ttf.woff2') format('woff2'), + url('WOFF/OTF/SourceCodePro-Semibold.otf.woff') format('woff'), + url('OTF/SourceCodePro-Semibold.otf') format('opentype'), + url('TTF/SourceCodePro-Semibold.ttf') format('truetype'); +} + +@font-face{ + font-family: 'Source Code Pro'; + font-weight: 600; + font-style: italic; + font-stretch: normal; + src: url('EOT/SourceCodePro-SemiboldIt.eot') format('embedded-opentype'), + url('WOFF2/TTF/SourceCodePro-SemiboldIt.ttf.woff2') format('woff2'), + url('WOFF/OTF/SourceCodePro-SemiboldIt.otf.woff') format('woff'), + url('OTF/SourceCodePro-SemiboldIt.otf') format('opentype'), + url('TTF/SourceCodePro-SemiboldIt.ttf') format('truetype'); +} + +@font-face{ + font-family: 'Source Code Pro'; + font-weight: 700; + font-style: normal; + font-stretch: normal; + src: url('EOT/SourceCodePro-Bold.eot') format('embedded-opentype'), + url('WOFF2/TTF/SourceCodePro-Bold.ttf.woff2') format('woff2'), + url('WOFF/OTF/SourceCodePro-Bold.otf.woff') format('woff'), + url('OTF/SourceCodePro-Bold.otf') format('opentype'), + url('TTF/SourceCodePro-Bold.ttf') format('truetype'); +} + +@font-face{ + font-family: 'Source Code Pro'; + font-weight: 700; + font-style: italic; + font-stretch: normal; + src: url('EOT/SourceCodePro-BoldIt.eot') format('embedded-opentype'), + url('WOFF2/TTF/SourceCodePro-BoldIt.ttf.woff2') format('woff2'), + url('WOFF/OTF/SourceCodePro-BoldIt.otf.woff') format('woff'), + url('OTF/SourceCodePro-BoldIt.otf') format('opentype'), + url('TTF/SourceCodePro-BoldIt.ttf') format('truetype'); +} + +@font-face{ + font-family: 'Source Code Pro'; + font-weight: 900; + font-style: normal; + font-stretch: normal; + src: url('EOT/SourceCodePro-Black.eot') format('embedded-opentype'), + url('WOFF2/TTF/SourceCodePro-Black.ttf.woff2') format('woff2'), + url('WOFF/OTF/SourceCodePro-Black.otf.woff') format('woff'), + url('OTF/SourceCodePro-Black.otf') format('opentype'), + url('TTF/SourceCodePro-Black.ttf') format('truetype'); +} + +@font-face{ + font-family: 'Source Code Pro'; + font-weight: 900; + font-style: italic; + font-stretch: normal; + src: url('EOT/SourceCodePro-BlackIt.eot') format('embedded-opentype'), + url('WOFF2/TTF/SourceCodePro-BlackIt.ttf.woff2') format('woff2'), + url('WOFF/OTF/SourceCodePro-BlackIt.otf.woff') format('woff'), + url('OTF/SourceCodePro-BlackIt.otf') format('opentype'), + url('TTF/SourceCodePro-BlackIt.ttf') format('truetype'); +} diff --git a/c3space.de/files/events/35C3/source-serif-pro/EOT/SourceSerifPro-Black.eot b/c3space.de/files/events/35C3/source-serif-pro/EOT/SourceSerifPro-Black.eot new file mode 100644 index 0000000..b6f111e Binary files /dev/null and b/c3space.de/files/events/35C3/source-serif-pro/EOT/SourceSerifPro-Black.eot differ diff --git a/c3space.de/files/events/35C3/source-serif-pro/EOT/SourceSerifPro-Bold.eot b/c3space.de/files/events/35C3/source-serif-pro/EOT/SourceSerifPro-Bold.eot new file mode 100644 index 0000000..94d75e9 Binary files /dev/null and b/c3space.de/files/events/35C3/source-serif-pro/EOT/SourceSerifPro-Bold.eot differ diff --git a/c3space.de/files/events/35C3/source-serif-pro/EOT/SourceSerifPro-ExtraLight.eot b/c3space.de/files/events/35C3/source-serif-pro/EOT/SourceSerifPro-ExtraLight.eot new file mode 100644 index 0000000..3ab1eec Binary files /dev/null and b/c3space.de/files/events/35C3/source-serif-pro/EOT/SourceSerifPro-ExtraLight.eot differ diff --git a/c3space.de/files/events/35C3/source-serif-pro/EOT/SourceSerifPro-Light.eot b/c3space.de/files/events/35C3/source-serif-pro/EOT/SourceSerifPro-Light.eot new file mode 100644 index 0000000..8b580d3 Binary files /dev/null and b/c3space.de/files/events/35C3/source-serif-pro/EOT/SourceSerifPro-Light.eot differ diff --git a/c3space.de/files/events/35C3/source-serif-pro/EOT/SourceSerifPro-Regular.eot b/c3space.de/files/events/35C3/source-serif-pro/EOT/SourceSerifPro-Regular.eot new file mode 100644 index 0000000..f731543 Binary files /dev/null and b/c3space.de/files/events/35C3/source-serif-pro/EOT/SourceSerifPro-Regular.eot differ diff --git a/c3space.de/files/events/35C3/source-serif-pro/EOT/SourceSerifPro-Semibold.eot b/c3space.de/files/events/35C3/source-serif-pro/EOT/SourceSerifPro-Semibold.eot new file mode 100644 index 0000000..13c0f8e Binary files /dev/null and b/c3space.de/files/events/35C3/source-serif-pro/EOT/SourceSerifPro-Semibold.eot differ diff --git a/c3space.de/files/events/35C3/source-serif-pro/LICENSE.txt b/c3space.de/files/events/35C3/source-serif-pro/LICENSE.txt new file mode 100755 index 0000000..6cb6fac --- /dev/null +++ b/c3space.de/files/events/35C3/source-serif-pro/LICENSE.txt @@ -0,0 +1,93 @@ +Copyright 2014 Adobe Systems Incorporated (http://www.adobe.com/), with Reserved Font Name 'Source'. All Rights Reserved. Source is a trademark of Adobe Systems Incorporated in the United States and/or other countries. + +This Font Software is licensed under the SIL Open Font License, Version 1.1. + +This license is copied below, and is also available with a FAQ at: http://scripts.sil.org/OFL + + +----------------------------------------------------------- +SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007 +----------------------------------------------------------- + +PREAMBLE +The goals of the Open Font License (OFL) are to stimulate worldwide +development of collaborative font projects, to support the font creation +efforts of academic and linguistic communities, and to provide a free and +open framework in which fonts may be shared and improved in partnership +with others. + +The OFL allows the licensed fonts to be used, studied, modified and +redistributed freely as long as they are not sold by themselves. The +fonts, including any derivative works, can be bundled, embedded, +redistributed and/or sold with any software provided that any reserved +names are not used by derivative works. The fonts and derivatives, +however, cannot be released under any other type of license. The +requirement for fonts to remain under this license does not apply +to any document created using the fonts or their derivatives. + +DEFINITIONS +"Font Software" refers to the set of files released by the Copyright +Holder(s) under this license and clearly marked as such. This may +include source files, build scripts and documentation. + +"Reserved Font Name" refers to any names specified as such after the +copyright statement(s). + +"Original Version" refers to the collection of Font Software components as +distributed by the Copyright Holder(s). + +"Modified Version" refers to any derivative made by adding to, deleting, +or substituting -- in part or in whole -- any of the components of the +Original Version, by changing formats or by porting the Font Software to a +new environment. + +"Author" refers to any designer, engineer, programmer, technical +writer or other person who contributed to the Font Software. + +PERMISSION & CONDITIONS +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Font Software, to use, study, copy, merge, embed, modify, +redistribute, and sell modified and unmodified copies of the Font +Software, subject to the following conditions: + +1) Neither the Font Software nor any of its individual components, +in Original or Modified Versions, may be sold by itself. + +2) Original or Modified Versions of the Font Software may be bundled, +redistributed and/or sold with any software, provided that each copy +contains the above copyright notice and this license. These can be +included either as stand-alone text files, human-readable headers or +in the appropriate machine-readable metadata fields within text or +binary files as long as those fields can be easily viewed by the user. + +3) No Modified Version of the Font Software may use the Reserved Font +Name(s) unless explicit written permission is granted by the corresponding +Copyright Holder. This restriction only applies to the primary font name as +presented to the users. + +4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font +Software shall not be used to promote, endorse or advertise any +Modified Version, except to acknowledge the contribution(s) of the +Copyright Holder(s) and the Author(s) or with their explicit written +permission. + +5) The Font Software, modified or unmodified, in part or in whole, +must be distributed entirely under this license, and must not be +distributed under any other license. The requirement for fonts to +remain under this license does not apply to any document created +using the Font Software. + +TERMINATION +This license becomes null and void if any of the above conditions are +not met. + +DISCLAIMER +THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT +OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE +COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, +INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL +DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING +FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM +OTHER DEALINGS IN THE FONT SOFTWARE. diff --git a/c3space.de/files/events/35C3/source-serif-pro/OTF/SourceSerifPro-Black.otf b/c3space.de/files/events/35C3/source-serif-pro/OTF/SourceSerifPro-Black.otf new file mode 100644 index 0000000..d63bde7 Binary files /dev/null and b/c3space.de/files/events/35C3/source-serif-pro/OTF/SourceSerifPro-Black.otf differ diff --git a/c3space.de/files/events/35C3/source-serif-pro/OTF/SourceSerifPro-Bold.otf b/c3space.de/files/events/35C3/source-serif-pro/OTF/SourceSerifPro-Bold.otf new file mode 100644 index 0000000..1142950 Binary files /dev/null and b/c3space.de/files/events/35C3/source-serif-pro/OTF/SourceSerifPro-Bold.otf differ diff --git a/c3space.de/files/events/35C3/source-serif-pro/OTF/SourceSerifPro-ExtraLight.otf b/c3space.de/files/events/35C3/source-serif-pro/OTF/SourceSerifPro-ExtraLight.otf new file mode 100644 index 0000000..9cd91d8 Binary files /dev/null and b/c3space.de/files/events/35C3/source-serif-pro/OTF/SourceSerifPro-ExtraLight.otf differ diff --git a/c3space.de/files/events/35C3/source-serif-pro/OTF/SourceSerifPro-Light.otf b/c3space.de/files/events/35C3/source-serif-pro/OTF/SourceSerifPro-Light.otf new file mode 100644 index 0000000..0ba7bf7 Binary files /dev/null and b/c3space.de/files/events/35C3/source-serif-pro/OTF/SourceSerifPro-Light.otf differ diff --git a/c3space.de/files/events/35C3/source-serif-pro/OTF/SourceSerifPro-Regular.otf b/c3space.de/files/events/35C3/source-serif-pro/OTF/SourceSerifPro-Regular.otf new file mode 100644 index 0000000..ad044c7 Binary files /dev/null and b/c3space.de/files/events/35C3/source-serif-pro/OTF/SourceSerifPro-Regular.otf differ diff --git a/c3space.de/files/events/35C3/source-serif-pro/OTF/SourceSerifPro-Semibold.otf b/c3space.de/files/events/35C3/source-serif-pro/OTF/SourceSerifPro-Semibold.otf new file mode 100644 index 0000000..76a41f7 Binary files /dev/null and b/c3space.de/files/events/35C3/source-serif-pro/OTF/SourceSerifPro-Semibold.otf differ diff --git a/c3space.de/files/events/35C3/source-serif-pro/README.md b/c3space.de/files/events/35C3/source-serif-pro/README.md new file mode 100644 index 0000000..a3cf79e --- /dev/null +++ b/c3space.de/files/events/35C3/source-serif-pro/README.md @@ -0,0 +1,18 @@ +# Source Serif Pro + +Source Serif Pro is a set of OpenType fonts to complement the [Source Sans Pro](https://github.com/adobe-fonts/source-sans-pro) family. +In addition to a functional OpenType font, this open source project provides all of the source files that were used to build this OpenType font by using the AFDKO makeotf tool. + +## Installation instructions + +* [Mac OS X](http://support.apple.com/kb/HT2509) +* [Windows](http://windows.microsoft.com/en-us/windows-vista/install-or-uninstall-fonts) +* [Linux/Unix-based systems](https://github.com/adobe-fonts/source-code-pro/issues/17#issuecomment-8967116) + +## Getting Involved + +Send suggestions for changes to the Source Serif OpenType font project maintainer, [Frank Grießhammer](mailto:opensourcefonts@adobe.com?subject=[GitHub] Source Serif Pro), for consideration. + +## Further information + +For information about the design and background of Source Serif, please refer to the [official font readme file](http://htmlpreview.github.io/?https://github.com/adobe-fonts/source-serif-pro/blob/master/SourceSerifProReadMe.html). diff --git a/c3space.de/files/events/35C3/source-serif-pro/ReadMe.html b/c3space.de/files/events/35C3/source-serif-pro/ReadMe.html new file mode 100755 index 0000000..1aeb775 --- /dev/null +++ b/c3space.de/files/events/35C3/source-serif-pro/ReadMe.html @@ -0,0 +1,72 @@ + + + + Read Me File for Adobe® OpenType® Fonts + + + +

Adobe® OpenType® Fonts

+

Thank +you for licensing Adobe OpenType fonts. In order to ensure that you +have the most up-to-date product information, Adobe has posted an OpenType +Read Me file on the Adobe web site that contains information such +as minimum system requirements, technical support contact information +and software installation notes. We have also posted an OpenType +User's Guide in PDF format on the Adobe web site that can be +viewed online and downloaded to your computer.

If you have +licensed an Adobe OpenType Pro font, there may be additional PDF +documents, such as a specimen book, a glyph complement showing, and a +typeface-specific Read Me file, available on the typeface’s +product pages on the Adobe web site. These additional files may be +viewed online or downloaded to your computer.

To get you started +quickly, below are links to localized installation instructions for +your fonts. + +

Installation Instructions


+

English
+Instructions for installing this font can be found online at http://www.adobe.com/type/browser/fontinstall/instructions_main.html.

+

French / Français
+Le mode d'installation de cette police de caractère se trouve en +ligne à http://www.adobe.com/type/browser/fontinstall/instructions_main.html.

+

German / Deutsch
+Die Anweisungen zur Installation dieser Schriftart finden Sie online +unter http://www.adobe.com/type/browser/fontinstall/instructions_main.html.

+

Italian / Italiano
+Le istruzioni per l'installazione di questo font sono disponibili +online all'indirizzo http://www.adobe.com/type/browser/fontinstall/instructions_main.html.

+

Spanish / Español
+Las instrucciones para instalar esta fuente se pueden encontrar +online en http://www.adobe.com/type/browser/fontinstall/instructions_main.html.

+

Dutch / Hollands
+De instructies voor de installatie van dit lettertype vindt u op http://www.adobe.com/type/browser/fontinstall/instructions_main.html.

+

Swedish / Svenska
+Anvisningar för hur det här teckensnittet installeras finns +online på http://www.adobe.com/type/browser/fontinstall/instructions_main.html.

+

Norwegian / Norsk
+Instruksjoner for installering av skrifttypen finnes online på +http://www.adobe.com/type/browser/fontinstall/instructions_main.html.

+

Finnish / Suomi
+Ohjeet tämän fontin asentamiseen löytyvät +osoitteesta http://www.adobe.com/type/browser/fontinstall/instructions_main.html.

+

Danish / Dansk
+Du finder en vejledning i installation af denne skrifttype online +på adressen http://www.adobe.com/type/browser/fontinstall/instructions_main.html.

+

Japanese / 日本語
+このフォントをインストールする手順は、オンラインで http://www.adobe.com/type/browser/fontinstall/instructions_main.html +を参照してください。

+ + diff --git a/c3space.de/files/events/35C3/source-serif-pro/SourceSerifProReadMe.html b/c3space.de/files/events/35C3/source-serif-pro/SourceSerifProReadMe.html new file mode 100644 index 0000000..da1f9e5 --- /dev/null +++ b/c3space.de/files/events/35C3/source-serif-pro/SourceSerifProReadMe.html @@ -0,0 +1,189 @@ + + + + + + + + Source Serif Pro Read Me + + + +
+

+ Source™ Serif Pro Read Me +

+
+
+

This document contains late-breaking product information, updates, and troubleshooting tips. +
+
+ Minimum system requirements and font installation instructions +
+ Font versions +
+ Family information +
+ Release Notes +
+ Known issues +
+ Customer care +
+ Other resources +
+ +

+
+
+ +

Minimum system requirements and font installation instructions

+
+
+

For information on minimum system requirements and font installation, see + http://www.adobe.com/go/learn_fontinstall_en.

+
+
+ +

Font versions

+
+
+

To check that you have the correct font file, compare the font version of your font file to the font version provided in the Release Notes section below.

+
+ +
+

+ History +

Source Serif Pro is a serif typeface in the transitional style, designed to complement Source Sans. Their close companionship is achieved by a careful match of letter proportions and typographic color. While designed to harmonize with its serif-less counterpart, Source Serif often takes its own direction, in part because the two are inspired by different historical precedents. Source Serif is loosely based on the work of Pierre Simon Fournier, and many idiosyncrasies typical to Fournier’s designs (like the bottom serif on the b or the middle serif on the w) are also found in Source Serif. Without being a pure historical revival, Source Serif takes cues from the Fournier model and reworks it for a modern age.

Source Sans and Source Serif also have different personalities because they spring from the hands of different designers. Source Serif was designed by Frank Grießhammer, Source Sans was designed by Paul Hunt. Robert Slimbach consulted on both designs, which helped maintain the overall family harmony. Either design feels confident on its own but also works in combination with the other — just like their designers do.

Source Serif continues Adobe’s line of high-quality open source typefaces. Designed for a digital environment, the letter shapes are simplified and highly readable. Its historical roots, combined with the guidance through an experienced designer give the typeface a strong character of its own that will shine when used for extended text on paper or on screen.

There is still more to come for Source Serif. Additional weights, Italic cuts, and Cyrillic and Greek language support are all planned. If you are interested in contributing to this open source project, please visit this project page for information on how to become involved. Source Serif Pro can be adapted and redistributed according to the terms of the Open Font License (OFL) agreement. +

+ Menu Names And Style Linking +

+

In many Windows® applications, instead of every font appearing on +the menu, fonts are grouped into style-linked sets, and only the name of +the base style font for a set is shown in the menu. The italic and the +bold weight fonts of the set (if any) are not shown in the font menu, but can still be +accessed by selecting the base style font, and then using the italic +and bold style buttons. In this family, such programs will show only the +following base style font names in the menu:

+

Source Serif Pro
+Source Serif Pro Black
+Source Serif Pro ExtraLight
+Source Serif Pro Light
+Source Serif Pro SemiBold

+

The other fonts in this family must be selected by choosing a menu name +and then a style option following the guide below.

+ + + + + + + + + + + + + +
Menu Name plus Style Option... selects this font
Source Serif Pro [none] Source Serif Pro Regular
Source Serif Pro Bold Source Serif Pro Bold
Source Serif Pro Black [none] Source Serif Pro Black
Source Serif Pro ExtraLight [none] Source Serif Pro ExtraLight
Source Serif Pro Light [none] Source Serif Pro Light
Source Serif Pro SemiBold [none] Source Serif Pro Semibold
+

On the Mac OS operating system, although each font appears as a separate entry on the +font menu, users may also select fonts by means of style links. +Selecting a base style font and then using the style links (as described +above for Windows applications) enhances cross-platform document compatibility with +many applications, such as Microsoft Word and Adobe® PageMaker® software, +although it is unnecessary with more sophisticated Adobe applications +such as recent versions of Illustrator®, Photoshop® or +InDesign® software.

+

One should not, however, select a base font which has no style-linked +variant, and then use the bold or italic styling button. Doing so will +either have no effect, or result in programmatic bolding or slanting of +the base font, which will usually produce inferior screen and print +results.

+
+
+

+ Release Notes +

+
+

For all fonts of family Source Serif Pro: version 1.017 created on Tue Sep 16 17:12:36 2014.

+

version 1.017 created 2014/09/16

+
    +
  • Added three more weights: Black, Light, ExtraLight.
  • +
  • Added missing L/lcommaaccent (U+013B/C) to all fonts.
  • +
+

version 1.014 created 2014/04/27

+
    +
  • First release.
  • +
+
+
+

+ Known issues +

+
+
  • Some glyphs in the font cannot be accessed unless you are using an OpenType® compatible application. +
  • +
+
+

+ Customer care +

+
+
+

+ Customer Service +
Adobe Customer Service provides assistance with product information, sales, registration, and other non-technical issues. + To find out how to contact Adobe Customer Service, please visit Adobe.com for your region or country and click on Contact Adobe.

+

+ Support Plan Options and Technical Resources +
If you require technical assistance for your product, including information on free and paid support options and troubleshooting resources, more information is available at + + http://www.adobe.com/go/support/. + Outside of North America, go to + + http://www.adobe.com/go/intlsupport/. + Font specific resources include the Font Folio and Type Product Help page and the Adobe Type user-to-user forums.

+
+
+

+ Other resources +

+
+
+

+ Adobe Type Showroom +
+ Index page for all family Read Me files +
+

+

+
+ Adobe, the Adobe Logo, Source, Illustrator, InDesign, PageMaker and Photoshop are either registered trademarks or trademarks of Adobe Systems Incorporated in the United States and/or other countries. Windows and OpenType are either registered trademarks or trademarks of Microsoft Corporation in the United States and/or other countries. Mac, Mac OS and TrueType are trademarks of Apple Inc., registered in the U.S. and other countries. All other trademarks are the property of their respective owners.
+
+ + © 2014 Adobe Systems Incorporated. All rights reserved.

created 2014 Sep 24 + +

+
+
+ + diff --git a/c3space.de/files/events/35C3/source-serif-pro/TTF/SourceSerifPro-Black.ttf b/c3space.de/files/events/35C3/source-serif-pro/TTF/SourceSerifPro-Black.ttf new file mode 100644 index 0000000..bfa258b Binary files /dev/null and b/c3space.de/files/events/35C3/source-serif-pro/TTF/SourceSerifPro-Black.ttf differ diff --git a/c3space.de/files/events/35C3/source-serif-pro/TTF/SourceSerifPro-Bold.ttf b/c3space.de/files/events/35C3/source-serif-pro/TTF/SourceSerifPro-Bold.ttf new file mode 100644 index 0000000..4e8b429 Binary files /dev/null and b/c3space.de/files/events/35C3/source-serif-pro/TTF/SourceSerifPro-Bold.ttf differ diff --git a/c3space.de/files/events/35C3/source-serif-pro/TTF/SourceSerifPro-ExtraLight.ttf b/c3space.de/files/events/35C3/source-serif-pro/TTF/SourceSerifPro-ExtraLight.ttf new file mode 100644 index 0000000..ae8e2ed Binary files /dev/null and b/c3space.de/files/events/35C3/source-serif-pro/TTF/SourceSerifPro-ExtraLight.ttf differ diff --git a/c3space.de/files/events/35C3/source-serif-pro/TTF/SourceSerifPro-Light.ttf b/c3space.de/files/events/35C3/source-serif-pro/TTF/SourceSerifPro-Light.ttf new file mode 100644 index 0000000..1fd150b Binary files /dev/null and b/c3space.de/files/events/35C3/source-serif-pro/TTF/SourceSerifPro-Light.ttf differ diff --git a/c3space.de/files/events/35C3/source-serif-pro/TTF/SourceSerifPro-Regular.ttf b/c3space.de/files/events/35C3/source-serif-pro/TTF/SourceSerifPro-Regular.ttf new file mode 100644 index 0000000..62fedd6 Binary files /dev/null and b/c3space.de/files/events/35C3/source-serif-pro/TTF/SourceSerifPro-Regular.ttf differ diff --git a/c3space.de/files/events/35C3/source-serif-pro/TTF/SourceSerifPro-Semibold.ttf b/c3space.de/files/events/35C3/source-serif-pro/TTF/SourceSerifPro-Semibold.ttf new file mode 100644 index 0000000..78c178f Binary files /dev/null and b/c3space.de/files/events/35C3/source-serif-pro/TTF/SourceSerifPro-Semibold.ttf differ diff --git a/c3space.de/files/events/35C3/source-serif-pro/WOFF/OTF/SourceSerifPro-Black.otf.woff b/c3space.de/files/events/35C3/source-serif-pro/WOFF/OTF/SourceSerifPro-Black.otf.woff new file mode 100644 index 0000000..9044ee9 Binary files /dev/null and b/c3space.de/files/events/35C3/source-serif-pro/WOFF/OTF/SourceSerifPro-Black.otf.woff differ diff --git a/c3space.de/files/events/35C3/source-serif-pro/WOFF/OTF/SourceSerifPro-Bold.otf.woff b/c3space.de/files/events/35C3/source-serif-pro/WOFF/OTF/SourceSerifPro-Bold.otf.woff new file mode 100644 index 0000000..a907b53 Binary files /dev/null and b/c3space.de/files/events/35C3/source-serif-pro/WOFF/OTF/SourceSerifPro-Bold.otf.woff differ diff --git a/c3space.de/files/events/35C3/source-serif-pro/WOFF/OTF/SourceSerifPro-ExtraLight.otf.woff b/c3space.de/files/events/35C3/source-serif-pro/WOFF/OTF/SourceSerifPro-ExtraLight.otf.woff new file mode 100644 index 0000000..b990a76 Binary files /dev/null and b/c3space.de/files/events/35C3/source-serif-pro/WOFF/OTF/SourceSerifPro-ExtraLight.otf.woff differ diff --git a/c3space.de/files/events/35C3/source-serif-pro/WOFF/OTF/SourceSerifPro-Light.otf.woff b/c3space.de/files/events/35C3/source-serif-pro/WOFF/OTF/SourceSerifPro-Light.otf.woff new file mode 100644 index 0000000..6d6c4ba Binary files /dev/null and b/c3space.de/files/events/35C3/source-serif-pro/WOFF/OTF/SourceSerifPro-Light.otf.woff differ diff --git a/c3space.de/files/events/35C3/source-serif-pro/WOFF/OTF/SourceSerifPro-Regular.otf.woff b/c3space.de/files/events/35C3/source-serif-pro/WOFF/OTF/SourceSerifPro-Regular.otf.woff new file mode 100644 index 0000000..a6fbe17 Binary files /dev/null and b/c3space.de/files/events/35C3/source-serif-pro/WOFF/OTF/SourceSerifPro-Regular.otf.woff differ diff --git a/c3space.de/files/events/35C3/source-serif-pro/WOFF/OTF/SourceSerifPro-Semibold.otf.woff b/c3space.de/files/events/35C3/source-serif-pro/WOFF/OTF/SourceSerifPro-Semibold.otf.woff new file mode 100644 index 0000000..6847179 Binary files /dev/null and b/c3space.de/files/events/35C3/source-serif-pro/WOFF/OTF/SourceSerifPro-Semibold.otf.woff differ diff --git a/c3space.de/files/events/35C3/source-serif-pro/WOFF/TTF/SourceSerifPro-Black.ttf.woff b/c3space.de/files/events/35C3/source-serif-pro/WOFF/TTF/SourceSerifPro-Black.ttf.woff new file mode 100644 index 0000000..db1b1f6 Binary files /dev/null and b/c3space.de/files/events/35C3/source-serif-pro/WOFF/TTF/SourceSerifPro-Black.ttf.woff differ diff --git a/c3space.de/files/events/35C3/source-serif-pro/WOFF/TTF/SourceSerifPro-Bold.ttf.woff b/c3space.de/files/events/35C3/source-serif-pro/WOFF/TTF/SourceSerifPro-Bold.ttf.woff new file mode 100644 index 0000000..056a5ad Binary files /dev/null and b/c3space.de/files/events/35C3/source-serif-pro/WOFF/TTF/SourceSerifPro-Bold.ttf.woff differ diff --git a/c3space.de/files/events/35C3/source-serif-pro/WOFF/TTF/SourceSerifPro-ExtraLight.ttf.woff b/c3space.de/files/events/35C3/source-serif-pro/WOFF/TTF/SourceSerifPro-ExtraLight.ttf.woff new file mode 100644 index 0000000..53b296d Binary files /dev/null and b/c3space.de/files/events/35C3/source-serif-pro/WOFF/TTF/SourceSerifPro-ExtraLight.ttf.woff differ diff --git a/c3space.de/files/events/35C3/source-serif-pro/WOFF/TTF/SourceSerifPro-Light.ttf.woff b/c3space.de/files/events/35C3/source-serif-pro/WOFF/TTF/SourceSerifPro-Light.ttf.woff new file mode 100644 index 0000000..b8de713 Binary files /dev/null and b/c3space.de/files/events/35C3/source-serif-pro/WOFF/TTF/SourceSerifPro-Light.ttf.woff differ diff --git a/c3space.de/files/events/35C3/source-serif-pro/WOFF/TTF/SourceSerifPro-Regular.ttf.woff b/c3space.de/files/events/35C3/source-serif-pro/WOFF/TTF/SourceSerifPro-Regular.ttf.woff new file mode 100644 index 0000000..84f3777 Binary files /dev/null and b/c3space.de/files/events/35C3/source-serif-pro/WOFF/TTF/SourceSerifPro-Regular.ttf.woff differ diff --git a/c3space.de/files/events/35C3/source-serif-pro/WOFF/TTF/SourceSerifPro-Semibold.ttf.woff b/c3space.de/files/events/35C3/source-serif-pro/WOFF/TTF/SourceSerifPro-Semibold.ttf.woff new file mode 100644 index 0000000..3ba4993 Binary files /dev/null and b/c3space.de/files/events/35C3/source-serif-pro/WOFF/TTF/SourceSerifPro-Semibold.ttf.woff differ diff --git a/c3space.de/files/events/35C3/source-serif-pro/bower.json b/c3space.de/files/events/35C3/source-serif-pro/bower.json new file mode 100755 index 0000000..4775f7c --- /dev/null +++ b/c3space.de/files/events/35C3/source-serif-pro/bower.json @@ -0,0 +1,15 @@ +{ + "name": "source-serif-pro", + "version": "1.014", + "main": "source-serif-pro.css", + "homepage": "https://github.com/adobe-fonts/source-serif-pro", + "repository": { + "type": "git", + "url": "https://github.com/adobe-fonts/source-serif-pro.git" + }, + "authors": [ + { "name": "Frank Grießhammer" } + ], + "description": "Source Serif Pro font family by Adobe", + "license": "SIL OFL 1.1" +} diff --git a/c3space.de/files/events/35C3/source-serif-pro/source-serif-pro.css b/c3space.de/files/events/35C3/source-serif-pro/source-serif-pro.css new file mode 100755 index 0000000..697763f --- /dev/null +++ b/c3space.de/files/events/35C3/source-serif-pro/source-serif-pro.css @@ -0,0 +1,65 @@ +@font-face{ + font-family: 'Source Serif Pro'; + font-weight: 200; + font-style: normal; + font-stretch: normal; + src: url('EOT/SourceSerifPro-ExtraLight.eot') format('embedded-opentype'), + url('WOFF/OTF/SourceSerifPro-ExtraLight.otf.woff') format('woff'), + url('OTF/SourceSerifPro-ExtraLight.otf') format('opentype'), + url('TTF/SourceSerifPro-ExtraLight.ttf') format('truetype'); +} + +@font-face{ + font-family: 'Source Serif Pro'; + font-weight: 300; + font-style: normal; + font-stretch: normal; + src: url('EOT/SourceSerifPro-Light.eot') format('embedded-opentype'), + url('WOFF/OTF/SourceSerifPro-Light.otf.woff') format('woff'), + url('OTF/SourceSerifPro-Light.otf') format('opentype'), + url('TTF/SourceSerifPro-Light.ttf') format('truetype'); +} + +@font-face{ + font-family: 'Source Serif Pro'; + font-weight: 400; + font-style: normal; + font-stretch: normal; + src: url('EOT/SourceSerifPro-Regular.eot') format('embedded-opentype'), + url('WOFF/OTF/SourceSerifPro-Regular.otf.woff') format('woff'), + url('OTF/SourceSerifPro-Regular.otf') format('opentype'), + url('TTF/SourceSerifPro-Regular.ttf') format('truetype'); +} + +@font-face{ + font-family: 'Source Serif Pro'; + font-weight: 600; + font-style: normal; + font-stretch: normal; + src: url('EOT/SourceSerifPro-Semibold.eot') format('embedded-opentype'), + url('WOFF/OTF/SourceSerifPro-Semibold.otf.woff') format('woff'), + url('OTF/SourceSerifPro-Semibold.otf') format('opentype'), + url('TTF/SourceSerifPro-Semibold.ttf') format('truetype'); +} + +@font-face{ + font-family: 'Source Serif Pro'; + font-weight: 700; + font-style: normal; + font-stretch: normal; + src: url('EOT/SourceSerifPro-Bold.eot') format('embedded-opentype'), + url('WOFF/OTF/SourceSerifPro-Bold.otf.woff') format('woff'), + url('OTF/SourceSerifPro-Bold.otf') format('opentype'), + url('TTF/SourceSerifPro-Bold.ttf') format('truetype'); +} + +@font-face{ + font-family: 'Source Serif Pro'; + font-weight: 900; + font-style: normal; + font-stretch: normal; + src: url('EOT/SourceSerifPro-Black.eot') format('embedded-opentype'), + url('WOFF/OTF/SourceSerifPro-Black.otf.woff') format('woff'), + url('OTF/SourceSerifPro-Black.otf') format('opentype'), + url('TTF/SourceSerifPro-Black.ttf') format('truetype'); +} diff --git a/c3space.de/files/events/35C3/stylesheet.css b/c3space.de/files/events/35C3/stylesheet.css new file mode 100644 index 0000000..edd8d90 --- /dev/null +++ b/c3space.de/files/events/35C3/stylesheet.css @@ -0,0 +1,119 @@ +html { + height:100%; +} + +body { + padding : 0px; + margin: 0px; + height: 100%; + width: 100%; + + font-family: 'Montserrat'; + background-color: #000000; +} + +.container { + background-image: url('background.jpg'); + + margin: 0px; + width: 100%; + + display: flex; + flex-direction: column; + align-items: center; + justify-content: flex-start; +} + +.content { + color: #ffffff; + background-color: rgba(0, 0, 0, 0.85); + display: block; + padding: 10px; + overflow-wrap: break-word; + + font-size: 120%; +} + +.content a { + text-decoration: none; + word-break: break-all; + color: #C0C0C0; +} + +.content ul { + padding-left: 25px; +} + +.content ul ul { + padding-left: 15px; +} + +.content .infobox { + display: none; +} + +.content .mw-editsection { + display: none; +} + + +h1 { + font-family: 'Montserrat Black'; +} + +.logo { + text-align: center; + display: none; +} + +.logo img { + width: 60%; +} + + + +@media screen and (min-width: 800px) { + .container { + justify-content: space-around; + } + + .content { + margin-left: 10%; + margin-right: 10%; + + padding: 50px; + + } + + .content ul { + padding-left: 50px; + } + + .content ul ul { + padding-left: 50px; + } + + + .logo { + display: block; + } +} + +h2 { + font-family: 'Montserrat Black'; + margin-bottom: 10px; +} + +h3 { + font-family: 'Montserrat Black'; + margin-bottom: 5px; +} + +.lecture .subtitle { + font-weight: bold; + font-family: 'Montserrat Black'; +} + +.lecture .infos { + font-family: 'Montserrat Black'; +} diff --git a/c3space.de/files/logo.svg b/c3space.de/files/logo.svg new file mode 100644 index 0000000..5bde9f6 --- /dev/null +++ b/c3space.de/files/logo.svg @@ -0,0 +1,202 @@ + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/c3space.de/pages/index.rst b/c3space.de/pages/index.rst new file mode 100644 index 0000000..2e0ea17 --- /dev/null +++ b/c3space.de/pages/index.rst @@ -0,0 +1,17 @@ +.. title: Mission +.. slug: index +.. date: 2019-11-17 13:29:40 UTC+01:00 +.. tags: +.. category: +.. link: +.. description: +.. type: text + +Like last year's CSOC the assembly is intended as place to hang out (and to show of projects) +for everyone interested in space exploration, space travel, satellites, cubesats, +satellite tracking, diy astronomy, amateur rocketry ... you name it. +The goal is to bring all the different people hacking on space topics in our community in one place, +explore existing projects and come up with new ideas to hack where no congress has hacked before. + +Please be aware, that we aim to provide a safe environment for all galactic life forms +(although we are only able to provide an oxygen atmosphere). We come in peace! diff --git a/c3space.de/themes/c3space/c3space.theme b/c3space.de/themes/c3space/c3space.theme new file mode 100644 index 0000000..7626b10 --- /dev/null +++ b/c3space.de/themes/c3space/c3space.theme @@ -0,0 +1,4 @@ +[Theme] +engine = jinja +parent = base-jinja + diff --git a/c3space.de/themes/c3space/templates/assets/background.jpg b/c3space.de/themes/c3space/templates/assets/background.jpg new file mode 100644 index 0000000..84fedfe Binary files /dev/null and b/c3space.de/themes/c3space/templates/assets/background.jpg differ diff --git a/c3space.de/themes/c3space/templates/base.tmpl b/c3space.de/themes/c3space/templates/base.tmpl new file mode 100644 index 0000000..e176fc7 --- /dev/null +++ b/c3space.de/themes/c3space/templates/base.tmpl @@ -0,0 +1,42 @@ +{# -*- coding: utf-8 -*- #} +{% import 'base_helper.tmpl' as base with context %} +{% import 'base_header.tmpl' as header with context %} +{% import 'base_footer.tmpl' as footer with context %} +{{ set_locale(lang) }} +{# tag is included by base.html_headstart #} +{{ base.html_headstart() }} +{% block extra_head %} +{# Leave this block alone. #} +{% endblock %} +{{ template_hooks['extra_head']() }} + + + {{ messages("Skip to main content") }} +
+ {{ header.html_header() }} +
+ {% block content %}{% endblock %} +
+ {{ footer.html_footer() }} +
+ {{ base.late_load_js() }} + {% if date_fanciness != 0 %} + + + + {% endif %} + {% block extra_js %}{% endblock %} + + {{ body_end }} + {{ template_hooks['body_end']() }} + + diff --git a/c3space.de/themes/c3space/templates/base_header.tmpl b/c3space.de/themes/c3space/templates/base_header.tmpl new file mode 100644 index 0000000..17ee153 --- /dev/null +++ b/c3space.de/themes/c3space/templates/base_header.tmpl @@ -0,0 +1,72 @@ +{# -*- coding: utf-8 -*- #} +{% import 'base_helper.tmpl' as base with context %} + +{% macro html_header() %} + + {{ template_hooks['page_header']() }} + {% block extra_header %}{% endblock %} +{% endmacro %} + +{% macro html_site_title() %} +

+ {% if logo_url %} + + {% endif %} + + {% if show_blog_title %} + {{ blog_title|e }} + {% endif %} +

+{% endmacro %} + +{% macro html_navigation_links() %} + +{% endmacro %} + +{% macro html_navigation_links_entries(navigation_links_source) %} + {% for url, text in navigation_links_source[lang] %} + {% if isinstance(url, tuple) %} +
  • {{ text }} + + {% else %} + {% if rel_link(permalink, url) == "#" %} +
  • {{ text }} {{ messages("(active)", lang) }}
  • + {% else %} +
  • {{ text }}
  • + {% endif %} + {% endif %} + {% endfor %} +{% endmacro %} + +{% macro html_translation_header() %} + {% if translations|length > 1 %} +
    +

    {{ messages("Languages:") }}

    + {{ base.html_translations() }} +
    + {% endif %} +{% endmacro %} diff --git a/c3space.de/themes/c3space/templates/base_helper.tmpl b/c3space.de/themes/c3space/templates/base_helper.tmpl new file mode 100644 index 0000000..073be43 --- /dev/null +++ b/c3space.de/themes/c3space/templates/base_helper.tmpl @@ -0,0 +1,118 @@ +{# -*- coding: utf-8 -*- #} +{% import 'feeds_translations_helper.tmpl' as feeds_translations with context %} + +{% macro html_headstart() %} + + + + + {% if description %} + + {% endif %} + + {% if title == blog_title %} + {{ blog_title|e }} + {% else %} + {{ title|e }} | {{ blog_title|e }} + {% endif %} + + {{ html_stylesheets() }} + + {% if meta_generator_tag %} + + {% endif %} + {{ feeds_translations.head(classification=None, kind='index', other=False) }} + + + {% if favicons %} + {% for name, file, size in favicons %} + + {% endfor %} + {% endif %} + + {% if comment_system == 'facebook' %} + + {% endif %} + + {% if prevlink %} + + {% endif %} + {% if nextlink %} + + {% endif %} + + {% if use_cdn %} + + {% else %} + + {% endif %} + + {{ extra_head_data }} +{% endmacro %} + +{% macro late_load_js() %} + {% if use_bundles %} + {% if use_cdn %} + + + {% else %} + + {% endif %} + {% else %} + {% if use_cdn %} + + {% else %} + + {% endif %} + {% endif %} + {% if date_fanciness != 0 %} + {% if use_cdn %} + + {% else %} + + {% endif %} + {% if not use_bundles %} + + {% endif %} + {% endif %} + {{ social_buttons_code }} +{% endmacro %} + +{% macro html_stylesheets() %} + {% if use_bundles %} + {% if use_cdn %} + + + {% else %} + + {% endif %} + {% else %} + + + + + + {% if has_custom_css %} + + {% endif %} + {% endif %} + {% if needs_ipython_css %} + + + {% endif %} +{% endmacro %} + +{# This function is deprecated; use feed_helper directly. #} +{% macro html_feedlinks() %} + {{ feeds_translations.head(classification=None, kind='index', other=False) }} +{% endmacro %} + +{% macro html_translations() %} + +{% endmacro %}