How do you get displayed a given page when using newpage statement

0 votes
asked Jul 8, 2021 in Question / help by Michel
I would like to get the pages 2 and next displayed in plantuml server but I didn't find the way to do it.

Maybe somebody can help me.

Thanks

@startuml
actor DDE as dde
participant Map3D
participant "SCRipER-SMI" as scriper
participant MDMS as mdms
participant EDM as edm

header Diagramme de séquence pour les cas d'utilisation SCRipER-SMI
footer Page %page% of %lastp
actor DDE as dde
participant Map3D
participant "SCRipER-SMI" as scriper
participant "Plateforme Intégration Groupe E"
participant MDMS as mdms
participant EDM as edm

header Diagramme de séquence pour les cas d'utilisation SCRipER-SMI
footer Page %page% of %lastpage%

title Initialisation des données de base (topologie réseau distribution)

dde -> scriper : Régulièrement
activate scriper
Map3D ->scriper : Topologie réseau distribution jusqu'à objet raccordement

scriper -> mdms : Demande liste compteurs intelligents avec états par objet raccordement
activate mdms
mdms -> scriper : Liste compteurs intelligents avec états par objet raccordement
deactivate mdms
deactivate scriper

newpage mise à jour des données de base du réseau de distribution

dde -> scriper : Régulièrement
activate scriper
scriper -> mdms : Demande liste compteurs intelligents avec états par objet raccordement
activate mdms
mdms -> scriper : Liste compteurs intelligents avec états par objet raccordement
deactivate mdms
deactivate scriper
@enduml

1 Answer

0 votes
answered Jul 8, 2021 by Serge Wenger Work (15,620 points)
commented Jul 8, 2021 by Michel Wicky

For others, the <page(zerobased)> is to be set in the url when submitting

Thanks a lot for the answer Serge. Michel

commented Dec 1, 2021 by emalware (280 points)
can you provide example I tried it and does not work
commented Dec 2, 2021 by emalware (280 points)
thanks for answering, in fact I am looking for the option of using the %page% without hardcoding it
...