Changeset - 326a9336fbe5
[Not reviewed]
default
0 3 0
Andrew Shadura - 11 years ago 2015-03-23 16:07:35
andrew@shadura.me
spelling: use correct Git capitalisation where appropriate
3 files changed with 4 insertions and 4 deletions:
0 comments (0 inline, 0 general)
docs/usage/git_support.rst
Show inline comments
 
.. _git_support:
 

	
 
===========
 
GIT support
 
Git support
 
===========
 

	
 

	
 
Kallithea Git support is enabled by default. You just need a git
 
command line client installed on the server to make Git work fully.
 

	
kallithea/lib/diffs.py
Show inline comments
 
@@ -450,14 +450,14 @@ class DiffProcessor(object):
 

	
 
                except DiffLimitExceeded:
 
                    diff_container = lambda _diff: \
 
                        LimitedDiffContainer(self.diff_limit,
 
                                            self.cur_diff_size, _diff)
 
                    break
 
            else:  # GIT binary patch (or empty diff)
 
                # GIT Binary patch
 
            else:  # Git binary patch (or empty diff)
 
                # Git binary patch
 
                if head['bin_patch']:
 
                    stats['ops'][BIN_FILENODE] = 'binary diff not shown'
 
                chunks = []
 

	
 
            if op == 'D' and chunks:
 
                # a way of seeing deleted content could perhaps be nice - but
setup.py
Show inline comments
 
@@ -95,13 +95,13 @@ classifiers = [
 
data_files = []
 

	
 
# additional files that goes into package itself
 
package_data = {'kallithea': ['i18n/*/LC_MESSAGES/*.mo', ], }
 

	
 
description = ('Kallithea is a fast and powerful management tool '
 
               'for Mercurial and GIT with a built in push/pull server, '
 
               'for Mercurial and Git with a built in push/pull server, '
 
               'full text search and code-review.')
 

	
 
keywords = ' '.join([
 
    'kallithea', 'mercurial', 'git', 'code review',
 
    'repo groups', 'ldap', 'repository management', 'hgweb replacement',
 
    'hgwebdir', 'gitweb replacement', 'serving hgweb',
0 comments (0 inline, 0 general)