Mercurial > hg > ltpda
comparison m-toolbox/classes/@plist/plist.m @ 52:daf4eab1a51e database-connection-manager tip
Fix. Default password should be [] not an empty string
author | Daniele Nicolodi <nicolodi@science.unitn.it> |
---|---|
date | Wed, 07 Dec 2011 17:29:47 +0100 |
parents | a71a40911c27 |
children |
comparison
equal
deleted
inserted
replaced
51:9d5c88356247 | 52:daf4eab1a51e |
---|---|
334 % Database | 334 % Database |
335 p = param({'database','The database name.'}, paramValue.EMPTY_STRING); | 335 p = param({'database','The database name.'}, paramValue.EMPTY_STRING); |
336 pl.append(p); | 336 pl.append(p); |
337 | 337 |
338 % Binary | 338 % Binary |
339 p = param({'Binary','<html>Set to ''yes'' to retrieve from<br>stored binary representation (not always available).</html>'},... | 339 p = param({'binary','Use binary representation (not always available).'}, paramValue.YES_NO); |
340 paramValue.YES_NO); | |
341 pl.append(p); | 340 pl.append(p); |
342 | 341 |
343 % Username | 342 % Username |
344 p = param({'Username', 'Specify a username to connect with. Leave blank to be prompted.'}, paramValue.EMPTY_STRING); | 343 p = param({'username', 'Specify a username to connect with. Leave blank to be prompted.'}, paramValue.EMPTY_STRING); |
345 pl.append(p); | 344 pl.append(p); |
346 | 345 |
347 % Password | 346 % Password |
348 p = param({'Password', 'Specify a password to connect with. Leave blank to be prompted.'}, paramValue.EMPTY_STRING); | 347 p = param({'password', 'Specify a password to connect with. Leave blank to be prompted.'}, paramValue.EMPTY_DOUBLE); |
349 pl.append(p); | 348 pl.append(p); |
350 end | 349 end |
351 | 350 |
352 % Plist for submitting/updating objects from a repository. This is used | 351 % Plist for submitting/updating objects from a repository. This is used |
353 % in ltpda_uo/ -submit, -bsubmit and -update. | 352 % in ltpda_uo/ -submit, -bsubmit and -update. |
365 % Username | 364 % Username |
366 p = param({'username', 'User name to access the repository'}, paramValue.EMPTY_STRING); | 365 p = param({'username', 'User name to access the repository'}, paramValue.EMPTY_STRING); |
367 pl.append(p); | 366 pl.append(p); |
368 | 367 |
369 % Password | 368 % Password |
370 p = param({'password', 'Password'}, paramValue.EMPTY_STRING); | 369 p = param({'password', 'Password'}, paramValue.EMPTY_DOUBLE); |
371 pl.append(p); | 370 pl.append(p); |
372 | 371 |
373 % experiment title | 372 % experiment title |
374 p = param({'experiment title', 'Title for the submission'}, paramValue.EMPTY_STRING); | 373 p = param({'experiment title', 'Title for the submission'}, paramValue.EMPTY_STRING); |
375 pl.append(p); | 374 pl.append(p); |