Skip to content
Snippets Groups Projects
Commit 88d5a82d authored by Nils Christian Ehmke's avatar Nils Christian Ehmke
Browse files

Replaced some Icons; Some refactoring; Localization

parent 3f18c31d
No related branches found
No related tags found
No related merge requests found
Showing
with 243 additions and 13 deletions
...@@ -11,16 +11,16 @@ ...@@ -11,16 +11,16 @@
<h:form id="dependenciesForm"> <h:form id="dependenciesForm">
<p:dataTable id="currentDependencies" value="#{currentAnalysisEditorBean.libraries}" var="dependency" paginator="true" rows="10" paginatorTemplate="{CurrentPageReport} {FirstPageLink} {PreviousPageLink} {PageLinks} {NextPageLink} {LastPageLink} {RowsPerPageDropdown}" > <p:dataTable id="currentDependencies" value="#{currentAnalysisEditorBean.libraries}" var="dependency" paginator="true" rows="10" paginatorTemplate="{CurrentPageReport} {FirstPageLink} {PreviousPageLink} {PageLinks} {NextPageLink} {LastPageLink} {RowsPerPageDropdown}" >
<p:column headerText="#{localizedMessages.fileName}"> <p:column headerText="#{localizedAnalysisEditorPageMessages.fileName}">
<h:outputText value="#{dependency}"/> <h:outputText value="#{dependency}"/>
</p:column> </p:column>
<p:column headerText="#{localizedMessages.fileSize}" style="text-align: center"> <p:column headerText="#{localizedAnalysisEditorPageMessages.fileSize}" style="text-align: center">
<h:outputText value="N/A [MiByte]"/> <h:outputText value="N/A [MiByte]"/>
</p:column> </p:column>
<p:column headerText="#{localizedMessages.libOptions}" style="text-align: center; width:40px"> <p:column headerText="#{localizedAnalysisEditorPageMessages.libOptions}" style="text-align: center; width:40px">
<p:commandButton id="deleteButton" icon="ui-icon-trash" disabled="true"/> <p:commandButton id="deleteButton" icon="ui-icon-delete" disabled="true"/>
<p:tooltip for="deleteButton" value="Delete Library"/> <p:tooltip for="deleteButton" value="Delete Library"/>
</p:column> </p:column>
</p:dataTable> </p:dataTable>
...@@ -29,7 +29,7 @@ ...@@ -29,7 +29,7 @@
<p:spacer width="0" height="5"/> <p:spacer width="0" height="5"/>
<div> <div>
<!-- This is the form for the uploading. --> <!-- This is the form for the uploading. -->
<h:outputText value="#{localizedMessages.msgOnlyJar}" /> <h:outputText value="#{localizedAnalysisEditorPageMessages.msgOnlyJar}" />
<br /> <br />
<br /> <br />
<h:form enctype="multipart/form-data"> <h:form enctype="multipart/form-data">
......
...@@ -8,13 +8,13 @@ ...@@ -8,13 +8,13 @@
<!-- ******************************************************************************** --> <!-- ******************************************************************************** -->
<!-- This is the dialog to create a new project. --> <!-- This is the dialog to create a new project. -->
<p:dialog id="newProjectDlg" header="#{localizedMessages.newProject}" resizable="false" modal="true" widgetVar="newProjectDialog"> <p:dialog id="newProjectDlg" header="#{localizedProjectOverviewMessages.newProject}" resizable="false" modal="true" widgetVar="newProjectDialog">
<!-- Make sure that closing of the dialog also clears the input field. --> <!-- Make sure that closing of the dialog also clears the input field. -->
<p:ajax event="close" update="newProjectDialogForm:newProjectInputText" /> <p:ajax event="close" update="newProjectDialogForm:newProjectInputText" />
<h:form id="newProjectDialogForm"> <h:form id="newProjectDialogForm">
<div style="text-align: center"> <div style="text-align: center">
<h:outputText value="#{localizedMessages.name}: " /> <h:outputText value="#{localizedProjectOverviewMessages.name}: " />
<p:inputText id="newProjectInputText" value="#{stringBean.string}" /> <p:inputText id="newProjectInputText" value="#{stringBean.string}" />
</div> </div>
...@@ -28,13 +28,13 @@ ...@@ -28,13 +28,13 @@
</p:dialog> </p:dialog>
<!-- ******************************************************************************** --> <!-- ******************************************************************************** -->
<p:dialog id="renameProjectDlg" header="Rename Project" resizable="false" modal="true" widgetVar="renameProjectDialog"> <p:dialog id="renameProjectDlg" header="#{localizedProjectOverviewMessages.renameProject}" resizable="false" modal="true" widgetVar="renameProjectDialog">
<!-- Make sure that closing of the dialog also clears the input field. --> <!-- Make sure that closing of the dialog also clears the input field. -->
<p:ajax event="close" update="renameProjectDialogForm:renameProjectInputText" /> <p:ajax event="close" update="renameProjectDialogForm:renameProjectInputText" />
<h:form id="renameProjectDialogForm"> <h:form id="renameProjectDialogForm">
<div style="text-align: center"> <div style="text-align: center">
<h:outputText value="#{localizedMessages.newName}: " /> <h:outputText value="#{localizedProjectOverviewMessages.newName}: " />
<p:inputText id="renameProjectInputText" value="#{stringBean.string}" /> <p:inputText id="renameProjectInputText" value="#{stringBean.string}" />
</div> </div>
...@@ -47,11 +47,11 @@ ...@@ -47,11 +47,11 @@
</h:form> </h:form>
</p:dialog> </p:dialog>
<p:dialog id="deleteProjectDlg" header="#{localizedMessages.deleteProject}" resizable="false" modal="true" widgetVar="deleteProjectDialog"> <p:dialog id="deleteProjectDlg" header="#{localizedProjectOverviewMessages.deleteProject}" resizable="false" modal="true" widgetVar="deleteProjectDialog">
<h:form id="deleteProjectDialogForm"> <h:form id="deleteProjectDialogForm">
<div style="text-align: center"> <div style="text-align: center">
<h:outputText value="#{localizedMessages.msgReallyDeleteProject}" /> <h:outputText value="#{localizedProjectOverviewMessages.msgReallyDeleteProject}" />
</div> </div>
<hr/> <hr/>
...@@ -63,13 +63,13 @@ ...@@ -63,13 +63,13 @@
</h:form> </h:form>
</p:dialog> </p:dialog>
<p:dialog id="copyProjectDlg" header="#{localizedMessages.copyProject}" resizable="false" modal="true" widgetVar="copyProjectDialog"> <p:dialog id="copyProjectDlg" header="#{localizedProjectOverviewMessages.copyProject}" resizable="false" modal="true" widgetVar="copyProjectDialog">
<!-- Make sure that closing of the dialog also clears the input field. --> <!-- Make sure that closing of the dialog also clears the input field. -->
<p:ajax event="close" update="copyProjectDialogForm:copyProjectDialogInputText" /> <p:ajax event="close" update="copyProjectDialogForm:copyProjectDialogInputText" />
<h:form id="copyProjectDialogForm"> <h:form id="copyProjectDialogForm">
<div style="text-align: center"> <div style="text-align: center">
<h:outputText value="#{localizedMessages.name}: " /> <h:outputText value="#{localizedProjectOverviewMessages.name}: " />
<p:inputText id="copyProjectDialogInputText" value="#{stringBean.string}" /> <p:inputText id="copyProjectDialogInputText" value="#{stringBean.string}" />
</div> </div>
......
Kieker.WebGUI/src/main/webapp/img/graphIcons/FilterIcon.png

13.2 KiB | W: | H:

Kieker.WebGUI/src/main/webapp/img/graphIcons/FilterIcon.png

14.1 KiB | W: | H:

Kieker.WebGUI/src/main/webapp/img/graphIcons/FilterIcon.png
Kieker.WebGUI/src/main/webapp/img/graphIcons/FilterIcon.png
Kieker.WebGUI/src/main/webapp/img/graphIcons/FilterIcon.png
Kieker.WebGUI/src/main/webapp/img/graphIcons/FilterIcon.png
  • 2-up
  • Swipe
  • Onion skin
Kieker.WebGUI/src/main/webapp/img/graphIcons/ReaderIcon.png

9.6 KiB | W: | H:

Kieker.WebGUI/src/main/webapp/img/graphIcons/ReaderIcon.png

12.1 KiB | W: | H:

Kieker.WebGUI/src/main/webapp/img/graphIcons/ReaderIcon.png
Kieker.WebGUI/src/main/webapp/img/graphIcons/ReaderIcon.png
Kieker.WebGUI/src/main/webapp/img/graphIcons/ReaderIcon.png
Kieker.WebGUI/src/main/webapp/img/graphIcons/ReaderIcon.png
  • 2-up
  • Swipe
  • Onion skin
Kieker.WebGUI/src/main/webapp/img/graphIcons/RepositoryIcon.png

10.5 KiB | W: | H:

Kieker.WebGUI/src/main/webapp/img/graphIcons/RepositoryIcon.png

10.8 KiB | W: | H:

Kieker.WebGUI/src/main/webapp/img/graphIcons/RepositoryIcon.png
Kieker.WebGUI/src/main/webapp/img/graphIcons/RepositoryIcon.png
Kieker.WebGUI/src/main/webapp/img/graphIcons/RepositoryIcon.png
Kieker.WebGUI/src/main/webapp/img/graphIcons/RepositoryIcon.png
  • 2-up
  • Swipe
  • Onion skin
Kieker.WebGUI/src/main/webapp/img/icons/Copy.png

494 B

Kieker.WebGUI/src/main/webapp/img/icons/Delete.png

694 B

Kieker.WebGUI/src/main/webapp/img/icons/Edit.png

667 B

Kieker.WebGUI/src/main/webapp/img/icons/GridDisabled.png

898 B | W: | H:

Kieker.WebGUI/src/main/webapp/img/icons/GridDisabled.png

997 B | W: | H:

Kieker.WebGUI/src/main/webapp/img/icons/GridDisabled.png
Kieker.WebGUI/src/main/webapp/img/icons/GridDisabled.png
Kieker.WebGUI/src/main/webapp/img/icons/GridDisabled.png
Kieker.WebGUI/src/main/webapp/img/icons/GridDisabled.png
  • 2-up
  • Swipe
  • Onion skin
Kieker.WebGUI/src/main/webapp/img/icons/GridDisabledSmall.png

471 B | W: | H:

Kieker.WebGUI/src/main/webapp/img/icons/GridDisabledSmall.png

515 B | W: | H:

Kieker.WebGUI/src/main/webapp/img/icons/GridDisabledSmall.png
Kieker.WebGUI/src/main/webapp/img/icons/GridDisabledSmall.png
Kieker.WebGUI/src/main/webapp/img/icons/GridDisabledSmall.png
Kieker.WebGUI/src/main/webapp/img/icons/GridDisabledSmall.png
  • 2-up
  • Swipe
  • Onion skin
Kieker.WebGUI/src/main/webapp/img/icons/GridEnabled.png

1.24 KiB | W: | H:

Kieker.WebGUI/src/main/webapp/img/icons/GridEnabled.png

493 B | W: | H:

Kieker.WebGUI/src/main/webapp/img/icons/GridEnabled.png
Kieker.WebGUI/src/main/webapp/img/icons/GridEnabled.png
Kieker.WebGUI/src/main/webapp/img/icons/GridEnabled.png
Kieker.WebGUI/src/main/webapp/img/icons/GridEnabled.png
  • 2-up
  • Swipe
  • Onion skin
Kieker.WebGUI/src/main/webapp/img/icons/GridEnabledSmall.png

592 B | W: | H:

Kieker.WebGUI/src/main/webapp/img/icons/GridEnabledSmall.png

368 B | W: | H:

Kieker.WebGUI/src/main/webapp/img/icons/GridEnabledSmall.png
Kieker.WebGUI/src/main/webapp/img/icons/GridEnabledSmall.png
Kieker.WebGUI/src/main/webapp/img/icons/GridEnabledSmall.png
Kieker.WebGUI/src/main/webapp/img/icons/GridEnabledSmall.png
  • 2-up
  • Swipe
  • Onion skin
Kieker.WebGUI/src/main/webapp/img/icons/Home.png

779 B | W: | H:

Kieker.WebGUI/src/main/webapp/img/icons/Home.png

834 B | W: | H:

Kieker.WebGUI/src/main/webapp/img/icons/Home.png
Kieker.WebGUI/src/main/webapp/img/icons/Home.png
Kieker.WebGUI/src/main/webapp/img/icons/Home.png
Kieker.WebGUI/src/main/webapp/img/icons/Home.png
  • 2-up
  • Swipe
  • Onion skin
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="102.5625"
height="102.53125"
id="svg2"
version="1.1"
inkscape:version="0.48.2 r9819"
sodipodi:docname="gridDisabled.svg"
inkscape:export-filename="C:\HiWi\kieker.webgui (working copy)\Kieker.WebGUI\src\main\webapp\img\icons\gridEnabled.png"
inkscape:export-xdpi="14.04"
inkscape:export-ydpi="14.04">
<defs
id="defs4" />
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="1.9525"
inkscape:cx="12.916116"
inkscape:cy="44.387869"
inkscape:document-units="px"
inkscape:current-layer="layer1"
showgrid="false"
inkscape:window-width="1680"
inkscape:window-height="1000"
inkscape:window-x="-8"
inkscape:window-y="-8"
inkscape:window-maximized="1"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0" />
<metadata
id="metadata7">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<g
inkscape:label="Ebene 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(4.875,3709.4063)">
<rect
style="fill:none;stroke:#000000;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:3,3;stroke-dashoffset:0"
id="rect2985"
width="99.549774"
height="99.549774"
x="-3.3704739"
y="-3707.9121" />
<path
style="fill:none;stroke:#000000;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:4,4;stroke-dashoffset:0"
d="m 19.462225,-3707.1769 0,98.8476"
id="path3755"
inkscape:connector-curvature="0" />
<path
inkscape:connector-curvature="0"
id="path3757"
d="m 74.519853,-3707.9451 0,98.8476"
style="fill:#00000c;fill-opacity:1;stroke:#000000;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:4,4;stroke-dashoffset:0" />
<path
inkscape:connector-curvature="0"
id="path3757-1"
d="m 46.991037,-3707.4329 0,98.8476"
style="fill:#00000c;fill-opacity:1;stroke:#000000;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:4,4;stroke-dashoffset:0" />
<path
inkscape:connector-curvature="0"
id="path3784-0"
d="m 95.4441,-3685.6661 -98.8476,0"
style="fill:none;stroke:#000000;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:4,4;stroke-dashoffset:0" />
<path
style="fill:#00000c;fill-opacity:1;stroke:#000000;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:4,4;stroke-dashoffset:0"
d="m 96.2123,-3630.6084 -98.8476,0"
id="path3786-9"
inkscape:connector-curvature="0" />
<path
style="fill:#00000c;fill-opacity:1;stroke:#000000;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:4,4;stroke-dashoffset:0"
d="m 95.7001,-3658.1373 -98.8476,0"
id="path3788-4"
inkscape:connector-curvature="0" />
</g>
</svg>
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="102.5625"
height="102.53125"
id="svg2"
version="1.1"
inkscape:version="0.48.2 r9819"
sodipodi:docname="gridEnabled.svg"
inkscape:export-filename="C:\HiWi\kieker.webgui (working copy)\Kieker.WebGUI\src\main\webapp\img\icons\gridEnabled.png"
inkscape:export-xdpi="28.080439"
inkscape:export-ydpi="28.080439">
<defs
id="defs4" />
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="3.905"
inkscape:cx="21.048893"
inkscape:cy="40.977722"
inkscape:document-units="px"
inkscape:current-layer="layer1"
showgrid="false"
inkscape:window-width="1680"
inkscape:window-height="1000"
inkscape:window-x="-8"
inkscape:window-y="-8"
inkscape:window-maximized="1"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0" />
<metadata
id="metadata7">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<g
inkscape:label="Ebene 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(4.875,3709.4063)">
<rect
style="fill:none;stroke:#000000;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:0.99215686000000003;stroke-dasharray:none"
id="rect2985"
width="99.549774"
height="99.549774"
x="-3.3704739"
y="-3707.9121" />
<g
id="g3777"
transform="translate(-2.723877e-6,0)"
style="fill:none;stroke:#000000;stroke-opacity:0.99215686000000003">
<path
inkscape:connector-curvature="0"
id="path3755"
d="m 19.462228,-3707.1769 0,98.8476"
style="fill:none;stroke:#000000;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:0.99215686000000003;stroke-dasharray:none" />
<path
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:0.99215686000000003;stroke-dasharray:none"
d="m 74.519856,-3707.9451 0,98.8476"
id="path3757"
inkscape:connector-curvature="0" />
<path
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:0.99215686000000003;stroke-dasharray:none"
d="m 46.99104,-3707.4329 0,98.8476"
id="path3757-1"
inkscape:connector-curvature="0" />
</g>
<g
transform="translate(-2.723877e-6,0)"
id="g3782"
style="fill:none;stroke:#000000;stroke-opacity:0.99215686000000003">
<path
style="fill:none;stroke:#000000;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:0.99215686000000003;stroke-dasharray:none"
d="m 19.462228,-3707.1769 0,98.8476"
id="path3784"
inkscape:connector-curvature="0" />
<path
inkscape:connector-curvature="0"
id="path3786"
d="m 74.519856,-3707.9451 0,98.8476"
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:0.99215686000000003;stroke-dasharray:none" />
<path
inkscape:connector-curvature="0"
id="path3788"
d="m 46.99104,-3707.4329 0,98.8476"
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:0.99215686000000003;stroke-dasharray:none" />
</g>
<g
transform="matrix(0,1,-1,0,-3611.7328,-3705.1283)"
id="g3782-4"
style="fill:none;stroke:#000000;stroke-opacity:0.99215686000000003">
<path
style="fill:none;stroke:#000000;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:0.99215686000000003;stroke-dasharray:none"
d="m 19.462228,-3707.1769 0,98.8476"
id="path3784-0"
inkscape:connector-curvature="0" />
<path
inkscape:connector-curvature="0"
id="path3786-9"
d="m 74.519856,-3707.9451 0,98.8476"
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:0.99215686000000003;stroke-dasharray:none" />
<path
inkscape:connector-curvature="0"
id="path3788-4"
d="m 46.99104,-3707.4329 0,98.8476"
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:0.99215686000000003;stroke-dasharray:none" />
</g>
</g>
</svg>
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment