Skip to content

Latest commit

 

History

History
69 lines (51 loc) · 2.81 KB

contributing.md

File metadata and controls

69 lines (51 loc) · 2.81 KB

Contributing to Cherokee Webserver

We love to see your interest in contributing to Cherokee Webserver!

This guide covers all you need to know to make this a fluid experience.

Table of contents

1 Issues list
1.1 Writing a new issue
1.1.1 Finding a suitable title
1.2 Issue labels
2.0 Indentation

Issues list

Writing new issues

So you found a bug, have a feature request, would like to see a functionality being enhanced or just have a simple question? Well -- that is just marvelous. Here is how you write a good ticket to make the process as easy as possible.

Finding a suitable title

Give your issue a caption that is both, descriptive and precise. If your title makes it possible to grasp the meaning of your request, you are helping the developers to easily label the issue and pick those out who are important.

Here are some good examples:

  • “Worker using 100% cpu with big files.”
  • “Information Source ignoring Spawning Timeout.”
  • “Content-Encoding header not implemented for static files already compressed.”

And here are some not so good:

  • “504 Gateway error”
    This is too generic, how about: “Random 504 gateway errors in reverse proxy mode.”?
  • “error message running cherokee-admin”
    An itsy-bitsy bit better, but can still be improved: “cherokee-admin -u throws: could not create socket.

But don't get too technical over the fact that we prefer precise titles. Remember, you already know the defect behind that issue, and even the problematic line of code, the developer might just not and needs to read the description to understand what exactly is the problem. Such information are appropriate for the descripton, not for the title.

A bad example:

  • “fdpoll-epoll.c:113: epoll_ctl(6, EPOLL_CTL_ADD, 3): 'File exists'”

At the same time the opener provided a perfect line title just in the description.

  • “Cherokee isn’t aware of EPOLLs and fails when it’s already present.”

Comprehending issue labels

Indentation

We ident with tabs to mark a different scope. For all other identation we use plain spaces as example:

static ret_t
dbslayer_add_headers (cherokee_handler_dbslayer_t *hdl,
< s p a c e s >       cherokee_buffer_t <space>   *buffer)
{
<tab>   switch (HANDLER_DBSLAYER_PROPS(hdl)->lang) {
<tab>   case dwriter_json:
<tab><tab>      cherokee_buffer_add_str (buffer,
<tab><tab>      <spaces from here>       "Content-Type: "   <spaces> \
<tab><tab>      <spaces from here>       "application/json" <spaces> \
<tab><tab>      <spaces from here>       CRLF);
<tab><tab>      break;
<tab>   default:
<tab><tab>      SHOULDNT_HAPPEN;
<tab><tab>      return ret_error;
<tab>   }
<empty>
<tab>   return ret_ok;
}