Difference between revisions of "DevelopmentTeamPriorities"
| Line 3: | Line 3: | ||
Tasks can live in more than one category | Tasks can live in more than one category | ||
| − | In Progress | + | == In Progress == |
# {{:CaseSpace}} | # {{:CaseSpace}} | ||
# {{:MakeTheSiteFast}} | # {{:MakeTheSiteFast}} | ||
| Line 10: | Line 10: | ||
# {{:UpgradeMediawiki}} | # {{:UpgradeMediawiki}} | ||
| − | + | == Next Two Weeks (in order) == | |
| + | |||
| + | |||
| + | == Soon (unordered) == | ||
| + | |||
| + | |||
| + | |||
| + | == Everything == | ||
* {{:Implement AdultContentPolicy}} | * {{:Implement AdultContentPolicy}} | ||
| − | |||
| − | |||
* {{:Sysops Can Spam}} | * {{:Sysops Can Spam}} | ||
| − | |||
| − | |||
* {{:History to Changes(8)}} | * {{:History to Changes(8)}} | ||
* {{:Social Media Tags}} | * {{:Social Media Tags}} | ||
* {{:URL Magic for Subdirectories}} | * {{:URL Magic for Subdirectories}} | ||
| − | |||
| − | |||
* {{:Editable DomainPage Skeleton}} | * {{:Editable DomainPage Skeleton}} | ||
* {{:Dev and CC Pair on Recent Changes Patrol}} | * {{:Dev and CC Pair on Recent Changes Patrol}} | ||
| Line 27: | Line 28: | ||
* {{:Rollto/Rollback}} | * {{:Rollto/Rollback}} | ||
* {{:Trust User as Patrolled}} | * {{:Trust User as Patrolled}} | ||
| − | |||
| − | |||
* {{:Search Provides Create Article Link}} | * {{:Search Provides Create Article Link}} | ||
* {{:Suggestive Search}} | * {{:Suggestive Search}} | ||
| − | |||
| − | |||
* {{:Rewrite AboutUsBot}} | * {{:Rewrite AboutUsBot}} | ||
* {{:Caching: Created Page Fails to Display}} | * {{:Caching: Created Page Fails to Display}} | ||
| Line 38: | Line 35: | ||
* {{:Remove MySQL from App Servers}} | * {{:Remove MySQL from App Servers}} | ||
* {{:Automatically Gather and Display Statistics}} | * {{:Automatically Gather and Display Statistics}} | ||
| − | |||
| − | |||
* {{:InstallingAboutUsOnOSX}} | * {{:InstallingAboutUsOnOSX}} | ||
| − | + | * [[Add Article to Category]] ('''1''') ... ([[Needs Mediawiki Upgrade]]) | |
| − | + | * [[Reference Tags]] ('''1''') ... ([[Needs Mediawiki Upgrade]]) | |
| − | + | * [[Maps Extension]] ('''1''') ... ([[Needs Mediawiki Upgrade]]) | |
| − | |||
| − | |||
Revision as of 19:26, 25 May 2007
For reference see CommunityProjects and Portal:ProjectPage
Tasks can live in more than one category
Contents
In Progress
- CaseSpace
- MakeTheSiteFast (2) ... (Jason)
- WhoisRefresh (14,
10-9,8-6,4-2,4) -
HireSystemAdministrator(1,5-1) ... (Brandon) - REDIRECT UpgradePlan
Next Two Weeks (in order)
Soon (unordered)
Everything
-
Implement AdultContentPolicy3 (11-14)(Stephen, Ward) - Sysops Can Spam
- History to Changes(8) (2)
- (?)
Social Media Tags(?) - (7) URL Magic for trees (?)
- Editable DomainPage Skeleton (1)
- Dev and CC Pair on Recent Changes Patrol
- Meta Patrolling
- Rollto/Rollback (2)
- Trust User as Patrolled (2)
- Search Provides Create Article Link (1)
- (?) Suggestive Search (?)
- Rewrite AboutUsBot
- Caching: Created Page Fails to Display (3)
- Off Server Backups (5)
- Remove MySQL from App Servers
- See MeasureGrowth and MeasurePerformance instead.
Xcode tools
- Available on OS X install DVD or from http://developer.apple.com/tools/xcode/
Git
- Download binary from http://code.google.com/p/git-osx-installer/downloads/list?can=3
- Verify that git functions.
MacPorts
Download and install:
MySQL
Download and install version 5.1.
Ruby
Download and install version 1.8.7p249
Build:
mkdir /www ./configure --prefix=/www make make install
(edit .profile like so:)
export PATH=/www/bin:/usr/local/mysql/bin:/opt/local/bin:/opt/local/sbin:$PATH
RubyGems
Download and install version 1.3.5
ruby setup.rb
Misc. Libraries
Run these commands:
sudo port install freeimage sudo port install gd2 gem install mysql -- --with-mysql-config=/usr/local/mysql/bin/mysql_config
AboutUs repos
mkdir -p /www/aboutus ; cd /www/aboutus git clone:AboutUs/compostus.git git clone
:AboutUs/electric_sheep.git cd /www/aboutus/compostus/compost gem install geminstaller geminstaller
Cassandra
mkdir -p /www/compile cd /www/compile curl -O http://mirror.its.uidaho.edu/pub/apache/incubator/cassandra/0.5.0/apache-cassandra-incubating-0.5.0-bin.tar.gz tar xvf apache-cassandra-incubating-0.5.0-bin.tar.gz mv apache-cassandra-incubating-0.5.0 /www/cassandra cp /www/aboutus/compostus/cassandra/storage-conf.xml.devel /www/cassandra/conf/storage-conf.xml
Running:
cd /www/cassandra ./bin/cassandra
Configure the app
- create databases
mysql -u root create database compostus_wiki_test; create database compostus_wiki_dev; grant all on *.* to wiki@localhost identified by 'wiki';
- install sysop user
mysql -u root compostus_wiki_dev


:AboutUs/compostus.git
git clone