aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2013-04-03config: rename options to show_revision_number and show_sha_lengthMads Kiilerich
'sha_show_numeric_rev' had nothing to do with the sha value. The revision numbers are kind of native to Mercurial and there they are known as 'revision numbers'. 'sha_len' was very short and didn't clarify that it only controlled what was shown. These settings are currently only used in the changelog, but they should be used everywhere. --HG-- branch : beta extra : source : c6f2ffdcf0c1c8475d8384b7bc7793d4bdb8fdc6
2013-04-03config: automatically assign instance_id for host and process if it has been ↵Mads Kiilerich
set to * It is no longer a problem to invent new instance_ids on startup - unused keys will be deleted. --HG-- branch : beta extra : source : d091c31cb65c138e870f6054a8c3bc0dae09babc
2013-04-02util: remove attempt of renaming get_filesystem_repos while remaining ↵Mads Kiilerich
backward compatible --HG-- branch : beta
2013-04-02css: don't float the paginator - let it take the space it needsMads Kiilerich
Fixes rendering issue on the "messages" page. --HG-- branch : beta
2013-04-01more usage of fixture toolsMarcin Kuzminski
in tests --HG-- branch : beta
2013-03-31Use only mustcontain for testing response bodyMarcin Kuzminski
--HG-- branch : beta
2013-03-31use fixtures for forkingMarcin Kuzminski
--HG-- branch : beta
2013-03-31- age tests cannot be dynamic, there are cases when age calculationMarcin Kuzminski
doesn't work - use parametrized to test age --HG-- branch : beta
2013-03-31fixed nose parametrized when used on objectsMarcin Kuzminski
--HG-- branch : beta
2013-03-31added new fixture classesMarcin Kuzminski
and detaching/deleting forks tests --HG-- branch : beta
2013-03-31 recursive forks detachMarcin Kuzminski
- added API attrs for option to delete or detach forks - deleting repos with attached forks raises an special Exception --HG-- branch : beta
2013-03-30unified flash msg testsMarcin Kuzminski
--HG-- branch : beta
2013-03-30added missing page_nav on forks pageMarcin Kuzminski
--HG-- branch : beta
2013-03-30fixed users sorting in admin pannelMarcin Kuzminski
--HG-- branch : beta
2013-03-29tests docsMarcin Kuzminski
--HG-- branch : beta
2013-03-29fixed issues with importing non-ascii repo namesMarcin Kuzminski
--HG-- branch : beta
2013-03-29added url quote in clone url. fixes issue #809Marcin Kuzminski
--HG-- branch : beta
2013-03-29fix unicode issues on logging in SCM middlewaresMarcin Kuzminski
--HG-- branch : beta
2013-03-28fixes #807: Remove generic HTML title for repository groupsMarcin Kuzminski
--HG-- branch : beta
2013-03-28ldap: handle more elegantly that python-ldap isn't installed when trying to ↵Mads Kiilerich
use ldap Don't fail with AttributeError: 'NoneType' object has no attribute 'SCOPE_SUBTREE' in the log. --HG-- branch : beta
2013-03-28Don't catch all exceptionsMarcin Kuzminski
--HG-- branch : beta
2013-03-28fixed login testsMarcin Kuzminski
--HG-- branch : beta extra : amend_source : 5c7f4e306ed4346928a79c082b61a4b4051dada9
2013-03-28#749 and #516 Removed dupliciting of repo settings for rhodecode admins and ↵Marcin Kuzminski
repo admins - repo admin now is allowed the same set of operations as the rhodecode admin - single logic for forms/validations/permissions - fixes #805 update external repo via webinterface - --HG-- branch : beta extra : amend_source : 917c7d17eb73861cea0130dfe69d93cf6be893c0
2013-03-28moved permission management into separate entity.Marcin Kuzminski
- this solves issues when whole form submision could influence permission management particular case is that when repo group permission is revoked and user is no longer able to update repository settings --HG-- branch : beta
2013-03-28helpers: show boolean value of value as icon, not just the True and False ↵Mads Kiilerich
singletons --HG-- branch : beta
2013-03-28celery tasks: use None as special valueMads Kiilerich
Use a more common pattern. --HG-- branch : beta
2013-03-28follow Python conventions for boolean valuesMads Kiilerich
True and False might be singletons and the "default" values for "boolean" expressions, but "all" values in Python has a boolean value and should be evaluated as such. Checking with 'is True' and 'is False' is thus confusing, error prone and unnessarily complex. If we anywhere rely and nullable boolean fields from the database layer and don't want the null value to be treated as False then we should check explicitly for null with 'is None'. --HG-- branch : beta
2013-03-28user group: sort lists of current and available members by usernameMads Kiilerich
It was hard to navigate lists with 200 users in "random" (user_id?) order. --HG-- branch : beta
2013-03-28sort permission lists by (repository) nameMads Kiilerich
This also exhibits too much code in templates and code/template duplication. --HG-- branch : beta
2013-03-28spelling: chosenMads Kiilerich
--HG-- branch : beta
2013-03-27missing files or bad files revisions should return 404s not redirects - ref #808Marcin Kuzminski
--HG-- branch : beta
2013-03-27fixed missing page_nav in files edit/addMarcin Kuzminski
--HG-- branch : beta
2013-03-27missing changesets should return 404 not redirect + flash.Marcin Kuzminski
It feels more correct. --HG-- branch : beta extra : amend_source : 9d78bb57edb8db82b5a3b8b371701c71fb7d99d7
2013-03-27Enable flash extraction in error documentsMarcin Kuzminski
--HG-- branch : beta
2013-03-27added tests if push set cache invalidation stateMarcin Kuzminski
--HG-- branch : beta
2013-03-27added super simple cache_key paster function for showing and cleaning cache keysMarcin Kuzminski
--HG-- branch : beta extra : amend_source : 52822b9df3daa2e6ceae9ec9c78cd35f3c7457d8
2013-03-27move the existing changeset checks bellow other checks else it can throw ↵Marcin Kuzminski
exceptions for non existing repos --HG-- branch : beta
2013-03-27fix branch UI issue for git reposMarcin Kuzminski
--HG-- branch : beta
2013-03-27use merge param in compare link for it to work as expectedMarcin Kuzminski
--HG-- branch : beta
2013-03-26merge the two context menu bar stripes - save some vertical spaceMads Kiilerich
--HG-- branch : beta
2013-03-26move repo actions from their own menu line to Options menuMads Kiilerich
--HG-- branch : beta
2013-03-26compare: reorder columns in changeset list - this feels more natural to meMads Kiilerich
- but we should probably also try to be more consistent. --HG-- branch : beta
2013-03-26templates: enforce more consistency by being less flexible in templatesMads Kiilerich
All pages must define page_nav. context_bar may only be used on relevant repository pages, and the 'current' parameter is mandatory. --HG-- branch : beta
2013-03-25comments: "Comment on pull request" feels more naturalMads Kiilerich
--HG-- branch : beta
2013-03-26warn when repo path is skipped because it is read-onlyMads Kiilerich
--HG-- branch : beta
2013-03-26invalidation: some documentation and refactoringMads Kiilerich
--HG-- branch : beta
2013-03-26compare: show branch names in changeset listMads Kiilerich
--HG-- branch : beta
2013-03-26pullrequests: just show first line of description as hintMads Kiilerich
--HG-- branch : beta
2013-03-26use valid options for the top menu: repositories, journal, search and adminMads Kiilerich
--HG-- branch : beta
2013-03-26clean-up of breadcrumbs on pages with repo context barMads Kiilerich
--HG-- branch : beta