Reviewers: , Description: Hi Lex,
could you review this patch for me? It follows up on a (very useful!) feature request by Adam to add permutation information to the index page for each individual permutation. Thanks, kathrin Please review this at http://gwt-code-reviews.appspot.com/64808 Affected files: dev/core/src/com/google/gwt/soyc/MakeTopLevelHtmlForPerm.java Index: dev/core/src/com/google/gwt/soyc/MakeTopLevelHtmlForPerm.java =================================================================== --- dev/core/src/com/google/gwt/soyc/MakeTopLevelHtmlForPerm.java (revision 6077) +++ dev/core/src/com/google/gwt/soyc/MakeTopLevelHtmlForPerm.java (working copy) @@ -856,7 +856,12 @@ outFile.println("<body>"); outFile.println("<div class='abs mainHeader'>"); outFile.println("<h2>Story of Your Compile Dashboard</h2>"); - + String permutationInfo = settings.allPermsInfo.get(permutationId); + outFile.print("<h3>Permutation " + permutationId); + if (permutationInfo.length() > 0) { + outFile.println(" (" + permutationInfo + ")"); + } + outFile.println("</h3>"); outFile.println("<hr>"); outFile.println("<center>"); if (globalInformation.getSplitPointToLocation().size() > 1) { --~--~---------~--~----~------------~-------~--~----~ http://groups.google.com/group/Google-Web-Toolkit-Contributors -~----------~----~----~----~------~----~------~--~---
