Skip to content

Commit

Permalink
Examples: resolve file paths in multi page template
Browse files Browse the repository at this point in the history
  • Loading branch information
Tristan Floch authored and TristanFloch committed Jul 13, 2023
1 parent be76356 commit cc52d21
Show file tree
Hide file tree
Showing 4 changed files with 54 additions and 54 deletions.
26 changes: 13 additions & 13 deletions examples/doc-multi-page/html/Booking.html
Original file line number Diff line number Diff line change
Expand Up @@ -240,15 +240,15 @@ <h3 id="com.example.BookingService">BookingService</h3>

<tr>
<td>BookVehicle</td>
<td><a href="#com.example.Booking">Booking</a></td>
<td><a href="#com.example.BookingStatus">BookingStatus</a></td>
<td><a href="Booking.html#com.example.Booking">Booking</a></td>
<td><a href="Booking.html#com.example.BookingStatus">BookingStatus</a></td>
<td><p>Used to book a vehicle. Pass in a Booking and a BookingStatus will be returned.</p></td>
</tr>

<tr>
<td>BookingUpdates</td>
<td><a href="#com.example.BookingStatusID">BookingStatusID</a></td>
<td><a href="#com.example.BookingStatus">BookingStatus</a> stream</td>
<td><a href="Booking.html#com.example.BookingStatusID">BookingStatusID</a></td>
<td><a href="Booking.html#com.example.BookingStatus">BookingStatus</a> stream</td>
<td><p>Used to subscribe to updates of the BookingStatus.</p></td>
</tr>

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

<tr>
<td>vehicle_id</td>
<td><a href="#int32">int32</a></td>
<td><a href=".html#int32">int32</a></td>
<td></td>
<td><p>ID of booked vehicle. </p></td>
</tr>

<tr>
<td>customer_id</td>
<td><a href="#int32">int32</a></td>
<td><a href=".html#int32">int32</a></td>
<td></td>
<td><p>Customer that booked the vehicle. </p></td>
</tr>

<tr>
<td>status</td>
<td><a href="#com.example.BookingStatus">BookingStatus</a></td>
<td><a href="Booking.html#com.example.BookingStatus">BookingStatus</a></td>
<td></td>
<td><p>Status of the booking. </p></td>
</tr>

<tr>
<td>confirmation_sent</td>
<td><a href="#bool">bool</a></td>
<td><a href=".html#bool">bool</a></td>
<td></td>
<td><p>Has booking confirmation been sent? </p></td>
</tr>

<tr>
<td>payment_received</td>
<td><a href="#bool">bool</a></td>
<td><a href=".html#bool">bool</a></td>
<td></td>
<td><p>Has payment been received? </p></td>
</tr>

<tr>
<td>color_preference</td>
<td><a href="#string">string</a></td>
<td><a href=".html#string">string</a></td>
<td></td>
<td><p><strong>Deprecated.</strong> Color preference of the customer. </p></td>
</tr>
Expand Down Expand Up @@ -381,14 +381,14 @@ <h3 id="com.example.BookingStatus">BookingStatus</h3>

<tr>
<td>id</td>
<td><a href="#int32">int32</a></td>
<td><a href=".html#int32">int32</a></td>
<td></td>
<td><p>Unique booking status ID. </p></td>
</tr>

<tr>
<td>description</td>
<td><a href="#string">string</a></td>
<td><a href=".html#string">string</a></td>
<td></td>
<td><p>Booking status description. E.g. "Active". </p></td>
</tr>
Expand Down Expand Up @@ -441,7 +441,7 @@ <h3 id="com.example.BookingStatusID">BookingStatusID</h3>

<tr>
<td>id</td>
<td><a href="#int32">int32</a></td>
<td><a href=".html#int32">int32</a></td>
<td></td>
<td><p>Unique booking status ID. </p></td>
</tr>
Expand Down
40 changes: 20 additions & 20 deletions examples/doc-multi-page/html/Customer.html
Original file line number Diff line number Diff line change
Expand Up @@ -240,15 +240,15 @@ <h3 id="com.example.CustomerService">CustomerService</h3>

<tr>
<td>FindBookings</td>
<td><a href="#com.example.Customer">Customer</a></td>
<td><a href="#com.example.Booking">Booking</a> stream</td>
<td><a href="Customer.html#com.example.Customer">Customer</a></td>
<td><a href="Booking.html#com.example.Booking">Booking</a> stream</td>
<td><p>Retrieve all bookings made by a customer.</p></td>
</tr>

<tr>
<td>VerifyBookingStatus</td>
<td><a href="#com.example.VerificationRequest">VerificationRequest</a></td>
<td><a href="#com.example.BookingStatusMessage">BookingStatusMessage</a></td>
<td><a href="Customer.html#com.example.VerificationRequest">VerificationRequest</a></td>
<td><a href="Customer.html#com.example.BookingStatusMessage">BookingStatusMessage</a></td>
<td><p>Verify the payment status of a booking.</p></td>
</tr>

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

<tr>
<td>address_line_1</td>
<td><a href="#string">string</a></td>
<td><a href=".html#string">string</a></td>
<td>required</td>
<td><p>First address line. </p></td>
</tr>

<tr>
<td>address_line_2</td>
<td><a href="#string">string</a></td>
<td><a href=".html#string">string</a></td>
<td>optional</td>
<td><p>Second address line. </p></td>
</tr>

<tr>
<td>address_line_3</td>
<td><a href="#string">string</a></td>
<td><a href=".html#string">string</a></td>
<td>optional</td>
<td><p>Second address line. </p></td>
</tr>

<tr>
<td>town</td>
<td><a href="#string">string</a></td>
<td><a href=".html#string">string</a></td>
<td>required</td>
<td><p>Address town. </p></td>
</tr>

<tr>
<td>county</td>
<td><a href="#string">string</a></td>
<td><a href=".html#string">string</a></td>
<td>optional</td>
<td><p>Address county, if applicable. </p></td>
</tr>

<tr>
<td>country</td>
<td><a href="#string">string</a></td>
<td><a href=".html#string">string</a></td>
<td>required</td>
<td><p>Address country. </p></td>
</tr>
Expand All @@ -332,7 +332,7 @@ <h3 id="com.example.BookingStatusMessage">BookingStatusMessage</h3>

<tr>
<td>description</td>
<td><a href="#string">string</a></td>
<td><a href=".html#string">string</a></td>
<td>required</td>
<td><p>Booking status description. E.g. "Active". </p></td>
</tr>
Expand All @@ -356,49 +356,49 @@ <h3 id="com.example.Customer">Customer</h3>

<tr>
<td>id</td>
<td><a href="#int32">int32</a></td>
<td><a href=".html#int32">int32</a></td>
<td>required</td>
<td><p>Unique customer ID. </p></td>
</tr>

<tr>
<td>first_name</td>
<td><a href="#string">string</a></td>
<td><a href=".html#string">string</a></td>
<td>required</td>
<td><p>Customer first name. </p></td>
</tr>

<tr>
<td>last_name</td>
<td><a href="#string">string</a></td>
<td><a href=".html#string">string</a></td>
<td>required</td>
<td><p>Customer last name. </p></td>
</tr>

<tr>
<td>details</td>
<td><a href="#string">string</a></td>
<td><a href=".html#string">string</a></td>
<td>optional</td>
<td><p>Customer details. </p></td>
</tr>

<tr>
<td>email_address</td>
<td><a href="#string">string</a></td>
<td><a href=".html#string">string</a></td>
<td>optional</td>
<td><p>Customer e-mail address. </p></td>
</tr>

<tr>
<td>phone_number</td>
<td><a href="#string">string</a></td>
<td><a href=".html#string">string</a></td>
<td>repeated</td>
<td><p>Customer phone numbers, primary first. </p></td>
</tr>

<tr>
<td>mail_addresses</td>
<td><a href="#com.example.Address">Address</a></td>
<td><a href="Customer.html#com.example.Address">Address</a></td>
<td>repeated</td>
<td><p>Customer mail addresses, primary first. </p></td>
</tr>
Expand All @@ -422,14 +422,14 @@ <h3 id="com.example.VerificationRequest">VerificationRequest</h3>

<tr>
<td>customer_id</td>
<td><a href="#int32">int32</a></td>
<td><a href=".html#int32">int32</a></td>
<td>required</td>
<td><p>Unique customer ID. </p></td>
</tr>

<tr>
<td>booking_status_id</td>
<td><a href="#com.example.BookingStatusID">BookingStatusID</a></td>
<td><a href="Booking.html#com.example.BookingStatusID">BookingStatusID</a></td>
<td>required</td>
<td><p>Unique booking status ID. </p></td>
</tr>
Expand Down
36 changes: 18 additions & 18 deletions examples/doc-multi-page/html/Vehicle.html
Original file line number Diff line number Diff line change
Expand Up @@ -249,28 +249,28 @@ <h3 id="com.example.Manufacturer">Manufacturer</h3>

<tr>
<td>id</td>
<td><a href="#int32">int32</a></td>
<td><a href=".html#int32">int32</a></td>
<td>required</td>
<td><p>The unique manufacturer ID. </p></td>
</tr>

<tr>
<td>code</td>
<td><a href="#string">string</a></td>
<td><a href=".html#string">string</a></td>
<td>required</td>
<td><p>A manufacturer code, e.g. "DKL4P". </p></td>
</tr>

<tr>
<td>details</td>
<td><a href="#string">string</a></td>
<td><a href=".html#string">string</a></td>
<td>optional</td>
<td><p>Manufacturer details (minimum orders et.c.). </p></td>
</tr>

<tr>
<td>category</td>
<td><a href="#com.example.Manufacturer.Category">Manufacturer.Category</a></td>
<td><a href="Vehicle.html#com.example.Manufacturer.Category">Manufacturer.Category</a></td>
<td>optional</td>
<td><p>Manufacturer category. Default: CATEGORY_EXTERNAL</p></td>
</tr>
Expand All @@ -294,35 +294,35 @@ <h3 id="com.example.Model">Model</h3>

<tr>
<td>id</td>
<td><a href="#string">string</a></td>
<td><a href=".html#string">string</a></td>
<td>required</td>
<td><p>The unique model ID. </p></td>
</tr>

<tr>
<td>model_code</td>
<td><a href="#string">string</a></td>
<td><a href=".html#string">string</a></td>
<td>required</td>
<td><p>The car model code, e.g. "PZ003". </p></td>
</tr>

<tr>
<td>model_name</td>
<td><a href="#string">string</a></td>
<td><a href=".html#string">string</a></td>
<td>required</td>
<td><p>The car model name, e.g. "Z3". </p></td>
</tr>

<tr>
<td>daily_hire_rate_dollars</td>
<td><a href="#sint32">sint32</a></td>
<td><a href=".html#sint32">sint32</a></td>
<td>required</td>
<td><p>Dollars per day. </p></td>
</tr>

<tr>
<td>daily_hire_rate_cents</td>
<td><a href="#sint32">sint32</a></td>
<td><a href=".html#sint32">sint32</a></td>
<td>required</td>
<td><p>Cents per day. </p></td>
</tr>
Expand All @@ -346,49 +346,49 @@ <h3 id="com.example.Vehicle">Vehicle</h3>

<tr>
<td>id</td>
<td><a href="#int32">int32</a></td>
<td><a href=".html#int32">int32</a></td>
<td>required</td>
<td><p>Unique vehicle ID. </p></td>
</tr>

<tr>
<td>model</td>
<td><a href="#com.example.Model">Model</a></td>
<td><a href="Vehicle.html#com.example.Model">Model</a></td>
<td>required</td>
<td><p>Vehicle model. </p></td>
</tr>

<tr>
<td>reg_number</td>
<td><a href="#string">string</a></td>
<td><a href=".html#string">string</a></td>
<td>required</td>
<td><p>Vehicle registration number. </p></td>
</tr>

<tr>
<td>mileage</td>
<td><a href="#sint32">sint32</a></td>
<td><a href=".html#sint32">sint32</a></td>
<td>optional</td>
<td><p>Current vehicle mileage, if known. </p></td>
</tr>

<tr>
<td>category</td>
<td><a href="#com.example.Vehicle.Category">Vehicle.Category</a></td>
<td><a href="Vehicle.html#com.example.Vehicle.Category">Vehicle.Category</a></td>
<td>optional</td>
<td><p>Vehicle category. </p></td>
</tr>

<tr>
<td>daily_hire_rate_dollars</td>
<td><a href="#sint32">sint32</a></td>
<td><a href=".html#sint32">sint32</a></td>
<td>optional</td>
<td><p>Dollars per day. Default: 50</p></td>
</tr>

<tr>
<td>daily_hire_rate_cents</td>
<td><a href="#sint32">sint32</a></td>
<td><a href=".html#sint32">sint32</a></td>
<td>optional</td>
<td><p>Cents per day. </p></td>
</tr>
Expand Down Expand Up @@ -430,14 +430,14 @@ <h3 id="com.example.Vehicle.Category">Vehicle.Category</h3>

<tr>
<td>code</td>
<td><a href="#string">string</a></td>
<td><a href=".html#string">string</a></td>
<td>required</td>
<td><p>Category code. E.g. "S". </p></td>
</tr>

<tr>
<td>description</td>
<td><a href="#string">string</a></td>
<td><a href=".html#string">string</a></td>
<td>required</td>
<td><p>Category name. E.g. "Sedan". </p></td>
</tr>
Expand Down
Loading

0 comments on commit cc52d21

Please sign in to comment.