Difference between revisions of "Working on a Styles Bug"

From Dreamwidth Notes
Jump to: navigation, search
(Selecting a Layout for your Journal: Bugzilla is dead...)
(Selecting a Layout for your Journal)
Line 6: Line 6:
  
 
<dwuser>afuna</dwuser>'s notes:
 
<dwuser>afuna</dwuser>'s notes:
# [[Dev_Getting_Started#Finding_something_to_work_on claim an issue]]
+
# [[Dev_Getting_Started#Finding_something_to_work_on | claim an issue]]
 
# get the [http://www.dreamwidth.org/customize/advanced/layerbrowse source code from layer]
 
# get the [http://www.dreamwidth.org/customize/advanced/layerbrowse source code from layer]
 
# [http://dw-styles.dreamwidth.org/11389.html copy or set up style] as necessary
 
# [http://dw-styles.dreamwidth.org/11389.html copy or set up style] as necessary

Revision as of 16:01, 7 November 2015

Warning: The following information is obsolete, and may quite possibly be incorrect. Obsolete articles are candidates for deletion. Information posted to official communities should be assumed to be accurate. If you have fresh information, please update this article (and remove this textbox!)

This box was added on March 28, 2024.


Selecting a Layout for your Journal

[info]afuna's notes:

  1. claim an issue
  2. get the source code from layer
  3. copy or set up style as necessary
  4. make changes; compile; check in various browsers, or whatever...

Working with the Code Locally

This guide is written assuming you have some basic knowledge and familiarity with Linux/UNIX, shells, file systems, etc. To work on styles bugs, you will also need familiarity with CSS and the S2 language. Knowledge of Perl is a bonus but not required (unless you want to work on S2.pm or other modules). If you only have Windows to work on, don't despair! It's possible to work with the repositories through the Windows Explorer, too.

Getting the DW Code

Create a main working directory for the Dreamwidth source. Most of the instructions on the wiki are tailored to the source directory being ~/dw/cvs/dw-free but you can use anything you like. I happen to use ~/projects/dw-free .

"Clone", i.e. download and create the dw-free repository:

$ hg clone http://hg.dwscoalition.org/dw-free
$ hg update -C tip

Repeat for the non-free repository, which also contains some of the layouts:

$ hg clone http://hg.dwscoalition.org/dw-nonfree
$ hg update -C tip

To begin working with Mercurial Queues, execute these commands in each of your DW repositories to initialize the queue repository. For example, if your working directory is ~/dw/cvs/, enter:

$ cd ~/dw/cvs/dw-free
$ hg qinit -c

There is more information on working with Mercurial Queues on the Dreamwidth Wiki here.

The S2 layers are located in dw-[non]free/bin/upgrading/s2layers/$layoutname/layout.s2

Generating and Submitting the Patch

In part 3 of the tutorial, I'll go through the process of claiming and patching a bug step by step.