Procedure to update out of date images
* Go through https://mobile-docs.netlify.com/aerogear/ and find a screenshot in the instructions. * Compare this screenshot with how it compares with the UI in downstream for the same material * If different: # Right click on the image in upstream and select "Open image in new tab" to get the path and name of the image. # Make a new screenshot from downstream and name it the same as the upstream with "_down" appended to its name before the extension of the filename. # Add this new screenshot to the repo. # Replace the code where the image was displayed with the following: {panel:title=} // tag::excludeUpstream[] image::<new "_down" image>.png[] // end::excludeUpstream[]
// tag::excludeDownstream[] image::image.png[] // end::excludeDownstream[] {panel} This will ensure that the appropriate image is displayed in the downstream or upstream docs.
Whereever this change is made, check that the assembly where the adoc is included contains { panel code : title= java } ,tags={include-tags} { panel code } for example: {code:java} include::_partials/mobile-client-using-mobile-services.adoc[leveloffset=1,tags={include-tags}] {code}
* Open a PR for your changes. * If the text as well as the image is incorrect, open a jira and move on. |
|