Changeset View
Changeset View
Standalone View
Standalone View
mercurial/requirements.py
# requirements.py - objects and functions related to repository requirements | # requirements.py - objects and functions related to repository requirements | ||||
# | # | ||||
# Copyright 2005-2007 Matt Mackall <mpm@selenic.com> | # Copyright 2005-2007 Matt Mackall <mpm@selenic.com> | ||||
# | # | ||||
# This software may be used and distributed according to the terms of the | # This software may be used and distributed according to the terms of the | ||||
# GNU General Public License version 2 or any later version. | # GNU General Public License version 2 or any later version. | ||||
from __future__ import absolute_import | from __future__ import absolute_import | ||||
GENERALDELTA_REQUIREMENT = b'generaldelta' | GENERALDELTA_REQUIREMENT = b'generaldelta' | ||||
DOTENCODE_REQUIREMENT = b'dotencode' | |||||
# When narrowing is finalized and no longer subject to format changes, | # When narrowing is finalized and no longer subject to format changes, | ||||
# we should move this to just "narrow" or similar. | # we should move this to just "narrow" or similar. | ||||
NARROW_REQUIREMENT = b'narrowhg-experimental' | NARROW_REQUIREMENT = b'narrowhg-experimental' | ||||
# Enables sparse working directory usage | # Enables sparse working directory usage | ||||
SPARSE_REQUIREMENT = b'exp-sparse' | SPARSE_REQUIREMENT = b'exp-sparse' | ||||
▲ Show 20 Lines • Show All 61 Lines • Show Last 20 Lines |