Anforderungen  |   Konzepte  |   Entwurf  |   Entwicklung  |   Qualitätssicherung  |   Lebenszyklus  |   Steuerung
 
 
 
 


Quelle  CustomCorsResponse.py   Sprache: Python

 
import json

def main(request, response):
  '''Handler for getting an HTTP response customised by the given query
  parameters.

  The returned response will have
    - HTTP headers defined by the 'headers' query parameter
      - Must be a serialized JSON dictionary mapping header names to header
        values
    - HTTP status code defined by the 'status' query parameter
      - Must be a positive serialized JSON integer like the string '200'
    - Response content defined by the 'content' query parameter
      - Must be a serialized JSON string representing the desired response body
  '''
  def query_parameter_or_default(param, default):
    return request.GET.first(param) if param in request.GET else default

  headers = json.loads(query_parameter_or_default(b'headers', b'"{}"'))
  for k, v in headers.items():
    response.headers.set(k, v)

  # Note that, in order to have out-of-the-box support for tests that don't call
  #   setup({'allow_uncaught_exception': true})
  # we return a no-op JS payload. This approach will avoid syntax errors in
  # script resources that would otherwise cause the test harness to fail.
  response.content = json.loads(query_parameter_or_default(b'content',
    b'"/* CustomCorsResponse.py content */"'))
  response.status_code = json.loads(query_parameter_or_default(b'status',
    b'200'))

Messung V0.5
C=94 H=97 G=95

¤ Dauer der Verarbeitung: 0.1 Sekunden  (vorverarbeitet)  ¤

*© Formatika GbR, Deutschland






Wurzel

Suchen

Beweissystem der NASA

Beweissystem Isabelle

NIST Cobol Testsuite

Cephes Mathematical Library

Wiener Entwicklungsmethode

Haftungshinweis

Die Informationen auf dieser Webseite wurden nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit, noch Qualität der bereit gestellten Informationen zugesichert.

Bemerkung:

Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.






                                                                                                                                                                                                                                                                                                                                                                                                     


Neuigkeiten

     Aktuelles
     Motto des Tages

Software

     Produkte
     Quellcodebibliothek

Aktivitäten

     Artikel über Sicherheit
     Anleitung zur Aktivierung von SSL

Muße

     Gedichte
     Musik
     Bilder

Jenseits des Üblichen ....

Besucherstatistik

Besucherstatistik

Monitoring

Montastic status badge