Eine aufbereitete Darstellung der Quelle

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

Benutzer

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 in Prozent
C=93 H=95 G=93

¤ Dauer der Verarbeitung: 0.20 Sekunden  (vorverarbeitet am  2026-06-07) ¤

*© Formatika GbR, Deutschland






Wurzel

Suchen

PVS Prover

Isabelle Prover

NIST Cobol Testsuite

Cephes Mathematical Library

Vienna Development Method

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

     Quellcodebibliothek
     Eigene Quellcodes
     Fremde Quellcodes
     Suchen

Aktivitäten

     Artikel über Sicherheit
     Anleitung zur Aktivierung von SSL

Muße

     Gedichte
     Musik
     Bilder

Jenseits des Üblichen ....
    

Besucherstatistik

Besucherstatistik