Mozilla.com
mozilla.com was launched on November 29, 2005 with the Firefox 1.5 release with the goal of simplifying the experience of obtaining Mozilla products.
The mission of mozilla.com is to:
- provide a quick and easy path for obtaining our software
- educate visitors about the advantages of our software
- connect users with other Mozilla web properties they may be looking for
The audiences for mozilla.com:
- End users of Mozilla products (both consumers and power users)
- Current Firefox and Thunderbird users looking for upgrade information
- Visitors interested in information about Mozilla Corporation
Projects
Roadmap
For Q2 the following projects are going on:
- Execute Phase 1. of the .com/.org (including Europe) Firefox Product merge
(goal: brand awareness, simplify # & version(s) of static product pages)
- Complete content inventory & audit of pages on .com (including Europe) that will be redirected to .org
- Redirect .com pages specified in the content inventory to .org
- Complete IA review & user/design research & finalize revised IA for .com/.org (including Europe) merge (eliminating/retiring redundant or irrelevant content)
- Begin (possibly complete) design update to .com skin that will become the new skin for all .org pages noted in the content inventory for this visual update
- Analyze current workflows: http://etherpad.mozilla.com:9000/mozilla-com-dev-cycle
- Continue discussing infrastructure & overall strategy that will inform Phase 2. of the .com/.org merge
(*Chrissie running content audit/inventory)
- Produce Firefox Product pages that are Awesome on Mobile Devices
(goal: produce an excellent mobile experience, reduce need to maintain separate mobile-only site)
- Create design/coding standards for making sites mobile-friendly
- Use metrics to determine pages to focus on
- Begin implementing design/coding standards for mozilla.com
- Deploy Automation to Replace Manual Maintenance Automated tests
- Deploy Raymond's tests and get them running on Hudson
- Write tons of more tests
- Transition from SVN to Git & Use GitHub
- Work with localizers to warn them of switch
- Work with IT on switching live site to git
- Close out SVN entirely, only use Github
These mostly came out of Q2 onsite meetings.
See the following page for more general Q2 goals:
Workflow
Work is developed, tested, and reviewed on trunk, pushed to staging to be queued for rollout, and pushed to a production branch to go live.
- dev works on a bug and makes a commit to trunk with bug number, leaves a comment on bug with trunk revision
- work is reviewed and when fixed, bug is marked "resolved fixed"
- add keyword "qawanted" to bug to move to testing
- bug is tested and re-opened if not fixed, marked "qa-verified-trunk" if fixed
- dev merges all changes into "stage" branch, leaves comment on bug with stage revision
- if change is a one-off, add keywork "push-needed" for immediate rollout
- bug is rolled out individually (push-needed) or with milestone (staging is merged onto production)
- and "push-needed" keywords are removed
- QA checks on production, marks "verified fixed"; if there's a problem, re-opens bug, dev might revert changes on production if problem is critical
Here are a few example SVN commands one might use:
commit to trunk (r100) svn commit -m 'bug 60000 - spread happiness around' merge to staging (r50) svn merge --ignore-ancestry -c100,104 trunk tags/stage cd tags/stage && svn commit -m 'r100,104 from trunk for bug 60000' merge to prod (r40) svn merge --ignore-ancestry -c50 tags/stage tags/prod cd tags/prod && svn commit -m 'r50 from staging for bug 60000' revert on prod cd tags/prod && svn merge -c-40 .
The important point in this process is that the developer can commit what he/she wants to trunk, but he/she is responsible for merging those changes into stage to be rolled out.
QA usually tests on trunk (https://www-trunk.stage.mozilla.com/).
Mozilla.com SVN Source
The source behind mozilla.com (PHP, HTML, images, CSS, javascript, etc.) is hosted and managed in Subversion. For details merging from trunk to stage, see the SVN Guidelines.
- Trunk - the main development version of mozilla.com. Most work happens here.
- SVN location: http://viewvc.svn.mozilla.org/vc/projects/mozilla.com/trunk/
- Preview URL: https://www-trunk.stage.mozilla.com/
- Stage - When changes are ready in trunk, they are merged to stage for review before going to production.
- SVN location: http://viewvc.svn.mozilla.org/vc/projects/mozilla.com/tags/stage/
- Preview URL: https://www.authstage.mozilla.com/
- Production - The live website. Beware!
- SVN location: http://viewvc.svn.mozilla.org/vc/projects/mozilla.com/tags/production/
- Preview URL: https://www.mozilla.com/
Bugs
See all bugs related to mozilla.com