Difference between revisions of "DevelopmentTeamPriorities"

(Common Answers Project Template was causing entire common answers project to transclude....)
(heading levels and tone of unsigned question)
Line 6: Line 6:
 
[[DevelopmentProjectPageSkeleton]]
 
[[DevelopmentProjectPageSkeleton]]
  
== Current Plan Aug 16-31 ==
+
=== Current Plan Aug 16-31 ===
What the hell is this and how exactly was this list made?
+
What is this and how was this list made?
 
# {{:CoalesceDevelopmentPlan for (Sept 1-15)}}
 
# {{:CoalesceDevelopmentPlan for (Sept 1-15)}}
 
# {{:Create Account Goes to Personal Page}}
 
# {{:Create Account Goes to Personal Page}}
Line 18: Line 18:
 
# {{:OptOuttoNoBot}}
 
# {{:OptOuttoNoBot}}
  
== Next Plan Sept 1-15 ==
+
=== Next Plan Sept 1-15 ===
  
  
== [[NeedsLove]] ==
+
=== [[NeedsLove]] ===
 
# Two javascript syntax errors on edit (Firefox) in EditorsMap.js and color_select.js
 
# Two javascript syntax errors on edit (Firefox) in EditorsMap.js and color_select.js
 
# {{:Fix lingering casespace issues}}
 
# {{:Fix lingering casespace issues}}
Line 58: Line 58:
 
* Support linksharing partnerships
 
* Support linksharing partnerships
  
== Done ==
+
=== Done ===
 
# {{:HireLahoreDevelopers}}
 
# {{:HireLahoreDevelopers}}
 
# {{:MediaWiki:InitialDomainPage}}
 
# {{:MediaWiki:InitialDomainPage}}
Line 72: Line 72:
 
# {{:RationalizeArticleCapitalization}} - this is CaseSpace
 
# {{:RationalizeArticleCapitalization}} - this is CaseSpace
  
== Parking Lot ==
+
=== Parking Lot ===
 
* {{:Add Article to Category}}
 
* {{:Add Article to Category}}
 
* {{:Add User Script}}
 
* {{:Add User Script}}
Line 131: Line 131:
 
* {{:WorkingDPL}}
 
* {{:WorkingDPL}}
  
[[Category:DevelopmentTeam]]
+
<noinclude>[[Category:DevelopmentTeam]]</noinclude>

Revision as of 21:38, 17 August 2007

back to DistributedPlanningGame

Development Projects

DevelopmentTeam


DevelopmentProjectPageSkeleton

Current Plan Aug 16-31

What is this and how was this list made?

  1. (3)CoalesceDevelopmentPlan for (Sept 1-15)
  2. (1) Create Account Goes to Personal Page (Jason)
  3. UserPortraits
  4. (1) FixRegistrarBadge
  5. Rewrite AboutUsBot
  6. (6) Fine Grained Log Analysis (?)
  7. (7) WelcomingTool (?)
  8. (1) PresidentialScraper (?)
  9. (3) OptOuttoNoBot (?)

Next Plan Sept 1-15

NeedsLove

  1. Two javascript syntax errors on edit (Firefox) in EditorsMap.js and color_select.js
  2. Fix lingering casespace issues (3) (Stephen)
  3. (6) DevelopersTraining (Arif) (10-10)
  4. (10) WhoisParsing (Arif Iqbal) (7-10)
  5. (?) Articulate AboutUs Strategy (?) Project
  6. (?) Engage anonymous editors (?)
  7. ArticulateTopsoilArchitecture
  8. TopsoilTasks Create three topsoil tasks that once accomplished move us closer to Topsoil AND immediately deliver some tangible value
  9. (2) BotImprovesExistingPages (?)
  10. CommonAnswers
  11. (?) Weekly Search Results (?)
  12. Create a user page and invite a friend
  • Edit collisions by person
  • Interview on site Exit
  • Category edit box like on armchair gm
  • Automatic breadcrumbs
  • Fckeditor in wiki mode
  • Work on the widget (needs lots of definition)
  • Review WikiHow's patrolling methodology and cherry pick the best features
  • GreenThumb browser plugin (aka user toolbar)
  • URL Magic for trees
  • Skinterface for trees
  • Rating of web pages (up for debate)
  • Threaded discussions on pages (up for debate)
  • Chat
  • Treat subdomains like normal domain pages
  • Quote-back writeup
  • AboutFace Facebook app ... very similar to widget
    • Transclude a wiki page on your facebook profile
    • List the top pages
    • List specific recent changes
    • ... others???
  • Support linksharing partnerships

Done

  1. HireLahoreDevelopers (7) (Arif)
  2. MediaWiki:InitialDomainPage
  3. CoalesceNextDevelopmentPlan (3) (Arif,Athar, Brandon, Ethan, Jason, Stephen, Ward)
  4. Implement AdultContentPolicy 3 (11-14)(Stephen, Ward)
  5. Site Design Adjustments (3) (Vinh, Stephen)
  6. (1) Require email to register (?)
  7. AutoProtect Email Addresses (1)
  8. Change Graphic to Email (1)
  9. Batch Patrol V2 (5)
  10. HireSystemAdministrator (1, 5-1) ... (Brandon)
  11. REDIRECT UpgradePlan
  12. RationalizeArticleCapitalization (4, 2-1) ... (Stephen) - this is CaseSpace

Parking Lot

Xcode tools

Git

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 (1) Page Leveling (MarkDilley, Julia) OLDOLDPage Leveling

Documentation

Template:Growing



Retrieved from "http://aboutus.com/index.php?title=DevelopmentTeamPriorities&oldid=8982181"