diff options
Diffstat (limited to 'src/engine/Event.cpp')
-rw-r--r-- | src/engine/Event.cpp | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/src/engine/Event.cpp b/src/engine/Event.cpp index e48d32a2..f79c975a 100644 --- a/src/engine/Event.cpp +++ b/src/engine/Event.cpp @@ -26,6 +26,34 @@ * HTTP and WebDAV standards as closely as possible.</p> */ + +/** \page methods + * <h2>POST</h2> + * As per HTTP (RFC2616 S9.5). + * + * Append properties to a graph object. + * + * An object can have several properties with a single predicate. + * POST appends properties without modifying or removing existing properties. + */ + + +/** \page methods + * <h2>PUT</h2> + * As per HTTP (RFC2616 S9.6). + * + * Set properties of a graph object, or create an object. + * + * An object can have several properties with a single predicate. + * \li If the object does not yet exist, the message must contain sufficient + * information to create the object (e.g. known rdf:type properties, etc.) + * \li If the object does exist, a PUT removes all existing object properties + * with predicates that match any property in the message, then adds all + * properties from the message. + */ + + + namespace Ingen { |