File tree Expand file tree Collapse file tree 6 files changed +16
-23
lines changed
Expand file tree Collapse file tree 6 files changed +16
-23
lines changed Original file line number Diff line number Diff line change 22@(require scribble/manual
33 scribble/eval
44 scribble/struct
5- racket/sandbox
65 "config.rkt "
7- (for-label (this-package-in atom atom-resource) ))
6+ (for-label webapi/ atom webapi/ atom-resource))
87
98@title[#:tag "atom " ]{Atom Documents and Resources}
109
@@ -15,7 +14,7 @@ documents and resources represented with Atom documents.
1514
1615@section{Atom Documents}
1716
18- @defmodule/this-package[ atom]
17+ @defmodule[webapi/ atom]
1918
2019An Atom document is represented by an @racket[atom<%>]
2120object. Specifically, an @racket[atom<%>] object is a thin, immutable
@@ -88,7 +87,7 @@ Represents an Atom document. Obtain an instance via @racket[atom].
8887
8988@section{Atom Resources}
9089
91- @defmodule/this-package[ atom-resource]
90+ @defmodule[webapi/ atom-resource]
9291
9392An @racket[atom-resource<%>] object represents a resource (such as a
9493blog or photo album) that is represented and manipulated via Atom
Original file line number Diff line number Diff line change 22@(require scribble/manual
33 scribble/eval
44 scribble/struct
5- racket/sandbox
65 "config.rkt "
7- (for-label (this-package-in atom-resource oauth2 blogger)))
6+ (for-label webapi/atom-resource
7+ webapi/oauth2
8+ webapi/blogger))
89
910@title[#:tag "blogger " ]{Blogger}
1011
11- @defmodule/this-package[ blogger]
12+ @defmodule[webapi/ blogger]
1213
1314This library supports a small subset of the
1415@hyperlink["http://code.google.com/apis/blogger/ " ]{Blogger
Original file line number Diff line number Diff line change 1- ;; Copyright 2011 Ryan Culpepper
1+ ;; Copyright 2011-2013 Ryan Culpepper
22;; Released under the terms of the LGPL version 3 or later.
33;; See the file COPYRIGHT for details.
44
55#lang racket/base
66(require scribble/manual
77 scribble/eval
8- racket/sandbox
9- planet/version
10- planet/scribble
118 (for-label racket/base
129 racket/class
1310 racket/contract))
1411(provide (all-defined-out )
15- (all-from-out planet/scribble)
1612 (for-label (all-from-out racket/base)
1713 (all-from-out racket/class)
1814 (all-from-out racket/contract)))
1915
20- (define (my-package-version)
21- (format "~a.~a " (this-package-version-maj) (this-package-version-min)))
22-
2316;; ----
2417
2518(define the-eval (make-base-eval))
2619
2720(void
2821 (the-eval
2922 `(require racket/class
30- ( planet ,(this-package-version-symbol oauth2)) )))
23+ webapi/ oauth2)))
3124
3225(define-syntax-rule (examples/results [example result] ... )
3326 (examples #:eval the-eval (eval:alts example result) ... ))
Original file line number Diff line number Diff line change 22@(require scribble/manual
33 scribble/eval
44 scribble/struct
5- racket/sandbox
65 "config.rkt "
7- (for-label (this-package-in oauth2) ))
6+ (for-label webapi/ oauth2))
87
98@title[#:tag "oauth2 " ]{OAuth 2.0 Client}
109
11- @( defmodule/this-package oauth2)
10+ @defmodule[webapi/ oauth2]
1211
1312This library is an incomplete implementation of an unfinished
1413standard; use with care. It is certain to evolve as features are added
Original file line number Diff line number Diff line change 22@(require scribble/manual
33 scribble/eval
44 scribble/struct
5- racket/sandbox
65 "config.rkt "
7- (for-label (this-package-in atom-resource oauth2 picasa)))
6+ (for-label webapi/atom-resource
7+ webapi/oauth2
8+ webapi/picasa))
89
910@title[#:tag "picasa " ]{Picasa Web Albums}
1011
11- @( defmodule/this-package picasa)
12+ @defmodule[webapi/ picasa]
1213
1314This library supports a small subset of the
1415@hyperlink["http://code.google.com/apis/picasaweb/overview.html " ]{Picasa
Original file line number Diff line number Diff line change 44 scribble/eval
55 "config.rkt " )
66
7- @title[ #:version (my-package-version)] {webapi: Web APIs}
7+ @title{webapi: Web APIs}
88@author[@author+email["Ryan Culpepper " "ryanc@racket-lang.org " ]]
99
1010This package provides rudimentary implementations of a few web APIs.
You can’t perform that action at this time.
0 commit comments