Skip to content
This repository was archived by the owner on Jan 5, 2024. It is now read-only.

Commit f98915e

Browse files
author
caleb
committed
brought todo closer to current. added a note to postgres doc about possible need
for dummy username and password (I needed it anyway...) git-svn-id: http://svn.pdxruby.org/repos/www/trunk@189 f0fbaf97-c700-0410-a5eb-8ea856f8537e
1 parent 4c09fd5 commit f98915e

File tree

2 files changed

+11
-12
lines changed

2 files changed

+11
-12
lines changed

doc/POSTGRESQL

+5
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,9 @@ let's put it all in a script.
1919
# (you may have to adjust the $PATH to taste)
2020

2121
test -e config/database.yml || cp config/database.yml.quickstart config/database.yml
22+
23+
# you may need to add a dummy user and password to database.yml
24+
2225
which postmaster || PATH=$PATH:/usr/lib/postgresql/bin
2326
export PGDATA=local_db
2427
export PGHOST=/tmp/pdxruby_socket
@@ -53,6 +56,8 @@ Then your database.yml would be roughly:
5356
login: &login
5457
adapter: postgresql
5558
host: /tmp/pdxruby_socket
59+
user: yourusername
60+
password: itdoesntmatter
5661

5762
development:
5863
database: pdxruby_dev

doc/TODO

+6-12
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ Notes:
99

1010
_Spamming_
1111

12-
- All members are notified of new events [lennon]
12+
- All members are notified of new events
1313

1414
- Members can ask to have their password emailed
1515
to them if they provide their email address
@@ -20,11 +20,6 @@ _Other_
2020
adding minutes for the April Monthly. The whole location part of the
2121
event form really needs some TLC. If nothing else, it is confusing.
2222

23-
- Recent Events (on the index) doesn't seem to work, or maybe the
24-
time-frame of a recent event should be expanded.
25-
26-
- Close security holes (delete/update acces w/o authentication) [lennon]
27-
2823
- Somewhere, it would be nice to have the SVN revision (maybe in the footer for each page).
2924
This way, we would be able to easily see what revision the dev.pdxruby.org is running.
3025
- the deploy script may make this unnecessary
@@ -37,13 +32,12 @@ _Other_
3732

3833
- User should be able to delete their own account...
3934

40-
4135
_Cosmetic_
4236

4337
- Make forms prettier (i.e. make input sizes more appropriate)
4438
- on Edit/New Event, when existing location is selected, alternative location
4539
inputs can be greyed-out or dissapeared (via some Javascript magic).
46-
- ajaxify visibility of password fields on members/edit page [ewilhelm]
40+
- ajaxify visibility of password fields on members/edit page
4741

4842
- Make timestamps prettier (this and following 2 items suggested by bleything on dev-list)
4943

@@ -64,10 +58,10 @@ _Testing_
6458
- write functional tests for index_controller.rb
6559
- write functional tests for locations_controller.rb
6660
- write functional tests for participants_controller.rb
67-
- write unit tests for article.rb [edavis]
68-
- write unit tests for event.rb [edavis]
69-
- write unit tests for feedback.rb [edavis]
70-
- write unit tests for participant.rb [edavis]
61+
- write unit tests for article.rb
62+
- write unit tests for event.rb
63+
- write unit tests for feedback.rb
64+
- write unit tests for participant.rb
7165

7266
_Feeds_
7367

0 commit comments

Comments
 (0)