Skip to content

Commit 0b027e1

Browse files
author
Tristan Floch
committed
Examples: resolve file paths in multi page template
1 parent be76356 commit 0b027e1

File tree

4 files changed

+54
-54
lines changed

4 files changed

+54
-54
lines changed

examples/doc-multi-page/html/Booking.html

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -240,15 +240,15 @@ <h3 id="com.example.BookingService">BookingService</h3>
240240

241241
<tr>
242242
<td>BookVehicle</td>
243-
<td><a href="#com.example.Booking">Booking</a></td>
244-
<td><a href="#com.example.BookingStatus">BookingStatus</a></td>
243+
<td><a href="Booking.html#com.example.Booking">Booking</a></td>
244+
<td><a href="Booking.html#com.example.BookingStatus">BookingStatus</a></td>
245245
<td><p>Used to book a vehicle. Pass in a Booking and a BookingStatus will be returned.</p></td>
246246
</tr>
247247

248248
<tr>
249249
<td>BookingUpdates</td>
250-
<td><a href="#com.example.BookingStatusID">BookingStatusID</a></td>
251-
<td><a href="#com.example.BookingStatus">BookingStatus</a> stream</td>
250+
<td><a href="Booking.html#com.example.BookingStatusID">BookingStatusID</a></td>
251+
<td><a href="Booking.html#com.example.BookingStatus">BookingStatus</a> stream</td>
252252
<td><p>Used to subscribe to updates of the BookingStatus.</p></td>
253253
</tr>
254254

@@ -301,42 +301,42 @@ <h3 id="com.example.Booking">Booking</h3>
301301

302302
<tr>
303303
<td>vehicle_id</td>
304-
<td><a href="#int32">int32</a></td>
304+
<td>int32</td>
305305
<td></td>
306306
<td><p>ID of booked vehicle. </p></td>
307307
</tr>
308308

309309
<tr>
310310
<td>customer_id</td>
311-
<td><a href="#int32">int32</a></td>
311+
<td>int32</td>
312312
<td></td>
313313
<td><p>Customer that booked the vehicle. </p></td>
314314
</tr>
315315

316316
<tr>
317317
<td>status</td>
318-
<td><a href="#com.example.BookingStatus">BookingStatus</a></td>
318+
<td><a href="Booking.html#com.example.BookingStatus">BookingStatus</a></td>
319319
<td></td>
320320
<td><p>Status of the booking. </p></td>
321321
</tr>
322322

323323
<tr>
324324
<td>confirmation_sent</td>
325-
<td><a href="#bool">bool</a></td>
325+
<td>bool</td>
326326
<td></td>
327327
<td><p>Has booking confirmation been sent? </p></td>
328328
</tr>
329329

330330
<tr>
331331
<td>payment_received</td>
332-
<td><a href="#bool">bool</a></td>
332+
<td>bool</td>
333333
<td></td>
334334
<td><p>Has payment been received? </p></td>
335335
</tr>
336336

337337
<tr>
338338
<td>color_preference</td>
339-
<td><a href="#string">string</a></td>
339+
<td>string</td>
340340
<td></td>
341341
<td><p><strong>Deprecated.</strong> Color preference of the customer. </p></td>
342342
</tr>
@@ -381,14 +381,14 @@ <h3 id="com.example.BookingStatus">BookingStatus</h3>
381381

382382
<tr>
383383
<td>id</td>
384-
<td><a href="#int32">int32</a></td>
384+
<td>int32</td>
385385
<td></td>
386386
<td><p>Unique booking status ID. </p></td>
387387
</tr>
388388

389389
<tr>
390390
<td>description</td>
391-
<td><a href="#string">string</a></td>
391+
<td>string</td>
392392
<td></td>
393393
<td><p>Booking status description. E.g. "Active". </p></td>
394394
</tr>
@@ -441,7 +441,7 @@ <h3 id="com.example.BookingStatusID">BookingStatusID</h3>
441441

442442
<tr>
443443
<td>id</td>
444-
<td><a href="#int32">int32</a></td>
444+
<td>int32</td>
445445
<td></td>
446446
<td><p>Unique booking status ID. </p></td>
447447
</tr>

examples/doc-multi-page/html/Customer.html

Lines changed: 20 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -240,15 +240,15 @@ <h3 id="com.example.CustomerService">CustomerService</h3>
240240

241241
<tr>
242242
<td>FindBookings</td>
243-
<td><a href="#com.example.Customer">Customer</a></td>
244-
<td><a href="#com.example.Booking">Booking</a> stream</td>
243+
<td><a href="Customer.html#com.example.Customer">Customer</a></td>
244+
<td><a href="Booking.html#com.example.Booking">Booking</a> stream</td>
245245
<td><p>Retrieve all bookings made by a customer.</p></td>
246246
</tr>
247247

248248
<tr>
249249
<td>VerifyBookingStatus</td>
250-
<td><a href="#com.example.VerificationRequest">VerificationRequest</a></td>
251-
<td><a href="#com.example.BookingStatusMessage">BookingStatusMessage</a></td>
250+
<td><a href="Customer.html#com.example.VerificationRequest">VerificationRequest</a></td>
251+
<td><a href="Customer.html#com.example.BookingStatusMessage">BookingStatusMessage</a></td>
252252
<td><p>Verify the payment status of a booking.</p></td>
253253
</tr>
254254

@@ -273,42 +273,42 @@ <h3 id="com.example.Address">Address</h3>
273273

274274
<tr>
275275
<td>address_line_1</td>
276-
<td><a href="#string">string</a></td>
276+
<td>string</td>
277277
<td>required</td>
278278
<td><p>First address line. </p></td>
279279
</tr>
280280

281281
<tr>
282282
<td>address_line_2</td>
283-
<td><a href="#string">string</a></td>
283+
<td>string</td>
284284
<td>optional</td>
285285
<td><p>Second address line. </p></td>
286286
</tr>
287287

288288
<tr>
289289
<td>address_line_3</td>
290-
<td><a href="#string">string</a></td>
290+
<td>string</td>
291291
<td>optional</td>
292292
<td><p>Second address line. </p></td>
293293
</tr>
294294

295295
<tr>
296296
<td>town</td>
297-
<td><a href="#string">string</a></td>
297+
<td>string</td>
298298
<td>required</td>
299299
<td><p>Address town. </p></td>
300300
</tr>
301301

302302
<tr>
303303
<td>county</td>
304-
<td><a href="#string">string</a></td>
304+
<td>string</td>
305305
<td>optional</td>
306306
<td><p>Address county, if applicable. </p></td>
307307
</tr>
308308

309309
<tr>
310310
<td>country</td>
311-
<td><a href="#string">string</a></td>
311+
<td>string</td>
312312
<td>required</td>
313313
<td><p>Address country. </p></td>
314314
</tr>
@@ -332,7 +332,7 @@ <h3 id="com.example.BookingStatusMessage">BookingStatusMessage</h3>
332332

333333
<tr>
334334
<td>description</td>
335-
<td><a href="#string">string</a></td>
335+
<td>string</td>
336336
<td>required</td>
337337
<td><p>Booking status description. E.g. "Active". </p></td>
338338
</tr>
@@ -356,49 +356,49 @@ <h3 id="com.example.Customer">Customer</h3>
356356

357357
<tr>
358358
<td>id</td>
359-
<td><a href="#int32">int32</a></td>
359+
<td>int32</td>
360360
<td>required</td>
361361
<td><p>Unique customer ID. </p></td>
362362
</tr>
363363

364364
<tr>
365365
<td>first_name</td>
366-
<td><a href="#string">string</a></td>
366+
<td>string</td>
367367
<td>required</td>
368368
<td><p>Customer first name. </p></td>
369369
</tr>
370370

371371
<tr>
372372
<td>last_name</td>
373-
<td><a href="#string">string</a></td>
373+
<td>string</td>
374374
<td>required</td>
375375
<td><p>Customer last name. </p></td>
376376
</tr>
377377

378378
<tr>
379379
<td>details</td>
380-
<td><a href="#string">string</a></td>
380+
<td>string</td>
381381
<td>optional</td>
382382
<td><p>Customer details. </p></td>
383383
</tr>
384384

385385
<tr>
386386
<td>email_address</td>
387-
<td><a href="#string">string</a></td>
387+
<td>string</td>
388388
<td>optional</td>
389389
<td><p>Customer e-mail address. </p></td>
390390
</tr>
391391

392392
<tr>
393393
<td>phone_number</td>
394-
<td><a href="#string">string</a></td>
394+
<td>string</td>
395395
<td>repeated</td>
396396
<td><p>Customer phone numbers, primary first. </p></td>
397397
</tr>
398398

399399
<tr>
400400
<td>mail_addresses</td>
401-
<td><a href="#com.example.Address">Address</a></td>
401+
<td><a href="Customer.html#com.example.Address">Address</a></td>
402402
<td>repeated</td>
403403
<td><p>Customer mail addresses, primary first. </p></td>
404404
</tr>
@@ -422,14 +422,14 @@ <h3 id="com.example.VerificationRequest">VerificationRequest</h3>
422422

423423
<tr>
424424
<td>customer_id</td>
425-
<td><a href="#int32">int32</a></td>
425+
<td>int32</td>
426426
<td>required</td>
427427
<td><p>Unique customer ID. </p></td>
428428
</tr>
429429

430430
<tr>
431431
<td>booking_status_id</td>
432-
<td><a href="#com.example.BookingStatusID">BookingStatusID</a></td>
432+
<td><a href="Booking.html#com.example.BookingStatusID">BookingStatusID</a></td>
433433
<td>required</td>
434434
<td><p>Unique booking status ID. </p></td>
435435
</tr>

examples/doc-multi-page/html/Vehicle.html

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -249,28 +249,28 @@ <h3 id="com.example.Manufacturer">Manufacturer</h3>
249249

250250
<tr>
251251
<td>id</td>
252-
<td><a href="#int32">int32</a></td>
252+
<td>int32</td>
253253
<td>required</td>
254254
<td><p>The unique manufacturer ID. </p></td>
255255
</tr>
256256

257257
<tr>
258258
<td>code</td>
259-
<td><a href="#string">string</a></td>
259+
<td>string</td>
260260
<td>required</td>
261261
<td><p>A manufacturer code, e.g. "DKL4P". </p></td>
262262
</tr>
263263

264264
<tr>
265265
<td>details</td>
266-
<td><a href="#string">string</a></td>
266+
<td>string</td>
267267
<td>optional</td>
268268
<td><p>Manufacturer details (minimum orders et.c.). </p></td>
269269
</tr>
270270

271271
<tr>
272272
<td>category</td>
273-
<td><a href="#com.example.Manufacturer.Category">Manufacturer.Category</a></td>
273+
<td><a href="Vehicle.html#com.example.Manufacturer.Category">Manufacturer.Category</a></td>
274274
<td>optional</td>
275275
<td><p>Manufacturer category. Default: CATEGORY_EXTERNAL</p></td>
276276
</tr>
@@ -294,35 +294,35 @@ <h3 id="com.example.Model">Model</h3>
294294

295295
<tr>
296296
<td>id</td>
297-
<td><a href="#string">string</a></td>
297+
<td>string</td>
298298
<td>required</td>
299299
<td><p>The unique model ID. </p></td>
300300
</tr>
301301

302302
<tr>
303303
<td>model_code</td>
304-
<td><a href="#string">string</a></td>
304+
<td>string</td>
305305
<td>required</td>
306306
<td><p>The car model code, e.g. "PZ003". </p></td>
307307
</tr>
308308

309309
<tr>
310310
<td>model_name</td>
311-
<td><a href="#string">string</a></td>
311+
<td>string</td>
312312
<td>required</td>
313313
<td><p>The car model name, e.g. "Z3". </p></td>
314314
</tr>
315315

316316
<tr>
317317
<td>daily_hire_rate_dollars</td>
318-
<td><a href="#sint32">sint32</a></td>
318+
<td>sint32</td>
319319
<td>required</td>
320320
<td><p>Dollars per day. </p></td>
321321
</tr>
322322

323323
<tr>
324324
<td>daily_hire_rate_cents</td>
325-
<td><a href="#sint32">sint32</a></td>
325+
<td>sint32</td>
326326
<td>required</td>
327327
<td><p>Cents per day. </p></td>
328328
</tr>
@@ -346,49 +346,49 @@ <h3 id="com.example.Vehicle">Vehicle</h3>
346346

347347
<tr>
348348
<td>id</td>
349-
<td><a href="#int32">int32</a></td>
349+
<td>int32</td>
350350
<td>required</td>
351351
<td><p>Unique vehicle ID. </p></td>
352352
</tr>
353353

354354
<tr>
355355
<td>model</td>
356-
<td><a href="#com.example.Model">Model</a></td>
356+
<td><a href="Vehicle.html#com.example.Model">Model</a></td>
357357
<td>required</td>
358358
<td><p>Vehicle model. </p></td>
359359
</tr>
360360

361361
<tr>
362362
<td>reg_number</td>
363-
<td><a href="#string">string</a></td>
363+
<td>string</td>
364364
<td>required</td>
365365
<td><p>Vehicle registration number. </p></td>
366366
</tr>
367367

368368
<tr>
369369
<td>mileage</td>
370-
<td><a href="#sint32">sint32</a></td>
370+
<td>sint32</td>
371371
<td>optional</td>
372372
<td><p>Current vehicle mileage, if known. </p></td>
373373
</tr>
374374

375375
<tr>
376376
<td>category</td>
377-
<td><a href="#com.example.Vehicle.Category">Vehicle.Category</a></td>
377+
<td><a href="Vehicle.html#com.example.Vehicle.Category">Vehicle.Category</a></td>
378378
<td>optional</td>
379379
<td><p>Vehicle category. </p></td>
380380
</tr>
381381

382382
<tr>
383383
<td>daily_hire_rate_dollars</td>
384-
<td><a href="#sint32">sint32</a></td>
384+
<td>sint32</td>
385385
<td>optional</td>
386386
<td><p>Dollars per day. Default: 50</p></td>
387387
</tr>
388388

389389
<tr>
390390
<td>daily_hire_rate_cents</td>
391-
<td><a href="#sint32">sint32</a></td>
391+
<td>sint32</td>
392392
<td>optional</td>
393393
<td><p>Cents per day. </p></td>
394394
</tr>
@@ -430,14 +430,14 @@ <h3 id="com.example.Vehicle.Category">Vehicle.Category</h3>
430430

431431
<tr>
432432
<td>code</td>
433-
<td><a href="#string">string</a></td>
433+
<td>string</td>
434434
<td>required</td>
435435
<td><p>Category code. E.g. "S". </p></td>
436436
</tr>
437437

438438
<tr>
439439
<td>description</td>
440-
<td><a href="#string">string</a></td>
440+
<td>string</td>
441441
<td>required</td>
442442
<td><p>Category name. E.g. "Sedan". </p></td>
443443
</tr>

0 commit comments

Comments
 (0)