Contributing code¶
Like every open-source project, django CMS is always looking for motivated individuals to contribute to its source code.
In a nutshell¶
Here’s what the contribution process looks like in brief:
Fork our GitHub repository, https://github.com/django-cms/django-cms
Work locally and push your changes to your repository.
When you feel your code is good enough for inclusion, send us a pull request.
After that, please join the Slack Channel of our Pull Request Review work group (#workgroup-pr-review). This group of friendly community members is dedicated to reviewing pull requests. Report your PR and find a “pr review buddy” who is going to review your pull request.
Get acknowledged by the django CMS community for your contribution
See the How to contribute a patch how-to document for a walk-through of this process.
Basic requirements and standards¶
If you’re interested in developing a new feature for the CMS, it is recommended that you first discuss it on the Discourse forum so as not to do any work that will not get merged in anyway.
Code will be reviewed and tested by at least one core developer, preferably by several. Other community members are welcome to give feedback.
Code must be tested. Your pull request should include unit-tests (that cover the piece of code you’re submitting, obviously)
Documentation should reflect your changes if relevant. There is nothing worse than invalid documentation.
Usually, if unit tests are written, pass, and your change is relevant, then it’ll be merged.
Since we’re hosted on GitHub, django CMS uses git as a version control system.
The GitHub help is very well written and will get you started on using git and GitHub in a jiffy. It is an invaluable resource for newbies and old timers alike.
Syntax and conventions¶
Python¶
We try to conform to PEP8 as much as possible. A few highlights:
Indentation should be exactly 4 spaces. Not 2, not 6, not 8. 4. Also, tabs are evil.
We try (loosely) to keep the line length at 79 characters. Generally the rule is “it should look good in a terminal-base editor” (eg vim), but we try not be too inflexible about it.
HTML, CSS and JavaScript¶
As of django CMS 3.2, we are using the same guidelines as described in Aldryn Boilerplate
Frontend code should be formatted for readability. If in doubt, follow existing examples, or ask.
JS Linting¶
JavaScript is linted using ESLint. In order to run the linter you need to do this:
gulp lint
Or you can also run the watcher by just running gulp
.
Process¶
This is how you fix a bug or add a feature:
fork us on GitHub.
Checkout your fork.
Hack hack hack, test test test, commit commit commit, test again.
Push to your fork.
Open a pull request.
And at any point in that process, you can add: discuss discuss discuss, because it’s always useful for everyone to pass ideas around and look at things together.
Running and writing tests is really important: a pull request that lowers our testing coverage will only be accepted with a very good reason; bug-fixing patches must demonstrate the bug with a test to avoid regressions and to check that the fix works.
We have a Slack Channel, a Discourse forum, and of course the code reviews mechanism on GitHub - do use them.
Frontend¶
Important
When we refer to the frontend here, we only mean the frontend of django CMS’s admin/editor interface.
The frontend of a django CMS website, as seen by its visitors (i.e. the published site), is wholly independent of this. django CMS places almost no restrictions at all on the frontend - if a site can be described in HTML/CSS/JavaScript, it can be developed in django CMS.
In order to be able to work with the frontend tooling contributing to the django CMS you need to have the following dependencies installed:
Node version 6.10.1 (will install npm 3.10.10 as well). We recommend using NVM to get the correct version of Node.
gulp - see Gulp’s Getting Started notes
Local dependencies
npm install
Styles¶
We use Sass for our styles. The files
are located within cms/static/cms/sass
and can be compiled using the
libsass implementation of Sass compiler through
gulp.
In order to compile the stylesheets you need to run this command from the repo root:
gulp sass
While developing it is also possible to run a watcher that compiles Sass files on change:
gulp
By default, source maps are not included in the compiled files. In order to turn
them on while developing just add the --debug
option:
gulp --debug
Icons¶
We are using gulp-iconfont to
generate icon web fonts into cms/static/cms/fonts/
. This also creates
_iconography.scss
within cms/static/cms/sass/components
which adds all
the icon classes and ultimately compiles to CSS.
In order to compile the web font you need to run:
gulp icons
This simply takes all SVGs within cms/static/cms/fonts/src
and embeds them
into the web font. All classes will be automatically added to
_iconography.scss
as previously mentioned.
Additionally we created an SVG template within
cms/static/cms/font/src/_template.svgz
that you should use when converting
or creating additional icons. It is named svgz so it doesn’t get compiled
into the font. When using Adobe Illustrator please mind the
following settings.
JS Bundling¶
JavaScript files are split up for easier development, but in the end they are
bundled together and minified to decrease amount of requests made and improve
performance. In order to do that we use the gulp
task runner, where bundle
command is available. We use Webpack for
bundling JavaScript files. Configuration for each bundle are stored inside the
webpack.config.js
and their respective entry points. CMS exposes only one
global variable, named CMS
. If you want to use JavaScript code provided by
CMS in external applications, you can only use bundles distributed by CMS, not
the source modules.