Manila blogs have a nice feature in their calendar whereby only days with activity are hyperlinked. That way, it is easy to navigate to that day's content.

Also, perhaps we should make a version of that calendar which is displayed on each blog and hyperlinks to past blog entries by that user.

Comments

Anonymous’s picture

I would really love to see a reusable calendar for various purposes. It could get confusing if there were 5 blocks to choose from. Not sure how to make that work though.

killes@www.drop.org’s picture

Moshe:
Manila blogs have a nice feature in their calendar whereby only days with activity are hyperlinked. That way, it is easy to navigate to that day's content.
---

The event-calendar, does something similar: Days with events get a different colour.

Kjartan:
I would really love to see a reusable calendar for various purposes. It could get confusing if there were 5 blocks to choose from. Not sure how to make that work though.
---

I'd make a selector like on the search module.

+--------+
| Stories|
+--------+
| Events |
+--------+
| Blogs |
+--------+

or a series of checkboxes above/below the actual calendar.

Thinking about it, the technical point of this might get difficult.

You could make every date a checkbox too and offer a submit button, too. But this would be three clicks at least instead of one.

Eagle-i’s picture

Component: Code » node.module

When i click on event it opens a page with dropdown menu with a specific date and doesn't show any events. How am I to know what exact date there is an event if i don't use the event calendar on the right or left?

Is it possible that someone adds the following features:

- show a (big) calendar on the page instead of dropmenu where it shows you appointments on different dates
- have the possibility of repeating events (of the same); for example a training given on 2 saturdays in a particular month, as a sequel?
- use different calendars if needed for different 'projects', belonging to for example different terms in the taxonomy?

killes@www.drop.org’s picture

Component: node.module » Other

Eagle-i

> When i click on event it opens a page with dropdown menu
> with a specific date and doesn't show any events.

It is supposed to show the next n events. Have you set "access events"?

I'll gladly accept patches implementing the other features you asked for.

Cheers,
Gerhard

moshe weitzman’s picture

Component: Other » archive.module
Priority: Major » Normal

Amy Hoy contributed a query today on the Devel list. Perhaps someone will be inspired to finish this request. The query is:

"select dayofmonth(from_unixtime(created)) as cal_day from node where
year(from_unixtime(created)) = year(from_unixtime($calrequest)) and
month(from_unixtime(created)) = month(from_unixtime($calrequest)) group by
cal_day;"

$calrequest is, of course, the unix time equivalent of the
(day)/month/year of calendar being requested. It's just a placeholder for
the variable that no doubt already exists in the module.

al’s picture

Assigned: Unassigned » al
al’s picture

Patch in my sandbox.

al’s picture

Fixed in CVS.

al’s picture