forked from ArcticaProject/remote-logon-service
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ChangeLog.until-1.0.0
1122 lines (561 loc) · 24.4 KB
/
ChangeLog.until-1.0.0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# Generated by Makefile. Do not edit.
2012-09-20 Ted Gould <[email protected]>
1.0.0
2012-09-20 Albert Astals Cid <[email protected]>
Handle the SetLastUsedServer calls
The data is saved in a file that is encrypted with the password and whose name is the hash of the username to provide as much privacy/security possible
2012-09-20 Albert Astals <[email protected]>
Use the correct function pointer check
2012-09-17 Albert Astals <[email protected]>
Merge lp:remote-login-service
2012-09-14 Albert Astals <[email protected]>
Merge lp:remote-login-service
2012-09-14 Albert Astals <[email protected]>
Do not assume AES data won't have 0 and we can use strlen, etc on it
2012-09-14 Albert Astals <[email protected]>
Merge lp:remote-login-service
2012-09-14 Albert Astals <[email protected]>
Remove printf
2012-09-13 Albert Astals <[email protected]>
Keep the last server_used around
2012-09-14 Ted Gould <[email protected]>
0.7.0
2012-09-14 Ted Gould <[email protected]>
Enable the allow cache variable
2012-09-14 Ted Gould <[email protected]>
Handle caching and multiple logins much better.. Approved by Albert Astals Cid.
2012-09-14 Ted Gould <[email protected]>
Clear the cache if we don't want to use it.
2012-09-14 Ted Gould <[email protected]>
Merge in the allow cache branch
2012-09-14 Albert Astals <[email protected]>
Merge lp:remote-login-service
2012-09-14 Albert Astals <[email protected]>
Move the if up
2012-09-14 Albert Astals <[email protected]>
Do not use the cache if we are told not to use it
2012-09-14 Ted Gould <[email protected]>
Make sure that if we're changing the username and password we unblock any queued lookup
2012-09-14 Ted Gould <[email protected]>
Pulling the clear JSON task stuff into its own function
2012-09-14 Ted Gould <[email protected]>
Only reset the user name and password if they've changed
2012-09-14 Ted Gould <[email protected]>
Remove the confusing 'if' statement and clear the username/pass
2012-09-14 Albert Astals <[email protected]>
Merge lp:remote-login-service
2012-09-14 Albert Astals <[email protected]>
Match proper signature
2012-09-14 Albert Astals <[email protected]>
Change the if line so the previously added test passes
Not sure i fully understand what this line is trying to do
2012-09-14 Albert Astals <[email protected]>
Add test that proves that if you try to login twice, the second one is failed
2012-09-14 Albert Astals <[email protected]>
Actually use -Wall -Werror when compiling. Approved by Ted Gould.
2012-09-14 Albert Astals <[email protected]>
Merge lp:remote-login-service
2012-09-14 Albert Astals <[email protected]>
Also make the checks compile
2012-09-14 Albert Astals <[email protected]>
Compile with -Wall -Werror
2012-09-14 Albert Astals <[email protected]>
Set AM_CPPFLAGS to be AM_CFLAGS too
Since it seems we are compiling in CPP mode
2012-09-14 Ted Gould <[email protected]>
Protect NM code from systems without NM running. Approved by Albert Astals Cid.
2012-09-14 Ted Gould <[email protected]>
Get teh locale.h change
2012-09-13 Ted Gould <[email protected]>
Don't let warnings kill object creation either
2012-09-13 Ted Gould <[email protected]>
Make sure that warnings are not fatal
2012-09-13 Ted Gould <[email protected]>
Protect against NM Client being NULL and also check to see if it's connected
2012-09-14 Ted Gould <[email protected]>
Add locale.h for unoptimized builds. Approved by Albert Astals Cid, jenkins.
2012-09-14 Ted Gould <[email protected]>
Add locale.h
2012-09-13 Ted Gould <[email protected]>
0.6.0
2012-09-13 Ted Gould <[email protected]>
Add translatable strings
2012-09-13 Ted Gould <[email protected]>
Hard code the help message because gettext doesn't like the string concat and fixing it is too difficult for too little gain
2012-09-12 Ted Gould <[email protected]>
Initialize Libtool
2012-09-12 Ted Gould <[email protected]>
Move the internationalization stuff so that it gets the define path stuff
2012-09-12 Ted Gould <[email protected]>
Setting up locale stuff
2012-09-12 Ted Gould <[email protected]>
Looking up the names in the translation database
2012-09-12 Ted Gould <[email protected]>
Switching over the conf file over to being translated
2012-09-12 Ted Gould <[email protected]>
Adding source files to POTFILES.in
2012-09-12 Ted Gould <[email protected]>
Making user visible strings translatable
2012-09-13 Albert Astals <[email protected]>
Parse the default server property of the json and map it to the last_used server property. Fixes: https://bugs.launchpad.net/bugs/1045838. Approved by Ted Gould, jenkins.
2012-09-13 Albert Astals <[email protected]>
Parse the DefaultServer property
2012-09-13 Albert Astals <[email protected]>
Add a test that fails regarding default/last_used server
Make the default property of the servers map to the last_used on in rls speak
2012-09-12 Ted Gould <[email protected]>
Verify the server is available before displaying
2012-09-11 Ted Gould <[email protected]>
Attaching the bug
2012-09-11 Ted Gould <[email protected]>
Make sure after verifying we revaluate the state
2012-09-11 Ted Gould <[email protected]>
Don't start a message if we don't have a URL
2012-09-11 Ted Gould <[email protected]>
Checking the return code and verifying the server based on it
2012-09-11 Ted Gould <[email protected]>
Queuing up a message to get the HEADer using soup
2012-09-11 Ted Gould <[email protected]>
Setting us up to verify the server's existance
2012-09-11 Ted Gould <[email protected]>
Have a variable to track whether we've verified the server
2012-09-11 Ted Gould <[email protected]>
Property to verify the server's existance or not
2012-09-11 Ted Gould <[email protected]>
Gettin' some soup!
2012-09-11 Ted Gould <[email protected]>
Make sure we have networking first
2012-09-12 Ted Gould <[email protected]>
Check to ensure the network is available
2012-09-12 Ted Gould <[email protected]>
Forgot an 'else'
2012-09-12 Ted Gould <[email protected]>
Make sure there is only one nm-client allocated for all the UCCS servers
2012-09-11 Ted Gould <[email protected]>
Getting fix for network builders
2012-09-11 Ted Gould <[email protected]>
When the state changes update our cache and re-evaluate our status
2012-09-11 Ted Gould <[email protected]>
Start providing the mechanism to track NM state
2012-09-11 Ted Gould <[email protected]>
Making sure to evaluate state at the end as well
2012-09-11 Ted Gould <[email protected]>
Disabling the network check on these
2012-09-11 Ted Gould <[email protected]>
Making sure to disable the network checks
2012-09-11 Ted Gould <[email protected]>
Wrong key to use
2012-09-11 Ted Gould <[email protected]>
Adding a parameter to the keyfile to remove network checking
2012-09-11 Ted Gould <[email protected]>
Splitting out the state evaluation into a helper function
2012-09-11 Ted Gould <[email protected]>
Setting up variables to track networking and to see where we are
2012-09-10 Ted Gould <[email protected]>
Grabbing libnm-glib
2012-09-10 Ted Gould <[email protected]>
Grab some signalling
2012-09-12 Ted Gould <[email protected]>
Add a state to the servers to know if they're configured. Fixes: https://bugs.launchpad.net/bugs/1047939. Approved by Albert Astals Cid, jenkins.
2012-09-11 Ted Gould <[email protected]>
Attaching bug
2012-09-11 Ted Gould <[email protected]>
Add an executable for the build system that don't have thin-client-config-agent
2012-09-10 Ted Gould <[email protected]>
Don't need a tuple there apparently
2012-09-10 Ted Gould <[email protected]>
Add a test to ensure we signaled updates
2012-09-10 Ted Gould <[email protected]>
Pulling out the set_exec code so that we can test the signal stuff
2012-09-10 Ted Gould <[email protected]>
When the server list changes emit the dbus signal
2012-09-10 Ted Gould <[email protected]>
Handle a race with an extra DBus message
2012-09-10 Ted Gould <[email protected]>
Moving where the config file is parsed to the servers aren't created until we've connected to DBus
2012-09-10 Ted Gould <[email protected]>
Watching for servers updating themselves
2012-09-10 Ted Gould <[email protected]>
Better handle the case of zero all good servers
2012-09-10 Ted Gould <[email protected]>
Updating to trunk
2012-09-10 Ted Gould <[email protected]>
Make sure to clear the builder if we don't use it
2012-09-10 Ted Gould <[email protected]>
Make the signal get emitted when we change the state
2012-08-29 Ted Gould <[email protected]>
Adding a state changed signal
2012-08-29 Ted Gould <[email protected]>
Make it so that we can be ready or not based on whether the exec is found
2012-08-29 Ted Gould <[email protected]>
Only UCCS servers that are all good as well
2012-08-29 Ted Gould <[email protected]>
Making sure we only return all good servers
2012-08-29 Ted Gould <[email protected]>
Adding a server state variable
2012-09-10 Ted Gould <[email protected]>
Parse username and password info from JSON info. Fixes: https://bugs.launchpad.net/bugs/1045836. Approved by Albert Astals Cid, jenkins.
2012-09-08 Ted Gould <[email protected]>
Attach bug number
2012-09-07 Ted Gould <[email protected]>
Check for usernames, passwords and domains
2012-09-07 Ted Gould <[email protected]>
Oops, wrong builder
2012-09-07 Ted Gould <[email protected]>
Doing the same thing on the citrix side of the house
2012-09-07 Ted Gould <[email protected]>
Parse additional values from the JSON for the RDP server
2012-09-07 Ted Gould <[email protected]>
Use the username/password/domain values in the DBus response
2012-09-07 Ted Gould <[email protected]>
Adding some variables to the server
2012-09-07 Ted Gould <[email protected]>
Adding more JSON defines
2012-09-10 Ted Gould <[email protected]>
Exit gracefully on name lost. Fixes: https://bugs.launchpad.net/bugs/1041338. Approved by Albert Astals Cid, jenkins.
2012-09-08 Ted Gould <[email protected]>
Exit gracefully on name lost
2012-08-30 Ted Gould <[email protected]>
Cleanup keyfile/json object stuff. Approved by Albert Astals Cid, jenkins.
2012-08-29 Ted Gould <[email protected]>
Switching the tests over to using the new config file format
2012-08-29 Ted Gould <[email protected]>
Fixing up the config file to match the changes
2012-08-29 Ted Gould <[email protected]>
Dropping the per-server type defines
2012-08-29 Ted Gould <[email protected]>
Switching to having a single list of servers
2012-08-29 Ted Gould <[email protected]>
Use the new function in the server object
2012-08-29 Ted Gould <[email protected]>
Fleshing out new from json
2012-08-29 Ted Gould <[email protected]>
Fleshing out the new from keyfile function
2012-08-29 Ted Gould <[email protected]>
Adding two new new functions
2012-08-29 Ted Gould <[email protected]>
0.5.0
2012-08-29 Ted Gould <[email protected]>
Recurse through domain cache checks
2012-08-27 Ted Gould <[email protected]>
Have UCCS servers look at their subservers for servers as well
2012-08-27 Ted Gould <[email protected]>
Look through all the lists
2012-08-27 Ted Gould <[email protected]>
Oops
2012-08-27 Ted Gould <[email protected]>
Switch to using the find_uri function in the server
2012-08-27 Ted Gould <[email protected]>
Adding a function to match a URI that is subclassable
2012-08-27 Ted Gould <[email protected]>
Pushing up to Server instead of UCCS
2012-08-27 Ted Gould <[email protected]>
Moving the cached domains function up into the server object
2012-08-27 Ted Gould <[email protected]>
Pulling the list handling out into a helper function
2012-08-27 Ted Gould <[email protected]>
Looking in path for execs and being more tollerant of protocol names. Approved by jenkins, Albert Astals Cid.
2012-08-24 Ted Gould <[email protected]>
Changing to be proper 'ls' path
2012-08-24 Ted Gould <[email protected]>
Look in the paths for the executables
2012-08-24 Ted Gould <[email protected]>
Being more tollerant of protocol names
2012-08-27 Ted Gould <[email protected]>
Making sure the string is the same one LightDM uses. Approved by Albert Astals Cid.
2012-08-27 Ted Gould <[email protected]>
Fixing tests to new string
2012-08-27 Ted Gould <[email protected]>
Making sure the string is the same one LightDM uses
2012-08-27 Ted Gould <[email protected]>
If we can't find the server just return a NULL list for now. Approved by Albert Astals Cid.
2012-08-24 Ted Gould <[email protected]>
Returning a NULL list of domains
2012-08-21 Ted Gould <[email protected]>
0.4.0
2012-08-21 Ted Gould <[email protected]>
Changing the bin name of the TCCA to be correct. Approved by Ted Gould.
2012-08-21 Ted Gould <[email protected]>
Fixing the name of the tcca
2012-08-21 Ted Gould <[email protected]>
Making login error a boolean on the return. Approved by jenkins, Albert Astals Cid.
2012-08-21 Ted Gould <[email protected]>
Making slmock return error on error
2012-08-21 Ted Gould <[email protected]>
Adding a test for the login failure case
2012-08-21 Ted Gould <[email protected]>
Changing the test to the new prototype
2012-08-21 Ted Gould <[email protected]>
Return the boolean to say whether we got logged in
2012-08-21 Ted Gould <[email protected]>
Adding a boolean to say where it is successful
2012-08-21 Ted Gould <[email protected]>
Implementation of getting cached domains.. Approved by Albert Astals Cid, jenkins.
2012-08-20 Ted Gould <[email protected]>
Add a test for CachedDomains interface
2012-08-20 Ted Gould <[email protected]>
Add a test to make sure the proper structure comes back
2012-08-20 Ted Gould <[email protected]>
Return the value of the function
2012-08-20 Ted Gould <[email protected]>
Adding a function in UCCS to get the cached domains
2012-08-20 Ted Gould <[email protected]>
Add a handler for getting the cached domains
2012-08-21 Ted Gould <[email protected]>
Fix strlen warning. Approved by Albert Astals Cid, jenkins.
2012-08-20 Ted Gould <[email protected]>
Include header for strlen
2012-08-20 Michael Terry <[email protected]>
Convert slmock to Python 3. Approved by Ted Gould.
2012-08-20 Michael Terry <[email protected]>
convert slmock to python3
2012-08-20 Ted Gould <[email protected]>
0.3.0
2012-08-20 Ted Gould <[email protected]>
Small fixes left over from async-command-line branch landing.. Approved by Ted Gould.
2012-08-20 Ted Gould <[email protected]>
Explicitly setting the inital value for the streams
2012-08-20 Ted Gould <[email protected]>
make json_waiters_notify static
2012-08-20 Ted Gould <[email protected]>
Changing the command line calls to be async. Approved by Antti Kaijanmäki, jenkins.
2012-08-17 Ted Gould <[email protected]>
Make sure to clear up the spawned PID if we destroy before it completes
2012-08-17 Ted Gould <[email protected]>
Make sure to respond to all the DBus messages if the object is destroyed
2012-08-17 Ted Gould <[email protected]>
Only use strdup for the password
2012-08-16 Ted Gould <[email protected]>
Merging trunk to resolve conflicts
2012-08-16 Ted Gould <[email protected]>
Dropping the unused get_json function
2012-08-16 Ted Gould <[email protected]>
Dropping the helper-script
2012-08-16 Ted Gould <[email protected]>
Switching to Async I/O for the call to the external process
2012-08-16 Ted Gould <[email protected]>
Restructuring the code so that we're kinda queuing things
2012-08-16 Ted Gould <[email protected]>
Switch around 'unlock' so that it has a callback
2012-08-17 Ted Gould <[email protected]>
Handle the case of no servers available with the correct variant type. Also add a test for it.. Approved by Albert Astals Cid, jenkins.
2012-08-16 Ted Gould <[email protected]>
Add a test to make sure lack of servers doesn't kill us
2012-08-16 Ted Gould <[email protected]>
Fix the return in the no servers case
2012-08-17 Ted Gould <[email protected]>
Create dictionaries with _parse instead of with _new to avoid vararg errors. Approved by Albert Astals Cid, jenkins.
2012-08-16 Ted Gould <[email protected]>
Switching to using parse so we don't have to create a bunch of false objects
2012-08-17 Ted Gould <[email protected]>
Add copyright headers to source files. Approved by Albert Astals Cid, jenkins.
2012-08-16 Ted Gould <[email protected]>
Adding copyright headers on the top of the source files
2012-08-16 Michael Terry <[email protected]>
Switch from libexecdir to pkglibexecdir. Approved by Ted Gould, jenkins.
2012-08-15 Michael Terry <[email protected]>
install into pkglibexecdir not libexecdir
2012-08-15 Ted Gould <[email protected]>
0.2.0
2012-08-14 Ted Gould <[email protected]>
Adds SLMock tests to the test suite
2012-08-14 Ted Gould <[email protected]>
Adding more servers for tests
2012-08-14 Ted Gould <[email protected]>
Adding the other Citrix servers
2012-08-14 Ted Gould <[email protected]>
Copy, paste, and adjust. The last step is super important.
2012-08-14 Ted Gould <[email protected]>
Adding to lovers
2012-08-14 Ted Gould <[email protected]>
Passing the right username/password to slmock
2012-08-14 Ted Gould <[email protected]>
Passing the username/password to the object
2012-08-14 Ted Gould <[email protected]>
Adding in code to do the JSON parsing, let's see if it can pass our test
2012-08-10 Ted Gould <[email protected]>
Check for the server in the list
2012-08-10 Ted Gould <[email protected]>
Adding a login test
2012-08-10 Ted Gould <[email protected]>
Dbus test fixes
2012-08-10 Ted Gould <[email protected]>
Adding the basic wrapper for all the slmock tests
2012-08-10 Ted Gould <[email protected]>
Making slmock executable
2012-08-10 Ted Gould <[email protected]>
Adding a configuration file for slmock
2012-08-10 Ted Gould <[email protected]>
Grabbing slmock from the Maza team
2012-08-14 Ted Gould <[email protected]>
First pass at JSON parsing and exec. Uses a helper script, and needs async. But works.
2012-08-14 Ted Gould <[email protected]>
Signalling when we loose connections or are being destroyed
2012-08-14 Ted Gould <[email protected]>
Making sure to mark the address as authorized if it is
2012-08-14 Ted Gould <[email protected]>
Setting the username and password in the object
2012-08-14 Ted Gould <[email protected]>
Distribute the script
2012-08-14 Ted Gould <[email protected]>
Adding in the helper
2012-08-14 Ted Gould <[email protected]>
Using a helper script just for now
2012-08-13 Ted Gould <[email protected]>
Building the variant objects from the GList of servers
2012-08-13 Ted Gould <[email protected]>
Keep an array of all the sub servers we have
2012-08-13 Ted Gould <[email protected]>
Fleshing out some object JSON stuff
2012-08-13 Ted Gould <[email protected]>
Calling into the objects so they can build themselves
2012-08-13 Ted Gould <[email protected]>
Parsing the array entries and starting to build the server objects.
2012-08-13 Ted Gould <[email protected]>
Handling the top level of the JSON file and getting out the array of servers.
2012-08-13 Ted Gould <[email protected]>
Adding some JSON lovin'
2012-08-13 Ted Gould <[email protected]>
Flesh out the flow that is needed for the unlocking of the UCCS server
2012-08-10 Ted Gould <[email protected]>
Adding the new member variables
2012-08-10 Ted Gould <[email protected]>
Handle the cases brought out by GetServersFromLogin
2012-08-10 Ted Gould <[email protected]>
Adding a couple fun little calls to get this party started!
2012-08-10 Ted Gould <[email protected]>
Fixing exec parsing
2012-08-10 Ted Gould <[email protected]>
Adding a test for exec
2012-08-10 Ted Gould <[email protected]>
Adding an 'Exec' to the config file
2012-08-10 Ted Gould <[email protected]>
Adding an exec property
2012-08-10 Ted Gould <[email protected]>
Fixes to have multiple connections
2012-08-10 Ted Gould <[email protected]>
Making sure to close the session
2012-08-10 Ted Gould <[email protected]>
White space
2012-08-10 Ted Gould <[email protected]>
Adding a test for the dbus interface
2012-08-10 Ted Gould <[email protected]>
Cleaning up the Make file to ensure we don't check coverage of the generated files
2012-08-10 Ted Gould <[email protected]>
Fixing coverage linking so it happens in the lib
2012-08-10 Ted Gould <[email protected]>
Adding a real test to look at the dbus interface
2012-08-10 Ted Gould <[email protected]>
Adding in a dummy test
2012-08-10 Ted Gould <[email protected]>
Grab ourselves some dbus test libs
2012-08-10 Ted Gould <[email protected]>
Cut and paste error
2012-08-10 Ted Gould <[email protected]>
Add a property for read only domains.
2012-08-09 Ted Gould <[email protected]>
Abstracting out server objects
2012-08-09 Ted Gould <[email protected]>
Adding a variant test
2012-08-09 Ted Gould <[email protected]>
Adding a test for keyfile handling
2012-08-08 Ted Gould <[email protected]>
Cleaning these up to make these functions work a bit easier.
2012-08-08 Ted Gould <[email protected]>
Making the test more real and actually checking something
2012-08-08 Ted Gould <[email protected]>
Adding a first test with all of the fun that brings
2012-08-08 Ted Gould <[email protected]>
Adding in a tests directory
2012-08-08 Ted Gould <[email protected]>
Moving all the new server code into it's own library so that we can test it easier.
2012-08-08 Ted Gould <[email protected]>
Create the objects from the config file and use them to build the variants
2012-08-08 Ted Gould <[email protected]>
Put in a function to build each of the servers from a Keyfile
2012-08-08 Ted Gould <[email protected]>
Adding some properties for that UCCS server
2012-08-08 Ted Gould <[email protected]>
We need a UCCS server type as well
2012-08-08 Ted Gould <[email protected]>
Hmm, put those in quite the wrong place
2012-08-08 Ted Gould <[email protected]>
Adding some generic get_properties functions
2012-08-08 Ted Gould <[email protected]>
Clean up the strings
2012-08-08 Ted Gould <[email protected]>
Restructuring things slightly so that the object type determines the type and the server class takes care of the base tuple building
2012-08-08 Ted Gould <[email protected]>
Adding some generic properties to the super class
2012-08-08 Ted Gould <[email protected]>
Adding an RDP server class
2012-08-08 Ted Gould <[email protected]>
Adding a Citrix subclass
2012-08-08 Ted Gould <[email protected]>
Adding a server base class
2012-08-09 Ted Gould <[email protected]>
Noting that there may be some optional fields
2012-08-09 Ted Gould <[email protected]>
Adding in a usage overview diagram
2012-08-08 Ted Gould <[email protected]>