Changeset 1532
- Timestamp:
- 01/18/08 15:47:16 (7 months ago)
- Files:
-
- phoneyc/trunk/ActiveX.py (modified) (3 diffs)
- phoneyc/trunk/modules/jscript/RtspVaPgCtrl.js (added)
- phoneyc/trunk/tests/4932.html (added)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
phoneyc/trunk/ActiveX.py
r1529 r1532 51 51 self.clsid['A86934DA-C3D6-4C1C-BD83-CA4F14B362DE'] = PTZCamPanel() 52 52 self.clsid['F3D0D36F-23F8-4682-A195-74C92B03D4AF'] = QvodCtrl() 53 self.clsid['361E6B79-4A69-4376-B0F2-3D1EBEE9D7E2'] = RtspVaPgCtrl() 53 54 54 55 self.clsname = {} … … 68 69 self.clsname['awApi4.AnswerWorks.1'] = AnswerWorks() 69 70 self.clsname['QvodInsert.QvodCtrl.1'] = QvodCtrl() 71 self.clsname['RtspVaPgDecoder.RtspVaPgCtrl.1'] = RtspVaPgCtrl() 70 72 71 73 # set up the pure JScript version … … 343 345 self.description = 'Qvod Player QvodCtrl Class ActiveX Control' 344 346 347 class RtspVaPgCtrl(ActiveX): 348 def __init__(self): 349 self.js_src = self.load_js_src('RtspVaPgCtrl.js') 350 self.classname = 'RtspVaPgCtrl' 351 self.cve_id = ('CVE-NOMATCH', ) 352 self.description = 'RTSP MPEG4 SP Control' 353
