Mvc.sitemap 1.7 KB

123456789101112131415161718192021222324252627
  1. <?xml version="1.0" encoding="utf-8" ?>
  2. <mvcSiteMap xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xmlns="http://mvcsitemap.codeplex.com/schemas/MvcSiteMap-File-3.0"
  4. xsi:schemaLocation="http://mvcsitemap.codeplex.com/schemas/MvcSiteMap-File-3.0 MvcSiteMapSchema.xsd"
  5. enableLocalization="true">
  6. <mvcSiteMapNode title="Accueil" controller="Home" action="Index">
  7. <mvcSiteMapNode title="Recherche" controller="Recherche" action="Index" key="Recherche"/>
  8. <mvcSiteMapNode title="Les types de Viking" controller="TypeViking" action="Index">
  9. <mvcSiteMapNode title="Création d'un Type" controller="TypeViking" action="Create" />
  10. <mvcSiteMapNode title="Details d'un Type" controller="TypeViking" action="Details" preservedRouteParameters="id" />
  11. <mvcSiteMapNode title="Edition d'un Type" controller="TypeViking" action="Edit" preservedRouteParameters="id" />
  12. <mvcSiteMapNode title="Suppression d'un Type" controller="TypeViking" action="Delete" preservedRouteParameters="id" />
  13. </mvcSiteMapNode>
  14. <mvcSiteMapNode title="Les Vikings" controller="Viking" action="Index" key="Vikings">
  15. <mvcSiteMapNode title="Création d'un Viking" controller="Viking" action="Create" />
  16. <mvcSiteMapNode title="Details d'un Viking" controller="Viking" action="Details" preservedRouteParameters="id" />
  17. <mvcSiteMapNode title="Edition d'un Viking" controller="Viking" action="Edit" preservedRouteParameters="id" />
  18. <mvcSiteMapNode title="Suppression d'un Viking" controller="Viking" action="Delete" preservedRouteParameters="id" />
  19. </mvcSiteMapNode>
  20. <mvcSiteMapNode title="Tests d'impression" controller="PrintTest" action="Index" />
  21. </mvcSiteMapNode>
  22. </mvcSiteMap>