コード例 #1
0
ファイル: http_api.py プロジェクト: sylvestre/indico
    def api_recordingManager(self, aw):
        if not self._indicoID or not self._cdsID:
            raise HTTPAPIError('A required argument is missing.',
                               apache.HTTP_BAD_REQUEST)

        success = createIndicoLink(self._indicoID, self._cdsID)
        return {'success': success}
コード例 #2
0
ファイル: http_api.py プロジェクト: pedrogaudencio/indico
    def api_recordingManager(self, aw):
        if not self._indicoID or not self._cdsID:
            raise HTTPAPIError('A required argument is missing.', apache.HTTP_BAD_REQUEST)

        success = createIndicoLink(self._indicoID, self._cdsID)
        return {'success': success}
コード例 #3
0
ファイル: services.py プロジェクト: Ictp/indico
    def _getAnswer(self):
        # Create the Indico link
        createIndicoLink(self._IndicoID, self._CDSID)

        return 'None' # wtf, but let's keep the return value there used to be before..
コード例 #4
0
ファイル: services.py プロジェクト: sylvestre/indico
    def _getAnswer(self):
        # Create the Indico link
        createIndicoLink(self._IndicoID, self._CDSID)

        return 'None'  # wtf, but let's keep the return value there used to be before..