Testing
Go to file
Dan McGee da67c4a736 Fix some link title issues
We can't wrap inside the title attribute on links, so fix all the places
where this was happening. The following command helped:

    $ grep -R --color 'title="[^"]*$' templates/

Signed-off-by: Dan McGee <dan@archlinux.org>
2010-05-25 14:25:05 -05:00
devel reporead: use the DB package we already have 2010-05-24 11:29:35 -05:00
main Merge branch 'redesign' 2010-05-24 21:13:46 -05:00
media Styling touchups and temp style removal 2010-05-17 16:57:37 -05:00
mirrors Remove archweb prefix from all imports 2010-02-10 00:29:27 -06:00
news News: make add/edit page form larger 2010-02-17 22:22:21 -06:00
packages Kill td_input template and tag 2010-05-17 15:55:38 -05:00
public Make group membership use Django groups 2010-05-17 10:38:44 -05:00
templates Fix some link title issues 2010-05-25 14:25:05 -05:00
todolists Fix undefined variable issue 2010-05-21 15:48:32 -05:00
__init__.py
.gitignore
AUTHORS Updated maintainer in AUTHORS file 2010-04-18 23:36:33 -05:00
feeds.py feeds: move link from method to attribute 2010-05-04 10:03:00 -05:00
HACKING
LICENSE
local_settings.py.example
manage.py
README
settings.py Redirect to root url after login 2010-05-17 14:49:43 -05:00
sitemaps.py Sitemaps: split and index, add package files 2010-03-10 00:17:51 -06:00
TODO
urls.py Remove Arch-Based Projects 2010-04-18 23:27:27 -05:00

# License
 See LICENSE file.

# Authors
 See AUTHORS file.

# Dependencies
 - python
 - mysql-python or python-pysqlite
 - Django = 1.0

# Installation
For a simple testing installation:

 1. Install dependencies.
    $ pacman -S django python-pysqlite sqlite3
 
 2. Copy local_settings.py.example to local_settings.py and modify.
    Make sure to uncomment the appropriate db section (either sqlite or mysql).

 3. Sync the database to create it.
    $ python manage.py syncdb

 4. Load the fixtures to prepopulate some data.
    $ python manage.py loaddata arches.json repos.json
    
 5. Use the following commands to start a service instance
    $ python manage.py runserver

 6. To optionally populate the database with real data:
    $ wget ftp://ftp.archlinux.org/core/os/i686/core.db.tar.gz
    $ scripts/reporead.py i686 ./core.db.tar.gz

    (alter architecture and repo to get x86_64 and extra packages if needed)