Skip to content

Commit 5e119ca

Browse files
committed
use master branch instead of develop
1 parent 37e5719 commit 5e119ca

File tree

4 files changed

+30
-28
lines changed

4 files changed

+30
-28
lines changed

README.rst

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -4,19 +4,19 @@ Django Filer
44

55
|pypi| |build| |coverage|
66

7-
**django Filer** is a file management application for django that makes
7+
**django Filer** is a file management application for django that makes
88
handling of files and images a breeze.
99

1010
.. We're using absolute image url below, because relative paths won't work on
1111
pypi. github would render relative paths correctly.
1212
13-
+---------------------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------+
14-
| .. image:: https://github.com/raw/divio/django-filer/develop/docs/_static/filer_2.png | .. image:: https://github.com/raw/divio/django-filer/develop/docs/_static/filer_3.png |
15-
+---------------------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------+
16-
| .. image:: https://github.com/raw/divio/django-filer/develop/docs/_static/detail_image.png | .. image:: https://github.com/raw/divio/django-filer/develop/docs/_static/detail_file.png |
17-
+---------------------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------+
18-
| .. image:: https://github.com/raw/divio/django-filer/develop/docs/_static/file_picker_1.png | .. image:: https://github.com/raw/divio/django-filer/develop/docs/_static/file_picker_3.png |
19-
+---------------------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------+
13+
+--------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------------+
14+
| .. image:: https://github.com/raw/divio/django-filer/master/docs/_static/filer_2.png | .. image:: https://github.com/raw/divio/django-filer/master/docs/_static/filer_3.png |
15+
+--------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------------+
16+
| .. image:: https://github.com/raw/divio/django-filer/master/docs/_static/detail_image.png | .. image:: https://github.com/raw/divio/django-filer/master/docs/_static/detail_file.png |
17+
+--------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------------+
18+
| .. image:: https://github.com/raw/divio/django-filer/master/docs/_static/file_picker_1.png | .. image:: https://github.com/raw/divio/django-filer/master/docs/_static/file_picker_3.png |
19+
+--------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------------+
2020

2121

2222
Contributing

docs/development.rst

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -87,13 +87,15 @@ It is highly recommended to use the `git flow <http://github.com/nvie/gitflow>`_
8787
* clone your fork ``git clone [email protected]:username/django-filer.git``
8888
* ``cd django-filer``
8989
* initialize git flow: ``git flow init`` (choose all the defaults)
90-
* ``git flow feature start my_feature_name`` creates a new branch called ``feature/my_feature_name`` based on ``develop``
90+
* ``git flow feature start my_feature_name`` creates a new branch called ``feature/my_feature_name`` based on ``master``
9191
* ...code... ...code... ..commit.. ..commit..
9292
* ``git flow feature publish`` creates a new branch remotely and pushes your changes
93-
* navigate to the feature branch on github and create a pull request to the ``develop`` branch on ``divio/django-filer``
94-
* after reviewing the changes may be merged into ``develop`` and then eventually into ``master`` for the release.
93+
* navigate to the feature branch on github and create a pull request to the ``master`` branch on ``divio/django-filer``
94+
* after reviewing the changes may be merged into ``master`` for the release.
9595

96-
If the feature branch is long running, it is good practice to merge in the current state of the ``develop`` branch into the feature branch sometimes. This keeps the feature branch up to date and reduces the likeliness of merge conflicts once it is merged back into develop.
96+
If the feature branch is long running, it is good practice to merge in the current state of the ``master`` branch into
97+
the feature branch sometimes. This keeps the feature branch up to date and reduces the likeliness of merge conflicts
98+
once it is merged back into master.
9799

98100

99101
.. _`PEP8`: http://www.python.org/dev/peps/pep-0008

docs/index.rst

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -16,28 +16,28 @@ Welcome to django-filer's documentation!
1616
``django-filer`` is a file management application for django. It handles uploading
1717
and organizing files and images in contrib.admin.
1818

19-
+--------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
20-
| .. image:: https://github.com/raw/divio/django-filer/develop/docs/_static/filer_1.png | .. image:: https://github.com/raw/divio/django-filer/develop/docs/_static/filer_2.png |
21-
+--------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
19+
+-------------------------------------------------------------------------------------------------+-------------------------------------------------------------------------------------------------+
20+
| .. image:: https://github.com/raw/divio/django-filer/master/docs/_static/filer_1.png | .. image:: https://github.com/raw/divio/django-filer/master/docs/_static/filer_2.png |
21+
+-------------------------------------------------------------------------------------------------+-------------------------------------------------------------------------------------------------+
2222

2323
Filer detail view:
2424

25-
+-------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------------------+
26-
| .. image:: https://github.com/raw/divio/django-filer/develop/docs/_static/detail_image.png | .. image:: https://github.com/raw/divio/django-filer/develop/docs/_static/detail_file.png |
27-
+-------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------------------+
25+
+------------------------------------------------------------------------------------------------------+-----------------------------------------------------------------------------------------------------+
26+
| .. image:: https://github.com/raw/divio/django-filer/master/docs/_static/detail_image.png | .. image:: https://github.com/raw/divio/django-filer/master/docs/_static/detail_file.png |
27+
+------------------------------------------------------------------------------------------------------+-----------------------------------------------------------------------------------------------------+
2828

2929
Filer picker widget:
3030

31-
+--------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------------+
32-
| .. image:: https://github.com/raw/divio/django-filer/develop/docs/_static/file_picker_1.png | .. image:: https://github.com/raw/divio/django-filer/develop/docs/_static/file_picker_2.png |
33-
+--------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------------+
34-
| .. image:: https://github.com/raw/divio/django-filer/develop/docs/_static/file_picker_3.png | |
35-
+--------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------------+
31+
+-------------------------------------------------------------------------------------------------------+-------------------------------------------------------------------------------------------------------+
32+
| .. image:: https://github.com/raw/divio/django-filer/master/docs/_static/file_picker_1.png | .. image:: https://github.com/raw/divio/django-filer/master/docs/_static/file_picker_2.png |
33+
+-------------------------------------------------------------------------------------------------------+-------------------------------------------------------------------------------------------------------+
34+
| .. image:: https://github.com/raw/divio/django-filer/master/docs/_static/file_picker_3.png | |
35+
+-------------------------------------------------------------------------------------------------------+-------------------------------------------------------------------------------------------------------+
3636

37-
Custom model fields are provided for use in 3rd party apps as a replacement for
38-
the default ``FileField`` from django. Behind the scenes a ``ForeignKey`` to the
37+
Custom model fields are provided for use in 3rd party apps as a replacement for
38+
the default ``FileField`` from django. Behind the scenes a ``ForeignKey`` to the
3939
File model is used.
40-
40+
4141
Getting help
4242
------------
4343

@@ -49,7 +49,7 @@ Contributing
4949
------------
5050

5151
The code is hosted on github at http://github.com/divio/django-filer/
52-
and is fully open source. We hope you choose to help us on the project! More
52+
and is fully open source. We hope you choose to help us on the project! More
5353
information on how to contribute can be found in `contributing`_.
5454

5555

docs/running_tests.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ done for you. Tox will setup multiple virtual environments with different python
2222
tox -e py27-dj18 -- test filer.tests.models.FilerApiTests.test_create_folder_structure
2323

2424
Other test runner options are also supported, see
25-
`djangocms-helper <https://djangocms-helper.readthedocs.io/en/develop/>`_
25+
`djangocms-helper <https://djangocms-helper.readthedocs.io/en/latest/>`_
2626
documentation for details.
2727

2828
To speed things up a bit use `detox <http://pypi.python.org/pypi/detox/>`_. ``detox`` runs each testsuite in a

0 commit comments

Comments
 (0)