123 <dt>Return:</dt> |
123 <dt>Return:</dt> |
124 <dd> |
124 <dd> |
125 flag indicating a cancellation |
125 flag indicating a cancellation |
126 </dd> |
126 </dd> |
127 </dl> |
127 </dl> |
|
128 <dl> |
|
129 <dt>Return Type:</dt> |
|
130 <dd> |
|
131 bool |
|
132 </dd> |
|
133 </dl> |
128 <a NAME="SvnDialogMixin._clientLogCallback" ID="SvnDialogMixin._clientLogCallback"></a> |
134 <a NAME="SvnDialogMixin._clientLogCallback" ID="SvnDialogMixin._clientLogCallback"></a> |
129 <h4>SvnDialogMixin._clientLogCallback</h4> |
135 <h4>SvnDialogMixin._clientLogCallback</h4> |
130 <b>_clientLogCallback</b>(<i></i>) |
136 <b>_clientLogCallback</b>(<i></i>) |
131 |
137 |
132 <p> |
138 <p> |
133 Protected method called by the client to request a log message. |
139 Protected method called by the client to request a log message. |
134 </p> |
140 </p> |
135 <dl> |
141 <dl> |
136 <dt>Return:</dt> |
142 <dt>Return:</dt> |
137 <dd> |
143 <dd> |
138 a flag indicating success and the log message (string) |
144 a flag indicating success and the log message |
|
145 </dd> |
|
146 </dl> |
|
147 <dl> |
|
148 <dt>Return Type:</dt> |
|
149 <dd> |
|
150 str |
139 </dd> |
151 </dd> |
140 </dl> |
152 </dl> |
141 <a NAME="SvnDialogMixin._clientLoginCallback" ID="SvnDialogMixin._clientLoginCallback"></a> |
153 <a NAME="SvnDialogMixin._clientLoginCallback" ID="SvnDialogMixin._clientLoginCallback"></a> |
142 <h4>SvnDialogMixin._clientLoginCallback</h4> |
154 <h4>SvnDialogMixin._clientLoginCallback</h4> |
143 <b>_clientLoginCallback</b>(<i>realm, username, may_save</i>) |
155 <b>_clientLoginCallback</b>(<i>realm, username, may_save</i>) |
145 <p> |
157 <p> |
146 Protected method called by the client to get login information. |
158 Protected method called by the client to get login information. |
147 </p> |
159 </p> |
148 <dl> |
160 <dl> |
149 |
161 |
150 <dt><i>realm</i></dt> |
162 <dt><i>realm</i> (str)</dt> |
151 <dd> |
163 <dd> |
152 name of the realm of the requested credentials (string) |
164 name of the realm of the requested credentials |
153 </dd> |
165 </dd> |
154 <dt><i>username</i></dt> |
166 <dt><i>username</i> (str)</dt> |
155 <dd> |
167 <dd> |
156 username as supplied by subversion (string) |
168 username as supplied by subversion |
157 </dd> |
169 </dd> |
158 <dt><i>may_save</i></dt> |
170 <dt><i>may_save</i> (bool)</dt> |
159 <dd> |
171 <dd> |
160 flag indicating, that subversion is willing to save |
172 flag indicating, that subversion is willing to save |
161 the answers returned (boolean) |
173 the answers returned |
162 </dd> |
174 </dd> |
163 </dl> |
175 </dl> |
164 <dl> |
176 <dl> |
165 <dt>Return:</dt> |
177 <dt>Return:</dt> |
166 <dd> |
178 <dd> |
169 by subversion, username and password contain the relevant data |
181 by subversion, username and password contain the relevant data |
170 as strings and save is a flag indicating, that username and |
182 as strings and save is a flag indicating, that username and |
171 password should be saved. |
183 password should be saved. |
172 </dd> |
184 </dd> |
173 </dl> |
185 </dl> |
|
186 <dl> |
|
187 <dt>Return Type:</dt> |
|
188 <dd> |
|
189 tuple of (bool, str, str, bool) |
|
190 </dd> |
|
191 </dl> |
174 <a NAME="SvnDialogMixin._clientSslServerTrustPromptCallback" ID="SvnDialogMixin._clientSslServerTrustPromptCallback"></a> |
192 <a NAME="SvnDialogMixin._clientSslServerTrustPromptCallback" ID="SvnDialogMixin._clientSslServerTrustPromptCallback"></a> |
175 <h4>SvnDialogMixin._clientSslServerTrustPromptCallback</h4> |
193 <h4>SvnDialogMixin._clientSslServerTrustPromptCallback</h4> |
176 <b>_clientSslServerTrustPromptCallback</b>(<i>trust_dict</i>) |
194 <b>_clientSslServerTrustPromptCallback</b>(<i>trust_dict</i>) |
177 |
195 |
178 <p> |
196 <p> |
179 Protected method called by the client to request acceptance for a |
197 Protected method called by the client to request acceptance for a |
180 ssl server certificate. |
198 ssl server certificate. |
181 </p> |
199 </p> |
182 <dl> |
200 <dl> |
183 |
201 |
184 <dt><i>trust_dict</i></dt> |
202 <dt><i>trust_dict</i> (dict)</dt> |
185 <dd> |
203 <dd> |
186 dictionary containing the trust data |
204 dictionary containing the trust data |
187 </dd> |
205 </dd> |
188 </dl> |
206 </dl> |
189 <dl> |
207 <dl> |
190 <dt>Return:</dt> |
208 <dt>Return:</dt> |
191 <dd> |
209 <dd> |
192 tuple of three values (retcode, acceptedFailures, save). |
210 tuple of three values (retcode, acceptedFailures, save). |
193 Retcode should be true, if the certificate should be accepted, |
211 Retcode should be True, if the certificate should be accepted, |
194 acceptedFailures should indicate the accepted certificate failures |
212 acceptedFailures should indicate the accepted certificate failures |
195 and save should be True, if subversion should save the certificate. |
213 and save should be True, if subversion should save the certificate. |
|
214 </dd> |
|
215 </dl> |
|
216 <dl> |
|
217 <dt>Return Type:</dt> |
|
218 <dd> |
|
219 tuple of (bool, list of str, bool) |
196 </dd> |
220 </dd> |
197 </dl> |
221 </dl> |
198 <a NAME="SvnDialogMixin._reset" ID="SvnDialogMixin._reset"></a> |
222 <a NAME="SvnDialogMixin._reset" ID="SvnDialogMixin._reset"></a> |
199 <h4>SvnDialogMixin._reset</h4> |
223 <h4>SvnDialogMixin._reset</h4> |
200 <b>_reset</b>(<i></i>) |
224 <b>_reset</b>(<i></i>) |