Generic views¶
MementoDetailView¶
-
class
MementoDetailView
(DetailView)¶ Extends Django’s generic DetailView to describe an archived resource.
A set of extra headers is added to the response. They are:
- The
Memento-Datetime
when the resource was archived. - A
Link
that includes the URL of the original resource as well as the location of the TimeMap the publishes the directory of all versions archived by your site and a TimeGate where a datetime can be submitted to find the closest mementos for this resource.
-
datetime_field
¶ A string attribute that is the name of the database field that contains the timestamp when the resource was archived. Default
'datetime'
.
-
timemap_pattern_name
¶ The name of the URL pattern for this site’s TimeMap that, given the original url, is able to reverse to return the location of the map that serves as the directory of all versions of this resource archived by your site. Optional.
-
timegate_pattern_name
¶ The name of the URL pattern for this site’s TimeGate that, given the original url, is able to reverse to return the location of the url where a datetime can be submitted to find the closest mementos for this resource. Optional.
-
get_original_url
()¶ A method that, given the object being rendered by the view, will return the original URL of the archived resource.
Example myapp/views.py
from memento.timegate import MementoDetailView class ExampleMementoDetailView(MementoDetailView): """ A Memento-enabled detail page for a screenshot in my example archive. It is linked to a url that looks like something like: url( r'^screenshot/(?P<pk>\d+)/$', views.ExampleMementoDetailView.as_view(), name='screenshot-detail' ) """ model = Screenshot datetime_field = 'timestamp' timemap_pattern_name = "timemap-screenshot" timegate_pattern_name = "timegate-screenshot" def get_original_url(self, obj): return obj.site.url
Example response
$ curl -X HEAD -i http://www.example.com/screenshot/100/ HTTP/1.1 200 OK Server: Apache/2.2.22 (Ubuntu) Link: <http://archivedsite.com/>; rel="original", <http://www.example.com/timemap/link/http://archivedsite.com/>; rel="timemap"; type="application/link-format", <http://www.example.com/timegate/http://archivedsite.com/>; rel="timegate" Memento-Datetime: Fri, 1 May 2015 00:00:01 GMT
- The
TimemapLinkList¶
-
class
TimemapLinkList
(object)¶ Returns a queryset list in Memento’s TimeMap link format. Can be optionally paginated. Designed to emulate Django’s built-in feed framework.
-
paginate_by
¶ An optional integer attribute that will trigger the pagination of the result set so that each page includes the provided number of objects.
-
get_object
(request, url)¶ Returns the model object for the provided original URL. Required.
-
get_original_url
(obj)¶ Returns the original URL that was archived given the model object. Required.
-
memento_list
(obj)¶ Returns the queryset of archived resources associated with the submitted original URL given its object. Required.
-
memento_datetime
(item)¶ Returns the timestamp of when an archived resource was retrieved given its object. Required.
Example myapp/feeds.py
from memento.timemap import TimemapLinkList class ExampleTimemapLinkList(TimemapLinkList): """ A Memento TimeMap that, given a URL, will return a list of archived objects for that page in the archive in link format. It is linked to a url that looks like something like: url( r'^timemap/link/(?P<url>.*)$', feeds.ExampleTimemapLinkList(), name="timemap-screenshot" ), """ paginate_by = 1000 def get_object(self, request, url): return get_object_or_404(Site, url__startswith=url) def get_original_url(self, obj): return obj.url def memento_list(self, obj): return Screenshot.objects.filter(site=obj) def memento_datetime(self, item): return item.timestamp
Example response
$ curl -i http://www.example.com/timemap/http://archivedsite.com/ HTTP/1.0 200 OK Server: Apache/2.2.22 (Ubuntu) Content-Type: application/link-format; charset=utf-8 <http://archivedsite.com/>;rel="original", <http://www.pastpages.org/timemap/link/http://archivedsite.com/> ; rel="self";type="application/link-format", <http://www.example.com/timemap/link/http://archivedsite.com?page=1> ; rel="timemap";type="application/link-format", <http://www.example.com/timemap/link/http://archivedsite.com/?page=2> ; rel="timemap";type="application/link-format", <http://www.example.com/timemap/link/http://archivedsite.com/?page=3> ; rel="timemap";type="application/link-format", <http://www.example.com/timemap/link/http://archivedsite.com/?page=4> ; rel="timemap";type="application/link-format"
-
TimeGateView¶
-
class
TimeGateView
(RedirectView)¶ Creates a TimeGate that handles a request with a ‘Accept-Datetime’ headers and returns a response that redirects to the corresponding Memento.
-
model
¶ A Django database model where the object will be drawn with a
Model.objects.filter()
query. Optional. If you want to provide a more specific list, define thequeryset
attribute instead.
-
queryset
¶ The list of objects that will be provided to the template. Can be any iterable of items, not just a Django queryset. Optional, but if this attribute is not defined the
model
attribute must be defined.
-
datetime_field
¶ A string attribute that is the name of the database field that contains the timestamp when the resource was archived. Default
'datetime'
.
-
url_kwarg
¶ The name for the keyword argument in the URL pattern that will be used to filter the queryset down to objects archived for the resource. Default
'url'
.
-
url_field
¶ A string attribute that is the name of the database field that contains the original URL archived. Defailt
'url'
.
-
timemap_pattern_name
¶ The name of the URL pattern for this site’s TimeMap that, given the original url, is able to reverse to return the location of the map that serves as the directory of all versions of this resource archived by your site. Optional.
Example myapp/views.py
from memento.timegate import TimeGateView class ExampleTimeGateView(TimeGateView): """ A Memento TimeGate that, given a timestamp, will redirect to the detail page for a screenshot in my example archive It is linked to a url that looks like something like: url( r'^timegate/(?P<url>.*)$', views.ExampleTimeGateView.as_view(), name="timegate" ), """ model = Screenshot url_field = 'site__url' # You can walk across ForeignKeys like normal datetime_field = 'timestamp' timemap_pattern_name = "timemap-screenshot"
Example response
$ curl -X HEAD -i http://www.example.com/timegate/http://archivedsite.com/ --header "Accept-Datetime: Fri, 1 May 2015 00:01:00 GMT" HTTP/1.1 302 Moved Temporarily Server: Apache/2.2.22 (Ubuntu) Link: <http://archivedsite.com/>; rel="original", <http://www.example.com/timemap/link/http://archivedsite.com/>; rel="timemap"; type="application/link-format" Location: http://www.example.com/screenshot/100/ Vary: accept-datetime
-