aboutsummaryrefslogtreecommitdiff
path: root/rhodecode/controllers
AgeCommit message (Collapse)Author
2013-05-17fix required repo_type param on repo edit formHEADmasterMarcin Kuzminski
--HG-- extra : amend_source : ea5e59cfe6f88aa4abe00cfa2b209918e66f9c10
2013-05-02backported redirection loop fix from beta ref: 222e9432298eMarcin Kuzminski
2013-04-09make the permission update function idempotentMarcin Kuzminski
--HG-- extra : source : e42e1d4e1c473a29024845e88530f5a8ee2f7ce1
2013-04-15added missing perms check on history callMarcin Kuzminski
2013-04-13usage of request.GET is now more consistentMarcin Kuzminski
2013-04-12can update context var needs to be defined in __load_defaultsMarcin Kuzminski
--HG-- extra : source : 490e95264d7fa0606ae1fb8f6812cbd3e26d04a2
2013-04-04pagination in pull-requests page + UIMarcin Kuzminski
--HG-- branch : beta extra : amend_source : 6e313ee6f14ff7f10693492b3d3c66279c7ad00a
2013-04-04fix flash link to repos that are in groupsMarcin Kuzminski
--HG-- branch : beta
2013-04-03Fix a lot of casings - use standard casing in most placesMads Kiilerich
--HG-- branch : beta extra : source : 8586dddf9f86ac13d703c27cf52f93f0a53cc5bf
2013-04-03Fix 'repos group' - it is 'repository group'Mads Kiilerich
--HG-- branch : beta extra : source : 54acf67ebf45232956e62fe3ce594cd72f45ffbf
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-29added url quote in clone url. fixes issue #809Marcin Kuzminski
--HG-- branch : beta
2013-03-28Don't catch all exceptionsMarcin Kuzminski
--HG-- branch : beta
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-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-27missing files or bad files revisions should return 404s not redirects - ref #808Marcin 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-27move the existing changeset checks bellow other checks else it can throw ↵Marcin Kuzminski
exceptions for non existing repos --HG-- branch : beta
2013-03-26pullrequests: just show first line of description as hintMads Kiilerich
--HG-- branch : beta
2013-03-26pullrequests: only create special select entry for a changeset if it has no ↵Mads Kiilerich
symbolic name --HG-- branch : beta
2013-03-26pullrequests: cleanup of other_repo initialization codeMads Kiilerich
--HG-- branch : beta
2013-03-26pullrequests: use default_other_repo_info for the default other_ref selectorMads Kiilerich
--HG-- branch : beta
2013-03-26pullrequests: fix non-js defaults for repo ownerMads Kiilerich
Owner of default_other_repo was never sent to the the template ... and the template would fail if it had been sent. Instead we set default_other_repo_info to the other_repos_info struct and use that to find the owner. --HG-- branch : beta
2013-03-26don't normalize path if it's empty on adding a file throught web interfaceMarcin Kuzminski
--HG-- branch : beta
2013-03-20report ChangesetDoesNotExistError as an error but don't lose the repo contextMads Kiilerich
--HG-- branch : beta extra : transplant_source : m%7B%3F%D1%8F%22%8B%8E%EE%EEq%CF%A9K%A6%07t%B4R%84
2013-03-20fork: 'Update after clone' only makes sense if the update hook will maintain itMads Kiilerich
--HG-- branch : beta extra : transplant_source : c9%15%19%CAF%E1%C5%10%A8%1B%A8%B1%B1%0D%8E7P%7E%80
2013-03-20settings: simplify handling of form values for hooks and extensionsMads Kiilerich
This makes simpler to follow the code path and search for input input field names. The form field names are hardcoded in the template, so generating them programmatically in the controller do not really add any flexibility. --HG-- branch : beta extra : transplant_source : %FA%A1%09l%1F%10%8Dh%DF%12Yb%04%A6%B0%FF%0C%2B%A5%1D
2013-03-20stay on repo after forking and show full path to new forkMads Kiilerich
This helps not getting lost after forking. --HG-- branch : beta extra : transplant_source : %E1%86%5D%04A%24%D3%06%C7%84%058%A4%E4%B5%BC%1F%F4%3B%04
2013-03-20consistently capitalize initial letter in flash messagesMads Kiilerich
--HG-- branch : beta extra : transplant_source : %5D%27N%A8%B9%BAp%24w%1Cl%E7sy%3D%EB%5D%9A%C9%96
2013-03-24fixed bad raise statementMarcin Kuzminski
--HG-- branch : beta
2013-03-21added more strict checks for file path in add file controllerMarcin Kuzminski
--HG-- branch : beta extra : amend_source : 20c76f73cba874db61caf7d7c6699e476fd329b9
2013-03-20Repo size - show just the size without duplicating textMarcin Kuzminski
bring back numeric revision into changelog Fixed tests --HG-- branch : beta
2013-03-19linkify names on fork/create repos in tooltip messagesMarcin Kuzminski
--HG-- branch : beta
2013-03-18merge with UI branchMarcin Kuzminski
--HG-- branch : beta
2013-03-11Pass in old groups data to CanWriteToGroup validator for later skipping ↵Marcin Kuzminski
group checks. This will be a part of refactoring done to do user permissions changes without messing with main repo form data --HG-- branch : beta
2013-03-11MergeLeonardo
--HG-- branch : beta
2013-03-06pullrequest selection list: emphasize named branches that are neighboursMads Kiilerich
--HG-- branch : beta extra : source : d6d3125848ce01d7109b08434faca5f2bd20a7e6
2013-03-04Mergeleonardo
--HG-- branch : beta
2013-03-04Addding context bar to more repo related pages.leonardo
Fixing the base template to work on non-repo related pages. --HG-- branch : beta
2013-03-04use str2bool on lock api callsMarcin Kuzminski
--HG-- branch : beta
2013-03-03whitespace cleanupMarcin Kuzminski
--HG-- branch : beta
2013-02-28pullrequests: refactor changeset selectors, tip is special and not a real tagMads Kiilerich
--HG-- branch : beta extra : source : 75a83cce2e08191cd32a6de8e441159661c510a6
2013-02-28compare: minor refactoring and commentsMads Kiilerich
--HG-- branch : beta extra : source : 6a5f7a89c6485426fa3023e4b5f3d16bb86e90e4
2013-02-28compare: cleanup of as_form handlingMads Kiilerich
as_form is only used when loaded 'partial' from pullrequest.html. Including it in the 'Detailed compare view' url did thus not do any harm. as_form is never used in pullrequest_show.html or compare_diff.html and it is thus never used together with swap_url ... which is why the wrong 'as_form=None' or 'as_form=False' in urls didn't do any harm. --HG-- branch : beta extra : source : d3f835437bc61e205ceb89b2b300a84739c4e121
2013-03-03check if given f_path in diff is not a dir by any chanceMarcin Kuzminski
--HG-- branch : beta
2013-02-28home: don't crash in branch_tag_switcher when an invalid repo name is givenMads Kiilerich
--HG-- branch : beta extra : source : 13b5d7007666e4ca5616522506a7944c0e9725da
2013-03-02notifications changesMarcin Kuzminski
- closing pull requests will give notification about it - more detailed notifications about commenting on changesets and pull requests --HG-- branch : beta