##// END OF EJS Templates
configitems: correct default values of web.allow<archtype> and web.hidden...
Yuya Nishihara -
r34654:8bea493e default
parent child Browse files
Show More
@@ -761,10 +761,10 b" coreconfigitem('verify', 'skipflags',"
761 default=None,
761 default=None,
762 )
762 )
763 coreconfigitem('web', 'allowbz2',
763 coreconfigitem('web', 'allowbz2',
764 default=None,
764 default=False,
765 )
765 )
766 coreconfigitem('web', 'allowgz',
766 coreconfigitem('web', 'allowgz',
767 default=None,
767 default=False,
768 )
768 )
769 coreconfigitem('web', 'allowpull',
769 coreconfigitem('web', 'allowpull',
770 default=True,
770 default=True,
@@ -773,7 +773,7 b" coreconfigitem('web', 'allow_push',"
773 default=list,
773 default=list,
774 )
774 )
775 coreconfigitem('web', 'allowzip',
775 coreconfigitem('web', 'allowzip',
776 default=None,
776 default=False,
777 )
777 )
778 coreconfigitem('web', 'cache',
778 coreconfigitem('web', 'cache',
779 default=True,
779 default=True,
@@ -788,7 +788,7 b" coreconfigitem('web', 'guessmime',"
788 default=False,
788 default=False,
789 )
789 )
790 coreconfigitem('web', 'hidden',
790 coreconfigitem('web', 'hidden',
791 default=None,
791 default=False,
792 )
792 )
793 coreconfigitem('web', 'labels',
793 coreconfigitem('web', 'labels',
794 default=list,
794 default=list,
General Comments 0
You need to be logged in to leave comments. Login now