Textpattern CMS support forum
You are not logged in. Register | Login | Help
- Topics: Active | Unanswered
#397 2007-07-16 13:31:50
Re: [plugin] [ORPHAN] zem_event [flexible integrated event management]
thanks for your reply, matthew. it’s indeed working on my test install (same server environment). I’ve narrowed the problem down to gbp_permanent_links. There seems to be a conflict although, from my understanding the calendar part shouldn’t be affected by any of my custom permanent link rules.
for the calendar display, i’ve set up a section called “events” and the events are associated to articles in the section “news”, the events section is solely used for displaying the calendar. and the corresponding permanent link rule is limited to “news”. hmm. i guess i have to investigate further…
Last edited by sthmtc (2007-07-16 13:38:35)
Offline
#398 2007-07-16 13:39:42
Re: [plugin] [ORPHAN] zem_event [flexible integrated event management]
sven,
Good to know. Thanks for your investigating. Let us know what you find out.
Matthew
- I am Squared Eye and I
am launchinghave launched Pattern Tap
Offline
#399 2007-07-16 19:26:32
Re: [plugin] [ORPHAN] zem_event [flexible integrated event management]
ma_smith wrote:
Let us know what you find out.
i still don’t know what caused the conflict but graeme told me to wrap <txp:gbp_disable_permlinks> .. </txp:gbp_disable_permlinks>
around the calendar nav which solved the issue…
Offline
#400 2007-07-16 19:47:08
Re: [plugin] [ORPHAN] zem_event [flexible integrated event management]
that Graeme!
He’s one of my favorite people around here. Smart too!
Cool. Glad that worked for ya.
Matthew
- I am Squared Eye and I
am launchinghave launched Pattern Tap
Offline
#401 2007-07-17 02:21:10
Re: [plugin] [ORPHAN] zem_event [flexible integrated event management]
FYI,
zem_event has been updated to 0.3.5.
Changes:- zem_event_list now supports a section attribute, contributed by bernard.
- datepicker.js has been updated to the latest version so hopefully conflicts will go away.
The updated files are in the svn repo and I have sent Matthew a zip to update the main download link. Again if anyone wants svn access please just contact us.
Last edited by hakjoon (2007-07-17 15:12:39)
Shoving is the answer – pusher robot
Offline
#402 2007-07-17 11:55:40
Re: [plugin] [ORPHAN] zem_event [flexible integrated event management]
Done and work again ;) thanks
Offline
#403 2007-07-17 14:57:31
Re: [plugin] [ORPHAN] zem_event [flexible integrated event management]
txp.squaredeye.com has been updated as well with the new Zem_event.
- I am Squared Eye and I
am launchinghave launched Pattern Tap
Offline
#404 2007-07-19 16:40:13
Re: [plugin] [ORPHAN] zem_event [flexible integrated event management]
is it possible to get the location dropdown back in the newer zem_event? i created a form called “zem_event_location” but can’t remember how i have to insert my pre-defined locations.
EDIT: i’ve found the content of zem_event_location in some old test txp installation of mine, yet the location dropdown is not coming back. i had a quick glimpse at the plugin code and to me it looks like it’s looking for the form and if it exists it should build the dropdown? but that’s not working here…
EDIT2: nevermind, it was just me, stupidly misspelling the form name! sorry!
Last edited by sthmtc (2007-07-20 00:08:49)
Offline
#405 2007-07-20 00:24:16
Re: [plugin] [ORPHAN] zem_event [flexible integrated event management]
nardo wrote:
thanks anton … as there is a finite number of locations, I will handcode the list
how does everyone setup their “filter by location” / “filter by category” link? is handcoding really the only option we have? and if yes, how do you assemble the link. because the links have to change wether we’re already in ?date=2007-08 or not…
i was just about to handcode the links when i’ve stumbled over this… i can’t link to ?c=category because that will result in a 404 if we’re already in a specific month… category and location link lists for filtering purposes would be incredibly handy! i’d gladly pay some money for it too.
Offline
#406 2007-07-20 16:37:12
Re: [plugin] [ORPHAN] zem_event [flexible integrated event management]
Mini calendar date not showing is somewhat fixed. billberry (2007-05-14 14:50:38) wrote a code before on http://forum.textpattern.com/viewtopic.php?id=20796&p=36 But we couldnt use it.
So we tried, and my friend Rasel has modified a bit and came up with this which works.
# display each cell in the calendar, 7 x 5 grid
for ($w=0; $w<$numrows; $w++) {
$day_row = array();
for ($d=1; $d<=7; $d++) {
$daynum = ($w*7) + $d;
$dayofmonth = $daynum - $firstday;
$my_day_of_month = ($dayofmonth<10) ? '0'.$dayofmonth : $dayofmonth;
$dayofmonth = $my_day_of_month;
//this was from billberry which we slightly modified (posted on 2007-05-14 in this thread)
if (checkdate($m, $dayofmonth, $y)) {
Offline
#407 2007-07-20 17:01:54
Re: [plugin] [ORPHAN] zem_event [flexible integrated event management]
have you submitted this to the google code pages yet?
- I am Squared Eye and I
am launchinghave launched Pattern Tap
Offline
#408 2007-07-20 17:26:39
Re: [plugin] [ORPHAN] zem_event [flexible integrated event management]
emm… i dont know how to use google code project. I will find it out and then post there? (if that is what I am supposed to do)
Edit: Oh ya, we just found this solution just 10 mins before anyway haha. =p
Last edited by cdtavijit (2007-07-20 17:27:24)
Offline