|
Lines 73-79
class vacationResendDays(univention.admin.syntax.select):
Link Here
|
| 73 |
|
73 |
|
| 74 |
|
74 |
|
| 75 |
module = 'users/user' |
75 |
module = 'users/user' |
| 76 |
operations = ['add', 'edit', 'remove', 'search', 'move'] |
76 |
operations = ['add', 'edit', 'remove', 'search', 'move', 'copy'] |
| 77 |
template = 'settings/usertemplate' |
77 |
template = 'settings/usertemplate' |
| 78 |
uid_umlauts_mixedcase = 0 |
78 |
uid_umlauts_mixedcase = 0 |
| 79 |
|
79 |
|
|
Lines 168-173
class vacationResendDays(univention.admin.syntax.select):
Link Here
|
| 168 |
may_change=True, |
168 |
may_change=True, |
| 169 |
identifies=False, |
169 |
identifies=False, |
| 170 |
readonly_when_synced=True, |
170 |
readonly_when_synced=True, |
|
|
171 |
copyable=True, |
| 171 |
), |
172 |
), |
| 172 |
'lastname': univention.admin.property( |
173 |
'lastname': univention.admin.property( |
| 173 |
short_description=_('Last name'), |
174 |
short_description=_('Last name'), |
|
Lines 179-184
class vacationResendDays(univention.admin.syntax.select):
Link Here
|
| 179 |
may_change=True, |
180 |
may_change=True, |
| 180 |
identifies=False, |
181 |
identifies=False, |
| 181 |
readonly_when_synced=True, |
182 |
readonly_when_synced=True, |
|
|
183 |
copyable=True, |
| 182 |
), |
184 |
), |
| 183 |
'gecos': univention.admin.property( |
185 |
'gecos': univention.admin.property( |
| 184 |
short_description=_('GECOS'), |
186 |
short_description=_('GECOS'), |
|
Lines 190-196
class vacationResendDays(univention.admin.syntax.select):
Link Here
|
| 190 |
may_change=True, |
192 |
may_change=True, |
| 191 |
default='<firstname> <lastname><:umlauts,strip>', |
193 |
default='<firstname> <lastname><:umlauts,strip>', |
| 192 |
identifies=False, |
194 |
identifies=False, |
| 193 |
dontsearch=True |
195 |
dontsearch=True, |
|
|
196 |
copyable=True, |
| 194 |
), |
197 |
), |
| 195 |
'displayName': univention.admin.property( |
198 |
'displayName': univention.admin.property( |
| 196 |
short_description=_('Display name'), |
199 |
short_description=_('Display name'), |
|
Lines 203-208
class vacationResendDays(univention.admin.syntax.select):
Link Here
|
| 203 |
default='<firstname> <lastname><:strip>', |
206 |
default='<firstname> <lastname><:strip>', |
| 204 |
identifies=False, |
207 |
identifies=False, |
| 205 |
readonly_when_synced=True, |
208 |
readonly_when_synced=True, |
|
|
209 |
copyable=True, |
| 206 |
), |
210 |
), |
| 207 |
'title': univention.admin.property( |
211 |
'title': univention.admin.property( |
| 208 |
short_description=_('Title'), |
212 |
short_description=_('Title'), |
|
Lines 214-219
class vacationResendDays(univention.admin.syntax.select):
Link Here
|
| 214 |
may_change=True, |
218 |
may_change=True, |
| 215 |
identifies=False, |
219 |
identifies=False, |
| 216 |
readonly_when_synced=True, |
220 |
readonly_when_synced=True, |
|
|
221 |
copyable=True, |
| 217 |
), |
222 |
), |
| 218 |
'sambaPrivileges': univention.admin.property( |
223 |
'sambaPrivileges': univention.admin.property( |
| 219 |
short_description=_('Samba privilege'), |
224 |
short_description=_('Samba privilege'), |
|
Lines 226-231
class vacationResendDays(univention.admin.syntax.select):
Link Here
|
| 226 |
may_change=True, |
231 |
may_change=True, |
| 227 |
identifies=False, |
232 |
identifies=False, |
| 228 |
readonly_when_synced=True, |
233 |
readonly_when_synced=True, |
|
|
234 |
copyable=True, |
| 229 |
), |
235 |
), |
| 230 |
'description': univention.admin.property( |
236 |
'description': univention.admin.property( |
| 231 |
short_description=_('Description'), |
237 |
short_description=_('Description'), |
|
Lines 237-242
class vacationResendDays(univention.admin.syntax.select):
Link Here
|
| 237 |
may_change=True, |
243 |
may_change=True, |
| 238 |
identifies=False, |
244 |
identifies=False, |
| 239 |
readonly_when_synced=True, |
245 |
readonly_when_synced=True, |
|
|
246 |
copyable=True, |
| 240 |
), |
247 |
), |
| 241 |
'organisation': univention.admin.property( |
248 |
'organisation': univention.admin.property( |
| 242 |
short_description=_('Organisation'), |
249 |
short_description=_('Organisation'), |
|
Lines 248-253
class vacationResendDays(univention.admin.syntax.select):
Link Here
|
| 248 |
may_change=True, |
255 |
may_change=True, |
| 249 |
identifies=False, |
256 |
identifies=False, |
| 250 |
readonly_when_synced=True, |
257 |
readonly_when_synced=True, |
|
|
258 |
copyable=True, |
| 251 |
), |
259 |
), |
| 252 |
'userexpiry': univention.admin.property( |
260 |
'userexpiry': univention.admin.property( |
| 253 |
short_description=_('Account expiry date'), |
261 |
short_description=_('Account expiry date'), |
|
Lines 259-264
class vacationResendDays(univention.admin.syntax.select):
Link Here
|
| 259 |
may_change=True, |
267 |
may_change=True, |
| 260 |
dontsearch=True, |
268 |
dontsearch=True, |
| 261 |
identifies=False, |
269 |
identifies=False, |
|
|
270 |
copyable=True, |
| 262 |
), |
271 |
), |
| 263 |
'passwordexpiry': univention.admin.property( |
272 |
'passwordexpiry': univention.admin.property( |
| 264 |
short_description=_('Password expiry date'), |
273 |
short_description=_('Password expiry date'), |
|
Lines 272-277
class vacationResendDays(univention.admin.syntax.select):
Link Here
|
| 272 |
dontsearch=True, |
281 |
dontsearch=True, |
| 273 |
identifies=False, |
282 |
identifies=False, |
| 274 |
readonly_when_synced=True, |
283 |
readonly_when_synced=True, |
|
|
284 |
copyable=True, |
| 275 |
), |
285 |
), |
| 276 |
'pwdChangeNextLogin': univention.admin.property( |
286 |
'pwdChangeNextLogin': univention.admin.property( |
| 277 |
short_description=_('Change password on next login'), |
287 |
short_description=_('Change password on next login'), |
|
Lines 294-300
class vacationResendDays(univention.admin.syntax.select):
Link Here
|
| 294 |
required=False, |
304 |
required=False, |
| 295 |
may_change=True, |
305 |
may_change=True, |
| 296 |
identifies=False, |
306 |
identifies=False, |
| 297 |
show_in_lists=True |
307 |
show_in_lists=True, |
|
|
308 |
copyable=True, |
| 298 |
), |
309 |
), |
| 299 |
'locked': univention.admin.property( |
310 |
'locked': univention.admin.property( |
| 300 |
short_description=_('Locked login methods'), |
311 |
short_description=_('Locked login methods'), |
|
Lines 329-334
class vacationResendDays(univention.admin.syntax.select):
Link Here
|
| 329 |
may_change=True, |
340 |
may_change=True, |
| 330 |
identifies=False, |
341 |
identifies=False, |
| 331 |
readonly_when_synced=True, |
342 |
readonly_when_synced=True, |
|
|
343 |
copyable=True, |
| 332 |
), |
344 |
), |
| 333 |
'e-mail': univention.admin.property( |
345 |
'e-mail': univention.admin.property( |
| 334 |
short_description=_('E-mail address'), |
346 |
short_description=_('E-mail address'), |
|
Lines 339-345
class vacationResendDays(univention.admin.syntax.select):
Link Here
|
| 339 |
required=False, |
351 |
required=False, |
| 340 |
may_change=True, |
352 |
may_change=True, |
| 341 |
identifies=False, |
353 |
identifies=False, |
| 342 |
default=['<mailPrimaryAddress>'] |
354 |
default=['<mailPrimaryAddress>'], |
|
|
355 |
copyable=True, |
| 343 |
), |
356 |
), |
| 344 |
'postcode': univention.admin.property( |
357 |
'postcode': univention.admin.property( |
| 345 |
short_description=_('Postal code'), |
358 |
short_description=_('Postal code'), |
|
Lines 351-356
class vacationResendDays(univention.admin.syntax.select):
Link Here
|
| 351 |
may_change=True, |
364 |
may_change=True, |
| 352 |
identifies=False, |
365 |
identifies=False, |
| 353 |
readonly_when_synced=True, |
366 |
readonly_when_synced=True, |
|
|
367 |
copyable=True, |
| 354 |
), |
368 |
), |
| 355 |
'city': univention.admin.property( |
369 |
'city': univention.admin.property( |
| 356 |
short_description=_('City'), |
370 |
short_description=_('City'), |
|
Lines 362-367
class vacationResendDays(univention.admin.syntax.select):
Link Here
|
| 362 |
may_change=True, |
376 |
may_change=True, |
| 363 |
identifies=False, |
377 |
identifies=False, |
| 364 |
readonly_when_synced=True, |
378 |
readonly_when_synced=True, |
|
|
379 |
copyable=True, |
| 365 |
), |
380 |
), |
| 366 |
'country': univention.admin.property( |
381 |
'country': univention.admin.property( |
| 367 |
short_description=_('Country'), |
382 |
short_description=_('Country'), |
|
Lines 373-378
class vacationResendDays(univention.admin.syntax.select):
Link Here
|
| 373 |
may_change=True, |
388 |
may_change=True, |
| 374 |
identifies=False, |
389 |
identifies=False, |
| 375 |
readonly_when_synced=True, |
390 |
readonly_when_synced=True, |
|
|
391 |
copyable=True, |
| 376 |
), |
392 |
), |
| 377 |
'phone': univention.admin.property( |
393 |
'phone': univention.admin.property( |
| 378 |
short_description=_('Telephone number'), |
394 |
short_description=_('Telephone number'), |
|
Lines 384-389
class vacationResendDays(univention.admin.syntax.select):
Link Here
|
| 384 |
may_change=True, |
400 |
may_change=True, |
| 385 |
identifies=False, |
401 |
identifies=False, |
| 386 |
readonly_when_synced=True, |
402 |
readonly_when_synced=True, |
|
|
403 |
copyable=True, |
| 387 |
), |
404 |
), |
| 388 |
'employeeNumber': univention.admin.property( |
405 |
'employeeNumber': univention.admin.property( |
| 389 |
short_description=_('Employee number'), |
406 |
short_description=_('Employee number'), |
|
Lines 395-400
class vacationResendDays(univention.admin.syntax.select):
Link Here
|
| 395 |
required=False, |
412 |
required=False, |
| 396 |
may_change=True, |
413 |
may_change=True, |
| 397 |
identifies=False, |
414 |
identifies=False, |
|
|
415 |
copyable=True, |
| 398 |
), |
416 |
), |
| 399 |
'roomNumber': univention.admin.property( |
417 |
'roomNumber': univention.admin.property( |
| 400 |
short_description=_('Room number'), |
418 |
short_description=_('Room number'), |
|
Lines 405-410
class vacationResendDays(univention.admin.syntax.select):
Link Here
|
| 405 |
required=False, |
423 |
required=False, |
| 406 |
may_change=True, |
424 |
may_change=True, |
| 407 |
identifies=False, |
425 |
identifies=False, |
|
|
426 |
copyable=True, |
| 408 |
), |
427 |
), |
| 409 |
'secretary': univention.admin.property( |
428 |
'secretary': univention.admin.property( |
| 410 |
short_description=_('Superior'), |
429 |
short_description=_('Superior'), |
|
Lines 415-420
class vacationResendDays(univention.admin.syntax.select):
Link Here
|
| 415 |
required=False, |
434 |
required=False, |
| 416 |
may_change=True, |
435 |
may_change=True, |
| 417 |
identifies=False, |
436 |
identifies=False, |
|
|
437 |
copyable=True, |
| 418 |
), |
438 |
), |
| 419 |
'departmentNumber': univention.admin.property( |
439 |
'departmentNumber': univention.admin.property( |
| 420 |
short_description=_('Department number'), |
440 |
short_description=_('Department number'), |
|
Lines 425-430
class vacationResendDays(univention.admin.syntax.select):
Link Here
|
| 425 |
required=False, |
445 |
required=False, |
| 426 |
may_change=True, |
446 |
may_change=True, |
| 427 |
identifies=False, |
447 |
identifies=False, |
|
|
448 |
copyable=True, |
| 428 |
), |
449 |
), |
| 429 |
'employeeType': univention.admin.property( |
450 |
'employeeType': univention.admin.property( |
| 430 |
short_description=_('Employee type'), |
451 |
short_description=_('Employee type'), |
|
Lines 435-440
class vacationResendDays(univention.admin.syntax.select):
Link Here
|
| 435 |
required=False, |
456 |
required=False, |
| 436 |
may_change=True, |
457 |
may_change=True, |
| 437 |
identifies=False, |
458 |
identifies=False, |
|
|
459 |
copyable=True, |
| 438 |
), |
460 |
), |
| 439 |
'homePostalAddress': univention.admin.property( |
461 |
'homePostalAddress': univention.admin.property( |
| 440 |
short_description=_('Private postal address'), |
462 |
short_description=_('Private postal address'), |
|
Lines 445-450
class vacationResendDays(univention.admin.syntax.select):
Link Here
|
| 445 |
required=False, |
467 |
required=False, |
| 446 |
may_change=True, |
468 |
may_change=True, |
| 447 |
identifies=False, |
469 |
identifies=False, |
|
|
470 |
copyable=True, |
| 448 |
), |
471 |
), |
| 449 |
'homeTelephoneNumber': univention.admin.property( |
472 |
'homeTelephoneNumber': univention.admin.property( |
| 450 |
short_description=_('Private telephone number'), |
473 |
short_description=_('Private telephone number'), |
|
Lines 456-461
class vacationResendDays(univention.admin.syntax.select):
Link Here
|
| 456 |
may_change=True, |
479 |
may_change=True, |
| 457 |
identifies=False, |
480 |
identifies=False, |
| 458 |
readonly_when_synced=True, |
481 |
readonly_when_synced=True, |
|
|
482 |
copyable=True, |
| 459 |
), |
483 |
), |
| 460 |
'mobileTelephoneNumber': univention.admin.property( |
484 |
'mobileTelephoneNumber': univention.admin.property( |
| 461 |
short_description=_('Mobile phone number'), |
485 |
short_description=_('Mobile phone number'), |
|
Lines 467-472
class vacationResendDays(univention.admin.syntax.select):
Link Here
|
| 467 |
may_change=True, |
491 |
may_change=True, |
| 468 |
identifies=False, |
492 |
identifies=False, |
| 469 |
readonly_when_synced=True, |
493 |
readonly_when_synced=True, |
|
|
494 |
copyable=True, |
| 470 |
), |
495 |
), |
| 471 |
'pagerTelephoneNumber': univention.admin.property( |
496 |
'pagerTelephoneNumber': univention.admin.property( |
| 472 |
short_description=_('Pager telephone number'), |
497 |
short_description=_('Pager telephone number'), |
|
Lines 478-483
class vacationResendDays(univention.admin.syntax.select):
Link Here
|
| 478 |
may_change=True, |
503 |
may_change=True, |
| 479 |
identifies=False, |
504 |
identifies=False, |
| 480 |
readonly_when_synced=True, |
505 |
readonly_when_synced=True, |
|
|
506 |
copyable=True, |
| 481 |
), |
507 |
), |
| 482 |
'birthday': univention.admin.property( |
508 |
'birthday': univention.admin.property( |
| 483 |
short_description=_('Birthdate'), |
509 |
short_description=_('Birthdate'), |
|
Lines 488-493
class vacationResendDays(univention.admin.syntax.select):
Link Here
|
| 488 |
required=False, |
514 |
required=False, |
| 489 |
may_change=True, |
515 |
may_change=True, |
| 490 |
identifies=False, |
516 |
identifies=False, |
|
|
517 |
copyable=True, |
| 491 |
), |
518 |
), |
| 492 |
'unixhome': univention.admin.property( |
519 |
'unixhome': univention.admin.property( |
| 493 |
short_description=_('Unix home directory'), |
520 |
short_description=_('Unix home directory'), |
|
Lines 510-516
class vacationResendDays(univention.admin.syntax.select):
Link Here
|
| 510 |
required=False, |
537 |
required=False, |
| 511 |
may_change=True, |
538 |
may_change=True, |
| 512 |
identifies=False, |
539 |
identifies=False, |
| 513 |
default='/bin/bash' |
540 |
default='/bin/bash', |
|
|
541 |
copyable=True, |
| 514 |
), |
542 |
), |
| 515 |
'sambahome': univention.admin.property( |
543 |
'sambahome': univention.admin.property( |
| 516 |
short_description=_('Windows home path'), |
544 |
short_description=_('Windows home path'), |
|
Lines 522-527
class vacationResendDays(univention.admin.syntax.select):
Link Here
|
| 522 |
may_change=True, |
550 |
may_change=True, |
| 523 |
identifies=False, |
551 |
identifies=False, |
| 524 |
readonly_when_synced=True, |
552 |
readonly_when_synced=True, |
|
|
553 |
copyable=True, |
| 525 |
), |
554 |
), |
| 526 |
'scriptpath': univention.admin.property( |
555 |
'scriptpath': univention.admin.property( |
| 527 |
short_description=_('Windows logon script'), |
556 |
short_description=_('Windows logon script'), |
|
Lines 533-538
class vacationResendDays(univention.admin.syntax.select):
Link Here
|
| 533 |
may_change=True, |
562 |
may_change=True, |
| 534 |
identifies=False, |
563 |
identifies=False, |
| 535 |
readonly_when_synced=True, |
564 |
readonly_when_synced=True, |
|
|
565 |
copyable=True, |
| 536 |
), |
566 |
), |
| 537 |
'profilepath': univention.admin.property( |
567 |
'profilepath': univention.admin.property( |
| 538 |
short_description=_('Windows profile directory'), |
568 |
short_description=_('Windows profile directory'), |
|
Lines 544-549
class vacationResendDays(univention.admin.syntax.select):
Link Here
|
| 544 |
may_change=True, |
574 |
may_change=True, |
| 545 |
identifies=False, |
575 |
identifies=False, |
| 546 |
readonly_when_synced=True, |
576 |
readonly_when_synced=True, |
|
|
577 |
copyable=True, |
| 547 |
), |
578 |
), |
| 548 |
'homedrive': univention.admin.property( |
579 |
'homedrive': univention.admin.property( |
| 549 |
short_description=_('Windows home drive'), |
580 |
short_description=_('Windows home drive'), |
|
Lines 555-560
class vacationResendDays(univention.admin.syntax.select):
Link Here
|
| 555 |
may_change=True, |
586 |
may_change=True, |
| 556 |
identifies=False, |
587 |
identifies=False, |
| 557 |
readonly_when_synced=True, |
588 |
readonly_when_synced=True, |
|
|
589 |
copyable=True, |
| 558 |
), |
590 |
), |
| 559 |
'sambaRID': univention.admin.property( |
591 |
'sambaRID': univention.admin.property( |
| 560 |
short_description=_('Relative ID'), |
592 |
short_description=_('Relative ID'), |
|
Lines 579-584
class vacationResendDays(univention.admin.syntax.select):
Link Here
|
| 579 |
may_change=True, |
611 |
may_change=True, |
| 580 |
identifies=False, |
612 |
identifies=False, |
| 581 |
readonly_when_synced=True, |
613 |
readonly_when_synced=True, |
|
|
614 |
copyable=True, |
| 582 |
), |
615 |
), |
| 583 |
'primaryGroup': univention.admin.property( |
616 |
'primaryGroup': univention.admin.property( |
| 584 |
short_description=_('Primary group'), |
617 |
short_description=_('Primary group'), |
|
Lines 591-596
class vacationResendDays(univention.admin.syntax.select):
Link Here
|
| 591 |
may_change=True, |
624 |
may_change=True, |
| 592 |
identifies=False, |
625 |
identifies=False, |
| 593 |
readonly_when_synced=True, |
626 |
readonly_when_synced=True, |
|
|
627 |
copyable=True, |
| 594 |
), |
628 |
), |
| 595 |
'mailHomeServer': univention.admin.property( |
629 |
'mailHomeServer': univention.admin.property( |
| 596 |
short_description=_('Mail home server'), |
630 |
short_description=_('Mail home server'), |
|
Lines 603-608
class vacationResendDays(univention.admin.syntax.select):
Link Here
|
| 603 |
dontsearch=False, |
637 |
dontsearch=False, |
| 604 |
may_change=True, |
638 |
may_change=True, |
| 605 |
identifies=False, |
639 |
identifies=False, |
|
|
640 |
copyable=True, |
| 606 |
), |
641 |
), |
| 607 |
'mailPrimaryAddress': univention.admin.property( |
642 |
'mailPrimaryAddress': univention.admin.property( |
| 608 |
short_description=_('Primary e-mail address'), |
643 |
short_description=_('Primary e-mail address'), |
|
Lines 628-633
class vacationResendDays(univention.admin.syntax.select):
Link Here
|
| 628 |
may_change=True, |
663 |
may_change=True, |
| 629 |
identifies=False, |
664 |
identifies=False, |
| 630 |
readonly_when_synced=False, |
665 |
readonly_when_synced=False, |
|
|
666 |
copyable=True, |
| 631 |
), |
667 |
), |
| 632 |
'mailForwardAddress': univention.admin.property( |
668 |
'mailForwardAddress': univention.admin.property( |
| 633 |
short_description=_('Forward e-mail address'), |
669 |
short_description=_('Forward e-mail address'), |
|
Lines 640-645
class vacationResendDays(univention.admin.syntax.select):
Link Here
|
| 640 |
may_change=True, |
676 |
may_change=True, |
| 641 |
identifies=False, |
677 |
identifies=False, |
| 642 |
readonly_when_synced=False, |
678 |
readonly_when_synced=False, |
|
|
679 |
copyable=True, |
| 643 |
), |
680 |
), |
| 644 |
'mailForwardCopyToSelf': univention.admin.property( |
681 |
'mailForwardCopyToSelf': univention.admin.property( |
| 645 |
short_description=_('Forwarding setting'), |
682 |
short_description=_('Forwarding setting'), |
|
Lines 652-657
class vacationResendDays(univention.admin.syntax.select):
Link Here
|
| 652 |
may_change=True, |
689 |
may_change=True, |
| 653 |
identifies=False, |
690 |
identifies=False, |
| 654 |
readonly_when_synced=False, |
691 |
readonly_when_synced=False, |
|
|
692 |
copyable=True, |
| 655 |
), |
693 |
), |
| 656 |
'overridePWHistory': univention.admin.property( |
694 |
'overridePWHistory': univention.admin.property( |
| 657 |
short_description=_('Override password history'), |
695 |
short_description=_('Override password history'), |
|
Lines 664-669
class vacationResendDays(univention.admin.syntax.select):
Link Here
|
| 664 |
may_change=True, |
702 |
may_change=True, |
| 665 |
identifies=False, |
703 |
identifies=False, |
| 666 |
readonly_when_synced=True, |
704 |
readonly_when_synced=True, |
|
|
705 |
copyable=True, |
| 667 |
), |
706 |
), |
| 668 |
'overridePWLength': univention.admin.property( |
707 |
'overridePWLength': univention.admin.property( |
| 669 |
short_description=_('Override password check'), |
708 |
short_description=_('Override password check'), |
|
Lines 676-681
class vacationResendDays(univention.admin.syntax.select):
Link Here
|
| 676 |
may_change=True, |
715 |
may_change=True, |
| 677 |
identifies=False, |
716 |
identifies=False, |
| 678 |
readonly_when_synced=True, |
717 |
readonly_when_synced=True, |
|
|
718 |
copyable=True, |
| 679 |
), |
719 |
), |
| 680 |
'homeShare': univention.admin.property( |
720 |
'homeShare': univention.admin.property( |
| 681 |
short_description=_('Home share'), |
721 |
short_description=_('Home share'), |
|
Lines 687-692
class vacationResendDays(univention.admin.syntax.select):
Link Here
|
| 687 |
dontsearch=True, |
727 |
dontsearch=True, |
| 688 |
may_change=True, |
728 |
may_change=True, |
| 689 |
identifies=False, |
729 |
identifies=False, |
|
|
730 |
copyable=True, |
| 690 |
), |
731 |
), |
| 691 |
'homeSharePath': univention.admin.property( |
732 |
'homeSharePath': univention.admin.property( |
| 692 |
short_description=_('Home share path'), |
733 |
short_description=_('Home share path'), |
|
Lines 711-716
class vacationResendDays(univention.admin.syntax.select):
Link Here
|
| 711 |
may_change=True, |
752 |
may_change=True, |
| 712 |
identifies=False, |
753 |
identifies=False, |
| 713 |
readonly_when_synced=True, |
754 |
readonly_when_synced=True, |
|
|
755 |
copyable=True, |
| 714 |
), |
756 |
), |
| 715 |
'sambaLogonHours': univention.admin.property( |
757 |
'sambaLogonHours': univention.admin.property( |
| 716 |
short_description=_('Permitted times for Windows logins'), |
758 |
short_description=_('Permitted times for Windows logins'), |
|
Lines 723-728
class vacationResendDays(univention.admin.syntax.select):
Link Here
|
| 723 |
may_change=True, |
765 |
may_change=True, |
| 724 |
identifies=False, |
766 |
identifies=False, |
| 725 |
readonly_when_synced=True, |
767 |
readonly_when_synced=True, |
|
|
768 |
copyable=True, |
| 726 |
), |
769 |
), |
| 727 |
'jpegPhoto': univention.admin.property( |
770 |
'jpegPhoto': univention.admin.property( |
| 728 |
short_description=_("Picture of the user (JPEG format)"), |
771 |
short_description=_("Picture of the user (JPEG format)"), |
|
Lines 734-739
class vacationResendDays(univention.admin.syntax.select):
Link Here
|
| 734 |
may_change=True, |
777 |
may_change=True, |
| 735 |
options=['person'], |
778 |
options=['person'], |
| 736 |
identifies=False, |
779 |
identifies=False, |
|
|
780 |
copyable=True, |
| 737 |
), |
781 |
), |
| 738 |
'userCertificate': univention.admin.property( |
782 |
'userCertificate': univention.admin.property( |
| 739 |
short_description=_("PKI user certificate (DER format)"), |
783 |
short_description=_("PKI user certificate (DER format)"), |
|
Lines 745-750
class vacationResendDays(univention.admin.syntax.select):
Link Here
|
| 745 |
may_change=True, |
789 |
may_change=True, |
| 746 |
options=['pki'], |
790 |
options=['pki'], |
| 747 |
identifies=False, |
791 |
identifies=False, |
|
|
792 |
copyable=True, |
| 748 |
), |
793 |
), |
| 749 |
'certificateIssuerCountry': univention.admin.property( |
794 |
'certificateIssuerCountry': univention.admin.property( |
| 750 |
short_description=_('Issuer Country'), |
795 |
short_description=_('Issuer Country'), |
|
Lines 756-761
class vacationResendDays(univention.admin.syntax.select):
Link Here
|
| 756 |
editable=False, |
801 |
editable=False, |
| 757 |
options=['pki'], |
802 |
options=['pki'], |
| 758 |
identifies=False, |
803 |
identifies=False, |
|
|
804 |
copyable=True, |
| 759 |
), |
805 |
), |
| 760 |
'certificateIssuerState': univention.admin.property( |
806 |
'certificateIssuerState': univention.admin.property( |
| 761 |
short_description=_('Issuer State'), |
807 |
short_description=_('Issuer State'), |
|
Lines 767-772
class vacationResendDays(univention.admin.syntax.select):
Link Here
|
| 767 |
editable=False, |
813 |
editable=False, |
| 768 |
options=['pki'], |
814 |
options=['pki'], |
| 769 |
identifies=False, |
815 |
identifies=False, |
|
|
816 |
copyable=True, |
| 770 |
), |
817 |
), |
| 771 |
'certificateIssuerLocation': univention.admin.property( |
818 |
'certificateIssuerLocation': univention.admin.property( |
| 772 |
short_description=_('Issuer Location'), |
819 |
short_description=_('Issuer Location'), |
|
Lines 778-783
class vacationResendDays(univention.admin.syntax.select):
Link Here
|
| 778 |
editable=False, |
825 |
editable=False, |
| 779 |
options=['pki'], |
826 |
options=['pki'], |
| 780 |
identifies=False, |
827 |
identifies=False, |
|
|
828 |
copyable=True, |
| 781 |
), |
829 |
), |
| 782 |
'certificateIssuerOrganisation': univention.admin.property( |
830 |
'certificateIssuerOrganisation': univention.admin.property( |
| 783 |
short_description=_('Issuer Organisation'), |
831 |
short_description=_('Issuer Organisation'), |
|
Lines 789-794
class vacationResendDays(univention.admin.syntax.select):
Link Here
|
| 789 |
editable=False, |
837 |
editable=False, |
| 790 |
options=['pki'], |
838 |
options=['pki'], |
| 791 |
identifies=False, |
839 |
identifies=False, |
|
|
840 |
copyable=True, |
| 792 |
), |
841 |
), |
| 793 |
'certificateIssuerOrganisationalUnit': univention.admin.property( |
842 |
'certificateIssuerOrganisationalUnit': univention.admin.property( |
| 794 |
short_description=_('Issuer Organisational Unit'), |
843 |
short_description=_('Issuer Organisational Unit'), |
|
Lines 800-805
class vacationResendDays(univention.admin.syntax.select):
Link Here
|
| 800 |
editable=False, |
849 |
editable=False, |
| 801 |
options=['pki'], |
850 |
options=['pki'], |
| 802 |
identifies=False, |
851 |
identifies=False, |
|
|
852 |
copyable=True, |
| 803 |
), |
853 |
), |
| 804 |
'certificateIssuerCommonName': univention.admin.property( |
854 |
'certificateIssuerCommonName': univention.admin.property( |
| 805 |
short_description=_('Issuer Common Name'), |
855 |
short_description=_('Issuer Common Name'), |
|
Lines 811-816
class vacationResendDays(univention.admin.syntax.select):
Link Here
|
| 811 |
editable=False, |
861 |
editable=False, |
| 812 |
options=['pki'], |
862 |
options=['pki'], |
| 813 |
identifies=False, |
863 |
identifies=False, |
|
|
864 |
copyable=True, |
| 814 |
), |
865 |
), |
| 815 |
'certificateIssuerMail': univention.admin.property( |
866 |
'certificateIssuerMail': univention.admin.property( |
| 816 |
short_description=_('Issuer Mail'), |
867 |
short_description=_('Issuer Mail'), |
|
Lines 822-827
class vacationResendDays(univention.admin.syntax.select):
Link Here
|
| 822 |
editable=False, |
873 |
editable=False, |
| 823 |
options=['pki'], |
874 |
options=['pki'], |
| 824 |
identifies=False, |
875 |
identifies=False, |
|
|
876 |
copyable=True, |
| 825 |
), |
877 |
), |
| 826 |
'certificateSubjectCountry': univention.admin.property( |
878 |
'certificateSubjectCountry': univention.admin.property( |
| 827 |
short_description=_('Subject Country'), |
879 |
short_description=_('Subject Country'), |
|
Lines 833-838
class vacationResendDays(univention.admin.syntax.select):
Link Here
|
| 833 |
editable=False, |
885 |
editable=False, |
| 834 |
options=['pki'], |
886 |
options=['pki'], |
| 835 |
identifies=False, |
887 |
identifies=False, |
|
|
888 |
copyable=True, |
| 836 |
), |
889 |
), |
| 837 |
'certificateSubjectState': univention.admin.property( |
890 |
'certificateSubjectState': univention.admin.property( |
| 838 |
short_description=_('Subject State'), |
891 |
short_description=_('Subject State'), |
|
Lines 844-849
class vacationResendDays(univention.admin.syntax.select):
Link Here
|
| 844 |
editable=False, |
897 |
editable=False, |
| 845 |
options=['pki'], |
898 |
options=['pki'], |
| 846 |
identifies=False, |
899 |
identifies=False, |
|
|
900 |
copyable=True, |
| 847 |
), |
901 |
), |
| 848 |
'certificateSubjectLocation': univention.admin.property( |
902 |
'certificateSubjectLocation': univention.admin.property( |
| 849 |
short_description=_('Subject Location'), |
903 |
short_description=_('Subject Location'), |
|
Lines 855-860
class vacationResendDays(univention.admin.syntax.select):
Link Here
|
| 855 |
editable=False, |
909 |
editable=False, |
| 856 |
options=['pki'], |
910 |
options=['pki'], |
| 857 |
identifies=False, |
911 |
identifies=False, |
|
|
912 |
copyable=True, |
| 858 |
), |
913 |
), |
| 859 |
'certificateSubjectOrganisation': univention.admin.property( |
914 |
'certificateSubjectOrganisation': univention.admin.property( |
| 860 |
short_description=_('Subject Organisation'), |
915 |
short_description=_('Subject Organisation'), |
|
Lines 866-871
class vacationResendDays(univention.admin.syntax.select):
Link Here
|
| 866 |
editable=False, |
921 |
editable=False, |
| 867 |
options=['pki'], |
922 |
options=['pki'], |
| 868 |
identifies=False, |
923 |
identifies=False, |
|
|
924 |
copyable=True, |
| 869 |
), |
925 |
), |
| 870 |
'certificateSubjectOrganisationalUnit': univention.admin.property( |
926 |
'certificateSubjectOrganisationalUnit': univention.admin.property( |
| 871 |
short_description=_('Subject Organisational Unit'), |
927 |
short_description=_('Subject Organisational Unit'), |
|
Lines 877-882
class vacationResendDays(univention.admin.syntax.select):
Link Here
|
| 877 |
editable=False, |
933 |
editable=False, |
| 878 |
options=['pki'], |
934 |
options=['pki'], |
| 879 |
identifies=False, |
935 |
identifies=False, |
|
|
936 |
copyable=True, |
| 880 |
), |
937 |
), |
| 881 |
'certificateSubjectCommonName': univention.admin.property( |
938 |
'certificateSubjectCommonName': univention.admin.property( |
| 882 |
short_description=_('Subject Common Name'), |
939 |
short_description=_('Subject Common Name'), |
|
Lines 888-893
class vacationResendDays(univention.admin.syntax.select):
Link Here
|
| 888 |
editable=False, |
945 |
editable=False, |
| 889 |
options=['pki'], |
946 |
options=['pki'], |
| 890 |
identifies=False, |
947 |
identifies=False, |
|
|
948 |
copyable=True, |
| 891 |
), |
949 |
), |
| 892 |
'certificateSubjectMail': univention.admin.property( |
950 |
'certificateSubjectMail': univention.admin.property( |
| 893 |
short_description=_('Subject Mail'), |
951 |
short_description=_('Subject Mail'), |
|
Lines 899-904
class vacationResendDays(univention.admin.syntax.select):
Link Here
|
| 899 |
editable=False, |
957 |
editable=False, |
| 900 |
options=['pki'], |
958 |
options=['pki'], |
| 901 |
identifies=False, |
959 |
identifies=False, |
|
|
960 |
copyable=True, |
| 902 |
), |
961 |
), |
| 903 |
'certificateDateNotBefore': univention.admin.property( |
962 |
'certificateDateNotBefore': univention.admin.property( |
| 904 |
short_description=_('Valid from'), |
963 |
short_description=_('Valid from'), |
|
Lines 910-915
class vacationResendDays(univention.admin.syntax.select):
Link Here
|
| 910 |
editable=False, |
969 |
editable=False, |
| 911 |
options=['pki'], |
970 |
options=['pki'], |
| 912 |
identifies=False, |
971 |
identifies=False, |
|
|
972 |
copyable=True, |
| 913 |
), |
973 |
), |
| 914 |
'certificateDateNotAfter': univention.admin.property( |
974 |
'certificateDateNotAfter': univention.admin.property( |
| 915 |
short_description=_('Valid until'), |
975 |
short_description=_('Valid until'), |
|
Lines 921-926
class vacationResendDays(univention.admin.syntax.select):
Link Here
|
| 921 |
editable=False, |
981 |
editable=False, |
| 922 |
options=['pki'], |
982 |
options=['pki'], |
| 923 |
identifies=False, |
983 |
identifies=False, |
|
|
984 |
copyable=True, |
| 924 |
), |
985 |
), |
| 925 |
'certificateVersion': univention.admin.property( |
986 |
'certificateVersion': univention.admin.property( |
| 926 |
short_description=_('Version'), |
987 |
short_description=_('Version'), |
|
Lines 932-937
class vacationResendDays(univention.admin.syntax.select):
Link Here
|
| 932 |
editable=False, |
993 |
editable=False, |
| 933 |
options=['pki'], |
994 |
options=['pki'], |
| 934 |
identifies=False, |
995 |
identifies=False, |
|
|
996 |
copyable=True, |
| 935 |
), |
997 |
), |
| 936 |
'certificateSerial': univention.admin.property( |
998 |
'certificateSerial': univention.admin.property( |
| 937 |
short_description=_('Serial'), |
999 |
short_description=_('Serial'), |
|
Lines 943-948
class vacationResendDays(univention.admin.syntax.select):
Link Here
|
| 943 |
editable=False, |
1005 |
editable=False, |
| 944 |
options=['pki'], |
1006 |
options=['pki'], |
| 945 |
identifies=False, |
1007 |
identifies=False, |
|
|
1008 |
copyable=True, |
| 946 |
), |
1009 |
), |
| 947 |
'umcProperty': univention.admin.property( |
1010 |
'umcProperty': univention.admin.property( |
| 948 |
short_description=_('UMC user preferences'), |
1011 |
short_description=_('UMC user preferences'), |
|
Lines 953-958
class vacationResendDays(univention.admin.syntax.select):
Link Here
|
| 953 |
required=False, |
1016 |
required=False, |
| 954 |
may_change=True, |
1017 |
may_change=True, |
| 955 |
identifies=False, |
1018 |
identifies=False, |
|
|
1019 |
copyable=True, |
| 956 |
), |
1020 |
), |
| 957 |
} |
1021 |
} |
| 958 |
|
1022 |
|