Ignore:
Timestamp:
03/09/14 14:23:42 (11 years ago)
Author:
hendrikvanantwerpen
Message:
  • Enable/disable buttons on content change.
  • One place to do date formatting, because it was going wrong again.
  • Serialize questions in survey properly.
  • _ComplexValueMixin consumes submit events, but does trigger outer forms if present.
  • Trigger dialog show/hide for login only after previous effect is finished.
  • Check that documents are actually valid, not just that validator returned a result.
  • Validate email and timestamp formats.
  • Prepared for live runs.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • Dev/trunk/src/server/config/couchdb-schema.json

    r487 r492  
    3636          "_rev": { "type": "string" },
    3737          "categories": { "type": "array", "items": { "type": "string" } },
    38           "code": { "type": "string" },
     38          "code": { "type": "string", "minLength": 1 },
    3939          "content": { "type": "array", "items": { "$ref": "#/definitions/content/any" } },
    4040          "description": { "type": "string" },
     
    5252          "_id": { "type": "string" },
    5353          "_rev": { "type": "string" },
     54          "description": { "type": "string" },
    5455          "publicationDate": { "type": "string", "format": "datetime" },
    5556          "questions": { "type": "array", "items": { "$ref": "#/definitions/docs/Question" } },
     
    6768          "description": { "type": "string" },
    6869          "endDate": { "type": "string", "format": "datetime" },
     70          "liveName": { "type": "string" },
    6971          "mode": { "type": "string", "enum": [ "open", "closed" ] },
    70           "secret": { "type": "string", "minLength": 8 },
     72          "respondentCanDeleteOwnResponse": { "type": "boolean" },
     73          "secret": { "type": "string", "minLength": 1 },
    7174          "startDate": { "type": "string", "format": "datetime" },
    7275          "survey": { "$ref": "#/definitions/docs/Survey" },
     
    8386          "_rev": { "type": "string" },
    8487          "answers": { "type": "object" },
     88          "email": { "type": "string", "format": "email" },
    8589          "publicationDate": { "type": "string", "format": "datetime" },
    86           "secret": { "type": "string", "minLength": 8 },
     90          "secret": { "type": "string", "minLength": 1 },
    8791          "surveyRunId": { "type": "string" }
    8892        },
Note: See TracChangeset for help on using the changeset viewer.