code
stringlengths
1
2.01M
repo_name
stringlengths
3
62
path
stringlengths
1
267
language
stringclasses
231 values
license
stringclasses
13 values
size
int64
1
2.01M
# -*- coding: utf-8 -*- from django.conf import settings from django.utils.cache import patch_cache_control from google.appengine.runtime.apiproxy_errors import CapabilityDisabledError from google.appengine.ext import db from ragendja.template import render_to_response from ragendja.views import server_error, maintenan...
100uhaco
trunk/GAE/common/appenginepatch/ragendja/middleware.py
Python
asf20
2,050
# -*- coding: utf-8 -*- from settings import * import sys if '%d' in MEDIA_URL: MEDIA_URL = MEDIA_URL % MEDIA_VERSION if '%s' in ADMIN_MEDIA_PREFIX: ADMIN_MEDIA_PREFIX = ADMIN_MEDIA_PREFIX % MEDIA_URL TEMPLATE_DEBUG = DEBUG MANAGERS = ADMINS # You can override Django's or some apps' locales with these folder...
100uhaco
trunk/GAE/common/appenginepatch/ragendja/settings_post.py
Python
asf20
3,930
# -*- coding: utf-8 -*- from django.db.models import signals from django.http import Http404 from django.utils import simplejson from google.appengine.ext import db from ragendja.pyutils import getattr_by_path from random import choice from string import ascii_letters, digits def get_filters(*filters): """Helper m...
100uhaco
trunk/GAE/common/appenginepatch/ragendja/dbutils.py
Python
asf20
25,961
#!/usr/bin/env python if __name__ == '__main__': from common.appenginepatch.aecmd import setup_env setup_env(manage_py_env=True) # Recompile translation files from mediautils.compilemessages import updatemessages updatemessages() # Generate compressed media files for manage.py update impor...
100uhaco
trunk/GAE/common/appenginepatch/manage.py
Python
asf20
566
from ragendja.settings_post import settings settings.add_app_media('combined-%(LANGUAGE_CODE)s.js', 'jquery/jquery.js', 'jquery/jquery.fixes.js', 'jquery/jquery.ajax-queue.js', 'jquery/jquery.bgiframe.js', 'jquery/jquery.livequery.js', 'jquery/jquery.form.js', )
100uhaco
trunk/GAE/common/jquery/settings.py
Python
asf20
287
(function($) { /* Fix fadeIn and fadeOut cleartype bug in IE. */ $.fn.originalFadeIn = $.fn.fadeIn $.fn.fadeIn = function(speed, callback) { $(this).originalFadeIn(speed, function() { if(jQuery.browser.msie) $(this).get(0).style.removeAttribute('filter'); if(callback != undefined) ...
100uhaco
trunk/GAE/common/jquery/media/jquery.fixes.js
JavaScript
asf20
1,098
/*! * Ajax Queue Plugin * * Homepage: http://jquery.com/plugins/project/ajaxqueue * Documentation: http://docs.jquery.com/AjaxQueue */ /** <script> $(function(){ jQuery.ajaxQueue({ url: "test.php", success: function(html){ jQuery("ul").append(html); } }); jQuery.ajaxQueue({ url: "test.php", success: ...
100uhaco
trunk/GAE/common/jquery/media/jquery.ajax-queue.js
JavaScript
asf20
2,189
/*! * jquery.bgiframe * Copyright (c) 2006 Brandon Aaron (http://brandonaaron.net) * Dual licensed under the MIT (http://www.opensource.org/licenses/mit-license.php) * and GPL (http://www.opensource.org/licenses/gpl-license.php) licenses. * * $LastChangedDate$ * $Rev$ * * Version 2.1.1 */ (function($){ /**...
100uhaco
trunk/GAE/common/jquery/media/jquery.bgiframe.js
JavaScript
asf20
4,849
/*! Copyright (c) 2008 Brandon Aaron (http://brandonaaron.net) * Dual licensed under the MIT (http://www.opensource.org/licenses/mit-license.php) * and GPL (http://www.opensource.org/licenses/gpl-license.php) licenses. * * Version: 1.0.3 * Requires jQuery 1.1.3+ * Docs: http://docs.jquery.com/Plugins/livequery ...
100uhaco
trunk/GAE/common/jquery/media/jquery.livequery.js
JavaScript
asf20
6,688
/* * jQuery Form Plugin * version: 2.24 (10-MAR-2009) * @requires jQuery v1.2.2 or later * * Examples and documentation at: http://malsup.com/jquery/form/ * Dual licensed under the MIT and GPL licenses: * http://www.opensource.org/licenses/mit-license.php * http://www.gnu.org/licenses/gpl.html */ ...
100uhaco
trunk/GAE/common/jquery/media/jquery.form.js
JavaScript
asf20
23,133
{% extends "databrowse/base_site.html" %} {% block title %}Databrowse{% endblock %} {% block bodyid %}homepage{% endblock %} {% block content %} {% for model in model_list %} <div class="modelgroup {% cycle 'even' 'odd' %}"> <h2><a href="{{ model.url }}">{{ model.verbose_name_plural|capfirst }}</a></h2> <p> ...
100uhaco
trunk/GAE/common/django_aep_export/django_templates/templates/databrowse/homepage.html
HTML
asf20
530
{% extends "databrowse/base_site.html" %} {% block title %}{{ field.verbose_name|capfirst }} calendar{% endblock %} {% block content %} <div id="breadcrumbs"><a href="{{ root_url }}">Home</a> / <a href="{{ model.url }}">{{ model.verbose_name_plural|capfirst }}</a> / <a href="../">Calendars</a> / By {{ field.verbose_...
100uhaco
trunk/GAE/common/django_aep_export/django_templates/templates/databrowse/calendar_main.html
HTML
asf20
590
{% extends "databrowse/base_site.html" %} {% block title %}{{ model.verbose_name_plural|capfirst }} with {{ field.field.verbose_name }} {{ value }}{% endblock %} {% block content %} <div id="breadcrumbs"><a href="{{ root_url }}">Home</a> / <a href="{{ model.url }}">{{ model.verbose_name_plural|capfirst }}</a> / <a h...
100uhaco
trunk/GAE/common/django_aep_export/django_templates/templates/databrowse/fieldchoice_detail.html
HTML
asf20
791
{% extends "databrowse/base_site.html" %} {% block title %}{{ model.verbose_name_plural|capfirst }}{% endblock %} {% block content %} <div id="breadcrumbs"><a href="{{ root_url }}">Home</a> / {{ model.verbose_name_plural|capfirst }}</div> <h1>{{ model.objects.count }} {% if model.objects.count|pluralize %}{{ model....
100uhaco
trunk/GAE/common/django_aep_export/django_templates/templates/databrowse/model_detail.html
HTML
asf20
596
{% extends "databrowse/base_site.html" %} {% block title %}{{ object.model.verbose_name|capfirst }}: {{ object }}{% endblock %} {% block content %} <div id="breadcrumbs"><a href="{{ root_url }}">Home</a> / <a href="{{ object.model.url }}">{{ object.model.verbose_name_plural|capfirst }}</a> / {{ object }}</div> <h1>...
100uhaco
trunk/GAE/common/django_aep_export/django_templates/templates/databrowse/object_detail.html
HTML
asf20
1,306
{% extends "databrowse/base_site.html" %} {% block title %}{{ model.verbose_name_plural|capfirst }} by {{ field.field.verbose_name }}{% endblock %} {% block content %} <div id="breadcrumbs"><a href="{{ root_url }}">Home</a> / <a href="{{ model.url }}">{{ model.verbose_name_plural|capfirst }}</a> / <a href="../">Fiel...
100uhaco
trunk/GAE/common/django_aep_export/django_templates/templates/databrowse/fieldchoice_list.html
HTML
asf20
639
{% extends "databrowse/base_site.html" %} {% block title %}{{ model.verbose_name_plural|capfirst }} by {{ field.field.verbose_name }}: {{ value }}{% endblock %} {% block content %} <div id="breadcrumbs"><a href="{{ root_url }}">Home</a> / <a href="{{ model.url }}">{{ model.verbose_name_plural|capfirst }}</a> / <a hr...
100uhaco
trunk/GAE/common/django_aep_export/django_templates/templates/databrowse/choice_detail.html
HTML
asf20
675
{% extends "databrowse/base_site.html" %} {% block title %}Calendars{% endblock %} {% block content %} <div id="breadcrumbs"><a href="{{ root_url }}">Home</a> / <a href="{{ model.url }}">{{ model.verbose_name_plural|capfirst }}</a> / Calendars</div> <h1>Calendars</h1> <ul class="objectlist"> {% for field in field_...
100uhaco
trunk/GAE/common/django_aep_export/django_templates/templates/databrowse/calendar_homepage.html
HTML
asf20
506
{% extends "databrowse/base_site.html" %} {% block title %}{{ model.verbose_name_plural|capfirst }} with {{ field.verbose_name }} in {{ year }}{% endblock %} {% block content %} <div id="breadcrumbs"><a href="{{ root_url }}">Home</a> / <a href="{{ model.url }}">{{ model.verbose_name_plural|capfirst }}</a> / <a href=...
100uhaco
trunk/GAE/common/django_aep_export/django_templates/templates/databrowse/calendar_year.html
HTML
asf20
699
{% extends "databrowse/base_site.html" %} {% block title %}{{ model.verbose_name_plural|capfirst }} with {{ field.verbose_name }} {{ day|date:"F j, Y" }}{% endblock %} {% block content %} <div id="breadcrumbs"><a href="{{ root_url }}">Home</a> / <a href="{{ model.url }}">{{ model.verbose_name_plural|capfirst }}</a> ...
100uhaco
trunk/GAE/common/django_aep_export/django_templates/templates/databrowse/calendar_day.html
HTML
asf20
894
{% extends "databrowse/base_site.html" %} {% block title %}{{ model.verbose_name_plural|capfirst }} by {{ field.field.verbose_name }}{% endblock %} {% block content %} <div id="breadcrumbs"><a href="{{ root_url }}">Home</a> / <a href="{{ model.url }}">{{ model.verbose_name_plural|capfirst }}</a> / By {{ field.field....
100uhaco
trunk/GAE/common/django_aep_export/django_templates/templates/databrowse/choice_list.html
HTML
asf20
613
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" lang="{{ LANGUAGE_CODE }}" xml:lang="{{ LANGUAGE_CODE }}" {% if LANGUAGE_BIDI %}dir="rtl"{% endif %}> <head> <title>{% block title %}{% endblock %}</title> {% block st...
100uhaco
trunk/GAE/common/django_aep_export/django_templates/templates/databrowse/base.html
HTML
asf20
2,828
{% extends "databrowse/base_site.html" %} {% block title %}Browsable fields in {{ model.verbose_name_plural }}{% endblock %} {% block content %} <div id="breadcrumbs"><a href="{{ root_url }}">Home</a> / <a href="{{ model.url }}">{{ model.verbose_name_plural|capfirst }}</a> / Fields</div> <h1>Browsable fields in {{ ...
100uhaco
trunk/GAE/common/django_aep_export/django_templates/templates/databrowse/fieldchoice_homepage.html
HTML
asf20
587
{% extends "databrowse/base_site.html" %} {% block title %}{{ model.verbose_name_plural|capfirst }} with {{ field.verbose_name }} in {{ month|date:"F Y" }}{% endblock %} {% block content %} <div id="breadcrumbs"><a href="{{ root_url }}">Home</a> / <a href="{{ model.url }}">{{ model.verbose_name_plural|capfirst }}</a...
100uhaco
trunk/GAE/common/django_aep_export/django_templates/templates/databrowse/calendar_month.html
HTML
asf20
854
{% extends "databrowse/base.html" %}
100uhaco
trunk/GAE/common/django_aep_export/django_templates/templates/databrowse/base_site.html
HTML
asf20
37
{% extends "admin/index.html" %} {% load i18n %} {% if not is_popup %} {% block breadcrumbs %} <div class="breadcrumbs"><a href="../"> {% trans "Home" %}</a> &rsaquo; {% for app in app_list %} {% blocktrans with app.name as name %}{{ name }}{% endblocktrans %} {% endfor %}</div>{% endblock %} {% endif %} {% blo...
100uhaco
trunk/GAE/common/django_aep_export/django_templates/templates/admin/app_index.html
HTML
asf20
347
{% extends "admin/base_site.html" %} {% load i18n %} {% block breadcrumbs %}<div class="breadcrumbs"><a href="/">{% trans "Home" %}</a> &rsaquo; {% trans "Server error" %}</div>{% endblock %} {% block title %}{% trans 'Server error (500)' %}{% endblock %} {% block content %} <h1>{% trans 'Server Error <em>(500)</em>...
100uhaco
trunk/GAE/common/django_aep_export/django_templates/templates/admin/500.html
HTML
asf20
502
{% load adminmedia %} {% load i18n %} {% if cl.search_fields %} <div id="toolbar"><form id="changelist-search" action="" method="get"> <div><!-- DIV needed for valid HTML --> <label for="searchbar"><img src="{% admin_media_prefix %}img/admin/icon_searchbox.png" alt="Search" /></label> <input type="text" size="40" name=...
100uhaco
trunk/GAE/common/django_aep_export/django_templates/templates/admin/search_form.html
HTML
asf20
1,068
{% extends "admin/base_site.html" %} {% load i18n %} {% block breadcrumbs %} <div class="breadcrumbs"> <a href="../../../../">{% trans "Home" %}</a> &rsaquo; <a href="../../../">{{ app_label|capfirst }}</a> &rsaquo; <a href="../../">{{ opts.verbose_name_plural|capfirst }}</a> &rsaquo; <a href="../...
100uhaco
trunk/GAE/common/django_aep_export/django_templates/templates/admin/delete_confirmation.html
HTML
asf20
1,290
{% extends "admin/base_site.html" %} {% load adminmedia admin_list i18n %} {% block stylesheet %}{% admin_media_prefix %}css/changelists.css{% endblock %} {% block bodyclass %}change-list{% endblock %} {% if not is_popup %}{% block breadcrumbs %}<div class="breadcrumbs"><a href="../../">{% trans "Home" %}</a> &rsaqu...
100uhaco
trunk/GAE/common/django_aep_export/django_templates/templates/admin/change_list.html
HTML
asf20
1,369
{% load i18n %} <div class="submit-row" {% if is_popup %}style="overflow: auto;"{% endif %}> {% if show_save %}<input type="submit" value="{% trans 'Save' %}" class="default" name="_save" {{ onclick_attrib }}/>{% endif %} {% if show_delete_link %}<p class="deletelink-box"><a href="delete/" class="deletelink">{% trans "...
100uhaco
trunk/GAE/common/django_aep_export/django_templates/templates/admin/submit_line.html
HTML
asf20
790
{% extends "admin/change_form.html" %} {% load i18n %} {% block after_field_sets %} <p>{% trans "First, enter a username and password. Then, you'll be able to edit more user options." %}</p> <fieldset class="module aligned"> <div class="form-row"> {{ form.username.errors }} {# TODO: get required class on label_...
100uhaco
trunk/GAE/common/django_aep_export/django_templates/templates/admin/auth/user/add_form.html
HTML
asf20
1,105
{% extends "admin/base_site.html" %} {% load i18n admin_modify adminmedia %} {% block extrahead %}{{ block.super }} <script type="text/javascript" src="../../../../jsi18n/"></script> {% endblock %} {% block stylesheet %}{% admin_media_prefix %}css/forms.css{% endblock %} {% block bodyclass %}{{ opts.app_label }}-{{ opt...
100uhaco
trunk/GAE/common/django_aep_export/django_templates/templates/admin/auth/user/change_password.html
HTML
asf20
2,107
{% extends "admin/base_site.html" %} {% load i18n admin_modify adminmedia %} {% block extrahead %}{{ block.super }} <script type="text/javascript" src="../../../jsi18n/"></script> {{ media }} {% endblock %} {% block stylesheet %}{% admin_media_prefix %}css/forms.css{% endblock %} {% block coltype %}{% if ordered_obj...
100uhaco
trunk/GAE/common/django_aep_export/django_templates/templates/admin/change_form.html
HTML
asf20
2,592
{% load i18n %} <h3>{% blocktrans with title as filter_title %} By {{ filter_title }} {% endblocktrans %}</h3> <ul> {% for choice in choices %} <li{% if choice.selected %} class="selected"{% endif %}> <a href="{{ choice.query_string|iriencode }}">{{ choice.display }}</a></li> {% endfor %} </ul>
100uhaco
trunk/GAE/common/django_aep_export/django_templates/templates/admin/filter.html
HTML
asf20
304
{% load admin_list %} {% load i18n %} <p class="paginator"> {% if pagination_required %} {% for i in page_range %} {% paginator_number cl i %} {% endfor %} {% endif %} {{ cl.result_count }} {% ifequal cl.result_count 1 %}{{ cl.opts.verbose_name }}{% else %}{{ cl.opts.verbose_name_plural }}{% endifequal %} {% if sho...
100uhaco
trunk/GAE/common/django_aep_export/django_templates/templates/admin/pagination.html
HTML
asf20
432
{% extends "admin/base_site.html" %} {% block content %} <div id="content-main"> <form action="" method="post"> {% if form.errors %} <p class="errornote">Your template had {{ form.errors|length }} error{{ form.errors|pluralize }}:</p> {% endif %} <fieldset class="module aligned"> <div class="form-row{% if form.err...
100uhaco
trunk/GAE/common/django_aep_export/django_templates/templates/admin/template_validator.html
HTML
asf20
830
{% extends "admin/base_site.html" %} {% load i18n %} {% block breadcrumbs %} <div class="breadcrumbs"> <a href="../../../../">{% trans 'Home' %}</a> &rsaquo; <a href="../../../">{{ app_label|capfirst }}</a> &rsaquo; <a href="../../">{{ module_name }}</a> &rsaquo; <a href="../">{{ object|truncateword...
100uhaco
trunk/GAE/common/django_aep_export/django_templates/templates/admin/object_history.html
HTML
asf20
1,295
{% load i18n %} <div class="inline-group"> <h2>{{ inline_admin_formset.opts.verbose_name_plural|title }}</h2> {{ inline_admin_formset.formset.management_form }} {{ inline_admin_formset.formset.non_form_errors }} {% for inline_admin_form in inline_admin_formset %} <div class="inline-related {% if forloop.last %}last-...
100uhaco
trunk/GAE/common/django_aep_export/django_templates/templates/admin/edit_inline/stacked.html
HTML
asf20
1,414
{% load i18n %} <div class="inline-group"> <div class="tabular inline-related {% if forloop.last %}last-related{% endif %}"> {{ inline_admin_formset.formset.management_form }} <fieldset class="module"> <h2>{{ inline_admin_formset.opts.verbose_name_plural|capfirst }}</h2> {{ inline_admin_formset.formset.non_form...
100uhaco
trunk/GAE/common/django_aep_export/django_templates/templates/admin/edit_inline/tabular.html
HTML
asf20
2,732
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" lang="{{ LANGUAGE_CODE }}" xml:lang="{{ LANGUAGE_CODE }}" {% if LANGUAGE_BIDI %}dir="rtl"{% endif %}> <head> <title>{% block title %}{% endblock %}</title> <link rel="...
100uhaco
trunk/GAE/common/django_aep_export/django_templates/templates/admin/base.html
HTML
asf20
2,533
{% extends "admin/base_site.html" %} {% load i18n %} {% block title %}{% trans 'Page not found' %}{% endblock %} {% block content %} <h2>{% trans 'Page not found' %}</h2> <p>{% trans "We're sorry, but the requested page could not be found." %}</p> {% endblock %}
100uhaco
trunk/GAE/common/django_aep_export/django_templates/templates/admin/404.html
HTML
asf20
268
{% extends "admin/base_site.html" %} {% load i18n %} {% block breadcrumbs %}<div class="breadcrumbs"><a href="../../">{% trans 'Home' %}</a> &rsaquo; {{ title }}</div>{% endblock %} {% block content %} <p>{% trans "Something's wrong with your database installation. Make sure the appropriate database tables have been ...
100uhaco
trunk/GAE/common/django_aep_export/django_templates/templates/admin/invalid_setup.html
HTML
asf20
416
{% extends "admin/base_site.html" %} {% load i18n %} {% block stylesheet %}{% load adminmedia %}{% admin_media_prefix %}css/login.css{% endblock %} {% block bodyclass %}login{% endblock %} {% block content_title %}{% endblock %} {% block breadcrumbs %}{% endblock %} {% block content %} {% if error_message %} <p cl...
100uhaco
trunk/GAE/common/django_aep_export/django_templates/templates/admin/login.html
HTML
asf20
1,063
{% if results %} <table cellspacing="0"> <thead> <tr> {% for header in result_headers %}<th{{ header.class_attrib }}> {% if header.sortable %}<a href="{{ header.url }}">{% endif %} {{ header.text|capfirst }} {% if header.sortable %}</a>{% endif %}</th>{% endfor %} </tr> </thead> <tbody> {% for result in results %} <tr ...
100uhaco
trunk/GAE/common/django_aep_export/django_templates/templates/admin/change_list_results.html
HTML
asf20
449
{% if show %} <div class="xfull"> <ul class="toplinks"> {% if back %}<li class="date-back"><a href="{{ back.link }}">&lsaquo; {{ back.title }}</a></li>{% endif %} {% for choice in choices %} <li> {% if choice.link %}<a href="{{ choice.link }}">{% endif %}{{ choice.title }}{% if choice.link %}</a>{% endif %}</li> {% end...
100uhaco
trunk/GAE/common/django_aep_export/django_templates/templates/admin/date_hierarchy.html
HTML
asf20
372
{% extends "admin/base_site.html" %} {% load i18n %} {% block stylesheet %}{% load adminmedia %}{% admin_media_prefix %}css/dashboard.css{% endblock %} {% block coltype %}colMS{% endblock %} {% block bodyclass %}dashboard{% endblock %} {% block breadcrumbs %}{% endblock %} {% block content %} <div id="content-main...
100uhaco
trunk/GAE/common/django_aep_export/django_templates/templates/admin/index.html
HTML
asf20
2,581
<script type="text/javascript"> {% for field in prepopulated_fields %} document.getElementById("{{ field.field.auto_id }}").onchange = function() { this._changed = true; }; {% for dependency in field.dependencies %} document.getElementById("{{ dependency.auto_id }}").onkeyup = function() { var e = d...
100uhaco
trunk/GAE/common/django_aep_export/django_templates/templates/admin/prepopulated_fields_js.html
HTML
asf20
677
{% extends "admin/base.html" %} {% load i18n %} {% block title %}{{ title }} | {% trans 'Django site admin' %}{% endblock %} {% block branding %} <h1 id="site-name">{% trans 'Django administration' %}</h1> {% endblock %} {% block nav-global %}{% endblock %}
100uhaco
trunk/GAE/common/django_aep_export/django_templates/templates/admin/base_site.html
HTML
asf20
261
<fieldset class="module aligned {{ fieldset.classes }}"> {% if fieldset.name %}<h2>{{ fieldset.name }}</h2>{% endif %} {% if fieldset.description %}<div class="description">{{ fieldset.description|safe }}</div>{% endif %} {% for line in fieldset %} <div class="form-row{% if line.errors %} errors{% endif %} ...
100uhaco
trunk/GAE/common/django_aep_export/django_templates/templates/admin/includes/fieldset.html
HTML
asf20
889
{% extends "base.html" %} {% block content %} <h1>Preview your submission</h1> <table> {% for field in form %} <tr> <th>{{ field.label }}:</th> <td>{{ field.data }}</td> </tr> {% endfor %} </table> <p>Security hash: {{ hash_value }}</p> <form action="" method="post"> {% for field in form %}{{ field.as_hidden }} {%...
100uhaco
trunk/GAE/common/django_aep_export/django_templates/templates/formtools/preview.html
HTML
asf20
734
{% extends "base.html" %} {% block content %} {% if form.errors %}<h1>Please correct the following errors</h1>{% else %}<h1>Submit</h1>{% endif %} <form action="" method="post"> <table> {{ form }} </table> <input type="hidden" name="{{ stage_field }}" value="1" /> <p><input type="submit" value="Preview" /></p> </for...
100uhaco
trunk/GAE/common/django_aep_export/django_templates/templates/formtools/form.html
HTML
asf20
339
{% autoescape off %}{% block vars %}var map;{% endblock %} {% block functions %}{% endblock %} {% block load %}function {{ load_func }}(){ if (GBrowserIsCompatible()) { map = new GMap2(document.getElementById("{{ dom_id }}")); map.setCenter(new GLatLng({{ center.1 }}, {{ center.0 }}), {{ zoom }}); {% bloc...
100uhaco
trunk/GAE/common/django_aep_export/django_templates/templates/gis/google/js/google-map.js
JavaScript
asf20
2,205
{% block extrastyle %} <style type="text/css"> #{{ id }}_map { width: {{ map_width }}px; height: {{ map_height }}px; } #{{ id }}_map .aligned label { float:inherit; } #{{ id }}_admin_map { position: relative; vertical-align: top; float: left; } {% if not display_wkt %}#{{ id }} { display: none; }{% endif %} ....
100uhaco
trunk/GAE/common/django_aep_export/django_templates/templates/gis/admin/openlayers.html
HTML
asf20
1,679
{% extends "gis/admin/openlayers.js" %} {% block base_layer %}new OpenLayers.Layer.OSM.Mapnik("OpenStreetMap (Mapnik)");{% endblock %}
100uhaco
trunk/GAE/common/django_aep_export/django_templates/templates/gis/admin/osm.js
JavaScript
asf20
135
{% extends "gis/admin/openlayers.html" %} {% block openlayers %}{% include "gis/admin/osm.js" %}{% endblock %}
100uhaco
trunk/GAE/common/django_aep_export/django_templates/templates/gis/admin/osm.html
HTML
asf20
110
{# Author: Justin Bronn, Travis Pinney & Dane Springmeyer #} {% block vars %}var {{ module }} = {}; {{ module }}.map = null; {{ module }}.controls = null; {{ module }}.panel = null; {{ module }}.re = new RegExp("^SRID=\d+;(.+)", "i"); {{ module }}.layers = {}; {{ module }}.wkt_f = new OpenLayers.Format.WKT(); {{ modul...
100uhaco
trunk/GAE/common/django_aep_export/django_templates/templates/gis/admin/openlayers.js
JavaScript
asf20
8,015
{% extends "admin/base_site.html" %} {% load i18n %} {% block breadcrumbs %}<div class="breadcrumbs"><a href="../">{% trans 'Home' %}</a> &rsaquo; {% trans 'Password reset' %}</div>{% endblock %} {% block title %}{% trans "Password reset" %}{% endblock %} {% block content %} <h1>{% trans "Password reset" %}</h1> <...
100uhaco
trunk/GAE/common/django_aep_export/django_templates/templates/registration/password_reset_form.html
HTML
asf20
679
{% extends "admin/base_site.html" %} {% load i18n %} {% block breadcrumbs %}<div class="breadcrumbs"><a href="../../">{% trans 'Home' %}</a> &rsaquo; {% trans 'Password reset' %}</div>{% endblock %} {% block title %}{% trans 'Password reset complete' %}{% endblock %} {% block content %} <h1>{% trans 'Password reset...
100uhaco
trunk/GAE/common/django_aep_export/django_templates/templates/registration/password_reset_complete.html
HTML
asf20
498
{% load i18n %}{% autoescape off %} {% trans "You're receiving this e-mail because you requested a password reset" %} {% blocktrans %}for your user account at {{ site_name }}{% endblocktrans %}. {% trans "Please go to the following page and choose a new password:" %} {% block reset_link %} {{ protocol }}://{{ domain }...
100uhaco
trunk/GAE/common/django_aep_export/django_templates/templates/registration/password_reset_email.html
HTML
asf20
618
{% extends "admin/base_site.html" %} {% load i18n %} {% block userlinks %}{% url django-admindocs-docroot as docsroot %}{% if docsroot %}<a href="{{ docsroot }}">{% trans 'Documentation' %}</a> / {% endif %}{% trans 'Change password' %} / <a href="../../logout/">{% trans 'Log out' %}</a>{% endblock %} {% block breadcru...
100uhaco
trunk/GAE/common/django_aep_export/django_templates/templates/registration/password_change_done.html
HTML
asf20
660
{% extends "admin/base_site.html" %} {% load i18n %} {% block breadcrumbs %}<div class="breadcrumbs"><a href="../">{% trans 'Home' %}</a> &rsaquo; {% trans 'Password reset' %}</div>{% endblock %} {% block title %}{% trans 'Password reset successful' %}{% endblock %} {% block content %} <h1>{% trans 'Password reset ...
100uhaco
trunk/GAE/common/django_aep_export/django_templates/templates/registration/password_reset_done.html
HTML
asf20
509
{% extends "admin/base_site.html" %} {% load i18n %} {% block userlinks %}{% url django-admindocs-docroot as docsroot %}{% if docsroot %}<a href="{{ docsroot }}">{% trans 'Documentation' %}</a> / {% endif %} {% trans 'Change password' %} / <a href="../logout/">{% trans 'Log out' %}</a>{% endblock %} {% block breadcrumb...
100uhaco
trunk/GAE/common/django_aep_export/django_templates/templates/registration/password_change_form.html
HTML
asf20
1,307
{% extends "admin/base_site.html" %} {% load i18n %} {% block breadcrumbs %}<div class="breadcrumbs"><a href="../">{% trans 'Home' %}</a></div>{% endblock %} {% block content %} <p>{% trans "Thanks for spending some quality time with the Web site today." %}</p> <p><a href="../">{% trans 'Log in again' %}</a></p> {...
100uhaco
trunk/GAE/common/django_aep_export/django_templates/templates/registration/logged_out.html
HTML
asf20
334
{% extends "admin/base_site.html" %} {% load i18n %} {% block breadcrumbs %}<div class="breadcrumbs"><a href="../">{% trans 'Home' %}</a> &rsaquo; {% trans 'Password reset confirmation' %}</div>{% endblock %} {% block title %}{% trans 'Password reset' %}{% endblock %} {% block content %} {% if validlink %} <h1>{% ...
100uhaco
trunk/GAE/common/django_aep_export/django_templates/templates/registration/password_reset_confirm.html
HTML
asf20
1,103
{% extends "comments/base.html" %} {% load i18n %} {% block title %}{% trans "Thanks for flagging" %}.{% endblock %} {% block content %} <h1>{% trans "Thanks for taking the time to improve the quality of discussion on our site" %}.</h1> {% endblock %}
100uhaco
trunk/GAE/common/django_aep_export/django_templates/templates/comments/flagged.html
HTML
asf20
256
{% extends "comments/base.html" %} {% load i18n %} {% block title %}{% trans "Approve a comment" %}{% endblock %} {% block content %} <h1>{% trans "Really make this comment public?" %}</h1> <blockquote>{{ comment|linebreaks }}</blockquote> <form action="." method="post"> <input type="hidden" name="next" val...
100uhaco
trunk/GAE/common/django_aep_export/django_templates/templates/comments/approve.html
HTML
asf20
528
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html lang="en"> <head> <meta http-equiv="content-type" content="text/html; charset=utf-8" /> <title>Comment post not allowed (400)</title> <meta name="robots" content="NONE,NOARCHIVE" /> <style type="text/css...
100uhaco
trunk/GAE/common/django_aep_export/django_templates/templates/comments/400-debug.html
HTML
asf20
1,906
{% extends "comments/base.html" %} {% load i18n %} {% block title %}{% trans "Thanks for commenting" %}.{% endblock %} {% block content %} <h1>{% trans "Thank you for your comment" %}.</h1> {% endblock %}
100uhaco
trunk/GAE/common/django_aep_export/django_templates/templates/comments/posted.html
HTML
asf20
209
{% extends "comments/base.html" %} {% load i18n %} {% block title %}{% trans "Preview your comment" %}{% endblock %} {% block content %} {% load comments %} <form action="{% comment_form_target %}" method="post"> {% if form.errors %} <h1>{% blocktrans count form.errors|length as counter %}Please correct t...
100uhaco
trunk/GAE/common/django_aep_export/django_templates/templates/comments/preview.html
HTML
asf20
1,367
{% load comments i18n %} <form action="{% comment_form_target %}" method="post"> {% for field in form %} {% if field.is_hidden %} {{ field }} {% else %} <p {% if field.errors %} class="error"{% endif %} {% ifequal field.name "honeypot" %} style="display:none;"{% endifequal %}> ...
100uhaco
trunk/GAE/common/django_aep_export/django_templates/templates/comments/form.html
HTML
asf20
678
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"> <html lang="en"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title>{% block title %}{% endblock %}</title> </head> <body> {% block content %}{% endblock %} </body> </html>
100uhaco
trunk/GAE/common/django_aep_export/django_templates/templates/comments/base.html
HTML
asf20
261
{% extends "admin/change_list.html" %} {% load adminmedia i18n %} {% block title %}{% trans "Comment moderation queue" %}{% endblock %} {% block extrahead %} {{ block.super }} <style type="text/css" media="screen"> p#nocomments { font-size: 200%; text-align: center; border: 1px #ccc dashed; padding: 4em; } ...
100uhaco
trunk/GAE/common/django_aep_export/django_templates/templates/comments/moderation_queue.html
HTML
asf20
2,772
{% extends "comments/base.html" %} {% load i18n %} {% block title %}{% trans "Flag this comment" %}{% endblock %} {% block content %} <h1>{% trans "Really flag this comment?" %}</h1> <blockquote>{{ comment|linebreaks }}</blockquote> <form action="." method="post"> <input type="hidden" name="next" value="{{ ne...
100uhaco
trunk/GAE/common/django_aep_export/django_templates/templates/comments/flag.html
HTML
asf20
514
{% extends "comments/base.html" %} {% load i18n %} {% block title %}{% trans "Thanks for approving" %}.{% endblock %} {% block content %} <h1>{% trans "Thanks for taking the time to improve the quality of discussion on our site" %}.</h1> {% endblock %}
100uhaco
trunk/GAE/common/django_aep_export/django_templates/templates/comments/approved.html
HTML
asf20
257
{% extends "comments/base.html" %} {% load i18n %} {% block title %}{% trans "Thanks for removing" %}.{% endblock %} {% block content %} <h1>{% trans "Thanks for taking the time to improve the quality of discussion on our site" %}.</h1> {% endblock %}
100uhaco
trunk/GAE/common/django_aep_export/django_templates/templates/comments/deleted.html
HTML
asf20
256
{% extends "comments/base.html" %} {% load i18n %} {% block title %}{% trans "Remove a comment" %}{% endblock %} {% block content %} <h1>{% trans "Really remove this comment?" %}</h1> <blockquote>{{ comment|linebreaks }}</blockquote> <form action="." method="post"> <input type="hidden" name="next" value="{{ n...
100uhaco
trunk/GAE/common/django_aep_export/django_templates/templates/comments/delete.html
HTML
asf20
517
{% extends "admin/base_site.html" %} {% load i18n %} {% block coltype %}colSM{% endblock %} {% block breadcrumbs %}<div class="breadcrumbs"><a href="../../">Home</a> &rsaquo; <a href="../">Documentation</a> &rsaquo; Tags</div>{% endblock %} {% block title %}Template tags{% endblock %} {% block content %} <h1>Template...
100uhaco
trunk/GAE/common/django_aep_export/django_templates/templates/admin_doc/template_tag_index.html
HTML
asf20
1,464
{% extends "admin/base_site.html" %} {% load i18n %} {% block extrahead %} {{ block.super }} <style type="text/css"> .module table { width:100%; } .module table p { padding: 0; margin: 0; } </style> {% endblock %} {% block breadcrumbs %}<div class="breadcrumbs"><a href="../../../">Home</a> &rsaquo; <a href="../../">Do...
100uhaco
trunk/GAE/common/django_aep_export/django_templates/templates/admin_doc/model_detail.html
HTML
asf20
1,130
{% extends "admin/base_site.html" %} {% load i18n %} {% block breadcrumbs %}<div class="breadcrumbs"><a href="../../../">Home</a> &rsaquo; <a href="../../">Documentation</a> &rsaquo; Templates &rsaquo; {{ name }}</div>{% endblock %} {% block title %}Template: {{ name }}{% endblock %} {% block content %} <h1>Template:...
100uhaco
trunk/GAE/common/django_aep_export/django_templates/templates/admin_doc/template_detail.html
HTML
asf20
831
{% extends "admin/base_site.html" %} {% load i18n %} {% block breadcrumbs %}<div class="breadcrumbs"><a href="../">Home</a> &rsaquo; Documentation</div>{% endblock %} {% block title %}Please install docutils{% endblock %} {% block content %} <h1>Documentation</h1> <div id="content-main"> <h3>The admin documentatio...
100uhaco
trunk/GAE/common/django_aep_export/django_templates/templates/admin_doc/missing_docutils.html
HTML
asf20
531
{% extends "admin/base_site.html" %} {% load i18n %} {% block coltype %}colSM{% endblock %} {% block breadcrumbs %}<div class="breadcrumbs"><a href="../../">Home</a> &rsaquo; <a href="../">Documentation</a> &rsaquo; Views</div>{% endblock %} {% block title %}Views{% endblock %} {% block content %} <h1>View documentat...
100uhaco
trunk/GAE/common/django_aep_export/django_templates/templates/admin_doc/view_index.html
HTML
asf20
1,154
{% extends "admin/base_site.html" %} {% block breadcrumbs %}{% load i18n %}<div class="breadcrumbs"><a href="../../">{% trans "Home" %}</a> &rsaquo; <a href="../">{% trans "Documentation" %}</a> &rsaquo; {% trans "Bookmarklets" %}</div>{% endblock %} {% block title %}{% trans "Documentation bookmarklets" %}{% endblock...
100uhaco
trunk/GAE/common/django_aep_export/django_templates/templates/admin_doc/bookmarklets.html
HTML
asf20
3,689
{% extends "admin/base_site.html" %} {% load i18n %} {% block breadcrumbs %}<div class="breadcrumbs"><a href="../../../">Home</a> &rsaquo; <a href="../../">Documentation</a> &rsaquo; <a href="../">Views</a> &rsaquo; {{ name }}</div>{% endblock %} {% block title %}View: {{ name }}{% endblock %} {% block content %} <h1...
100uhaco
trunk/GAE/common/django_aep_export/django_templates/templates/admin_doc/view_detail.html
HTML
asf20
652
{% extends "admin/base_site.html" %} {% load i18n %} {% block breadcrumbs %}<div class="breadcrumbs"><a href="../">Home</a> &rsaquo; Documentation</div>{% endblock %} {% block title %}Documentation{% endblock %} {% block content %} <h1>Documentation</h1> <div id="content-main"> <h3><a href="tags/">Tags</a></h3> ...
100uhaco
trunk/GAE/common/django_aep_export/django_templates/templates/admin_doc/index.html
HTML
asf20
1,096
{% extends "admin/base_site.html" %} {% load i18n %} {% block coltype %}colSM{% endblock %} {% block breadcrumbs %}<div class="breadcrumbs"><a href="../../">Home</a> &rsaquo; <a href="../">Documentation</a> &rsaquo; Models</div>{% endblock %} {% block title %}Models{% endblock %} {% block content %} <h1>Model docume...
100uhaco
trunk/GAE/common/django_aep_export/django_templates/templates/admin_doc/model_index.html
HTML
asf20
1,081
{% extends "admin/base_site.html" %} {% load i18n %} {% block coltype %}colSM{% endblock %} {% block breadcrumbs %}<div class="breadcrumbs"><a href="../../">Home</a> &rsaquo; <a href="../">Documentation</a> &rsaquo; filters</div>{% endblock %} {% block title %}Template filters{% endblock %} {% block content %} <h1>Te...
100uhaco
trunk/GAE/common/django_aep_export/django_templates/templates/admin_doc/template_filter_index.html
HTML
asf20
1,525
#!/usr/bin/env python if __name__ == '__main__': from common.appenginepatch.aecmd import setup_env setup_env(manage_py_env=True) # Recompile translation files from mediautils.compilemessages import updatemessages updatemessages() # Generate compressed media files for manage.py update impor...
100uhaco
trunk/GAE/manage.py
Python
asf20
566
#!/bin/sh rtc-template -bpython \ --module-name=Proxy \ --module-desc='RTC-Lite for Arduino' \ --module-version=1.0.0 \ --module-vendor=AIST \ --module-category=Proxy \ --module-comp-type=STATIC \ --module-act-type=PERIODIC \ --module-max-inst=1 \ --outport=Watt:TimedShort \ --o...
100uhaco
trunk/RTC/python/Proxy/gen.sh
Shell
asf20
454
#!/usr/bin/env python # -*- Python -*- import sys import time sys.path.append(".") # Import RTM module import OpenRTM_aist import RTC import socket import httplib from time import sleep # Import Service implementation class # <rtc-template block="service_impl"> # </rtc-template> # Import Service stub modules # <r...
100uhaco
trunk/RTC/python/Proxy/.svn/text-base/Proxy.py.svn-base
Python
asf20
4,475
#!/bin/sh rtc-template -bpython \ --module-name=Proxy \ --module-desc='RTC-Lite for Arduino' \ --module-version=1.0.0 \ --module-vendor=AIST \ --module-category=Proxy \ --module-comp-type=STATIC \ --module-act-type=PERIODIC \ --module-max-inst=1 \ --outport=Watt:TimedShort \ --o...
100uhaco
trunk/RTC/python/Proxy/.svn/text-base/gen.sh.svn-base
Shell
asf20
454
#!/usr/bin/env python # -*- Python -*- import sys import time sys.path.append(".") # Import RTM module import OpenRTM_aist import RTC import socket import httplib from time import sleep # Import Service implementation class # <rtc-template block="service_impl"> # </rtc-template> # Import Service stub modules # <r...
100uhaco
trunk/RTC/python/Proxy/Proxy.py
Python
asf20
4,475
// -*- Java -*- /*! * @file ProxyComp.java * @brief Standalone component * @date $Date$ * * $Id$ */ import RTC.ComponentProfile; import RTC.PortInterfacePolarity; import RTC.PortInterfaceProfileListHolder; import RTC.PortService; import RTC.PortServiceListHolder; import _SDOPackage.NVListHolder; i...
100uhaco
trunk/RTC/java/Proxy/ProxyComp.java
Java
asf20
6,004
// -*- Java -*- /*! * @file Proxy.java * @date $Date$ * * $Id$ */ import jp.go.aist.rtm.RTC.Manager; import jp.go.aist.rtm.RTC.RTObject_impl; import jp.go.aist.rtm.RTC.RtcDeleteFunc; import jp.go.aist.rtm.RTC.RtcNewFunc; import jp.go.aist.rtm.RTC.util.Properties; /* * ! @class Proxy @brief RTC-Li...
100uhaco
trunk/RTC/java/Proxy/.svn/text-base/Proxy.java.svn-base
Java
asf20
1,308
// -*- Java -*- /*! * @file ProxyComp.java * @brief Standalone component * @date $Date$ * * $Id$ */ import RTC.ComponentProfile; import RTC.PortInterfacePolarity; import RTC.PortInterfaceProfileListHolder; import RTC.PortService; import RTC.PortServiceListHolder; import _SDOPackage.NVListHolder; i...
100uhaco
trunk/RTC/java/Proxy/.svn/text-base/ProxyComp.java.svn-base
Java
asf20
6,004
// -*- Java -*- /*! * @file Proxy.java * @date $Date$ * * $Id$ */ import jp.go.aist.rtm.RTC.Manager; import jp.go.aist.rtm.RTC.RTObject_impl; import jp.go.aist.rtm.RTC.RtcDeleteFunc; import jp.go.aist.rtm.RTC.RtcNewFunc; import jp.go.aist.rtm.RTC.util.Properties; /* * ! @class Proxy @brief RTC-Li...
100uhaco
trunk/RTC/java/Proxy/Proxy.java
Java
asf20
1,308
title Proxy set "CLASSPATH=.;%RTM_JAVA_ROOT%\jar\OpenRTM-aist-1.0.0.jar;%RTM_JAVA_ROOT%\jar\commons-cli-1.1.jar" java ProxyComp
100uhaco
trunk/RTC/java/Proxy/classes/Proxy.bat
Batchfile
asf20
131
// -*- Java -*- /*! * @file GAEConnectorComp.java * @brief Standalone component * @date $Date$ * * $Id$ */ import RTC.ComponentProfile; import RTC.PortInterfacePolarity; import RTC.PortInterfaceProfileListHolder; import RTC.PortService; import RTC.PortServiceListHolder; import _SDOPackage.NVListHol...
100uhaco
trunk/RTC/java/GAEConnector/GAEConnectorComp.java
Java
asf20
6,370
// -*- Java -*- /*! * @file GAEConnector.java * @date $Date$ * * $Id$ */ import jp.go.aist.rtm.RTC.Manager; import jp.go.aist.rtm.RTC.RTObject_impl; import jp.go.aist.rtm.RTC.RtcDeleteFunc; import jp.go.aist.rtm.RTC.RtcNewFunc; import jp.go.aist.rtm.RTC.RegisterModuleFunc; import jp.go.aist.rtm.RTC.u...
100uhaco
trunk/RTC/java/GAEConnector/.svn/text-base/GAEConnector.java.svn-base
Java
asf20
1,667
// -*- Java -*- /*! * @file GAEConnectorComp.java * @brief Standalone component * @date $Date$ * * $Id$ */ import RTC.ComponentProfile; import RTC.PortInterfacePolarity; import RTC.PortInterfaceProfileListHolder; import RTC.PortService; import RTC.PortServiceListHolder; import _SDOPackage.NVListHol...
100uhaco
trunk/RTC/java/GAEConnector/.svn/text-base/GAEConnectorComp.java.svn-base
Java
asf20
6,370