Skip to content

Commit

Permalink
mako templates: add encoding headers so special characters don"t brea…
Browse files Browse the repository at this point in the history
…k the site
  • Loading branch information
arturoc committed Oct 17, 2013
1 parent a3b72b4 commit 7e40dfc
Show file tree
Hide file tree
Showing 765 changed files with 765 additions and 0 deletions.
1 change: 1 addition & 0 deletions _templates/atom.mako
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
## -*- coding: utf-8 -*-
<?xml version="1.0" encoding="UTF-8"?><% from datetime import datetime %>
<feed
xmlns="http://www.w3.org/2005/Atom"
Expand Down
1 change: 1 addition & 0 deletions _templates/base.mako
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
## -*- coding: utf-8 -*-
<%def name="filter(chain)">
${bf.filter.run_chain(chain, capture(caller.body))}
</%def>
Expand Down
1 change: 1 addition & 0 deletions _templates/chronological.mako
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
## -*- coding: utf-8 -*-
<%inherit file="site.mako" />
% for post in posts:
<%include file="post.mako" args="post=post" />
Expand Down
1 change: 1 addition & 0 deletions _templates/documentation.mako
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
## -*- coding: utf-8 -*-
<%inherit file="base.mako" />
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
Expand Down
1 change: 1 addition & 0 deletions _templates/documentation_class.mako
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
## -*- coding: utf-8 -*-
<%inherit file="base.mako" />
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
Expand Down
1 change: 1 addition & 0 deletions _templates/documentation_function.mako
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
## -*- coding: utf-8 -*-
<%page args="function"/>
<div class="documentation_detail ${function.name}" data-lookup="${function.name}" data-item-type="function">
<% params = "()" if function.parameters=="" else "(...)" %>
Expand Down
1 change: 1 addition & 0 deletions _templates/documentation_index_block.mako
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
## -*- coding: utf-8 -*-
<%page args="module,classes"/>
<div class="documentation_group">
<div class="documentation_group_head show">
Expand Down
1 change: 1 addition & 0 deletions _templates/documentation_method.mako
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
## -*- coding: utf-8 -*-
<%page args="method"/>
<div class="documentation_detail ${method.name}" data-lookup="${method.name}" data-item-type="method">
<% params = "()" if method.parameters=="" else "(...)" %>
Expand Down
1 change: 1 addition & 0 deletions _templates/documentation_var.mako
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
## -*- coding: utf-8 -*-
<%page args="var"/>
<div class="documentation_detail ${var.name}" data-lookup="${var.name}" data-item-type="var">
<h1>${var.type} <a name="show_${var.name}">${var.name}</a></h1>
Expand Down
1 change: 1 addition & 0 deletions _templates/footer.mako
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
## -*- coding: utf-8 -*-
<p id="credits">

Last updated ${self.getTime()}&nbsp;&nbsp;&nbsp;&nbsp;-&nbsp;&nbsp;&nbsp;&nbsp;<a href="https://github.com/openframeworks/ofSite/commit/${self.getLastCommitHash()}">${self.getLastCommitHash()}</a>
Expand Down
1 change: 1 addition & 0 deletions _templates/fullpage.mako
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
## -*- coding: utf-8 -*-
<%inherit file="base.mako" />
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
Expand Down
1 change: 1 addition & 0 deletions _templates/head.mako
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
## -*- coding: utf-8 -*-
<title>${bf.config.blog.name + pageargs['subtitle']}</title>

<!-- syntax highlighting for the documentation -->
Expand Down
1 change: 1 addition & 0 deletions _templates/header.mako
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
## -*- coding: utf-8 -*-
<%page args="active"/>

<div id="head">
Expand Down
1 change: 1 addition & 0 deletions _templates/home.mako
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
## -*- coding: utf-8 -*-
<%inherit file="base.mako" />
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
Expand Down
1 change: 1 addition & 0 deletions _templates/html.mako
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
## -*- coding: utf-8 -*-
<%inherit file="base.mako" />
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
Expand Down
1 change: 1 addition & 0 deletions _templates/markdown.mako
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
## -*- coding: utf-8 -*-
<%inherit file="base.mako" />
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
Expand Down
1 change: 1 addition & 0 deletions _templates/permapage.mako
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
## -*- coding: utf-8 -*-
<%inherit file="site.mako" />
<%include file="post.mako" args="post=post" />
<div id="disqus_thread"></div>
Expand Down
1 change: 1 addition & 0 deletions _templates/post.mako
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
## -*- coding: utf-8 -*-
<%page args="post"/>
<div class="blog_post">
<a name="${post.slug}"></a>
Expand Down
1 change: 1 addition & 0 deletions _templates/post_excerpt.mako
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
## -*- coding: utf-8 -*-
<%inherit file="post.mako" />
<%def name="post_prose(post)">
${post.excerpt}
Expand Down
1 change: 1 addition & 0 deletions _templates/rss.mako
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
## -*- coding: utf-8 -*-
<?xml version="1.0" encoding="UTF-8"?><% from datetime import datetime %>
<rss version="2.0"
xmlns:content="http://purl.org/rss/1.0/modules/content/"
Expand Down
1 change: 1 addition & 0 deletions _templates/site.mako
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
## -*- coding: utf-8 -*-
<%inherit file="base.mako" />
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
Expand Down
1 change: 1 addition & 0 deletions _templates/slideshow.mako
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
## -*- coding: utf-8 -*-
<%inherit file="base.mako" />
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
Expand Down
1 change: 1 addition & 0 deletions _templates/slideshow_wide.mako
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
## -*- coding: utf-8 -*-
<%inherit file="base.mako" />
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
Expand Down
1 change: 1 addition & 0 deletions _templates/tutorial.mako
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
## -*- coding: utf-8 -*-
<%inherit file="base.mako" />
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
Expand Down
1 change: 1 addition & 0 deletions _templates/tutorials.mako
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
## -*- coding: utf-8 -*-
<%inherit file="base.mako" />
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
Expand Down
1 change: 1 addition & 0 deletions _templates/tutorials_category.mako
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
## -*- coding: utf-8 -*-
<%inherit file="base.mako" />
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
Expand Down
1 change: 1 addition & 0 deletions about/index.html.mako
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
## -*- coding: utf-8 -*-
<%inherit file="/_templates/slideshow.mako" />

<h1>about</h1>
Expand Down
1 change: 1 addition & 0 deletions about/license.html.mako
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
## -*- coding: utf-8 -*-
<%inherit file="/_templates/markdown.mako" />

license
Expand Down
1 change: 1 addition & 0 deletions community/index.html.mako
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
## -*- coding: utf-8 -*-
<%inherit file="/_templates/fullpage.mako" />

<div class="page-left-medium">
Expand Down
1 change: 1 addition & 0 deletions community/survey/index.html.mako
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
## -*- coding: utf-8 -*-
<%inherit file="/_templates/fullpage.mako" />

<div class="page-left-medium">
Expand Down
1 change: 1 addition & 0 deletions community/user/index.html.mako
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
## -*- coding: utf-8 -*-
<%inherit file="base.mako" />
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
Expand Down
1 change: 1 addition & 0 deletions development/index.html.mako
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
## -*- coding: utf-8 -*-
<%inherit file="/_templates/fullpage.mako" />

<div class="page-left-medium">
Expand Down
1 change: 1 addition & 0 deletions download/index.html.mako
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
## -*- coding: utf-8 -*-
<%inherit file="/_templates/slideshow_wide.mako" />

<h1>download</h1>
Expand Down
1 change: 1 addition & 0 deletions download/older.html.mako
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
## -*- coding: utf-8 -*-
<%inherit file="/_templates/markdown.mako" />

older releases
Expand Down
1 change: 1 addition & 0 deletions doxygen/annotated.html.mako
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
## -*- coding: utf-8 -*-
<%inherit file="base.mako" />
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
## -*- coding: utf-8 -*-
<%inherit file="base.mako" />
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
Expand Down
1 change: 1 addition & 0 deletions doxygen/category_q_t_movie_07_q_t_from763_08.html.mako
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
## -*- coding: utf-8 -*-
<%inherit file="base.mako" />
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
Expand Down
1 change: 1 addition & 0 deletions doxygen/class_extension_comparator-members.html.mako
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
## -*- coding: utf-8 -*-
<%inherit file="base.mako" />
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
Expand Down
1 change: 1 addition & 0 deletions doxygen/class_extension_comparator.html.mako
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
## -*- coding: utf-8 -*-
<%inherit file="base.mako" />
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
Expand Down
1 change: 1 addition & 0 deletions doxygen/class_q_t_kit_movie_renderer-members.html.mako
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
## -*- coding: utf-8 -*-
<%inherit file="base.mako" />
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
Expand Down
1 change: 1 addition & 0 deletions doxygen/class_q_t_kit_video_grabber-members.html.mako
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
## -*- coding: utf-8 -*-
<%inherit file="base.mako" />
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
Expand Down
1 change: 1 addition & 0 deletions doxygen/classes.html.mako
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
## -*- coding: utf-8 -*-
<%inherit file="base.mako" />
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
Expand Down
1 change: 1 addition & 0 deletions doxygen/classof3d_primitive-members.html.mako
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
## -*- coding: utf-8 -*-
<%inherit file="base.mako" />
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
Expand Down
1 change: 1 addition & 0 deletions doxygen/classof3d_primitive.html.mako
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
## -*- coding: utf-8 -*-
<%inherit file="base.mako" />
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
Expand Down
1 change: 1 addition & 0 deletions doxygen/classof_abstract_has_pixels-members.html.mako
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
## -*- coding: utf-8 -*-
<%inherit file="base.mako" />
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
Expand Down
1 change: 1 addition & 0 deletions doxygen/classof_abstract_has_pixels.html.mako
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
## -*- coding: utf-8 -*-
<%inherit file="base.mako" />
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
Expand Down
1 change: 1 addition & 0 deletions doxygen/classof_abstract_image-members.html.mako
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
## -*- coding: utf-8 -*-
<%inherit file="base.mako" />
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
Expand Down
1 change: 1 addition & 0 deletions doxygen/classof_abstract_image.html.mako
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
## -*- coding: utf-8 -*-
<%inherit file="base.mako" />
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
Expand Down
1 change: 1 addition & 0 deletions doxygen/classof_abstract_parameter-members.html.mako
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
## -*- coding: utf-8 -*-
<%inherit file="base.mako" />
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
Expand Down
1 change: 1 addition & 0 deletions doxygen/classof_abstract_parameter.html.mako
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
## -*- coding: utf-8 -*-
<%inherit file="base.mako" />
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
Expand Down
1 change: 1 addition & 0 deletions doxygen/classof_app_base_window-members.html.mako
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
## -*- coding: utf-8 -*-
<%inherit file="base.mako" />
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
Expand Down
1 change: 1 addition & 0 deletions doxygen/classof_app_base_window.html.mako
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
## -*- coding: utf-8 -*-
<%inherit file="base.mako" />
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
Expand Down
1 change: 1 addition & 0 deletions doxygen/classof_app_e_g_l_window-members.html.mako
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
## -*- coding: utf-8 -*-
<%inherit file="base.mako" />
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
Expand Down
1 change: 1 addition & 0 deletions doxygen/classof_app_e_g_l_window.html.mako
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
## -*- coding: utf-8 -*-
<%inherit file="base.mako" />
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
Expand Down
1 change: 1 addition & 0 deletions doxygen/classof_app_g_l_f_w_window-members.html.mako
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
## -*- coding: utf-8 -*-
<%inherit file="base.mako" />
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
Expand Down
1 change: 1 addition & 0 deletions doxygen/classof_app_g_l_f_w_window.html.mako
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
## -*- coding: utf-8 -*-
<%inherit file="base.mako" />
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
Expand Down
1 change: 1 addition & 0 deletions doxygen/classof_app_glut_window-members.html.mako
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
## -*- coding: utf-8 -*-
<%inherit file="base.mako" />
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
Expand Down
1 change: 1 addition & 0 deletions doxygen/classof_app_glut_window.html.mako
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
## -*- coding: utf-8 -*-
<%inherit file="base.mako" />
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
Expand Down
1 change: 1 addition & 0 deletions doxygen/classof_app_no_window-members.html.mako
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
## -*- coding: utf-8 -*-
<%inherit file="base.mako" />
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
Expand Down
1 change: 1 addition & 0 deletions doxygen/classof_app_no_window.html.mako
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
## -*- coding: utf-8 -*-
<%inherit file="base.mako" />
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
Expand Down
1 change: 1 addition & 0 deletions doxygen/classof_arduino-members.html.mako
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
## -*- coding: utf-8 -*-
<%inherit file="base.mako" />
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
Expand Down
1 change: 1 addition & 0 deletions doxygen/classof_arduino.html.mako
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
## -*- coding: utf-8 -*-
<%inherit file="base.mako" />
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
Expand Down
1 change: 1 addition & 0 deletions doxygen/classof_audio_event_args-members.html.mako
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
## -*- coding: utf-8 -*-
<%inherit file="base.mako" />
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
Expand Down
1 change: 1 addition & 0 deletions doxygen/classof_audio_event_args.html.mako
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
## -*- coding: utf-8 -*-
<%inherit file="base.mako" />
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
Expand Down
1 change: 1 addition & 0 deletions doxygen/classof_base_app-members.html.mako
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
## -*- coding: utf-8 -*-
<%inherit file="base.mako" />
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
Expand Down
1 change: 1 addition & 0 deletions doxygen/classof_base_app.html.mako
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
## -*- coding: utf-8 -*-
<%inherit file="base.mako" />
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
Expand Down
1 change: 1 addition & 0 deletions doxygen/classof_base_draws-members.html.mako
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
## -*- coding: utf-8 -*-
<%inherit file="base.mako" />
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
Expand Down
1 change: 1 addition & 0 deletions doxygen/classof_base_draws.html.mako
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
## -*- coding: utf-8 -*-
<%inherit file="base.mako" />
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
Expand Down
1 change: 1 addition & 0 deletions doxygen/classof_base_file_serializer-members.html.mako
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
## -*- coding: utf-8 -*-
<%inherit file="base.mako" />
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
Expand Down
1 change: 1 addition & 0 deletions doxygen/classof_base_file_serializer.html.mako
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
## -*- coding: utf-8 -*-
<%inherit file="base.mako" />
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
Expand Down
1 change: 1 addition & 0 deletions doxygen/classof_base_g_l_renderer-members.html.mako
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
## -*- coding: utf-8 -*-
<%inherit file="base.mako" />
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
Expand Down
1 change: 1 addition & 0 deletions doxygen/classof_base_g_l_renderer.html.mako
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
## -*- coding: utf-8 -*-
<%inherit file="base.mako" />
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
Expand Down
1 change: 1 addition & 0 deletions doxygen/classof_base_has_pixels__-members.html.mako
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
## -*- coding: utf-8 -*-
<%inherit file="base.mako" />
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
Expand Down
1 change: 1 addition & 0 deletions doxygen/classof_base_has_pixels__.html.mako
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
## -*- coding: utf-8 -*-
<%inherit file="base.mako" />
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
Expand Down
1 change: 1 addition & 0 deletions doxygen/classof_base_has_texture-members.html.mako
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
## -*- coding: utf-8 -*-
<%inherit file="base.mako" />
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
Expand Down
1 change: 1 addition & 0 deletions doxygen/classof_base_has_texture.html.mako
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
## -*- coding: utf-8 -*-
<%inherit file="base.mako" />
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
Expand Down
1 change: 1 addition & 0 deletions doxygen/classof_base_image__-members.html.mako
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
## -*- coding: utf-8 -*-
<%inherit file="base.mako" />
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
Expand Down
1 change: 1 addition & 0 deletions doxygen/classof_base_image__.html.mako
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
## -*- coding: utf-8 -*-
<%inherit file="base.mako" />
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
Expand Down
1 change: 1 addition & 0 deletions doxygen/classof_base_logger_channel-members.html.mako
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
## -*- coding: utf-8 -*-
<%inherit file="base.mako" />
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
Expand Down
1 change: 1 addition & 0 deletions doxygen/classof_base_logger_channel.html.mako
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
## -*- coding: utf-8 -*-
<%inherit file="base.mako" />
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
Expand Down
Loading

0 comments on commit 7e40dfc

Please sign in to comment.