Update the website: Difference between revisions

From GNU MediaGoblin Wiki
Jump to navigation Jump to search
(Switched it over to suggest using PasteScript, which saves some steps)
Line 9: Line 9:
Don't have commit access? Then you should probably make a clone and put it up somewhere.
Don't have commit access? Then you should probably make a clone and put it up somewhere.


clone <nowiki>git://gitorious.org/mediagoblin/mediagoblin-website.git</nowiki>
git clone <nowiki>git://gitorious.org/mediagoblin/mediagoblin-website.git</nowiki>


Next, switch to the "draft" branch, or make a local clone of that if you haven't already.
Next, switch to the "draft" branch, or make a local clone of that if you haven't already.

Revision as of 14:18, 9 April 2012

Okay, updating mediagoblin.org! Well, obviously not everyone has permission to do this, so depending on whether or not you have commit access affects whether or not you'll send a branch for review, pretty much the same as how you do with normal git contributions.

First time

First, do a git checkout:

https://gitorious.org/mediagoblin/mediagoblin-website

Don't have commit access? Then you should probably make a clone and put it up somewhere.

  git clone git://gitorious.org/mediagoblin/mediagoblin-website.git

Next, switch to the "draft" branch, or make a local clone of that if you haven't already.

 git branch draft origin/draft
 git checkout draft
 # merge in any stray commits from master
 git merge origin/master

Okay, Make sure you have virtualenv installed (is it on your path? If not you might need to install it via your package manager.)

Mac OS X Lion 10.7

 curl -O http://python-distribute.org/distribute_setup.py
 sudo python distribute_setup.py
 sudo easy_install virtualenv

Next you need to make a virtualenv.

 virtualenv .

Install pyblosxom

 ./bin/easy_install pyblosxom PasteScript

Activate the virtualenv and see if it starts up:

 ./bin/paster serve site/blog.ini --reload

If all is successful, it should give you a url like http://localhost:5000/

If that works, you should be able to visit that URL in your browser and it'll look like http://mediagoblin.org/

Layout of the repository

  • site/entries/news/ -- new blogposts go here. Usually we use restructured text. Copy an old file and mime it.
  • site/pages/ -- various non-blog pages of the site. Join page, about us, etc.
  • site/static/ -- images and stuff goes in here. Look around and you'll see.
  • site/flavors/ -- site's template "look and feel" described here.

Making and committing changes

Make sure you're in the draft branch:

 git checkout draft
 git pull

Add files, make changes. To test them, activate the virtualenv, recompile, start the server... you'll then be able to visit http://localhost:8000/ in your browser.

 source bin/activate
 ./compile.sh && ./testhttpserver.py 

Commit to the draft branch when things look good. (This might be more complex if you don't have commit access.. if you're a guest contributor, ask for help in the channel if you get stuck.)

 # See what files need to be committed here
 git status
 # Stage changes that you intend to commit
 git add file1.txt file2.txt  # replace with real filepaths here
 # Commit!  You'll be prompted by your text editor
 git commit -m "Describe your changes here"
 # Push live
 git push

Going live

Are you ready to go live? Are you sure? It's probably a good idea to run by Will or Chris in the channel before doing this.

If you're ready, commit and push to the master branch. Changes to the master branch are periodically auto-updated on the server.

 git checkout master
 git pull
 git merge draft
 git push