Contents:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[MASTER] | |
# Specify a configuration file. | |
#rcfile= | |
# Python code to execute, usually for sys.path manipulation such as | |
# pygtk.require(). | |
#init-hook= | |
# Profiled execution. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Hi folks, | |
Following up from our thread on Twitter, here's another attempt at | |
providing you the necessary info: | |
I am the technical lead for the California Revels (a non-profit arts | |
and community theater organization which has been operating in | |
Oakland, CA for 25+ years) and we would love to use GitHub to manage | |
the codebase and issue tracking for our upcoming website redesign. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div id='new_comment' class='fade modal'> | |
<form class='form-stacked' action="{% comment_form_target %}" method="POST">{% csrf_token %} | |
<div class='modal-header'> | |
<a href="#" class="close">x</a> | |
<h3>Discuss Activity</h3> | |
</div> | |
<div class='modal-body'> | |
<p>Have a question? Need more information? Add a new comment to the discussion using the form below:</p> | |
{{ comment_form.as_custom }} | |
<input type='hidden' name='name' value='{{ profile }}'/> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
""" | |
Backports the ``register.assignment_tag`` functionality from Django 1.4 to | |
Django 1.3. | |
This code is almost entirely reproduced from | |
https://code.djangoproject.com/browser/django/trunk/django/template/base.py | |
and is the work of Django's authors: | |
https://code.djangoproject.com/browser/django/trunk/AUTHORS | |
It is licensed under Django's BSD license, available here: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Copyright 2011 Gabriel Hurley <[email protected]> | |
# | |
# Licensed under the OSI-approved Fair License: | |
# | |
# Usage of this work is permitted provided that this | |
# instrument is retained with the work, so that any | |
# entity that uses the work is notified of this instrument. | |
# | |
# DISCLAIMER: THIS WORK IS WITHOUT WARRANTY. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from horizon import api | |
from horizon.dashboards.nova.keypairs import forms as keypair_forms | |
from nebula_dashboard.utils import tables | |
def DeleteKeyPairs(tables.TableAction): | |
name = "delete" | |
def handle(self, data_table, request, object_ids): |
This is an opinionated step-by-step guide for how to not screw up working with Gerrit as a code review tool.
This presumes a setup where you're working on a forked copy of the repository and have created an "upstream" remote repository which points to the original.
OlderNewer