コード例 #1
0
ファイル: events.py プロジェクト: foobarmus/jpycal
    def get(self):
        """
        Deliver an event as json or html.

        This method is included for the sake of
        completeness. Though unused, it might
        come in handy in a real-life situation.

        For example, you could request json from
        the eventMouseOver in fullcalendar, and
        display the description in a bubble, or
        request html from another app. For
        example,

        http://mydomain.com/jpycal/event/3001

        """
        # fetch the event
        e = Event.get_by_id(self.id)

        # format and deliver, based on expected output
        accept = self.request.META['HTTP_ACCEPT']
        if accept and accept == json_hdr:
            return HttpResponse(json.dumps(e.dict_()),
                                mimetype=json_hdr)
        else:
            return render_to_response('event.html', {'e':e})
コード例 #2
0
    def get(self):
        """
        Deliver an event as json or html.

        This method is included for the sake of
        completeness. Though unused, it might
        come in handy in a real-life situation.

        For example, you could request json from
        the eventMouseOver in fullcalendar, and
        display the description in a bubble, or
        request html from another app. For
        example,

        http://mydomain.com/jpycal/event/3001

        """
        # fetch the event
        e = Event.get_by_id(self.id)

        # format and deliver, based on expected output
        accept = self.request.META['HTTP_ACCEPT']
        if accept and accept == json_hdr:
            return HttpResponse(json.dumps(e.dict_()), mimetype=json_hdr)
        else:
            return render_to_response('event.html', {'e': e})
コード例 #3
0
def post(request):
    """create an event"""
    f = rip(request.POST)

    # create and store the event
    e = Event(**f)
    e.put()

    # now we have an id, create the url
    e.url = event_url % e.key().id()
    e.put()

    # respond for good measure
    return HttpResponse('Event added')
コード例 #4
0
ファイル: events.py プロジェクト: foobarmus/jpycal
def post(request):
    """create an event"""
    f = rip(request.POST)

    # create and store the event
    e = Event(**f)
    e.put()

    # now we have an id, create the url
    e.url = event_url % e.key().id()
    e.put()

    # respond for good measure
    return HttpResponse('Event added')
コード例 #5
0
ファイル: events.py プロジェクト: foobarmus/jpycal
def get(request):
    """
    Finds events within a given date range;
    spits out a batch of events as json.

    This web service is used by fullcalendar
    to initialise calendar views, such as
    during the initial page load, or when you
    press 'month|week|day'.

    """
    f = rip(request.GET)

    # fetch the events
    events = Event.gql(q, **f)

    # format and deliver
    return HttpResponse(json.dumps([e.dict_() for e in events]),
                        mimetype=json_hdr)
コード例 #6
0
ファイル: events.py プロジェクト: foobarmus/jpycal
    def put(self):
        """update an event"""
        f = self.f

        # fetch the event
        e = Event.get_by_id(self.id)

        # update and save
        e.start = f.has_key('start') and f['start'] or e.start
        e.end = f.has_key('end') and f['end'] or e.end
        if f.has_key('allDay'):
            e.allDay = f['allDay']
        e.title = f.has_key('title') and f['title'] or e.title
        e.description = f.has_key('description') and \
                            f['description'] or e.description
        e.put()

        # respond
        return HttpResponse('Event updated')
コード例 #7
0
def get(request):
    """
    Finds events within a given date range;
    spits out a batch of events as json.

    This web service is used by fullcalendar
    to initialise calendar views, such as
    during the initial page load, or when you
    press 'month|week|day'.

    """
    f = rip(request.GET)

    # fetch the events
    events = Event.gql(q, **f)

    # format and deliver
    return HttpResponse(json.dumps([e.dict_() for e in events]),
                        mimetype=json_hdr)
コード例 #8
0
    def put(self):
        """update an event"""
        f = self.f

        # fetch the event
        e = Event.get_by_id(self.id)

        # update and save
        e.start = f.has_key('start') and f['start'] or e.start
        e.end = f.has_key('end') and f['end'] or e.end
        if f.has_key('allDay'):
            e.allDay = f['allDay']
        e.title = f.has_key('title') and f['title'] or e.title
        e.description = f.has_key('description') and \
                            f['description'] or e.description
        e.put()

        # respond
        return HttpResponse('Event updated')