aboutsummaryrefslogtreecommitdiff
path: root/rhodecode/controllers
AgeCommit message (Collapse)Author
2012-11-26White space cleanupMarcin Kuzminski
--HG-- branch : beta
2012-11-26Implemented #661 Add option to include diff in RSS feedMarcin Kuzminski
also include RSS item per page and cut_off_limit size in .ini options --HG-- branch : beta
2012-11-24Cleanup leftover print statementsMarcin Kuzminski
--HG-- branch : beta
2012-11-24Basic implementation of cherry picking changesetsMarcin Kuzminski
for pull request, ref #575 --HG-- branch : beta extra : amend_source : 6d032a33dcc5ccfeb0add1b67286e35eed0e4b1d
2012-11-23Implemented #658 Changing username in LDAP-Mode should not be allowed.Marcin Kuzminski
Those username are autocreated, changing them will end up with new account creation after user logs in again --HG-- branch : beta
2012-11-23added caching layer into RSS/ATOM feedsMarcin Kuzminski
- updated code for new LimitedDiffContainers - invalidate rss/atom cache keys on push - --HG-- branch : beta
2012-11-18Multiple changes for compare systemMarcin Kuzminski
- count number of changed lines and files - add combined compare button into the old per changeset compare - fixed some logic for remote & bundle compare system - added few tests for git compare --HG-- branch : beta extra : amend_source : af05adad4b8de07680c56bfa040febdac55d9da7
2012-11-17Optimized look of compare view of changesets.Marcin Kuzminski
Added cut off limit for compare view --HG-- branch : beta
2012-11-16Enabled compare engine for tagsMarcin Kuzminski
Implemented compare engine for git repositories --HG-- branch : beta
2012-11-16fixed file history testsMarcin Kuzminski
--HG-- branch : beta
2012-11-14parse metatags for lightweight dashboardMarcin Kuzminski
--HG-- branch : beta
2012-11-13implements #636, lazy loading of history and authors to speed up page ↵Marcin Kuzminski
responsiveness. - loading full history is not always needed, and it's very heavy operation. Now this is lazy loaded when clicking on button --HG-- branch : beta
2012-11-10new patch function, and urls schema.Marcin Kuzminski
now rhodecode generates - diff - plain diff - patch files both for git and hg --HG-- branch : beta rename : rhodecode/templates/changeset/raw_changeset.html => rhodecode/templates/changeset/patch_changeset.html
2012-11-05Implemented generation of changesets basedMarcin Kuzminski
on whole diff instead of per file diff. That can give a big speed improvement for large changesets in repositories with large history. - improved handling of binary files - show renames of binary files - implemented new diff limit functionality - unify diff generation between hg and git - Added binary indicators for changed files, - added diff lib tests --HG-- branch : beta extra : amend_source : 0648fbfbaf56e25c177ab5c34ba75a9edd227561
2012-11-06Implemented #638 permissions overview to groupsMarcin Kuzminski
--HG-- branch : beta
2012-11-04Let the function calculating changeset history do all the workMarcin Kuzminski
- fixed exception handling for fallback method --HG-- branch : beta
2012-11-04implements #632,Marcin Kuzminski
- added branch/tag/bookmarks info into feeds - added changeset link to body of message --HG-- branch : beta
2012-11-04hanlde stripped or removed changesets on changeset info functionMarcin Kuzminski
--HG-- branch : beta
2012-11-04Fixed issue when node didn't exists at 'tip' and we tried calculate history ↵Marcin Kuzminski
based on that assumption. Now fallback to the changeset the node exists in for history calculation --HG-- branch : beta
2012-10-29whitespace cleanupMarcin Kuzminski
--HG-- branch : beta
2012-10-29new tooltip implementationMarcin Kuzminski
- added lazy loading of changeset tooltips for journal data --HG-- branch : beta
2012-10-28fixed badRequest on views decorated by @jsonifyMarcin Kuzminski
--HG-- branch : beta
2012-10-24fix missing c.user referenceMarcin Kuzminski
--HG-- branch : beta
2012-10-23Use lightweight revisions in journal by defaultMarcin Kuzminski
--HG-- branch : beta
2012-10-23Added lightweight journal option for visualMarcin Kuzminski
--HG-- branch : beta
2012-10-23Lazy loading on my journal pageMarcin Kuzminski
--HG-- branch : beta
2012-10-20lightweight dashboard fix for repos groupMarcin Kuzminski
--HG-- branch : beta
2012-10-20fixed issue with file history for new added filesMarcin Kuzminski
--HG-- branch : beta
2012-10-18Update last_change from VCS data on request.Marcin Kuzminski
- lightweight dashboard shows now last_date also taken from db and it is fast ! --HG-- branch : beta
2012-10-18Added lightweight dashboard option. ref #500Marcin Kuzminski
--HG-- branch : beta
2012-10-18user lowernames of repos for better sortingMarcin Kuzminski
--HG-- branch : beta
2012-10-17pull requests throw an error if parent of fork didn't have any changesets ↵Marcin Kuzminski
yet. Now it's filter out from list of available sources --HG-- branch : beta
2012-10-17fixed issue with show at revision button. Some JS were not properly loaded ↵Marcin Kuzminski
due to ajaxified files view. Removed JS code and the logic for that is in python view now. Simpler and less ugly JS callbacks --HG-- branch : beta
2012-10-17smarter calculation of showed associated changeset in file source viewMarcin Kuzminski
- before rhodecode showed TIP changeset when initially displaing file source as description of associated commit this can be misleading. Now smart calculate last commit of a file, and show specific commits when switching from history view --HG-- branch : beta
2012-10-17Calculate file history always from latest changeset to always show full history.Marcin Kuzminski
When doing the calculation from a particular changeset git doesn't any records from parent changesets --HG-- branch : beta
2012-10-09#589 search urlgenerator didn't properly escape special chars on urlMarcin Kuzminski
--HG-- branch : beta
2012-10-09white space cleanupMarcin Kuzminski
--HG-- branch : beta
2012-10-03Fixed #585, checks for status of revision where to strict, and made opening ↵Marcin Kuzminski
pull request with those revision impossible due to previosly set status. Checks now are made also for the repository. --HG-- branch : beta
2012-10-03#590 Add GET flag that controls the way the diff are generated, for pull ↵Marcin Kuzminski
requests we want to use non-bundle based diffs, That are far better for doing code reviews. The /compare url still uses bundle compare for full comparision including the incoming changesets. - Fixed tests --HG-- branch : beta
2012-10-02Add git version detection to warn users that Git used in system is to old. ↵Marcin Kuzminski
ref #588 - also show git version in system details in settings page --HG-- branch : beta
2012-09-29#574 Show pull request status also in shortlog (if any)Marcin Kuzminski
--HG-- branch : beta
2012-09-28protect agains pull requests on empty repositoriesMarcin Kuzminski
--HG-- branch : beta
2012-09-19fixed few issues with autoselection of revisions on pull requestsMarcin Kuzminski
--HG-- branch : beta
2012-09-19swap the select values with revisions dynamically when switching the repos ↵Marcin Kuzminski
on pull request view - fix the partial ajax request that should never do redirect --HG-- branch : beta
2012-09-17failsafe the GET `page` argumentMarcin Kuzminski
--HG-- branch : beta
2012-09-17autofix largefiles hggit hgsubversion options if they are not in the databaseMarcin Kuzminski
--HG-- branch : beta
2012-09-15fixes issues #566 non-ascii search params are crashing paginatorMarcin Kuzminski
- those arguments needs to be converted to strings --HG-- branch : beta
2012-09-13Implemented permissions for writing to repoMarcin Kuzminski
groups. Now only write access to group allows to create a repostiory within that group --HG-- branch : beta
2012-09-12Add quick toggle link for locking for users with write or admin permissionsMarcin Kuzminski
--HG-- branch : beta
2012-09-12Wraps group listing with permissions check so they don't get displayedMarcin Kuzminski
--HG-- branch : beta