From Fedora Project Wiki
Line 84: Line 84:
== How to join/help ==
== How to join/help ==
Joining the websites team is not very difficult and doesn't differ too much from the join procedure of the other Sub-Projects.<br />
Joining the websites team is not very difficult and doesn't differ too much from the join procedure of the other Sub-Projects.<br />
Obviously the best starting point is the [https://fedoraproject.org/wiki/Websites/Join | join page], where you should follow the points step by step.
Obviously the best starting point is the [https://fedoraproject.org/wiki/Websites/Join join page], where you should follow the points step by step.
PHP and Python skills are welcome, because our sites are build with Html/CSS and the Genshi framework
PHP and Python skills are welcome, because our sites are build with Html/CSS and the Genshi framework
for internationalization as mentioned above.<br />
for internationalization as mentioned above.<br />
It would be a good idea taking a look at the [http://960.gs/ | 960 grid system], because there are many ''divs'' in our
It would be a good idea taking a look at the [http://960.gs/ 960 grid system], because there are many ''divs'' in our
sources.<br />
sources.<br />
First of all join the [https://admin.fedoraproject.org/mailman/listinfo/websites | websites mailin list] and send a self introduction.  
First of all join the [https://admin.fedoraproject.org/mailman/listinfo/websites websites mailing list] and send a self introduction.  


To get started, you need also:
To get started, you need also:
Line 140: Line 140:
<pre>git format-patch origin/master</pre>
<pre>git format-patch origin/master</pre>


* Now you can send the patches you've created, which will have names such as ''0001-my-change.patch'', to the {{fplist|websites}} list or upload your patch to our [https://fedorahosted.org/fedora-websites/report/1 | track] if you fixed a ticket.
* Now you can send the patches you've created, which will have names such as ''0001-my-change.patch'', to the {{fplist|websites}} list or upload your patch to our [https://fedorahosted.org/fedora-websites/report/1 track] if you fixed a ticket.


=== Join the FAS Group ===
=== Join the FAS Group ===


Log in at [https://admin.fedoraproject.org/accounts/login | https://admin.fedoraproject.org/accounts/login] and join the websites group.
Log in at https://admin.fedoraproject.org/accounts/login and join the websites group.


=== Work on tickets ===
=== Work on tickets ===


Start working on [https://fedorahosted.org/fedora-websites/report/1 | open tickets], take a look also on the [[http://fedoraproject.org/easyfix/#fedora-websites easyfix]] page.
Start working on [https://fedorahosted.org/fedora-websites/report/1 open tickets], take a look also on the [http://fedoraproject.org/easyfix/#fedora-websites easyfix] page.


=== Join IRC channel and Mailing List ===
=== Join IRC channel and Mailing List ===
Line 157: Line 157:
=== Request sponsorship to the 'gitfedora-web' group ===
=== Request sponsorship to the 'gitfedora-web' group ===


After you've done successfully your first changes and sent them as patch for the websites team, you can request sponsorhip to the 'gitfedora-web' group, which will allow you to commit to the [http://git.fedorahosted.org/git/?p=fedora-web.git | fedora-web repository] (where the website source code is at).
After you've done successfully your first changes and sent them as patch for the websites team, you can request sponsorhip to the 'gitfedora-web' group, which will allow you to commit to the [http://git.fedorahosted.org/git/?p=fedora-web.git fedora-web repository] (where the website source code is at).

Revision as of 08:31, 21 September 2012

Warning.png
In progress. Any help appreciated.
This is a start page for a detailed Websites team presentation. You can edit freely.

The Plan

The idea is to detailed any side of the Websites Team. That would be used to fill The wiki page for incommers, but also to construct some slideshow.

Slideshow framework

Once started, we are going to move quickly to the framework chosen. We will code on a personnal git repo but publicly available (like gitorious).

We could use http://paulrouget.com/dzslides/ which is simple fast but efficient. (or at least appears to be).

Who we are

As the name says we are a group, spread over the world, that aims to improve Fedora's image and to create the best possible interface for users and contributors on the Internet.
The key goals of the websites group include:

  • Consolidating all key Fedora websites onto one uniform scheme
  • Maintaining content that doesn't fall under any particular sub-project
  • Generally, making the sites as fun and exciting as the project they represent

To realize our mission the group members have good html, css and php skills, but are also able to use the genshi framework, based on Python.
Moreover the websites team has to coordinate his work with the Fedora Infrastructure Team , Fedora Documentation Project, the Fedora Design Team and the Fedora Localization Team.

What we do

Our goal is to develop and maintain all the websites related to the fedoraproject.org domain. Therefore we don't maintain the wiki and are not involved directly into what is maintained by the Infrastructure Team. On the Infrastructure Start Page for example you can see what is maintained by the Infra Team, but you will notice that the activity range between the mentioned teams is very close and accordingly needs a good coordination.
We keep ourself in touch with the community, like other teams, with the Websites Tickets, where you can also track a bug.

The websites arch (build, dev and trans)

Our build system

Our websites are rebuilt hourly. This is done using the syncStatic script which is puppet managed. In other words, you need to be on the infra team to change it. Put a sample script here. This is where we decide against which branch we build each websites. There is also a specific syncStatic.stg script for the staging websites. Example of stg websites are stg.fedoraproject.org and spins.stg.fedoraproject.org.

For release time, please refere to our specific documentation there.


Coding

insert graph here

Architecture

There is a specific folder for each websites under which you will find the following tree:

   .
   |-- boot.fedoraproject.org
   |   |-- build
   |   |-- ChangeLog
   |   |-- data
   |   |-- httpd
   |   |-- Makefile
   |   |-- po
   |   -- static
   -- TODO

<explain every folder here>


i18n

Genshi markup <explain the syntax here>

l10n

All POs are download hourly. Any error should be reported to our tracking system. <explain all l10n related stuff here>

The Hot (comming) New Websites Arch

The idea is to have a different tree using a recursive make. The syncStatic script will have few changes. Like the following (not sure about the httpd folder)

  .
  |-- boot.fedoraproject.org
  |   |-- build
  |   |-- data
  |   |-- httpd
  |   |-- Makefile
  |   |-- po
  |   -- static
  …
  |-- build
  |-- Makefile
  |-- static
  |-- templates
  -- TODO


This is directly related to ticket #90.

How to join/help

Joining the websites team is not very difficult and doesn't differ too much from the join procedure of the other Sub-Projects.
Obviously the best starting point is the join page, where you should follow the points step by step. PHP and Python skills are welcome, because our sites are build with Html/CSS and the Genshi framework for internationalization as mentioned above.
It would be a good idea taking a look at the 960 grid system, because there are many divs in our sources.
First of all join the websites mailing list and send a self introduction.

To get started, you need also:

Clone the websites repository

  • Ensure you have the Package-x-generic-16.pnggit package and the Apache web server installed:
su -c 'yum shell'
> install git gettext python-genshi python-setuptools babel python-feedparser
> groupinstall 'Web Server'
> run
  • Set up at least your name and email address in your global git configuration:
git config --global user.name "John Smith"
git config --global user.email "john.smith@mailbox.com"
git config --global color.ui auto
  • Make sure you are in a directory to which you have write access, such as your home directory or a subdirectory, and clone the websites repository. This takes several minutes on a fast connection.
cd $HOME
git clone git://git.fedorahosted.org/git/fedora-web.git
  • Change directory to the website you want to change. The repository carries several sites, including fedoraproject.org, spins.fedoraproject.org, and others.
cd fedora-web/fedoraproject.org
  • You can make a fresh, new branch for your changes, or you can do your work against an existing branch of the fedora-web project. To make a fresh branch for your own use only ("mynewbranch" is a name you can choose):
git checkout -b mynewbranch

If you want to work on something that already exists as a branch on websites, like a redesign branch, you can set up your branch to track the changes on that branch. That allows you to build on the existing work without worrying about whether you're overwriting the existing team's work. For example, if you want to help with the "fpo-redesign" branch:

git checkout -b mynewbranch --track origin/fpo-redesign

Make your changes. It's best to make a set of related changes together, but don't make many unrelated changes at once. For instance, it's OK to make several spelling fixes together, but don't combine those with an additional navigation menu option.

Test your changes.

make

After the make completes successfully and the website will now be available in your /out/ directory. Now run a local sandbox test of the website:

make test

Point your web browser at http://localhost:5000 to view the sandbox site. When you are done viewing, stop the temporary web server:

make stoptest

If everything looks OK, stage the files you changed:

git add data/content/file1.html data/content/file2.html

Commit the staged changes:

git commit -m 'Fix spelling errors'

Sending in your changes

  • When you're done, create patch files for your changes:
git format-patch origin/master
  • Now you can send the patches you've created, which will have names such as 0001-my-change.patch, to the websites list or upload your patch to our track if you fixed a ticket.

Join the FAS Group

Log in at https://admin.fedoraproject.org/accounts/login and join the websites group.

Work on tickets

Start working on open tickets, take a look also on the easyfix page.

Join IRC channel and Mailing List

Please ask if you have any doubts, writing to the websites Mailing List or on IRC channel #fedora-websites, located on the freenode server.

Request sponsorship to the 'gitfedora-web' group

After you've done successfully your first changes and sent them as patch for the websites team, you can request sponsorhip to the 'gitfedora-web' group, which will allow you to commit to the fedora-web repository (where the website source code is at).