Gui progress

Version 28 (Adrian Georgescu, 07/19/2009 10:51 am)

1 1 Adrian Georgescu
[[TOC(gui_progress, depth=3)]]
2 1 Adrian Georgescu
3 1 Adrian Georgescu
= Critical issues =
4 1 Adrian Georgescu
5 5 Adrian Georgescu
Must be solved first.
6 1 Adrian Georgescu
7 4 Adrian Georgescu
 1. '''Audio sessions''' to do not work:
8 1 Adrian Georgescu
  * When making audio session: (AttributeError: 'Session' object has no attribute 'end_time') and (AttributeError: 'Session' object has no attribute 'on_hold')
9 1 Adrian Georgescu
  * Failed sessions remain indefinitely in the drawer
10 1 Adrian Georgescu
  * Voice calls do not update the status of the drawer
11 1 Adrian Georgescu
  * There is no microphone input, nothing is heard on the other side
12 1 Adrian Georgescu
  * Incoming session display different elements than outgoing, no session information or buttons are displayed
13 12 Adrian Georgescu
 1. In chat window, after typing a message and enter the scrollbar '''moves up by itself'''
14 4 Adrian Georgescu
 1. When text is pasted, as opposed to typed on the keyboard, the '''pasted content''' is sent over the media session but is not displayed in the history window
15 11 Adrian Georgescu
 1. Display the '''negotiated codec''' next to audio and use colors from email snapshot
16 11 Adrian Georgescu
 1. '''session duration''' for both incoming and outgoing is missing
17 11 Adrian Georgescu
 1. '''Expand the session frame horizontally''' to fill on the drawer to its full width and draw just one line between two voice calls
18 4 Adrian Georgescu
 1. '''Stun server''' addresses cannot be set, they seem to inherit the results found in DNS  
19 1 Adrian Georgescu
 1. '''general.rtp.local_ip''': Can't set option local_ip illegal local IP address value: auto
20 1 Adrian Georgescu
 1. '''general.rtp.port_range''': (AttributeError: 'PortRangeOption' object has no attribute 'save')
21 1 Adrian Georgescu
 1. '''general.sip.transports''' cannot be saved
22 10 Adrian Georgescu
 1. '''general.audio.codec_list''' cannot be saved and displays duplicate codecs
23 10 Adrian Georgescu
 1. '''account.audio.codec_list''' cannot be saved and displays duplicate codecs
24 10 Adrian Georgescu
 1. '''account.msrp.relay''' cannot be set: global name 'MSRPRelayAddres' is not defined
25 16 Adrian Georgescu
 1. When '''disable account''' in preferences, it does not get removed from the main interface account lists
26 18 Adrian Georgescu
 1. When enable a new account, the main interface displays '''no account selected''' anymore
27 28 Adrian Georgescu
 1. On startup, select the default account in the account lists 
28 28 Adrian Georgescu
 1. When select a different account, mark it as '''default'''
29 18 Adrian Georgescu
30 28 Adrian Georgescu
31 1 Adrian Georgescu
= Engine =
32 1 Adrian Georgescu
33 1 Adrian Georgescu
 * If '''engine is dead''', the message  '''no sip account is active''' is displayed but is unclear what the real reason is. An engine stop must be logged to general debug window
34 1 Adrian Georgescu
 * On startup, check if the audio device from the preferences '''is available''' in the detected devices list. If not, set the device to the system default device and display a warning to the user to set the devices in the preferences
35 1 Adrian Georgescu
36 23 Adrian Georgescu
 * If the engine has stopped (because of some crash) the preferences do not show anymore:
37 23 Adrian Georgescu
38 23 Adrian Georgescu
{{{
39 26 Adrian Georgescu
Blink[26992:10b] <type 'exceptions.AttributeError'>: 'Engine' object has no attribute 'output_devices'
40 23 Adrian Georgescu
}}}
41 23 Adrian Georgescu
42 23 Adrian Georgescu
By setting the wrong TLS certificate files, the middleware does not start anymore:
43 23 Adrian Georgescu
44 23 Adrian Georgescu
{{{
45 23 Adrian Georgescu
[Session started at 2009-07-19 10:37:39 +0200.]
46 25 Adrian Georgescu
Traceback (most recent call last):
47 27 Adrian Georgescu
  File "/Users/adigeo/work/blink/build/Debug/Blink.app/Contents/Resources/BlinkAppDelegate.py", line 40,
48 27 Adrian Georgescu
   in applicationDidFinishLaunching_
49 25 Adrian Georgescu
    self.backend.init(options)
50 25 Adrian Georgescu
  File "/Users/adigeo/work/blink/build/Debug/Blink.app/Contents/Resources/SIPManager.py", line 108, in init
51 25 Adrian Georgescu
    self._app.start(config_backend=config_be)
52 25 Adrian Georgescu
  File "/Library/Python/2.5/site-packages/sipsimple/api.py", line 85, in start
53 25 Adrian Georgescu
    trace_sip=settings.logging.trace_sip,
54 25 Adrian Georgescu
  File "/Library/Python/2.5/site-packages/sipsimple/engine.py", line 75, in start
55 25 Adrian Georgescu
    self._ua = PJSIPUA(self._handle_event, **init_options)
56 25 Adrian Georgescu
  File "core.ua.pxi", line 66, in sipsimple.core.PJSIPUA.__init__ (sipsimple/core.c:23189)
57 25 Adrian Georgescu
  File "core.lib.pxi", line 106, in sipsimple.core.PJSIPEndpoint.__cinit__ (sipsimple/core.c:6231)
58 25 Adrian Georgescu
  File "core.lib.pxi", line 167, in sipsimple.core.PJSIPEndpoint._start_tls_transport (sipsimple/core.c:6884)
59 25 Adrian Georgescu
PJSIPError: Could not create TLS transport: Error loading/verifying SSL CA list file (PJSIP_TLS_ECACERT)
60 25 Adrian Georgescu
None
61 23 Adrian Georgescu
}}}
62 25 Adrian Georgescu
63 23 Adrian Georgescu
64 1 Adrian Georgescu
= Chat window =
65 1 Adrian Georgescu
66 1 Adrian Georgescu
 * Change title of the chat window to '''remote@domain'''
67 1 Adrian Georgescu
 * '''Hide the empty scroll bar''' of the text input box
68 1 Adrian Georgescu
 * Display a status bar on the bottom of the window and '''show the connection information''' in it instead of the main window
69 1 Adrian Georgescu
 * Display the Chat recipient in a '''tab at the bottom of the window'''
70 1 Adrian Georgescu
 * Play an audible message when a message is received, based on '''silent''' and '''general.message_received_sound''' settings
71 1 Adrian Georgescu
 * Play an audible message when a message is sent, based on silent and '''general.message_sent_sound''' settings
72 4 Adrian Georgescu
 * '''Throttle playback''' of audible notifications to maximum one every 3 seconds 
73 1 Adrian Georgescu
 * Append chat messages to '''chat.history_directory/sip_account/YYYYMMDD-recipient.txt'''
74 1 Adrian Georgescu
 * For each message that appears in the history window:
75 1 Adrian Georgescu
  * First display a rounded thin rectangle with the '''recipient''' on the left and '''full date''' on the right side of the text in history with either light blue or grey background depending on which party is typing it , display the full FROM headers
76 1 Adrian Georgescu
  * Then display the content of the message
77 1 Adrian Georgescu
 * When dragging a recipient tab outside of the window '''spawn a new chat window''' and move the session into it
78 2 Adrian Georgescu
 * Display the number of '''un-read messages''' in non-visible tabs in a red circle over the tab name
79 1 Adrian Georgescu
80 6 Adrian Georgescu
= Contacts =
81 21 Adrian Georgescu
82 22 Adrian Georgescu
 * '''Hide display name''', show only the SIP address in the account selection
83 21 Adrian Georgescu
 * Remove the blue '''is-selected''' rectangle that appears around the active account
84 21 Adrian Georgescu
 * '''Replace''' 3333 with 3333@sip2sip.info and 4444 with 4444@sip2sip.info
85 1 Adrian Georgescu
 * When searching contacts, do not display '''Add button''' if the contact already exists
86 22 Adrian Georgescu
 * Show the '''Display name''' if set for the Contact, otherwise the SIP address
87 19 Adrian Georgescu
 * Add new '''contact window fields''': SIP address, Display name and Group
88 19 Adrian Georgescu
 * '''Delete the contact''' when pressing delete, show a confirm window
89 19 Adrian Georgescu
 * When '''searching a contact''' and starting a session to it: (NameError: global name 'row' is not defined)
90 19 Adrian Georgescu
91 19 Adrian Georgescu
= Preferences =
92 19 Adrian Georgescu
93 24 Adrian Georgescu
 * Properly '''align''' horizontally the Advanced settings
94 24 Adrian Georgescu
 * Display '''Enabled:''' on the left side of the checkbox instead of the right
95 19 Adrian Georgescu
 * Change drop down box of general chapters to a tool bar with icons
96 19 Adrian Georgescu
 * Delete the '''little bar on top of the account list''', is redundant
97 19 Adrian Georgescu
 * '''Delete Enabled checkbox''' in the account section, leave only the checkbox in the account list
98 19 Adrian Georgescu
 * Display the '''bonjour account''' at the end of the list
99 19 Adrian Georgescu
 * Hide the vertical and horizontal '''scroll bars''' when no scrollbar is needed
100 19 Adrian Georgescu
 * '''De-register''' the account and remove it from the account list in main interface when disable the account
101 19 Adrian Georgescu
 * When '''enable an account''', select it in the main interface account list
102 19 Adrian Georgescu
 * Add a '''Reset option''' to reset advanced settings to default values
103 19 Adrian Georgescu
 * Cannot '''delete Bonjour''' account: (TypeError: cannot delete BonjourAccount instance with default id). This is correct, do  not allow the user to attempt to delete it. Bonjour can only be enabled/disabled but not deleted.
104 19 Adrian Georgescu
 * For '''account.ringtone''' advanced setting, the default setting must be inherited from '''general.ringtone.inbound'''
105 19 Adrian Georgescu
 * '''general.message_received_sound''' does not fit in window
106 19 Adrian Georgescu
 * Allow ordering of accounts in the account list
107 19 Adrian Georgescu
108 6 Adrian Georgescu
Hide the following settings:
109 6 Adrian Georgescu
110 6 Adrian Georgescu
 * global.chat.accept_types
111 6 Adrian Georgescu
 * global.chat.accept_wrapped_types
112 6 Adrian Georgescu
 * global.sip.ignore_missing_ack
113 6 Adrian Georgescu
 * account.presence.publish_interval
114 6 Adrian Georgescu
 * account.presence.subscribe_interval
115 13 Adrian Georgescu
 * account.presence.subscribe_rls_services
116 13 Adrian Georgescu
 * account.presence.subscribe_xcap_diff
117 6 Adrian Georgescu
118 6 Adrian Georgescu
Display SIP registration state in '''account.advanced.registration''' section.
119 6 Adrian Georgescu
120 1 Adrian Georgescu
= Sessions =
121 1 Adrian Georgescu
122 2 Adrian Georgescu
 * Center the '''drawer title''' and make it look like a title bar
123 2 Adrian Georgescu
 * Show the '''drawer maximized''' horizontally
124 2 Adrian Georgescu
 * Center align '''Hangup All and Conference buttons'''
125 2 Adrian Georgescu
 * Only one audio session can be '''active at a time''', when answering a new audio session, all other existing audio sessions must be put on hold
126 4 Adrian Georgescu
 * When an incoming request has '''chat only''' and the from header is in the contact list, automatically accept the session
127 1 Adrian Georgescu
 * Highlight the active session with a '''bold''' border
128 2 Adrian Georgescu
 * When a session has ended, display it for '''5 more seconds''' then hide it and shuffle the deck 
129 2 Adrian Georgescu
 * If all sessions have ended, the '''drawer must be closed'''
130 2 Adrian Georgescu
 * Add an item to the '''Session menu''' to show the drawer, if it was closed
131 1 Adrian Georgescu
 * We need a solution to enter DTMF tones to an audio session, now the keyboard focus is on the search bar
132 1 Adrian Georgescu
133 1 Adrian Georgescu
= Presence bar =
134 1 Adrian Georgescu
135 1 Adrian Georgescu
Make it as high as the contacts (two rows high).
136 1 Adrian Georgescu
137 2 Adrian Georgescu
 * Show '''own photo''' to the left
138 2 Adrian Georgescu
 * Show '''Display name''' next to the photo on top row
139 1 Adrian Georgescu
 * Show '''presence activity''' next to name on top row
140 1 Adrian Georgescu
 * Show '''activity note''' on second row
141 7 Adrian Georgescu
142 7 Adrian Georgescu
= Debug window =
143 7 Adrian Georgescu
144 7 Adrian Georgescu
 * Display all traces in a '''debug window''' with tabs for each debug type
145 7 Adrian Georgescu
 * Add a '''General messages''' window to the Debug menu, first item
146 1 Adrian Georgescu
147 1 Adrian Georgescu
= GUI settings =
148 1 Adrian Georgescu
149 1 Adrian Georgescu
Remember the following settings between restarts:
150 1 Adrian Georgescu
151 28 Adrian Georgescu
 * '''Main window''' size and screen position (done)
152 2 Adrian Georgescu
 * '''Debug window''' and the selected tabe
153 1 Adrian Georgescu
 * Status of '''contact groups''' - colapsed/expanded and their order
154 17 Adrian Georgescu
 * SIP '''accounts order''' list
155 14 Adrian Georgescu
156 14 Adrian Georgescu
= Middleware changes =
157 14 Adrian Georgescu
158 14 Adrian Georgescu
 * Move '''account.outbound_proxy''' to '''account.sip.outbound_proxy'''
159 14 Adrian Georgescu
 * It seems that the stun servers are learned from the DNS and cannot be overwritten in settings, they show up automatically
160 14 Adrian Georgescu
 * if I set the relay to abcd.com you must use the default standard port of 2855, now is set to zero: relay = abcd.com:0;transport=tls
161 14 Adrian Georgescu
 * Append dummy to the lists of available audio devices
162 14 Adrian Georgescu
 * We need a solution to accept a session without a 180- ringing. For instance we can have automatic answer based on various preferences.
163 14 Adrian Georgescu
 * Move '''general.audio.codec_list''' to '''general.rtp.audio_codecs'''
164 14 Adrian Georgescu
 * Move '''account.audio.codec_list''' to '''account.rtp.audio_codecs'''
165 14 Adrian Georgescu
 * Move '''account.audio.srtp_encryption''' to '''account.rtp.srtp_encryption'''
166 14 Adrian Georgescu
 * Delete '''account.audio''' section