##// END OF EJS Templates
wireprototypes: clarify documentation of getbundle argument types...
Martin von Zweigbergk -
r43225:9668744c default
parent child Browse files
Show More
@@ -147,14 +147,14 b' def unescapebatcharg(escaped):'
147
147
148 # mapping of options accepted by getbundle and their types
148 # mapping of options accepted by getbundle and their types
149 #
149 #
150 # Meant to be extended by extensions. It is extensions responsibility to ensure
150 # Meant to be extended by extensions. It is the extension's responsibility to
151 # such options are properly processed in exchange.getbundle.
151 # ensure such options are properly processed in exchange.getbundle.
152 #
152 #
153 # supported types are:
153 # supported types are:
154 #
154 #
155 # :nodes: list of binary nodes
155 # :nodes: list of binary nodes, transmitted as space-separated hex nodes
156 # :csv: list of comma-separated values
156 # :csv: list of values, transmitted as comma-separated values
157 # :scsv: list of comma-separated values return as set
157 # :scsv: set of values, transmitted as comma-separated values
158 # :plain: string with no transformation needed.
158 # :plain: string with no transformation needed.
159 GETBUNDLE_ARGUMENTS = {
159 GETBUNDLE_ARGUMENTS = {
160 'heads': 'nodes',
160 'heads': 'nodes',
General Comments 0
You need to be logged in to leave comments. Login now