forked from django/django
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added basic structure for django repository
git-svn-id: http://code.djangoproject.com/svn/django/trunk@5 bcc190cf-cafb-0310-a4f2-bffc1f526a37
- Loading branch information
Showing
4 changed files
with
78 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
This is a stub; please complete me |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
Copyright (c) 2005, World Online | ||
All rights reserved. | ||
|
||
Redistribution and use in source and binary forms, with or without modification, | ||
are permitted provided that the following conditions are met: | ||
|
||
1. Redistributions of source code must retain the above copyright notice, | ||
this list of conditions and the following disclaimer. | ||
|
||
2. Redistributions in binary form must reproduce the above copyright | ||
notice, this list of conditions and the following disclaimer in the | ||
documentation and/or other materials provided with the distribution. | ||
|
||
3. Neither the name of Django nor the names of its contributors may be used | ||
to endorse or promote products derived from this software without | ||
specific prior written permission. | ||
|
||
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND | ||
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED | ||
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE | ||
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR | ||
ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES | ||
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; | ||
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON | ||
ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | ||
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS | ||
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
This is a stub; please complete me |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
========== | ||
Django FAQ | ||
========== | ||
|
||
The admin site is ugly! How can I change it? | ||
--------------------------------------------- | ||
|
||
We think it's very purty, but if you don't agree you can modify the admin site's | ||
presentation by editing the CSS stylesheet and/or associated image files. The | ||
site is built using semantic HTML, so any changes you'd like to make should be | ||
possible by editing the CSS stylesheet. We've got a `guide to the CSS used | ||
in the admin`_ to get you started. | ||
|
||
.. _`guide to the CSS used in the admin`: http://www.djangoproject.com/FIXME/ | ||
|
||
How do you pronounce "Django"? | ||
------------------------------ | ||
|
||
According to Wikipedia_, "Django is pronounced **zhane**-go (with a long 'a')." | ||
|
||
.. _Wikipedia: http://en.wikipedia.org/wiki/Django_Reinhardt | ||
|
||
Is Django stable? | ||
----------------- | ||
|
||
We've been using Django for almost two years. Sites built on Django have | ||
weathered traffic spikes of over one million hits an hour, and at least | ||
one slashdotting. Yes; it's quite stable. | ||
|
||
Who's behind this? | ||
------------------ | ||
|
||
`Adrian Holovaty`_ | ||
XXX | ||
|
||
`Simon Willison`_ | ||
XXX | ||
|
||
`Jacob Kaplan-Moss`_ | ||
XXX | ||
|
||
`Wilson Miner`_. | ||
XXX | ||
|
||
.. _`Adrian Holovaty`: http://www.holovaty.com/ | ||
.. _`Simon Willison`: http://simon.incutio.com/ | ||
.. _`Jacob Kaplan-Moss`: http://www.jacobian.org/ | ||
.. _`Wilson Miner`: http://www.wilsonminer.com/live/ | ||
|