horizon/doc/source/contributing.rst

21 KiB
Raw Blame History

Contributing Guide

First and foremost, thank you for wanting to contribute! It's the only way open source works!

Before you dive into writing patches, here are some of the basics:

Making Contributions

Getting Started

We'll start by assuming you've got a working checkout of the repository (if not then please see the quickstart).

Second, you'll need to take care of a couple administrative tasks:

  1. Create an account on Launchpad.
  2. Sign the OpenStack Contributor License Agreement and follow the associated instructions to verify your signature.
  3. Join the Horizon Developers team on Launchpad.
  4. Follow the instructions for setting up git-review in your development environment.

Whew! Got all that? Okay! You're good to go.

Ways To Contribute

The easiest way to get started with Horizon's code is to pick a bug on Launchpad that interests you, and start working on that. Alternatively, if there's an OpenStack API feature you would like to see implemented in Horizon feel free to try building it.

If those are too big, there are lots of great ways to get involved without plunging in head-first:

Choosing Issues To Work On

In general, if you want to write code, there are three cases for issues you might want to work on:

  1. Confirmed bugs
  2. Approved blueprints (features)
  3. New bugs you've discovered

If you have an idea for a new feature that isn't in a blueprint yet, it's a good idea to write the blueprint first so you don't end up writing a bunch of code that may not go in the direction the community wants.

For bugs, open the bug first, but if you can reproduce the bug reliably and identify its cause then it's usually safe to start working on it. However, getting independent confirmation (and verifying that it's not a duplicate) is always a good idea if you can be patient.

After You Write Your Patch

Once you've made your changes, there are a few things to do:

  • Make sure the unit tests pass: ./run_tests.sh
  • Make sure PEP8 is clean: ./run_tests.sh --pep8
  • Make sure your code is ready for translation: ./run_tests.sh --pseudo de See the Translatability section below for details.
  • Make sure your code is up-to-date with the latest master: git pull --rebase
  • Finally, run git review to upload your changes to Gerrit for review.

The Horizon core developers will be notified of the new review and will examine it in a timely fashion, either offering feedback or approving it to be merged. If the review is approved, it is sent to Jenkins to verify the unit tests pass and it can be merged cleanly. Once Jenkins approves it, the change will be merged to the master repository and it's time to celebrate!

Etiquette

The community's guidelines for etiquette are fairly simple:

  • Treat everyone respectfully and professionally.
  • If a bug is "in progress" in the bug tracker, don't start working on it without contacting the author. Try on IRC, or via the launchpad email contact link. If you don't get a response after a reasonable time, then go ahead. Checking first avoids duplicate work and makes sure nobody's toes get stepped on.
  • If a blueprint is assigned, even if it hasn't been started, be sure you contact the assignee before taking it on. These larger issues often have a history of discussion or specific implementation details that the assignee may be aware of that you are not.
  • Please don't re-open tickets closed by a core developer. If you disagree with the decision on the ticket, the appropriate solution is to take it up on IRC or the mailing list.
  • Give credit where credit is due; if someone helps you substantially with a piece of code, it's polite (though not required) to thank them in your commit message.

Translatability

Horizon gets translated into multiple languages. The pseudo translation tool can be used to verify that code is ready to be translated. The pseudo tool replaces a language's translation with a complete, fake translation. Then you can verify that your code properly displays fake translations to validate that your code is ready for translation.

Running the pseudo translation tool

  1. Make sure your English po file is up to date: ./run_tests.sh --makemessages
  2. Run the pseudo tool to create pseudo translations. For example, to replace the German translation with a pseudo translation: ./run_tests.sh --pseudo de
  3. Compile the catalog: ./run_tests.sh --compilemessages
  4. Run your development server.
  5. Log in and change to the language you pseudo translated.

It should look weird. More specifically, the translatable segments are going to start and end with a bracket and they are going to have some added characters. For example, "Log In" will become "[~Log In~您好яшçあ]" This is useful because you can inspect for the following, and consider if your code is working like it should:

  • If you see a string in English it's not translatable. Should it be?
  • If you see brackets next to each other that might be concatenation. Concatenation can make quality translations difficult or impossible. See https://wiki.openstack.org/wiki/I18n/TranslatableStrings#Use_string_formating_variables.2C_never_perform_string_concatenation for additional information.
  • If there is unexpected wrapping/truncation there might not be enough space for translations.
  • If you see a string in the proper translated language, it comes from an external source. (That's not bad, just sometimes useful to know)
  • If you get new crashes, there is probably a bug.

Don't forget to cleanup any pseudo translated po files. Those don't get merged!

Code Style

As a project, Horizon adheres to code quality standards.

Python

We follow PEP8 for all our Python code, and use pep8.py (available via the shortcut ./run_tests.sh --pep8) to validate that our code meets proper Python style guidelines.

Django

Additionally, we follow Django's style guide for templates, views, and other miscellany.

JavaScript

The following standards are divided into required and recommended sections. Our main goal in establishing these best practices is to have code that is reliable, readable, and maintainable.

Required

Reliable

  • The code has to work on the stable and latest versions of Firefox, Chrome, Safari, and Opera web browsers, and on Microsoft Internet Explorer 9 and later.
  • If you turned compression off during development via COMPRESS_ENABLED = False in local_settings.py, re-enable compression and test your code before submitting.
  • Use === as opposed to == for equality checks. The == will do a type cast before comparing, which can lead to unwanted results.
  • Keep document reflows to a minimum. DOM manipulation is expensive, and can become a performance issue. If you are accessing the DOM, make sure that you are doing it in the most optimized way. One example is to build up a document fragment and then append the fragment to the DOM in one pass instead of doing multiple smaller DOM updates.

  • Use “strict”, enclosing each JavaScript file inside a self-executing function. The self-executing function keeps the strict scoped to the file, so its variables and methods are not exposed to other JavaScript files in the product.

    Example:

    (function(){

    'use strict'; // code...

    })();

  • Use forEach | each when looping whenever possible. AngularJS, and jQuery both provide for each loops that provide both iteration and scope.

    AngularJS:

    angular.forEach(objectToIterateOver, function(value, key) {

    // loop logic

    });

    jQuery:

    $.each(objectToIterateOver, function( key, value ) {

    // loop logic

    });

  • Do not put variables or functions in the global namespace. There are several reasons why globals are bad, one being that all JavaScript included in an application runs in the same scope. The issue with that is if another script has the same method or variable names they overwrite each other.

  • Always put var in front of your variables. Not putting var in front of a variable puts that variable into the global space, see above.

  • Do not use eval( ). The eval (expression) evaluates the expression passed to it. This can open up your code to security vulnerabilities and other issues.

  • Do not use 'with object {code}'. The with statement is used to access properties of an object. The issue with with is that its execution is not consistent, so by reading the statement in the code it is not always clear how it is being used.

Readable & Maintainable

  • Give meaningful names to methods and variables.
  • Avoid excessive nesting.
  • Avoid HTML and CSS in JS code. HTML and CSS belong in templates and stylesheets respectively. For example:
    • In our HTML files, we should focus on layout.

      1. Reduce the small/random <script> and <style> elements in HTML.
      2. Avoid in-lining styles into element in HTML. Use attributes and classes instead.
    • In our JS files, we should focus on logic rather than attempting to manipulate/style elements.

      1. Avoid statements such as element.css({property1,property2...}) they belong in a CSS class.
      2. Avoid statements such as $("<div><span>abc</span></div>") they belong in a HTML template file. Use show | hide | clone elements if dynamic content is required.
      3. Avoid using classes for detection purposes only, instead, defer to

      attributes. For example to find a div: .. code :

      <div class="something"></div>

      $(".something").html("Don't find me this way!");

      Is better found like:

      <div data-something></div>

      $("div[data-something]").html("You found me correctly!");

  • Avoid commented-out code.
  • Avoid dead code.

Performance

  • Avoid creating instances of the same object repeatedly within the same scope. Instead, assign the object to a variable and re-use the existing object. For example:

    $(document).on('click', function() { /* do something. / }); $(document).on('mouseover', function() { / do something. */ });

    A better approach:

    var $document = $(document); $document.on('click', function() { /* do something. / }); $document.on('mouseover', function() { / do something. */ });

    In the first approach a jQuery object for document is created each time. The second approach creates only one jQuery object and reuses it. Each object needs to be created, uses memory, and needs to be garbage collected.

Readable & Maintainable

  • Put a comment at the top of every file explaining what the purpose of this file is when the naming is not obvious. This guideline also applies to methods and variables.

  • Source-code formatting (or “beautification”) is recommended but should be used with caution. Keep in mind that if you reformat an entire file that was not previously formatted the same way, it will mess up the diff during the code review. It is best to use a formatter when you are working on a new file by yourself, or with others who are using the same formatter. You can also choose to format a selected portion of a file only. Instructions for setting up JSHint for Eclipse, Sublime Text, Notepad++ and WebStorm/PyCharm are provided.

  • Use 2 spaces for code indentation.

  • Use { } for if, for, while statements, and don't combine them on one line.

    // Do this //Not this // Not this if(x) { if(x) if(x) y =x; y=x; y=x; }

  • Use JSHint in your development environment.

AngularJS

The following standards are divided into required and recommended sections.

Required

  • Organization: Define your Angular app under the root Angular folder (such as horizon/static/horizon/js/angular/hz.table.js). If your application is small enough you can choose to lump your Controllers, Directives, Filters, etc.. all in the one file. But if you find your file is growing too large and readability is becoming an issue, consider moving functionality into their own files under sub folders as described in the Recommended section.

  • Separate presentation and business logic. Controllers are for business logic, and directives for presentation.

    • Controllers and Services should not contain DOM references. Directives should.
    • Services are singletons and contain logic independent of view.
  • Scope is not the model (model is your JavaScript Objects). The scope references the model.

    • Read-only in templates.
    • Write-only in controllers.
  • Since Django already uses {{ }}, use {$ $} or {% verbatim %} instead.

  • For localization in JavaScript files use either gettext or ngettext. Only those two methods are recognized by our tools and will be included in the .po file after running ./run_tests --makemessages.

    // recognized gettext("translatable text"); ngettext("translatable text");

    // not recognized var _ = gettext; _('translatable text');

    $window.gettext('translatable text');

  • For localization of AngularJS templates in Horizon, there are a couple of ways to do it.

    • Using gettext or ngettext function that is passed from server to client. If you're only translating a few things, this methodology is ok to use.
    • Use an Angular directive that will fetch a django template instead of a static HTML file. The advantage here is that you can now use {% trans %} and anything else Django has to offer. You can also cache the page according to the locale if you know that the content is static.
  • Use these directories: filters, directives, controllers, and templates.

    When you use the directory name, the file name does not have to include words like "directive" or "filter".

  • Put "Ctrl" on the end of a controller file name.

  • Don't use variables like "app" that are at the highest level in the file, when Angular gives an alternative. For example use function chaining:

    angular.module('my_module')

    .controller('my_controller', ['$scope', function($scope) { // controller code

    }]).service('my_service', ['$scope', function($scope) {

    // service code

    }]);

JSHint

JSHint is a great tool to be used during your code editing to improve JavaScript quality by checking your code against a configurable list of checks. Therefore, JavaScript developers should configure their editors to use JSHint to warn them of any such errors so they can be addressed. Since JSHint has a ton of configuration options to choose from, links are provided below to the options Horizon wants enforced along with the instructions for setting up JSHint for Eclipse, Sublime Text, Notepad++ and WebStorm/PyCharm.

JSHint configuration file: .jshintrc

Instructions for setting up JSHint: JSHint setup instructions

CSS

Style guidelines for CSS are currently quite minimal. Do your best to make the code readable and well-organized. Two spaces are preferred for indentation so as to match both the JavaScript and HTML files.

JavaScript and CSS libraries

We do not bundle the third-party code within Horizon's source tree anymore, any code that is still there is just left over and will be cleaned up and packaged properly eventually. What we do instead, is packaging the required files as XStatic Python packages and adding them as dependencies to Horizon. In particular, when you need to add a new third-party JavaScript or CSS library to Horizon, follow those steps:

  1. Check if the library is already packaged as Xstatic on PyPi, by searching for the library name. If it already is, go to step 5. If it is, but not in the right version, contact the original packager.
  2. Package the library as an Xstatic package by following the instructions in Xstatic documentation.
  3. Register and upload your library to PyPi. Add "openstackci" user as an owner of that package. Don't forget to tag your release in the repository.
  4. Create a new repository on StackForge. Use "xstatic-core" and "xstatic-ptl" groups for the ACLs.
  5. Add the package to global-requirements. Make sure to mention the license.
  6. Add the package to Horizon's requirements.txt file, to its settings.py, and to the _scripts.html or _stylesheets.html templates. Make sure to keep the order alphabetic.

HTML

Again, readability is paramount; however be conscientious of how the browser will handle whitespace when rendering the output. Two spaces is the preferred indentation style to match all front-end code.

Documentation

Horizon's documentation is written in reStructuredText and uses Sphinx for additional parsing and functionality, and should follow standard practices for writing reST. This includes:

  • Flow paragraphs such that lines wrap at 80 characters or less.
  • Use proper grammar, spelling, capitalization and punctuation at all times.
  • Make use of Sphinx's autodoc feature to document modules, classes and functions. This keeps the docs close to the source.
  • Where possible, use Sphinx's cross-reference syntax (e.g. :class:`~horizon.foo.Bar`) when referring to other Horizon components. The better-linked our docs are, the easier they are to use.

Be sure to generate the documentation before submitting a patch for review. Unexpected warnings often appear when building the documentation, and slight reST syntax errors frequently cause links or cross-references not to work correctly.

Conventions

Simply by convention, we have a few rules about naming:

  • The term "project" is used in place of Keystone's "tenant" terminology in all user-facing text. The term "tenant" is still used in API code to make things more obvious for developers.
  • The term "dashboard" refers to a top-level dashboard class, and "panel" to the sub-items within a dashboard. Referring to a panel as a dashboard is both confusing and incorrect.