Terry Richards wrote:
using drupal-cvs, event-cvs: when i choose create content, the submit event form has the start and end time, Title and Body, but the rest does not show up as below, just the headers. i cut and pasted the headers and how the forms showed up is beyond me.
Input format Filtered HTML
- Allowed HTML tags: <a> <em> <strong> <cite> <code> <ul> <ol> <li>
<dl> <dt> <dd>
- Lines and paragraphs break automatically.
PHP code
- You may post PHP code. You should include <?php ?> tags.
Full HTML
- Lines and paragraphs break automatically.
More information about formatting options http://maralagocay.dyndns.info/filter/tips
Sign up settings Send signups to: Email address where notification of new signups will be sent. Leave blank for no notifications Send confirmation Confirmation email: Email sent to user upon signup. Supported string substitutions: %event, %time, %username, %useremail, %info (user signup information) Send reminder day(s) before event Reminder email: Email sent to user as an event reminder. Supported string substitutions: %event, %time, %username, %useremail
Authoring information Authored by: Leave blank for /Anonymous/. Authored on: Format: 2006-04-13 03:17:37 +0000 (leave blank to use the time of form submission)
Publishing options Published In moderation queue Promoted to front page Sticky at top of lists Create new revision
Comment settings Disabled Read only Read/Write
URL path settings Optionally specify an alternative URL by which this node can be accessed. For example, type "about" when writing an about page. Use a relative path and don't add a trailing slash or the URL alias won't work.
Menu settings Title: The name to display for this link. Description: The description displayed when hovering over a menu item. Parent item: Weight: Optional. In the menu, the heavier items will sink and the lighter items will be positioned nearer the top.
File attachments
................................................................................................................................................................
.................................................................................................................................................................
only the lines
-Input format--------------------------------- -Sign up settings----------------------------- -Authoring information--------------------- -Publishing options-------------------------- -Comment settings--------------------------- -URL path settings--------------------------- -Menu settings--------------------------------- -File attachments------------------------------
show without the hyperlink highlighting and no forms other than the ones for Start and End, Title and Body. how can i get the hyperlinked lines and forms to be viewable?
/|\
ps the same sort of lines from Administer->settings work just fine...
also i just applied the event.modules.52481.patch by hand as it was broken and fixed the losing an hour when in 12 hr mode problem. seems funny that a both the 4.7.0 and the new cvs version would still be broken. here is the patch i used: --- event.module.old 2006-03-25 13:14:46.000000000 -0800 +++ event.module 2006-03-25 13:11:22.000000000 -0800 @@ -1368,7 +1368,11 @@ // ...hours if (variable_get('event_ampm', '0')) { $hour_format = t('g'); - $hours = range(1, 12); + + $first_hour = 1; + $last_hour = 12; + for ($i = $first_hour; $i <= $last_hour; $i++) $hours[$i] = $i; + $am_pms = array('am' => t('am'), 'pm' => t('pm')); } else {
so in conclusion, what i am asking is what controls the output of http://site.com/node/add/event as the other pages such as create content-> page, blog, poll all have working hyperlinks for such things as Authoring information, Publishing options, File attachments, Menu settings...
/|\