upCommentBox

by Unknown Person
A plug-and-play utility and demo demonstrating the usage of browser forms to create a player comment submission system.
ID:91612
 
upCommentBox is a plug-and-play utility and demo of the usage of the library upForm. The code is included with only a few lines of code allowing the client procedures to be called. This environment is also a demo in that it demonstrates how the functions and features of upForm can be used to create interesting and useful browser interfaces using the library. upCommentBox also saves the comments into a savefile.

Release Info:
Version 1.0 (Mar 24 08)
- Utility released
Version 1.1 (Mar 26 08)
- the authorized list is now updated via upCB_Authorized(), which should only be called in world/New() to add keys to the authorized list. Refer to to the usage instructions. (Gughunter)

Usage

In order to use this utility, you should allow players to use two main procs and one variable:

client/upCB_Submit() [proc]
- Call this when you want a player to submit a new comment
client/upCB_Manage() [proc]
- Call this when you want an administrator to be able to manage existing comments
upCB_authorized [var]
- Initialize this value at runtime to a list to determine what keys are authorized to manage comments. Values are stored in canonical form (therefore, the key "Unknown Person" in canonical form would be "unknownperson"). This value is essentially obtained by using client.ckey, or using ckey() to the key string

The easiest way to use library is to just define verbs for the submit and manage button, but only allow authorized keys to use the manage verb. Don't forget to initialize upCB_authorized, or nobody will be able to manage comments.