Diff for "VersionThreeDotO/Foundations"

Not logged in - Log In / Register

Differences between revisions 20 and 21
Revision 20 as of 2009-01-29 01:32:42
Size: 23673
Editor: flacoste
Comment:
Revision 21 as of 2009-02-01 12:55:03
Size: 23773
Editor: flacoste
Comment:
Deletions are marked like this. Additions are marked like this.
Line 19: Line 19:
|| 5 || openid || [[VersionThreeDotO/Foundations#account-creation|Account Creation]] || ||
Line 35: Line 34:
|| 5 || openid || [[VersionThreeDotO/Foundations#account-creation|Account Creation]] || ||
Line 42: Line 42:
|| 8 || infrastructure || [[VersionThreeDotO/Foundations#site-wide-notifications|Site-wide notifications]] || ||
Line 46: Line 45:
|| || ajax || XXX Simple status editing || ||
|| || infrastructure || XXX Sanitize the database dump || ||
|| 8 || infrastructure || [[VersionThreeDotO/Foundations#site-wide-notifications|Site-wide notifications]] || ||
|| 13 || infrastructure || [[VersionThreeDotO/Foundations#lazr-oops|lazr.oops]] || ||
|| || infrastructure || XXX ZCML-less views (Martian integration) || ||
|| || infrastructure || XXX Kill pagetitles.py || ||
Line 50: Line 55:
|| || infrastructure || XXX ZCML-less views (Martian integration) || ||
|| || infrastructure || XXX Kill pagetitles.py || ||
Line 55: Line 58:
|| || infrastructure || XXX Sanitize the database dump || ||
Line 63: Line 65:
|| || ajax || XXX Simple status editing || ||
Line 65: Line 66:
|| 3 || api || [[VersionThreeDotO/Foundations#api-delete-resource|DELETE resource]] || ||
|| 1 || api || [[VersionThreeDotO/Foundations#launchpadlib-delete|delete() method in launchpadlib]] || ||
Line 69: Line 72:
|| 3 || api || [[VersionThreeDotO/Foundations#api-delete-resource|DELETE resource]] || ||
|| 1 || api || [[VersionThreeDotO/Foundations#launchpadlib-delete|delete() method in launchpadlib]] || ||
|| 13 || infrastructure || [[VersionThreeDotO/Foundations#lazr-oops|lazr.oops]] || ||
Line 79: Line 79:
|| || infrastructure || XXX Factor out batch notification code || ||
Line 86: Line 85:
<<Anchor(graphing-plotting-framework)>>
== Simple graphing/plotting framework ==

== AJAX Track ==

<<Anchor(yuitest3)>>
=== Yuitest3 ===

  **Story Points:** 1

  As a LAZR-JS developer,\\
  I want the Lazr-JS test suite to use the latest release of YUITest;\\
  so that I can use Mock objects in my unit tests.


<<Anchor(inline-text-editing)>>
=== Inline text editing ===

  **Story Points:** 3

  As a Launchpad developer,
  I want a way to associate an inline text widget with the rendered element
  of a content field in view,
  so that I can easily add inline editing to text fields.

  **Notes:**

    {{{
    view/bug_title_inlinet_widget
    bug_title_inline_widget = InlineTextWidget(self.context, 'title')
}}}


<<Anchor(automatic-javascript-tests)>>
=== Automatic JavaScript test running ===

  **Story Points:**

  As a Launchpad developer,\\
  I want my Javascript tests automatically run by PQM on merge;\\
  so that I can prevent regressions in Javascript code.

  **Notes:**
    * Need to record in the log which view was used in each request case.


== API Track ==

<<Anchor(api-notification-of-server-changes-on-update)>>
=== API: Notification of Server Changes on Update ====

  **Story Points:** 3

  As a Launchpad web service client,\\
  I want that when I do a PATCH or PUT request, the server notifies me when
  the data I specified was modified by the server;\\
  so that I don't have to make a separate GET request to update my local copy
  of the object.

  **Notes**:
   * Send updated version on failed conditional get.
   * Always send the representation back.


<<Anchor(api-html-representation)>>
=== API: HTML Representation ====

  **Story Points:**

  As an AJAX client,\\
  I want to be able to specify in my request that I want an HTML rendition
  of the object I'm retrieving;\\
  so that I can update the page without having to make a separate request to a
  special fragment view.

  **Notes:**
    * Use a view lookup to find the rendition.
    * Should be available on update results also.
    * Available on collection and operation.


<<Anchor(api-factory-optimization)>>
=== API: Factory Optimization ====

  **Story Points:**

  As webservice client,\\
  I want the server to send me the created object representation when I use a
  factory operation;\\
  so that I don't have to make another request to retrieve the created object.


<<Anchor(api-delete-resource)>>
=== DELETE resource ===

  **Story Points:** 3

  As a developer,\\
  I can annotate one of an interface's methods to be the method invoked when
  the client makes a DELETE request to the appropriate kind of
  resource;\\
  so that the way to delete resources is consistent.

  **Notes:**
    * The DELETE request has the effect of irrevocably removing the
    underlying object from view through the interface. Attempts to access
    this object will subsequently result in a 404 error.

<<Anchor(launchpadlib-delete)>>
=== delete() method in launchpadlib ===

  **Story Points:** 1

  As a launchpadlib user,\\
  I can delete a resource by calling the delete() method on the
  appropriate object.

  **Notes:**
    * Resources supporting DELETE will be shown in the WADL file as
    having a <method> tag with a name of "DELETE".



<<Anchor(expose-scoped-collections-factory)>>
=== Expose factory methods for scoped collections ===
Line 91: Line 211:
  As a mailing list user,\\
  I want to see the number of mailing list posts over time in a graph;\\
  so that I can have an idea of the number of emails I might get when
  subscribing to the list.

  **Notes:**
    * Server-side generation or client-side? (use cases for both)
    * Hard work in generating and cleaning up the data.
    * Cron script parse the archive.
    * Though not a perfect use-case for sparklines the concept is the same
    in that we need graph creation support.
  As a developer,\\
  I can annotate a method of an interface to be the method invoked
  when the client makes a POST request to a scoped collection;\\
  so that the way to use a factory is consistent across resources.

  **Notes:**
    * Needs to represent scoped collection as resources in WADL.


<<Anchor(expose-top-level-collections-factory)>>
=== Expose factories as POST to collection ===

  **Story Points:** 5

  As a developer, \\
  I can annotate one of a FooSet interface's methods to
  be the method invoked when the client makes a POST request;\\
  so that the way to use a factory is consistent across resoureces.

  **Notes:**
    * `PersonSet` POST must include a description of whether you're creating a
    person or team; or, we must expose seperate collections for people and
    teams, and you POST to the appropriate one.
    * Updating existing Set to annotate default factory.


<<Anchor(collection-filter)>>
=== Make it possible for the default GET on a collection to take optional arguments ===

  **Story Points:** 5

  As a developer,\\
  I want operation parameters to be supported in the default GET
  method for a collection;\\
  so that users can use the same HTTP operation to retrieve all of the
  collection or a filtered subset.

  **Notes:**
    * add methods to eg. IPersonSet that work with this system
    * add a method to launchpadlib
    * update the generated adapter find() signature and implementation


<<Anchor(api-versioning)>>
=== API Versioning ===

  **Story Points:** 20

  As a developer,\\
  I want to be able to annotate certain aspects of the API as being removed
  from a particular version onward;\\
  so that I can make backward incompatible change.

  **Notes:**

  {{{
  @export_factory_method_as('new_team', version=3)
  def new_team_all(...):
  }}}

    * Only necessary when we need to break backwards compatibility
    * what can be versioned: resource type, operations, fields.
    * list of ordered version number.


<<Anchor(multi-hit-api)>>
=== Multi-Hit API ===

  **Story Points:**

  As a webservice client,\\
  I want to be able to invoke a particular named operation or setting an
  attribute to a certain value on a set of objects;\\
  so that mass-change operation can be done efficiently.

  **Notes:**


== OpenID Track ==

<<Anchor(sso-authentication-during-upgrade)>>
=== SSO Authentication available during upgrade ===

  **Story Points:** 3

  As a Launchpad SSO user,\\
  I want to be able to log in when Launchpad is going through maintenance;\\
  so that my other services aren't affected by the monthly Launchpad down-time.


<<Anchor(account-creation)>>
=== Account Creation===

  **Story Points:** 5

  As a Landscape User,\\
  when I registered an account on the SSO service, I don't want a Launchpad
  profile page created for me,\\
  so that my anonimity is preserved.

  **Notes:**

   * Update the creation process to not create Account.
   * Modify the Launchpad login process to create a LP profile.
   * Make sure that Launchpad copes with account-only user who are
   browsing Launchpad (consider them anonymous).


<<Anchor(read-only-launchpad)>>
=== Read-only Launchpad ====

  **Story Points:** 3

  As a Launchpad user, \\
  I want to be able to browse launchpad during an upgrade;\\
  so that I can continue to read information.

  **Notes:**
   * Detect unavailability and use Retry and DBPolicy to handle fail-over.
   * Error messages on write and master not-available.
   * No need to persist the failover situation since it is likely to only
    delay writes that are going to fail.
   * Librarian should also be available.


<<Anchor(ubuntuone-openid)>>
=== Uses UbuntuOne OpenID ====

  **Story Points:**

  As a Canonical sysadmin,\\
  I want Launchpad to use openid to authenticate its users through
  UbuntuOne;\\
  so that there is a single authentication system in Canonical.


<<Anchor(launchpad-openid)>>
=== Launchpad OpenID ====

  **Story Points:**

  As a Launchpad user,\\
  I want to be able to register OpenID accounts I own in Launchpad
  and uses it to log in Lauchpad for non-privileged operation;\\
  so that I can uses Launchpad without having to create an account
  on UbuntuOne.


<<Anchor(sso-gpg-export)>>
=== Export GPG keys through OpenId ===

  **Story Points:** 1

  As a relaying party,\\
  I want to be able to retrieve GPG keys associated with the user
  during openid authentication; \\
  so that I can pre-populate their account information.

  **Notes:**
    * Define a sreg extension.
    * Not much point in going to openid.ax for this.


== Infrastructure Track ==

<<Anchor(lazr.config)>>
=== lazr.config ===

  **Story Points:** 3
  **Delivered:** 2.1.12

  As a python developer,\\
  I want to download lazr.config from the Cheeseshop;\\
  so that I can use it for process configuration in my project.

  **Notes:**
    * Why not brand it as canonical? Find a top-level package name.
    * Missing some documentation.
    * Convert setup tools.
    * Reorganize project directory structure.
    * License? For all of lazr?

<<Anchor(5-minutes-pqm-merge)>>
=== 5 minutes PQM merge Theme ===

  **Story Points:** 8

  As a Launchpad developer,\\
  I want a continuous integration system that will notify me when a
  commit I made breaks the test suite;\\
  so that I can merge to PQM without running tests.

  **Notes:**
    * Need to deploy only known good branch.
    * Uses buildbot.
    * Deploy on devpad running slave on demand in ec2.

<<Anchor(buildbot-ec2slave)>>
=== Buildbot EC2 Slave ===

  **Story Points:** 5

  As a LOSA,\\
  I want to deploy buildbot using on-demand slave running on EC2;
  so that we can host the 5-minutes-PQM infrastructure withing the
  data center.

  **Notes:**
    * Deploy on devpad running slave on demand in ec2.


<<Anchor(merge-ec2-latent-slave-upstream)>>
=== Merge EC2 latent slave upstream ===

  **Story Points:**

  As a Launchpad developer,\\
  I want our ec2 latent slave code merged upstream;\\
  so that it can be maintained by the community.


<<Anchor(separate-db-branch)>>
=== Separate DB branch ===

  **Story Points:** 2

  As the Launchpad release manager,\\
  I want features requiring DB changes to be landed on a separate branch;\\
  so that we can land DB-related changes earlier in the cycle and also keep edge updated during the whole cycle.

  **Notes:**
    * Pre-supposes the buildbot integration system.
    * Maintain the staging/rollout branch automatically (merging trunk in the DB branch).
Line 105: Line 447:
== Use zc.buildout for deployment == === Use zc.buildout for deployment ===
Line 123: Line 465:
== Initial Tree layout improvements == === Initial Tree layout improvements ===
Line 128: Line 470:
  I want to be able to find the related to a particular   I want to be able to find the files related to a particular
Line 136: Line 478:
<<Anchor(continuous-integration-of-dependencies)>>
=== Continuous Integration of Dependencies ===

  **Story Points:** 3

  As the Launchpad release manager,\\
  I want to have automatic regular test run of Launchpad against updated version of our dependencies;\\
  so that we can anticipate problems with newer upstream versions.

  **Notes:**
    * Pre-supposes the buildbot integration system.
    * Will be used for bzr, maybe twisted.


<<Anchor(two-way-buildbot-communication)>>
=== Two-way buildbot communication ===

  **Story Points:**

  As a LOSA, \\
  I want the buildbot slave to accept connection from the master
  instead of contacting the master; \\
  so that the network rules are safer to configure.

Line 137: Line 504:
== lazr.oops == === lazr.oops ===
Line 156: Line 523:
<<Anchor(lazr.config)>>
== lazr.config ==

  **Story Points:** 3

  As a python developer,\\
  I want to download lazr.config from the Cheeseshop;\\
  so that I can use it for process configuration in my project.

  **Notes:**
    * Why not brand it as canonical? Find a top-level package name.
    * Missing some documentation.
    * Convert setup tools.
    * Reorganize project directory structure.
    * License? For all of lazr?



<<Anchor(api-versioning)>>
== API Versioning ==

  **Story Points:** 20

  As a developer,\\
  I want to be able to annotate certain aspects of the API as being removed
  from a particular version onward;\\
  so that I can make backward incompatible change.

  **Notes:**

  {{{
  @export_factory_method_as('new_team', version=3)
  def new_team_all(...):
  }}}

    * Only necessary when we need to break backwards compatibility
    * what can be versioned: resource type, operations, fields.
    * list of ordered version number.
<<Anchor(site-wide-notifications)>>
=== Site-wide notifications ===

  **Story Points:** 8

  As a Launchpad administrator,\\
  I want to be able to post notifications to users that they will see on
  every page and can acknowledge;\\
  so that I can announce downtime and other general service-related
  announcement.

  **Notes:**
    * Simple on/off setting.
    * Acknowledgment in database.


<<Anchor(graphing-plotting-framework)>>
=== Simple graphing/plotting framework ===

  **Story Points:** 8

  As a mailing list user,\\
  I want to see the number of mailing list posts over time in a graph;\\
  so that I can have an idea of the number of emails I might get when
  subscribing to the list.

  **Notes:**
    * Server-side generation or client-side? (use cases for both)
    * Hard work in generating and cleaning up the data.
    * Cron script parse the archive.
    * Though not a perfect use-case for sparklines the concept is the same
    in that we need graph creation support.
Line 197: Line 558:
== Wiki markup engine == === Wiki markup engine ===
Line 215: Line 576:
<<Anchor(site-wide-notifications)>>
== Site-wide notifications ==

  **Story Points:** 8

  As a Launchpad administrator,\\
  I want to be able to post notifications to users that they will see on
  every page and can acknowledge;\\
  so that I can announce downtime and other general service-related
  announcement.

  **Notes:**
    * Simple on/off setting.
    * Acknowledgment in database.


<<Anchor(expose-scoped-collections-factory)>>
== Expose factory methods for scoped collections ==

  **Story Points:** 8

  As a developer,\\
  I can annotate a method of an interface to be the method invoked
  when the client makes a POST request to a scoped collection;\\
  so that the way to use a factory is consistent across resources.

  **Notes:**
    * Needs to represent scoped collection as resources in WADL.


<<Anchor(expose-top-level-collections-factory)>>
== Expose factories as POST to collection ==

  **Story Points:** 5

  As a developer, \\
  I can annotate one of a FooSet interface's methods to
  be the method invoked when the client makes a POST request;\\
  so that the way to use a factory is consistent across resoureces.

  **Notes:**
    * `PersonSet` POST must include a description of whether you're creating a
    person or team; or, we must expose seperate collections for people and
    teams, and you POST to the appropriate one.
    * Updating existing Set to annotate default factory.

Line 263: Line 577:
== Nominating spam by users == === Nominating spam by users ===
Line 281: Line 595:
<<Anchor(collection-filter)>>
== Make it possible for the default GET on a collection to take optional arguments ==

  **Story Points:** 5

  As a developer,\\
  I want operation parameters to be supported in the default GET
  method for a collection;\\
  so that users can use the same HTTP operation to retrieve all of the
  collection or a filtered subset.

  **Notes:**
    * add methods to eg. IPersonSet that work with this system
    * add a method to launchpadlib
    * update the generated adapter find() signature and implementation


<<Anchor(api-delete-resource)>>
== DELETE resource ==

  **Story Points:** 3

  As a developer,\\
  I can annotate one of an interface's methods to be the method invoked when
  the client makes a DELETE request to the appropriate kind of
  resource;\\
  so that the way to delete resources is consistent.

  **Notes:**
    * The DELETE request has the effect of irrevocably removing the
    underlying object from view through the interface. Attempts to access
    this object will subsequently result in a 404 error.

<<Anchor(sso-gpg-export)>>
== Export GPG keys through OpenId ==

  **Story Points:** 1

  As a relaying party,\\
  I want to be able to retrieve GPG keys associated with the user
  during openid authentication; \\
  so that I can pre-populate their account information.

  **Notes:**
    * Define a sreg extension.
    * Not much point in going to openid.ax for this.


<<Anchor(launchpadlib-delete)>>
== delete() method in launchpadlib ==

  **Story Points:** 1

  As a launchpadlib user,\\
  I can delete a resource by calling the delete() method on the
  appropriate object.

  **Notes:**
    * Resources supporting DELETE will be shown in the WADL file as
    having a <method> tag with a name of "DELETE".
Line 344: Line 597:
== Spam control (via qualification mechanisms) == === Spam control (via qualification mechanisms) ===
Line 358: Line 611:
== LP Connection Limiting == === LP Connection Limiting ===
Line 375: Line 628:
== GPG-activated accounts == === GPG-activated accounts ===
Line 388: Line 641:

<<Anchor(inline-text-editing)>>
=== Inline text editing ===

  **Story Points:** 3

  As a Launchpad developer,
  I want a way to associate an inline text widget with the rendered element
  of a content field in view,
  so that I can easily add inline editing to text fields.

  **Notes:**

    {{{
    view/bug_title_inlinet_widget
    bug_title_inline_widget = InlineTextWidget(self.context, 'title')
}}}


<<Anchor(account-creation)>>
=== Account Creation===

  **Story Points:** 5

  As a Landscape User,\\
  when I registered an account on the SSO service, I don't want a Launchpad
  profile page created for me,\\
  so that my anonimity is preserved.

  **Notes:**

   * Update the creation process to not create Account.
   * Modify the Launchpad login process to create a LP profile.
   * Make sure that Launchpad copes with account-only user who are
   browsing Launchpad (consider them anonymous).


<<Anchor(sso-authentication-during-upgrade)>>
=== SSO Authentication available during upgrade ===

  **Story Points:** 3

  As a Launchpad SSO user,\\
  I want to be able to log in when Launchpad is going through maintenance;\\
  so that my other services aren't affected by the monthly Launchpad down-time.


<<Anchor(multi-hit-api)>>
=== Multi-Hit API ===

  **Story Points:**

  As a webservice client,\\
  I want to be able to invoke a particular named operation or setting an
  attribute to a certain value on a set of objects;\\
  so that mass-change operation can be done efficiently.

  **Notes:**
Line 459: Line 654:


<<Anchor(automatic-javascript-tests)>>
=== Automatic JavaScript test running ===

  **Story Points:**

  As a Launchpad developer,\\
  I want my Javascript tests automatically run by PQM on merge;\\
  so that I can prevent regressions in Javascript code.

  **Notes:**
    * Need to record in the log which view was used in each request case.


<<Anchor(5-minutes-pqm-merge)>>
=== 5 minutes PQM merge Theme ===

  **Story Points:** 8

  As a Launchpad developer,\\
  I want a continuous integration system that will notify me when a
  commit I made breaks the test suite;\\
  so that I can merge to PQM without running tests.

  **Notes:**
    * Need to deploy only known good branch.
    * Uses buildbot.
    * Deploy on devpad running slave on demand in ec2.

<<Anchor(buildbot-ec2slave)>>
=== Buildbot EC2 Slave ===

  **Story Points:** 5

  As a LOSA,\\
  I want to deploy buildbot using on-demand slave running on EC2;
  so that we can host the 5-minutes-PQM infrastructure withing the
  data center.

  **Notes:**
    * Deploy on devpad running slave on demand in ec2.

<<Anchor(separate-db-branch)>>
=== Separate DB branch ===

  **Story Points:** 2

  As the Launchpad release manager,\\
  I want features requiring DB changes to be landed on a separate branch;\\
  so that we can land DB-related changes earlier in the cycle and also keep edge updated during the whole cycle.

  **Notes:**
    * Pre-supposes the buildbot integration system.
    * Maintain the staging/rollout branch automatically (merging trunk in the DB branch).


<<Anchor(continuous-integration-of-dependencies)>>
=== Continuous Integration of Dependencies ===

  **Story Points:** 3

  As the Launchpad release manager,\\
  I want to have automatic regular test run of Launchpad against updated version of our dependencies;\\
  so that we can anticipate problems with newer upstream versions.

  **Notes:**
    * Pre-supposes the buildbot integration system.
    * Will be used for bzr, maybe twisted.


<<Anchor(yuitest3)>>
=== Yuitest3 ===

  **Story Points:** 1

  As a LAZR-JS developer,\\
  I want the Lazr-JS test suite to use the latest release of YUITest;\\
  so that I can use Mock objects in my unit tests.

<<Anchor(read-only-launchpad)>>
=== Read-only Launchpad ====

  **Story Points:** 3

  As a Launchpad user, \\
  I want to be able to browse launchpad during an upgrade;\\
  so that I can continue to read information.

  **Notes:**
   * Detect unavailability and use Retry and DBPolicy to handle fail-over.
   * Error messages on write and master not-available.
   * No need to persist the failover situation since it is likely to only
    delay writes that are going to fail.
   * Librarian should also be available.

<<Anchor(two-way-buildbot-communication)>>
=== Two-way buildbot communication ===

  **Story Points:**

  As a LOSA, \\
  I want the buildbot slave to accept connection from the master
  instead of contacting the master; \\
  so that the network rules are safer to configure.


<<Anchor(merge-ec2-latent-slave-upstream)>>
=== Merge EC2 latent slave upstream ===

  **Story Points:**

  As a Launchpad developer,\\
  I want our ec2 latent slave code merged upstream;\\
  so that it can be maintained by the community.


<<Anchor(api-notification-of-server-changes-on-update)>>
=== API: Notification of Server Changes on Update ====

  **Story Points:** 3

  As a Launchpad web service client,\\
  I want that when I do a PATCH or PUT request, the server notifies me when
  the data I specified was modified by the server;\\
  so that I don't have to make a separate GET request to update my local copy
  of the object.

  **Notes**:
   * Send updated version on failed conditional get.
   * Always send the representation back.

<<Anchor(api-html-representation)>>
=== API: HTML Representation ====

  **Story Points:**

  As an AJAX client,\\
  I want to be able to specify in my request that I want an HTML rendition
  of the object I'm retrieving;\\
  so that I can update the page without having to make a separate request to a
  special fragment view.

  **Notes:**
    * Use a view lookup to find the rendition.
    * Should be available on update results also.
    * Available on collection and operation.


<<Anchor(api-factory-optimization)>>
=== API: Factory Optimization ====

  **Story Points:**

  As webservice client,\\
  I want the server to send me the created object representation when I use a
  factory operation;\\
  so that I don't have to make another request to retrieve the created object.

<<Anchor(ubuntuone-openid)>>
=== Uses UbuntuOne OpenID ====

  **Story Points:**

  As a Canonical sysadmin,\\
  I want Launchpad to use openid to authenticate its users through
  UbuntuOne;\\
  so that there is a single authentication system in Canonical.

<<Anchor(launchpad-openid)>>
=== Launchpad OpenID ====

  **Story Points:**

  As a Launchpad user,\\
  I want to be able to register OpenID accounts I own in Launchpad
  and uses it to log in Lauchpad for non-privileged operation;\\
  so that I can uses Launchpad without having to create an account
  on UbuntuOne.

Priorities for the Foundations team

SP Track Feature Delivered
3 api Make API Cacheable 2.1.9
3 api Make API Cacheable - client side 2.1.9
1 ajax YUI Integration 2.1.10
5 ajax JavaScript Testing 2.1.10
5 ajax API JS Access 2.1.10
8 ajax Initial API JavaScript Library 2.1.10
8 infrastructure Zope 3.4 Upgrade 2.1.10
2 openid Login-freshness OpenID extension 2.1.11
2 api AJAX PATCH 2.1.11
1 openid Configure access to private teams in +rpconfig 2.1.11
3 ajax Prepopulating AJAX cache 2.2.1
3 api Entry ETag 2.1.12
8 intrastructure 5 minutes PQM merge 2.1.12
3 infrastructure EC2 Test Runner 2.1.12
1 ajax Lazr-JS Project Bootstrap 2.2.1
5 ajax Lazr-JS Reference Widget 2.1.12
2 ajax Lazr-JS Green Flash 2.1.12
3 infrastructure lazr.config 2.1.12
3 api Export mutators as writable attributes 2.1.12
3 openid SSO Authentication available during upgrade in-progress
3 infrastructure Buildbot EC2 Slave in-progress
5 ajax Lazr Error Widget no use case
3 ajax Inline text editing in-progress
? api API customized auto-generated adapter no use cases
? api Multi-hit API's no use cases
2 infrastructure Separate DB branch in progress
3 infrastructure Continuous Integration of Dependencies
1 ajax Yuitest3 in progress
3 api API: Notification of Server Changes on Update in progress
5 openid Account Creation
? api API: HTML Representation
? api API: Factory Optimization
3 openid Read-only Launchpad
infrastructure Two-way buildbot communication
infrastructure Merge EC2 latent slave upstream in-progress
8 infrastructure Use zc.buildout for deployment
ajax Automatic JavaScript test running
3 infrastructure Initial tree layout
openid Uses UbuntuOne OpenID
openid Launchpad OpenID
ajax XXX Simple status editing
infrastructure XXX Sanitize the database dump
8 infrastructure Site-wide notifications
13 infrastructure lazr.oops
infrastructure XXX ZCML-less views (Martian integration)
infrastructure XXX Kill pagetitles.py
5 infrastructure Nominating spam by users
infrastructure XXX Update pagetests helpers to use lxml2
1 openid Export GPG keys through OpenId
infrastructure XXX Automatic decorator pattern (for performance)
infrastructure XXX Batch navigation to specific pages
infrastructure XXX Base tabular view
infrastructure XXX Librarian generation of OOPSes
infrastructure XXX Easily set up logging for scripts into a logfile
infrastructure XXX OOPS zip formats
infrastructure XXX Include log information in OOPS reports
infrastructure XXX Include currently running queries in OOPS reports
infrastructure XXX Include machine process status in OOPS reports
infrastructure XXX Design for content class split into facets
infrastructure XXX Upgrade to Python 2.5
infrastructure Easy A-B Testing
3 api DELETE resource
1 api delete() method in launchpadlib
20 api API Versioning
8 api Expose factory methods for scoped collections
5 api Expose factories as POST to collection
5 api Make it possible for the default GET on a collection to take optional arguments
infrastructure XXX lazr.testing.pages
infrastructure Spam control (via qualification mechanisms)
8 infrastructure Simple graphing/plotting framework
infrastructure LP Connection Limiting
infrastructure GPG-activated accounts
20 infrastructure Wiki markup engine
infrastructure Providing an API to update karma events with the object they operate on (Bug:ID, Branch:ID, etc)

User Stories

This section contains the story cards for the above.

AJAX Track

Yuitest3

Story Points: 1

As a LAZR-JS developer,
I want the Lazr-JS test suite to use the latest release of YUITest;
so that I can use Mock objects in my unit tests.

Inline text editing

Story Points: 3

As a Launchpad developer, I want a way to associate an inline text widget with the rendered element of a content field in view, so that I can easily add inline editing to text fields.

Notes:

{{{ view/bug_title_inlinet_widget bug_title_inline_widget = InlineTextWidget(self.context, 'title') }}}

Automatic JavaScript test running

Story Points:

As a Launchpad developer,
I want my Javascript tests automatically run by PQM on merge;
so that I can prevent regressions in Javascript code.

Notes:

  • Need to record in the log which view was used in each request case.

API Track

API: Notification of Server Changes on Update

Story Points: 3

As a Launchpad web service client,
I want that when I do a PATCH or PUT request, the server notifies me when the data I specified was modified by the server;
so that I don't have to make a separate GET request to update my local copy of the object.

Notes:

  • Send updated version on failed conditional get.
  • Always send the representation back.

API: HTML Representation

Story Points:

As an AJAX client,
I want to be able to specify in my request that I want an HTML rendition of the object I'm retrieving;
so that I can update the page without having to make a separate request to a special fragment view.

Notes:

  • Use a view lookup to find the rendition.
  • Should be available on update results also.
  • Available on collection and operation.

API: Factory Optimization

Story Points:

As webservice client,
I want the server to send me the created object representation when I use a factory operation;
so that I don't have to make another request to retrieve the created object.

DELETE resource

Story Points: 3

As a developer,
I can annotate one of an interface's methods to be the method invoked when the client makes a DELETE request to the appropriate kind of resource;
so that the way to delete resources is consistent.

Notes:

  • The DELETE request has the effect of irrevocably removing the underlying object from view through the interface. Attempts to access this object will subsequently result in a 404 error.

delete() method in launchpadlib

Story Points: 1

As a launchpadlib user,
I can delete a resource by calling the delete() method on the appropriate object.

Notes:

  • Resources supporting DELETE will be shown in the WADL file as having a <method> tag with a name of "DELETE".

Expose factory methods for scoped collections

Story Points: 8

As a developer,
I can annotate a method of an interface to be the method invoked when the client makes a POST request to a scoped collection;
so that the way to use a factory is consistent across resources.

Notes:

  • Needs to represent scoped collection as resources in WADL.

Expose factories as POST to collection

Story Points: 5

As a developer,
I can annotate one of a FooSet interface's methods to be the method invoked when the client makes a POST request;
so that the way to use a factory is consistent across resoureces.

Notes:

  • `PersonSet` POST must include a description of whether you're creating a person or team; or, we must expose seperate collections for people and teams, and you POST to the appropriate one.
  • Updating existing Set to annotate default factory.

Make it possible for the default GET on a collection to take optional arguments

Story Points: 5

As a developer,
I want operation parameters to be supported in the default GET method for a collection;
so that users can use the same HTTP operation to retrieve all of the collection or a filtered subset.

Notes:

  • add methods to eg. IPersonSet that work with this system
  • add a method to launchpadlib
  • update the generated adapter find() signature and implementation

API Versioning

Story Points: 20

As a developer,
I want to be able to annotate certain aspects of the API as being removed from a particular version onward;
so that I can make backward incompatible change.

Notes:

{{{ @export_factory_method_as('new_team', version=3) def new_team_all(...): }}}

  • Only necessary when we need to break backwards compatibility
  • what can be versioned: resource type, operations, fields.
  • list of ordered version number.

Multi-Hit API

Story Points:

As a webservice client,
I want to be able to invoke a particular named operation or setting an attribute to a certain value on a set of objects;
so that mass-change operation can be done efficiently.

Notes:

OpenID Track

SSO Authentication available during upgrade

Story Points: 3

As a Launchpad SSO user,
I want to be able to log in when Launchpad is going through maintenance;
so that my other services aren't affected by the monthly Launchpad down-time.

Account Creation

Story Points: 5

As a Landscape User,
when I registered an account on the SSO service, I don't want a Launchpad profile page created for me,
so that my anonimity is preserved.

Notes:

  • Update the creation process to not create Account.
  • Modify the Launchpad login process to create a LP profile.
  • Make sure that Launchpad copes with account-only user who are browsing Launchpad (consider them anonymous).

Read-only Launchpad

Story Points: 3

As a Launchpad user,
I want to be able to browse launchpad during an upgrade;
so that I can continue to read information.

Notes:

  • Detect unavailability and use Retry and DBPolicy to handle fail-over.
  • Error messages on write and master not-available.
  • No need to persist the failover situation since it is likely to only delay writes that are going to fail.
  • Librarian should also be available.

Uses UbuntuOne OpenID

Story Points:

As a Canonical sysadmin,
I want Launchpad to use openid to authenticate its users through UbuntuOne;
so that there is a single authentication system in Canonical.

Launchpad OpenID

Story Points:

As a Launchpad user,
I want to be able to register OpenID accounts I own in Launchpad and uses it to log in Lauchpad for non-privileged operation;
so that I can uses Launchpad without having to create an account on UbuntuOne.

Export GPG keys through OpenId

Story Points: 1

As a relaying party,
I want to be able to retrieve GPG keys associated with the user during openid authentication;
so that I can pre-populate their account information.

Notes:

  • Define a sreg extension.
  • Not much point in going to openid.ax for this.

Infrastructure Track

lazr.config

Story Points: 3 Delivered: 2.1.12

As a python developer,
I want to download lazr.config from the Cheeseshop;
so that I can use it for process configuration in my project.

Notes:

  • Why not brand it as canonical? Find a top-level package name.
  • Missing some documentation.
  • Convert setup tools.
  • Reorganize project directory structure.
  • License? For all of lazr?

5 minutes PQM merge Theme

Story Points: 8

As a Launchpad developer,
I want a continuous integration system that will notify me when a commit I made breaks the test suite;
so that I can merge to PQM without running tests.

Notes:

  • Need to deploy only known good branch.
  • Uses buildbot.
  • Deploy on devpad running slave on demand in ec2.

Buildbot EC2 Slave

Story Points: 5

As a LOSA,
I want to deploy buildbot using on-demand slave running on EC2; so that we can host the 5-minutes-PQM infrastructure withing the data center.

Notes:

  • Deploy on devpad running slave on demand in ec2.

Merge EC2 latent slave upstream

Story Points:

As a Launchpad developer,
I want our ec2 latent slave code merged upstream;
so that it can be maintained by the community.

Separate DB branch

Story Points: 2

As the Launchpad release manager,
I want features requiring DB changes to be landed on a separate branch;
so that we can land DB-related changes earlier in the cycle and also keep edge updated during the whole cycle.

Notes:

  • Pre-supposes the buildbot integration system.
  • Maintain the staging/rollout branch automatically (merging trunk in the DB branch).

Use zc.buildout for deployment

Story Points: 8

As a Launchpad developer,
I want to be able to add a CheeseShop python library by adding a simple dependency to our configuration;
so that I can use and deploy easily non-packaged python library without involving IS.

Notes:

  • Unpackaged eggs.
  • Maintain a binary cache in version control (so that eggs are not fetched over the package.)
  • Only packages not changed from upstream and already in the cheeseshop

Initial Tree layout improvements

Story Points: 3

As a Launchpad developer,
I want to be able to find the files related to a particular application in a common directory;
so that I can easily see the boundaries of each application.

Notes:

  • Moving existing directory by applications.

Continuous Integration of Dependencies

Story Points: 3

As the Launchpad release manager,
I want to have automatic regular test run of Launchpad against updated version of our dependencies;
so that we can anticipate problems with newer upstream versions.

Notes:

  • Pre-supposes the buildbot integration system.
  • Will be used for bzr, maybe twisted.

Two-way buildbot communication

Story Points:

As a LOSA,
I want the buildbot slave to accept connection from the master instead of contacting the master;
so that the network rules are safer to configure.

lazr.oops

Story Points: 13

As python web developer,
I want to download lazr.oops from the Cheeseshop;
so that I can have detailed diagnostic reports of problems on my web application.

Notes:

  • Documentation.
  • Extract the OOPS system from Launchpad
  • Refactor oops tools and system for extensible format (integrate changes from Landscape and ubunet)
  • lp:ubunet-pqm-team/ubunet/wsgi-oops
  • Make pluggable extension for database logging.
  • Setup-tools and all release-related stuff.

Site-wide notifications

Story Points: 8

As a Launchpad administrator,
I want to be able to post notifications to users that they will see on every page and can acknowledge;
so that I can announce downtime and other general service-related announcement.

Notes:

  • Simple on/off setting.
  • Acknowledgment in database.

Simple graphing/plotting framework

Story Points: 8

As a mailing list user,
I want to see the number of mailing list posts over time in a graph;
so that I can have an idea of the number of emails I might get when subscribing to the list.

Notes:

  • Server-side generation or client-side? (use cases for both)
  • Hard work in generating and cleaning up the data.
  • Cron script parse the archive.
  • Though not a perfect use-case for sparklines the concept is the same in that we need graph creation support.

Wiki markup engine

Story Points: 20

As a Launchpad user,
I want to be able to enter wiki-like syntax to have rich-text formatting in project description (as well as bug, questions, and comments);
So that I can use typography to convey emphasis and format code-samples properly

Notes:

  • How users will discover?
  • Requires content-type.
  • Preview button?
  • Full-text indexing?
  • How will the markup come out in the web service or +text?

Nominating spam by users

Story Points: 5

As a Launchpad user,
I want to be able to report any user-editable content as SPAM;
so that Launchpad admins can remove it.

Notes:

  • Button sends an email with who clicked the button and the link to the content.
  • Standard button on IUserGeneratedContent pages, which fire an event. As a start, the event subscriber will just send an email to a specific team / email
  • Mark all spammable content objects and integrate the button in the templates.

Spam control (via qualification mechanisms)

Story Points: ??

As Launchpad,
I ask every new non-qualified users to enter a captcha on every form;
so that robots cannot post SPAM automatically.

Notes:

  • Might hinder LP use.
  • How is somebody qualified?

LP Connection Limiting

Story Points: ??

As a XXX,
I want XXX;
so that XXX.

Notes:

  • We should adapt some code that gustavo wrote for landscape to limit the connections that are accepted from the network into the webapp based on the size of the queue of connections waiting for app threads. That will keep launchpad responsive even in situations that look like the one described by tom in bug 224623.

GPG-activated accounts

Story Points: ??

As a XXX,
I want XXX;
so that XXX.

Notes:

  • Allowing for people with GPG keys to be considered valid even without them actually having passwords.

Easy A-B Testing

Story Points:

As a launchpad developer,
I want to be able to configure two different views to be served from the same URL, each user receiving a random one;
so that I can easily do A-B testing.

Notes:

  • Need to record in the log which view was used in each request case.

VersionThreeDotO/Foundations (last edited 2009-04-29 14:00:24 by leonardr)