summaryrefslogtreecommitdiff
path: root/modules/poll.module
Commit message (Collapse)AuthorAge
* - Moved most of the options in structure.module to node.module. TheDries Buytaert2001-06-02
| | | | | | | | | | | | | | | | | | | | | | | | | | | structure.module either needs work, or replacement by index.module: see "admin > node > node settings". It will do for now and it can always made better when we can think of a better solution; it is the best I could think of. Now what? index.module or structure.module? I'm currently pro index.module. - Drastically simplified "variable.inc". - Removed most dependecies on structure.module from all content related modules. Thus making our modules more modular. ;) - Fixed calculation glitch in queue.module. - Fixed potential function name clash/conflict in rating.module, and simplified some code on my way. - Started removing all global variables $status and $rstatus. Global variables are "yucky" so in near future, we will replace all global $status variables by a call to node_status(). Originally, $status was only introduced as a temporary hack and nothing is as permanent as a temporary hack so I took it out when still possible. - Changed the watchdog messages a bit.
* Shrunk the poll output... it was rather big in full-view :)Steven Wittens2001-06-01
|
* Hmmm for some reason the \r\n's in the poll output where being changed into ↵Steven Wittens2001-05-24
| | | | <br>'s... is that because of the check_output() legacy functions inside the themes? In anycase, I removed em.
* - Replaced $theme->story() by a more generic $theme->node(). All themesDries Buytaert2001-05-24
| | | | required an update (and so will your custom themes).
* Fixed the poll block being messed up a lot. Stupid objects and arrays mixup :PSteven Wittens2001-05-23
| | | | Please update drop.org as soon as possible, coz my crappy poll.mod is making drupal look bad :(
* Slight improvement to the "choiceboxes" thingie.Steven Wittens2001-05-22
|
* Let's hope fixing bugs will be just as easy next time :)Steven Wittens2001-05-22
| | | | This baby is fixed.
* Disabled the buggy cron for now. Will fix tomorrow.Steven Wittens2001-05-22
|
* (Hopefully) a fix for the "n.active" watchdog error... forgot that ↵Steven Wittens2001-05-22
| | | | node_get_XXXX() only queries node properties.
* - Removed includes/timer.inc: it has been integrated in common.inc.Dries Buytaert2001-05-20
| | | | | | | | | - Fixed a bug in node.php: UnConeD forgot to update 1 node_get_object(). - I changed the look of theme_morelink() a bit: it might not look better, but at least the output is "correct". - Various small improvements.
* - Improved node_get() so that it will try to skip one additional queryDries Buytaert2001-05-20
| | | | | | if possible (ie. to reduce the number of queries). - Automatically removed tabs and trailing spaces from the poll.module.
* - Changed the node_get_object() and node_get_array() functions to allow ↵Steven Wittens2001-05-20
| | | | | | | | multiple conditions - Added the "delete" hook for node-modules. When called, a module should do additional clean-up if necessary. - Updated all node-modules
* CHANGESDries Buytaert2001-05-20
| | | | | | | | | | | | | | | | | | | | | | - Redid settings.module and even renamed it to conf.module. * Settings are now grouped in basic categories like "system settings", "module settings" and "filters". * Added new settings to make Drupal easier to configure and to make some aspects like the watchdog scale better. - Renamed includes/settings.php to includes/conf.php. - Added filter support to conf.module and introduced filter hooks so modules can implement and export new filters. Example filters are an HTML filter (implemented), a profanity filter, an url converter, ASCII smileys to images filter and so on ... - Reworked the check_* functions: user contributed content/input is only verified and filtered once in its lifespan. NOTES - Altough this is a large commit, no database changes are required.
* - Fixed the errors when adding a new poll.Steven Wittens2001-05-20
| | | | - Cleaned up the coding style
* Added poll.module, a poll module :)Steven Wittens2001-05-19
It's mainly intended as a sideblock-element as there's no real use in having them show up on the mainpage. There's no real poll-browsing system for now either. I still need to write documentation, and I'm not yet satisfied with the node-output (non-sideblock). I should be able to improve it once the $theme->nodebox ideas get finalized.