Difference between revisions of "DevelopmentTeamPriorities"
(→Parking Lot) |
(→Parking Lot) |
||
| Line 125: | Line 125: | ||
* {{:Off Server Backups}} | * {{:Off Server Backups}} | ||
* {{:Page Leveling}} | * {{:Page Leveling}} | ||
| − | |||
* {{:Publish Feature Button}} | * {{:Publish Feature Button}} | ||
* {{:Quote-Back Technology}} | * {{:Quote-Back Technology}} | ||
Revision as of 21:42, 28 August 2007
type=create width=30 break=no preload=MediaWiki:DevelopmentTaskPageSkeleton buttonlabel=Create Development Task bgcolor=#80A8A1 editintro=MediaWiki:CreateTaskPageInstructions |
DevelopmentTeam Priorities August 16-31
- (3)
CoalesceDevelopmentPlan for (Sept 1-15) - (3)
Bug Squashing Aug 16-31 - (1)
Create Account Goes to Personal Page(Jason) - (10)
WhoisParsing(Arif Iqbal) (7-10) - (6) DevelopersTraining (Arif) (10-10)
- UserPortraits
- (1) FixRegistrarBadge
- (2) Rewrite PageCreationBot (Ghufran, Umar Sheikh)
- (6) Fine Grained Log Analysis (?)
- (7) WelcomingTool (?)
- (1) PresidentialScraper (?)
- (3) OptOuttoNoBot (?)
DevelopmentTeam Priorities September 1-15
- (3) WorkingDPL (?)
NeedsLove
These tasks need to be moved to the next plan (Sept 1-15) after adding a more descriptive what and why section on their pages.
- WhoisRefresh (14,
10-9,8-6,4-2,4)- (10)
WhoisParsing(Arif Iqbal) (7-10) - (2) Rewrite PageCreationBot (Ghufran, Umar Sheikh)
- MediaWiki:InitialDomainPage
- (4) Rewrite PageScrapeBot (Laiq)
- (4) WhoisRefreshRunRefresh (Jason and Ali)
- (10)
- Fix lingering casespace issues (3) (Stephen)
- (?) Edit Collisions (?)
- (?) User Interviews (?)
- (?) Suggestive Search (?)
- (?) Review WikiHow Patrolling Improvements (?)
- (?) Articulate AboutUs Strategy (?) Project
- (?) Engage anonymous editors (?)
- ArticulateTopsoilArchitecture
- TopsoilTasks Create three topsoil tasks that once accomplished move us closer to Topsoil AND immediately deliver some tangible value
- (2) BotImprovesExistingPages (?)
- CommonAnswers
- (?) Weekly Search Results (?)
- Create a user page and invite a friend
- (?) FCKeditor Research (?)
- (7) URL Magic for trees (?)
- (?) Skinterface for trees (?)
- (?) Free Content Pic Finder (?)
- AboutUs Widget - Work on the widget (needs lots of definition)
- GreenThumb browser plugin (aka user toolbar)
- 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
- Category edit box like on armchair gm
- Automatic breadcrumbs - actually, I'm not sure how we'd do this ...
- ConsensusPolling Affordances (needs DoneDone)
- DistributedPlanningGame Affordances
- CreatePage and TranscludeIntoCurrent Extension (2) (people?)
- Threaded Discussions (for O/Net Migrations)
- GettingThingsDone Affordances
- ShotgunningSearch ... find things including where a chunk comes from
- Org charts (Roles/Ladders/...) affordances
- Lahore trip logistics
- Get AdSense back up
- Submit button on category pages isn't really useful? we need to re-think it
Done
-
HireLahoreDevelopers(7) (Arif) - MediaWiki:InitialDomainPage
- CoalesceNextDevelopmentPlan (3) (Arif,Athar, Brandon, Ethan, Jason, Stephen, Ward)
-
Implement AdultContentPolicy3 (11-14)(Stephen, Ward) -
Site Design Adjustments(3) (Vinh, Stephen) - (1) Require email to register (?)
-
AutoProtect Email Addresses (1) -
Change Graphic to Email (1) -
Batch Patrol V2 (5) -
HireSystemAdministrator(1,5-1) ... (Brandon) - REDIRECT UpgradePlan
-
RationalizeArticleCapitalization(4,2-1) ... (Stephen) - this is CaseSpace
Parking Lot
- Add Article to Category (1) ... Needs Mediawiki Upgrade
- (?) Add User Script (?)
- Alexa and DomainTools Links
- (?) Audio Streaming (?)
- See MeasureGrowth and MeasurePerformance instead.
- (?) Better OpenID Error Message (?)
- (?) OnMessageSearchResults (?)
- (3) PurgingAndAdultCategoryMarking (?) (5-2)
- Common Answers By Portal
- Common Answers
- Consistent Registrar Ads
- Dev and CC Pair on Recent Changes Patrol
- DownForMaintenanceWiki (1)
- Easily Editable Vector Graphics (5) (Ali)
- Editable DomainPage Skeleton (1)
- Expandable Hierarchies
- External Link Styles
- IRC On Frontpage (2)
- IRC Recorder
- InfrastructurePlan
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
Documentation
- Publish Feature Button
- Quote-Back Technology (20)
- RSS Autodiscovery
- RSS For Page Changes
- Random Text Tag (1)
- Reference Tags (1) ... Needs Mediawiki Upgrade
- Remove MySQL from App Servers
- Rewrite AboutUsBot
- Rollto/Rollback (2)
- Search Box on Domain Pages
- Search Includes TLD
- Search Provides Create Article Link (1)
- Semantic Content
- SingleAuthentication
- (?)
Social Media Tags(?) - Statistics Turn Back On
- (?) Suggestive Search (?)
- Sysops Can HTML
- Sysops Can Spam
- Track Badges
- Trust User as Patrolled (2)
- (7) URL Magic for trees (?)
- Upload Multiple Files (2)
- WhiteListForBuiltinBlacklist
- (4) WhoisRefreshRunRefresh (Jason and Ali)


:AboutUs/compostus.git
git clone 


