1<html><body> 2<style> 3 4body, h1, h2, h3, div, span, p, pre, a { 5 margin: 0; 6 padding: 0; 7 border: 0; 8 font-weight: inherit; 9 font-style: inherit; 10 font-size: 100%; 11 font-family: inherit; 12 vertical-align: baseline; 13} 14 15body { 16 font-size: 13px; 17 padding: 1em; 18} 19 20h1 { 21 font-size: 26px; 22 margin-bottom: 1em; 23} 24 25h2 { 26 font-size: 24px; 27 margin-bottom: 1em; 28} 29 30h3 { 31 font-size: 20px; 32 margin-bottom: 1em; 33 margin-top: 1em; 34} 35 36pre, code { 37 line-height: 1.5; 38 font-family: Monaco, 'DejaVu Sans Mono', 'Bitstream Vera Sans Mono', 'Lucida Console', monospace; 39} 40 41pre { 42 margin-top: 0.5em; 43} 44 45h1, h2, h3, p { 46 font-family: Arial, sans serif; 47} 48 49h1, h2, h3 { 50 border-bottom: solid #CCC 1px; 51} 52 53.toc_element { 54 margin-top: 0.5em; 55} 56 57.firstline { 58 margin-left: 2 em; 59} 60 61.method { 62 margin-top: 1em; 63 border: solid 1px #CCC; 64 padding: 1em; 65 background: #EEE; 66} 67 68.details { 69 font-weight: bold; 70 font-size: 14px; 71} 72 73</style> 74 75<h1><a href="drive_v3.html">Drive API</a> . <a href="drive_v3.comments.html">comments</a></h1> 76<h2>Instance Methods</h2> 77<p class="toc_element"> 78 <code><a href="#close">close()</a></code></p> 79<p class="firstline">Close httplib2 connections.</p> 80<p class="toc_element"> 81 <code><a href="#create">create(fileId, body=None)</a></code></p> 82<p class="firstline">Creates a new comment on a file.</p> 83<p class="toc_element"> 84 <code><a href="#delete">delete(fileId, commentId)</a></code></p> 85<p class="firstline">Deletes a comment.</p> 86<p class="toc_element"> 87 <code><a href="#get">get(fileId, commentId, includeDeleted=None)</a></code></p> 88<p class="firstline">Gets a comment by ID.</p> 89<p class="toc_element"> 90 <code><a href="#list">list(fileId, includeDeleted=None, pageSize=None, pageToken=None, startModifiedTime=None)</a></code></p> 91<p class="firstline">Lists a file's comments.</p> 92<p class="toc_element"> 93 <code><a href="#list_next">list_next(previous_request, previous_response)</a></code></p> 94<p class="firstline">Retrieves the next page of results.</p> 95<p class="toc_element"> 96 <code><a href="#update">update(fileId, commentId, body=None)</a></code></p> 97<p class="firstline">Updates a comment with patch semantics.</p> 98<h3>Method Details</h3> 99<div class="method"> 100 <code class="details" id="close">close()</code> 101 <pre>Close httplib2 connections.</pre> 102</div> 103 104<div class="method"> 105 <code class="details" id="create">create(fileId, body=None)</code> 106 <pre>Creates a new comment on a file. 107 108Args: 109 fileId: string, The ID of the file. (required) 110 body: object, The request body. 111 The object takes the form of: 112 113{ # A comment on a file. 114 "anchor": "A String", # A region of the document represented as a JSON string. For details on defining anchor properties, refer to Add comments and replies. 115 "author": { # Information about a Drive user. # The author of the comment. The author's email address and permission ID will not be populated. 116 "displayName": "A String", # A plain text displayable name for this user. 117 "emailAddress": "A String", # The email address of the user. This may not be present in certain contexts if the user has not made their email address visible to the requester. 118 "kind": "drive#user", # Identifies what kind of resource this is. Value: the fixed string "drive#user". 119 "me": True or False, # Whether this user is the requesting user. 120 "permissionId": "A String", # The user's ID as visible in Permission resources. 121 "photoLink": "A String", # A link to the user's profile photo, if available. 122 }, 123 "content": "A String", # The plain text content of the comment. This field is used for setting the content, while htmlContent should be displayed. 124 "createdTime": "A String", # The time at which the comment was created (RFC 3339 date-time). 125 "deleted": True or False, # Whether the comment has been deleted. A deleted comment has no content. 126 "htmlContent": "A String", # The content of the comment with HTML formatting. 127 "id": "A String", # The ID of the comment. 128 "kind": "drive#comment", # Identifies what kind of resource this is. Value: the fixed string "drive#comment". 129 "modifiedTime": "A String", # The last time the comment or any of its replies was modified (RFC 3339 date-time). 130 "quotedFileContent": { # The file content to which the comment refers, typically within the anchor region. For a text file, for example, this would be the text at the location of the comment. 131 "mimeType": "A String", # The MIME type of the quoted content. 132 "value": "A String", # The quoted content itself. This is interpreted as plain text if set through the API. 133 }, 134 "replies": [ # The full list of replies to the comment in chronological order. 135 { # A reply to a comment on a file. 136 "action": "A String", # The action the reply performed to the parent comment. Valid values are: 137 # - resolve 138 # - reopen 139 "author": { # Information about a Drive user. # The author of the reply. The author's email address and permission ID will not be populated. 140 "displayName": "A String", # A plain text displayable name for this user. 141 "emailAddress": "A String", # The email address of the user. This may not be present in certain contexts if the user has not made their email address visible to the requester. 142 "kind": "drive#user", # Identifies what kind of resource this is. Value: the fixed string "drive#user". 143 "me": True or False, # Whether this user is the requesting user. 144 "permissionId": "A String", # The user's ID as visible in Permission resources. 145 "photoLink": "A String", # A link to the user's profile photo, if available. 146 }, 147 "content": "A String", # The plain text content of the reply. This field is used for setting the content, while htmlContent should be displayed. This is required on creates if no action is specified. 148 "createdTime": "A String", # The time at which the reply was created (RFC 3339 date-time). 149 "deleted": True or False, # Whether the reply has been deleted. A deleted reply has no content. 150 "htmlContent": "A String", # The content of the reply with HTML formatting. 151 "id": "A String", # The ID of the reply. 152 "kind": "drive#reply", # Identifies what kind of resource this is. Value: the fixed string "drive#reply". 153 "modifiedTime": "A String", # The last time the reply was modified (RFC 3339 date-time). 154 }, 155 ], 156 "resolved": True or False, # Whether the comment has been resolved by one of its replies. 157} 158 159 160Returns: 161 An object of the form: 162 163 { # A comment on a file. 164 "anchor": "A String", # A region of the document represented as a JSON string. For details on defining anchor properties, refer to Add comments and replies. 165 "author": { # Information about a Drive user. # The author of the comment. The author's email address and permission ID will not be populated. 166 "displayName": "A String", # A plain text displayable name for this user. 167 "emailAddress": "A String", # The email address of the user. This may not be present in certain contexts if the user has not made their email address visible to the requester. 168 "kind": "drive#user", # Identifies what kind of resource this is. Value: the fixed string "drive#user". 169 "me": True or False, # Whether this user is the requesting user. 170 "permissionId": "A String", # The user's ID as visible in Permission resources. 171 "photoLink": "A String", # A link to the user's profile photo, if available. 172 }, 173 "content": "A String", # The plain text content of the comment. This field is used for setting the content, while htmlContent should be displayed. 174 "createdTime": "A String", # The time at which the comment was created (RFC 3339 date-time). 175 "deleted": True or False, # Whether the comment has been deleted. A deleted comment has no content. 176 "htmlContent": "A String", # The content of the comment with HTML formatting. 177 "id": "A String", # The ID of the comment. 178 "kind": "drive#comment", # Identifies what kind of resource this is. Value: the fixed string "drive#comment". 179 "modifiedTime": "A String", # The last time the comment or any of its replies was modified (RFC 3339 date-time). 180 "quotedFileContent": { # The file content to which the comment refers, typically within the anchor region. For a text file, for example, this would be the text at the location of the comment. 181 "mimeType": "A String", # The MIME type of the quoted content. 182 "value": "A String", # The quoted content itself. This is interpreted as plain text if set through the API. 183 }, 184 "replies": [ # The full list of replies to the comment in chronological order. 185 { # A reply to a comment on a file. 186 "action": "A String", # The action the reply performed to the parent comment. Valid values are: 187 # - resolve 188 # - reopen 189 "author": { # Information about a Drive user. # The author of the reply. The author's email address and permission ID will not be populated. 190 "displayName": "A String", # A plain text displayable name for this user. 191 "emailAddress": "A String", # The email address of the user. This may not be present in certain contexts if the user has not made their email address visible to the requester. 192 "kind": "drive#user", # Identifies what kind of resource this is. Value: the fixed string "drive#user". 193 "me": True or False, # Whether this user is the requesting user. 194 "permissionId": "A String", # The user's ID as visible in Permission resources. 195 "photoLink": "A String", # A link to the user's profile photo, if available. 196 }, 197 "content": "A String", # The plain text content of the reply. This field is used for setting the content, while htmlContent should be displayed. This is required on creates if no action is specified. 198 "createdTime": "A String", # The time at which the reply was created (RFC 3339 date-time). 199 "deleted": True or False, # Whether the reply has been deleted. A deleted reply has no content. 200 "htmlContent": "A String", # The content of the reply with HTML formatting. 201 "id": "A String", # The ID of the reply. 202 "kind": "drive#reply", # Identifies what kind of resource this is. Value: the fixed string "drive#reply". 203 "modifiedTime": "A String", # The last time the reply was modified (RFC 3339 date-time). 204 }, 205 ], 206 "resolved": True or False, # Whether the comment has been resolved by one of its replies. 207}</pre> 208</div> 209 210<div class="method"> 211 <code class="details" id="delete">delete(fileId, commentId)</code> 212 <pre>Deletes a comment. 213 214Args: 215 fileId: string, The ID of the file. (required) 216 commentId: string, The ID of the comment. (required) 217</pre> 218</div> 219 220<div class="method"> 221 <code class="details" id="get">get(fileId, commentId, includeDeleted=None)</code> 222 <pre>Gets a comment by ID. 223 224Args: 225 fileId: string, The ID of the file. (required) 226 commentId: string, The ID of the comment. (required) 227 includeDeleted: boolean, Whether to return deleted comments. Deleted comments will not include their original content. 228 229Returns: 230 An object of the form: 231 232 { # A comment on a file. 233 "anchor": "A String", # A region of the document represented as a JSON string. For details on defining anchor properties, refer to Add comments and replies. 234 "author": { # Information about a Drive user. # The author of the comment. The author's email address and permission ID will not be populated. 235 "displayName": "A String", # A plain text displayable name for this user. 236 "emailAddress": "A String", # The email address of the user. This may not be present in certain contexts if the user has not made their email address visible to the requester. 237 "kind": "drive#user", # Identifies what kind of resource this is. Value: the fixed string "drive#user". 238 "me": True or False, # Whether this user is the requesting user. 239 "permissionId": "A String", # The user's ID as visible in Permission resources. 240 "photoLink": "A String", # A link to the user's profile photo, if available. 241 }, 242 "content": "A String", # The plain text content of the comment. This field is used for setting the content, while htmlContent should be displayed. 243 "createdTime": "A String", # The time at which the comment was created (RFC 3339 date-time). 244 "deleted": True or False, # Whether the comment has been deleted. A deleted comment has no content. 245 "htmlContent": "A String", # The content of the comment with HTML formatting. 246 "id": "A String", # The ID of the comment. 247 "kind": "drive#comment", # Identifies what kind of resource this is. Value: the fixed string "drive#comment". 248 "modifiedTime": "A String", # The last time the comment or any of its replies was modified (RFC 3339 date-time). 249 "quotedFileContent": { # The file content to which the comment refers, typically within the anchor region. For a text file, for example, this would be the text at the location of the comment. 250 "mimeType": "A String", # The MIME type of the quoted content. 251 "value": "A String", # The quoted content itself. This is interpreted as plain text if set through the API. 252 }, 253 "replies": [ # The full list of replies to the comment in chronological order. 254 { # A reply to a comment on a file. 255 "action": "A String", # The action the reply performed to the parent comment. Valid values are: 256 # - resolve 257 # - reopen 258 "author": { # Information about a Drive user. # The author of the reply. The author's email address and permission ID will not be populated. 259 "displayName": "A String", # A plain text displayable name for this user. 260 "emailAddress": "A String", # The email address of the user. This may not be present in certain contexts if the user has not made their email address visible to the requester. 261 "kind": "drive#user", # Identifies what kind of resource this is. Value: the fixed string "drive#user". 262 "me": True or False, # Whether this user is the requesting user. 263 "permissionId": "A String", # The user's ID as visible in Permission resources. 264 "photoLink": "A String", # A link to the user's profile photo, if available. 265 }, 266 "content": "A String", # The plain text content of the reply. This field is used for setting the content, while htmlContent should be displayed. This is required on creates if no action is specified. 267 "createdTime": "A String", # The time at which the reply was created (RFC 3339 date-time). 268 "deleted": True or False, # Whether the reply has been deleted. A deleted reply has no content. 269 "htmlContent": "A String", # The content of the reply with HTML formatting. 270 "id": "A String", # The ID of the reply. 271 "kind": "drive#reply", # Identifies what kind of resource this is. Value: the fixed string "drive#reply". 272 "modifiedTime": "A String", # The last time the reply was modified (RFC 3339 date-time). 273 }, 274 ], 275 "resolved": True or False, # Whether the comment has been resolved by one of its replies. 276}</pre> 277</div> 278 279<div class="method"> 280 <code class="details" id="list">list(fileId, includeDeleted=None, pageSize=None, pageToken=None, startModifiedTime=None)</code> 281 <pre>Lists a file's comments. 282 283Args: 284 fileId: string, The ID of the file. (required) 285 includeDeleted: boolean, Whether to include deleted comments. Deleted comments will not include their original content. 286 pageSize: integer, The maximum number of comments to return per page. 287 pageToken: string, The token for continuing a previous list request on the next page. This should be set to the value of 'nextPageToken' from the previous response. 288 startModifiedTime: string, The minimum value of 'modifiedTime' for the result comments (RFC 3339 date-time). 289 290Returns: 291 An object of the form: 292 293 { # A list of comments on a file. 294 "comments": [ # The list of comments. If nextPageToken is populated, then this list may be incomplete and an additional page of results should be fetched. 295 { # A comment on a file. 296 "anchor": "A String", # A region of the document represented as a JSON string. For details on defining anchor properties, refer to Add comments and replies. 297 "author": { # Information about a Drive user. # The author of the comment. The author's email address and permission ID will not be populated. 298 "displayName": "A String", # A plain text displayable name for this user. 299 "emailAddress": "A String", # The email address of the user. This may not be present in certain contexts if the user has not made their email address visible to the requester. 300 "kind": "drive#user", # Identifies what kind of resource this is. Value: the fixed string "drive#user". 301 "me": True or False, # Whether this user is the requesting user. 302 "permissionId": "A String", # The user's ID as visible in Permission resources. 303 "photoLink": "A String", # A link to the user's profile photo, if available. 304 }, 305 "content": "A String", # The plain text content of the comment. This field is used for setting the content, while htmlContent should be displayed. 306 "createdTime": "A String", # The time at which the comment was created (RFC 3339 date-time). 307 "deleted": True or False, # Whether the comment has been deleted. A deleted comment has no content. 308 "htmlContent": "A String", # The content of the comment with HTML formatting. 309 "id": "A String", # The ID of the comment. 310 "kind": "drive#comment", # Identifies what kind of resource this is. Value: the fixed string "drive#comment". 311 "modifiedTime": "A String", # The last time the comment or any of its replies was modified (RFC 3339 date-time). 312 "quotedFileContent": { # The file content to which the comment refers, typically within the anchor region. For a text file, for example, this would be the text at the location of the comment. 313 "mimeType": "A String", # The MIME type of the quoted content. 314 "value": "A String", # The quoted content itself. This is interpreted as plain text if set through the API. 315 }, 316 "replies": [ # The full list of replies to the comment in chronological order. 317 { # A reply to a comment on a file. 318 "action": "A String", # The action the reply performed to the parent comment. Valid values are: 319 # - resolve 320 # - reopen 321 "author": { # Information about a Drive user. # The author of the reply. The author's email address and permission ID will not be populated. 322 "displayName": "A String", # A plain text displayable name for this user. 323 "emailAddress": "A String", # The email address of the user. This may not be present in certain contexts if the user has not made their email address visible to the requester. 324 "kind": "drive#user", # Identifies what kind of resource this is. Value: the fixed string "drive#user". 325 "me": True or False, # Whether this user is the requesting user. 326 "permissionId": "A String", # The user's ID as visible in Permission resources. 327 "photoLink": "A String", # A link to the user's profile photo, if available. 328 }, 329 "content": "A String", # The plain text content of the reply. This field is used for setting the content, while htmlContent should be displayed. This is required on creates if no action is specified. 330 "createdTime": "A String", # The time at which the reply was created (RFC 3339 date-time). 331 "deleted": True or False, # Whether the reply has been deleted. A deleted reply has no content. 332 "htmlContent": "A String", # The content of the reply with HTML formatting. 333 "id": "A String", # The ID of the reply. 334 "kind": "drive#reply", # Identifies what kind of resource this is. Value: the fixed string "drive#reply". 335 "modifiedTime": "A String", # The last time the reply was modified (RFC 3339 date-time). 336 }, 337 ], 338 "resolved": True or False, # Whether the comment has been resolved by one of its replies. 339 }, 340 ], 341 "kind": "drive#commentList", # Identifies what kind of resource this is. Value: the fixed string "drive#commentList". 342 "nextPageToken": "A String", # The page token for the next page of comments. This will be absent if the end of the comments list has been reached. If the token is rejected for any reason, it should be discarded, and pagination should be restarted from the first page of results. 343}</pre> 344</div> 345 346<div class="method"> 347 <code class="details" id="list_next">list_next(previous_request, previous_response)</code> 348 <pre>Retrieves the next page of results. 349 350Args: 351 previous_request: The request for the previous page. (required) 352 previous_response: The response from the request for the previous page. (required) 353 354Returns: 355 A request object that you can call 'execute()' on to request the next 356 page. Returns None if there are no more items in the collection. 357 </pre> 358</div> 359 360<div class="method"> 361 <code class="details" id="update">update(fileId, commentId, body=None)</code> 362 <pre>Updates a comment with patch semantics. 363 364Args: 365 fileId: string, The ID of the file. (required) 366 commentId: string, The ID of the comment. (required) 367 body: object, The request body. 368 The object takes the form of: 369 370{ # A comment on a file. 371 "anchor": "A String", # A region of the document represented as a JSON string. For details on defining anchor properties, refer to Add comments and replies. 372 "author": { # Information about a Drive user. # The author of the comment. The author's email address and permission ID will not be populated. 373 "displayName": "A String", # A plain text displayable name for this user. 374 "emailAddress": "A String", # The email address of the user. This may not be present in certain contexts if the user has not made their email address visible to the requester. 375 "kind": "drive#user", # Identifies what kind of resource this is. Value: the fixed string "drive#user". 376 "me": True or False, # Whether this user is the requesting user. 377 "permissionId": "A String", # The user's ID as visible in Permission resources. 378 "photoLink": "A String", # A link to the user's profile photo, if available. 379 }, 380 "content": "A String", # The plain text content of the comment. This field is used for setting the content, while htmlContent should be displayed. 381 "createdTime": "A String", # The time at which the comment was created (RFC 3339 date-time). 382 "deleted": True or False, # Whether the comment has been deleted. A deleted comment has no content. 383 "htmlContent": "A String", # The content of the comment with HTML formatting. 384 "id": "A String", # The ID of the comment. 385 "kind": "drive#comment", # Identifies what kind of resource this is. Value: the fixed string "drive#comment". 386 "modifiedTime": "A String", # The last time the comment or any of its replies was modified (RFC 3339 date-time). 387 "quotedFileContent": { # The file content to which the comment refers, typically within the anchor region. For a text file, for example, this would be the text at the location of the comment. 388 "mimeType": "A String", # The MIME type of the quoted content. 389 "value": "A String", # The quoted content itself. This is interpreted as plain text if set through the API. 390 }, 391 "replies": [ # The full list of replies to the comment in chronological order. 392 { # A reply to a comment on a file. 393 "action": "A String", # The action the reply performed to the parent comment. Valid values are: 394 # - resolve 395 # - reopen 396 "author": { # Information about a Drive user. # The author of the reply. The author's email address and permission ID will not be populated. 397 "displayName": "A String", # A plain text displayable name for this user. 398 "emailAddress": "A String", # The email address of the user. This may not be present in certain contexts if the user has not made their email address visible to the requester. 399 "kind": "drive#user", # Identifies what kind of resource this is. Value: the fixed string "drive#user". 400 "me": True or False, # Whether this user is the requesting user. 401 "permissionId": "A String", # The user's ID as visible in Permission resources. 402 "photoLink": "A String", # A link to the user's profile photo, if available. 403 }, 404 "content": "A String", # The plain text content of the reply. This field is used for setting the content, while htmlContent should be displayed. This is required on creates if no action is specified. 405 "createdTime": "A String", # The time at which the reply was created (RFC 3339 date-time). 406 "deleted": True or False, # Whether the reply has been deleted. A deleted reply has no content. 407 "htmlContent": "A String", # The content of the reply with HTML formatting. 408 "id": "A String", # The ID of the reply. 409 "kind": "drive#reply", # Identifies what kind of resource this is. Value: the fixed string "drive#reply". 410 "modifiedTime": "A String", # The last time the reply was modified (RFC 3339 date-time). 411 }, 412 ], 413 "resolved": True or False, # Whether the comment has been resolved by one of its replies. 414} 415 416 417Returns: 418 An object of the form: 419 420 { # A comment on a file. 421 "anchor": "A String", # A region of the document represented as a JSON string. For details on defining anchor properties, refer to Add comments and replies. 422 "author": { # Information about a Drive user. # The author of the comment. The author's email address and permission ID will not be populated. 423 "displayName": "A String", # A plain text displayable name for this user. 424 "emailAddress": "A String", # The email address of the user. This may not be present in certain contexts if the user has not made their email address visible to the requester. 425 "kind": "drive#user", # Identifies what kind of resource this is. Value: the fixed string "drive#user". 426 "me": True or False, # Whether this user is the requesting user. 427 "permissionId": "A String", # The user's ID as visible in Permission resources. 428 "photoLink": "A String", # A link to the user's profile photo, if available. 429 }, 430 "content": "A String", # The plain text content of the comment. This field is used for setting the content, while htmlContent should be displayed. 431 "createdTime": "A String", # The time at which the comment was created (RFC 3339 date-time). 432 "deleted": True or False, # Whether the comment has been deleted. A deleted comment has no content. 433 "htmlContent": "A String", # The content of the comment with HTML formatting. 434 "id": "A String", # The ID of the comment. 435 "kind": "drive#comment", # Identifies what kind of resource this is. Value: the fixed string "drive#comment". 436 "modifiedTime": "A String", # The last time the comment or any of its replies was modified (RFC 3339 date-time). 437 "quotedFileContent": { # The file content to which the comment refers, typically within the anchor region. For a text file, for example, this would be the text at the location of the comment. 438 "mimeType": "A String", # The MIME type of the quoted content. 439 "value": "A String", # The quoted content itself. This is interpreted as plain text if set through the API. 440 }, 441 "replies": [ # The full list of replies to the comment in chronological order. 442 { # A reply to a comment on a file. 443 "action": "A String", # The action the reply performed to the parent comment. Valid values are: 444 # - resolve 445 # - reopen 446 "author": { # Information about a Drive user. # The author of the reply. The author's email address and permission ID will not be populated. 447 "displayName": "A String", # A plain text displayable name for this user. 448 "emailAddress": "A String", # The email address of the user. This may not be present in certain contexts if the user has not made their email address visible to the requester. 449 "kind": "drive#user", # Identifies what kind of resource this is. Value: the fixed string "drive#user". 450 "me": True or False, # Whether this user is the requesting user. 451 "permissionId": "A String", # The user's ID as visible in Permission resources. 452 "photoLink": "A String", # A link to the user's profile photo, if available. 453 }, 454 "content": "A String", # The plain text content of the reply. This field is used for setting the content, while htmlContent should be displayed. This is required on creates if no action is specified. 455 "createdTime": "A String", # The time at which the reply was created (RFC 3339 date-time). 456 "deleted": True or False, # Whether the reply has been deleted. A deleted reply has no content. 457 "htmlContent": "A String", # The content of the reply with HTML formatting. 458 "id": "A String", # The ID of the reply. 459 "kind": "drive#reply", # Identifies what kind of resource this is. Value: the fixed string "drive#reply". 460 "modifiedTime": "A String", # The last time the reply was modified (RFC 3339 date-time). 461 }, 462 ], 463 "resolved": True or False, # Whether the comment has been resolved by one of its replies. 464}</pre> 465</div> 466 467</body></html>