Skip to content

Commit

Permalink
fix for bug #8
Browse files Browse the repository at this point in the history
  • Loading branch information
Phillip Rhodes committed Jul 22, 2010
1 parent e75fefc commit 3983e6c
Show file tree
Hide file tree
Showing 270 changed files with 33 additions and 31 deletions.
26 changes: 13 additions & 13 deletions grails-app/views/entry/viewEntry.gsp
Expand Up @@ -15,18 +15,18 @@
<div id="upVote.${theEntry.id}">
<g:remoteLink controller="vote" action="submitVoteUp" params="[entryId:theEntry.id]"
onComplete="afterVote(e);">
+ (up)
<img src="/neddick1/images/icons/1uparrow.png" />
</g:remoteLink> <br />
</div>

<div id="score.${theEntry.id}">
<div id="score.${theEntry.id}" style="padding-left:3px;">
${theEntry.score}
</div>

<div id="downVote.${theEntry.id}">
<g:remoteLink controller="vote" action="submitVoteDown" params="[entryId:theEntry.id]"
onComplete="afterVote(e);">
- (down)
<img src="/neddick1/images/icons/1downarrow.png" />
</g:remoteLink>
</div>
</dd>
Expand All @@ -51,7 +51,7 @@
<span><a href="#" id="showHideTagbox.${theEntry.id}" onClick="return toggleTagbox(${theEntry.id});" >Tag</a></span>
<div id="tagbox.${theEntry.id}" style="display:none;" >

<g:formRemote onSuccess="addTag(e, ${entry.id})" name="tagForm" url="[ controller: 'tag', action: 'addTag']">
<g:formRemote onSuccess="addTag(e, ${theEntry.id})" name="tagForm" url="[ controller: 'tag', action: 'addTag']">
<g:textField id="tagNameField.${theEntry.id}" name="tagName" />
<g:hiddenField name="entryUuid" value="${theEntry.uuid}" />
<g:hiddenField name="entryId" value="${theEntry.id}" />
Expand Down Expand Up @@ -88,21 +88,21 @@
<div style="float:left;">
<dl>
<dd>
<div id="upVote.${theEntry.id}">
<g:remoteLink controller="vote" action="submitVoteUp" params="[entryId:theEntry.id]"
<div id="upVote.${recommendedEntry.id}">
<g:remoteLink controller="vote" action="submitVoteUp" params="[entryId:recommendedEntry.id]"
onComplete="afterVote(e);">
+ (up)
<img src="/neddick1/images/icons/1uparrow.png" />
</g:remoteLink> <br />
</div>

<div id="score.${theEntry.id}">
${theEntry.score}
<div id="score.${recommendedEntry.id}" style="padding-left:3px;">
${recommendedEntry.score}
</div>

<div id="downVote.${theEntry.id}">
<g:remoteLink controller="vote" action="submitVoteDown" params="[entryId:theEntry.id]"
<div id="downVote.${recommendedEntry.id}">
<g:remoteLink controller="vote" action="submitVoteDown" params="[entryId:recommendedEntry.id]"
onComplete="afterVote(e);">
- (down)
<img src="/neddick1/images/icons/1downarrow.png" />
</g:remoteLink>
</div>
</dd>
Expand All @@ -126,7 +126,7 @@
params="[entryId:recommendedEntry.id]" onComplete="afterHide(e);">hide</g:remoteLink></span>
<span><a href="#" id="showHideTagbox.${recommendedEntry.id}" onClick="return toggleTagbox(${recommendedEntry.id});" >Tag</a></span>
<div id="tagbox.${recommendedEntry.id}" style="display:none;" >
<g:formRemote onSuccess="addTag(e, ${entry.id})" name="tagForm" url="[ controller: 'tag', action: 'addTag']">
<g:formRemote onSuccess="addTag(e, ${recommendedEntry.id})" name="tagForm" url="[ controller: 'tag', action: 'addTag']">
<g:textField id="tagNameField.${recommendedEntry.id}" name="tagName" />
<g:hiddenField name="entryUuid" value="${recommendedEntry.uuid}" />
<g:hiddenField name="entryId" value="${recommendedEntry.id}" />
Expand Down
8 changes: 5 additions & 3 deletions grails-app/views/home/index.gsp
Expand Up @@ -20,18 +20,20 @@
<div id="upVote.${entry.id}">
<g:remoteLink controller="vote" action="submitVoteUp" params="[entryId:entry.id]"
onComplete="afterVote(e);">
+ (up)
<!--+ (up) -->
<img src="/neddick1/images/icons/1uparrow.png" />
</g:remoteLink> <br />
</div>

<div id="score.${entry.id}">
<div id="score.${entry.id}" style="padding-left:3px;">
${entry.score}
</div>

<div id="downVote.${entry.id}">
<g:remoteLink controller="vote" action="submitVoteDown" params="[entryId:entry.id]"
onComplete="afterVote(e);">
- (down)
<!-- - (down) -->
<img src="/neddick1/images/icons/1downarrow.png" />
</g:remoteLink>
</div>
</dd>
Expand Down
6 changes: 3 additions & 3 deletions grails-app/views/search/displaySearchResults.gsp
Expand Up @@ -14,18 +14,18 @@
<div id="upVote.${entry.id}">
<g:remoteLink controller="vote" action="submitVoteUp" params="[entryId:entry.id]"
onComplete="afterVote(e);">
+ (up)
<img src="/neddick1/images/icons/1uparrow.png" />
</g:remoteLink> <br />
</div>

<div id="score.${entry.id}">
<div id="score.${entry.id}" style="padding-left:3px;">
${entry.score}
</div>

<div id="downVote.${entry.id}">
<g:remoteLink controller="vote" action="submitVoteDown" params="[entryId:entry.id]"
onComplete="afterVote(e);">
- (down)
<img src="/neddick1/images/icons/1downarrow.png" />
</g:remoteLink>
</div>
</dd>
Expand Down
6 changes: 3 additions & 3 deletions grails-app/views/tag/listEntriesByTag.gsp
Expand Up @@ -16,18 +16,18 @@
<div id="upVote.${entry.id}">
<g:remoteLink controller="vote" action="submitVoteUp" params="[entryId:entry.id]"
onComplete="afterVote(e);">
+ (up)
<img src="/neddick1/images/icons/1uparrow.png" />
</g:remoteLink> <br />
</div>

<div id="score.${entry.id}">
<div id="score.${entry.id}" style="padding-left:3px;">
${entry.score}
</div>

<div id="downVote.${entry.id}">
<g:remoteLink controller="vote" action="submitVoteDown" params="[entryId:entry.id]"
onComplete="afterVote(e);">
- (down)
<img src="/neddick1/images/icons/1downarrow.png" />
</g:remoteLink>
</div>
</dd>
Expand Down
6 changes: 3 additions & 3 deletions grails-app/views/user/viewBookmarks.gsp
Expand Up @@ -63,18 +63,18 @@
<div id="upVote.${entry.id}">
<g:remoteLink controller="vote" action="submitVoteUp" params="[entryId:entry.id]"
onComplete="afterVote(e);">
+ (up)
<img src="/neddick1/images/icons/1uparrow.png" />
</g:remoteLink> <br />
</div>

<div id="score.${entry.id}">
<div id="score.${entry.id}" style="padding-left:3px;">
${entry.score}
</div>

<div id="downVote.${entry.id}">
<g:remoteLink controller="vote" action="submitVoteDown" params="[entryId:entry.id]"
onComplete="afterVote(e);">
- (down)
<img src="/neddick1/images/icons/1downarrow.png" />
</g:remoteLink>
</div>
</dd>
Expand Down
6 changes: 3 additions & 3 deletions grails-app/views/user/viewDetails.gsp
Expand Up @@ -63,18 +63,18 @@
<div id="upVote.${entry.id}">
<g:remoteLink controller="vote" action="submitVoteUp" params="[entryId:entry.id]"
onComplete="afterVote(e);">
+ (up)
<img src="/neddick1/images/icons/1uparrow.png" />
</g:remoteLink> <br />
</div>

<div id="score.${entry.id}">
<div id="score.${entry.id}" style="padding-left:3px;">
${entry.score}
</div>

<div id="downVote.${entry.id}">
<g:remoteLink controller="vote" action="submitVoteDown" params="[entryId:entry.id]"
onComplete="afterVote(e);">
- (down)
<img src="/neddick1/images/icons/1downarrow.png" />
</g:remoteLink>
</div>
</dd>
Expand Down
6 changes: 3 additions & 3 deletions grails-app/views/user/viewFriendsActivity.gsp
Expand Up @@ -63,18 +63,18 @@
<div id="upVote.${entry.id}">
<g:remoteLink controller="vote" action="submitVoteUp" params="[entryId:entry.id]"
onComplete="afterVote(e);">
+ (up)
<img src="/neddick1/images/icons/1uparrow.png" />
</g:remoteLink> <br />
</div>

<div id="score.${entry.id}">
<div id="score.${entry.id}" style="padding-left:3px;">
${entry.score}
</div>

<div id="downVote.${entry.id}">
<g:remoteLink controller="vote" action="submitVoteDown" params="[entryId:entry.id]"
onComplete="afterVote(e);">
- (down)
<img src="/neddick1/images/icons/1downarrow.png" />
</g:remoteLink>
</div>
</dd>
Expand Down
Binary file added web-app/images/icons/1downarrow.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added web-app/images/icons/1leftarrow.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added web-app/images/icons/1rightarrow.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added web-app/images/icons/1uparrow.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added web-app/images/icons/2downarrow.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added web-app/images/icons/2leftarrow.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added web-app/images/icons/2rightarrow.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added web-app/images/icons/2uparrow.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added web-app/images/icons/about_kde.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added web-app/images/icons/apply.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added web-app/images/icons/artsaudiomanager.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added web-app/images/icons/artsenvironment.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added web-app/images/icons/artsmediatypes.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added web-app/images/icons/artsmidimanager.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added web-app/images/icons/attach.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added web-app/images/icons/back.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added web-app/images/icons/blend.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added web-app/images/icons/bookmark.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added web-app/images/icons/bookmark_add.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added web-app/images/icons/bookmark_folder.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added web-app/images/icons/bookmark_toolbar.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added web-app/images/icons/bookmarks_list_add.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added web-app/images/icons/bottom.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added web-app/images/icons/button_accept.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added web-app/images/icons/button_cancel.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added web-app/images/icons/button_ok.png
Binary file added web-app/images/icons/camera.png
Binary file added web-app/images/icons/camera_test.png
Binary file added web-app/images/icons/cancel.png
Binary file added web-app/images/icons/cd.png
Binary file added web-app/images/icons/chardevice.png
Binary file added web-app/images/icons/color_fill.png
Binary file added web-app/images/icons/color_line.png
Binary file added web-app/images/icons/colorize.png
Binary file added web-app/images/icons/colorpicker.png
Binary file added web-app/images/icons/compfile.png
Binary file added web-app/images/icons/configure.png
Binary file added web-app/images/icons/connect_creating.png
Binary file added web-app/images/icons/connect_established.png
Binary file added web-app/images/icons/connect_no.png
Binary file added web-app/images/icons/cut.png
Binary file added web-app/images/icons/decrypted.png
Binary file added web-app/images/icons/desktop.png
Binary file added web-app/images/icons/down.png
Binary file added web-app/images/icons/edit.png
Binary file added web-app/images/icons/edit_add.png
Binary file added web-app/images/icons/edit_remove.png
Binary file added web-app/images/icons/editcopy.png
Binary file added web-app/images/icons/editcut.png
Binary file added web-app/images/icons/editdelete.png
Binary file added web-app/images/icons/editpaste.png
Binary file added web-app/images/icons/editshred.png
Binary file added web-app/images/icons/edittrash.png
Binary file added web-app/images/icons/encrypted.png
Binary file added web-app/images/icons/endturn.png
Binary file added web-app/images/icons/exec.png
Binary file added web-app/images/icons/exit.png
Binary file added web-app/images/icons/file_broken.png
Binary file added web-app/images/icons/file_important.png
Binary file added web-app/images/icons/file_locked.png
Binary file added web-app/images/icons/file_temporary.png
Binary file added web-app/images/icons/fileclose.png
Binary file added web-app/images/icons/fileexport.png
Binary file added web-app/images/icons/filenew.png
Binary file added web-app/images/icons/fileopen.png
Binary file added web-app/images/icons/fileprint.png
Binary file added web-app/images/icons/filequickprint.png
Binary file added web-app/images/icons/filesave.png
Binary file added web-app/images/icons/filesaveas.png
Binary file added web-app/images/icons/fill.png
Binary file added web-app/images/icons/find.png
Binary file added web-app/images/icons/finish.png
Binary file added web-app/images/icons/folder.png
Binary file added web-app/images/icons/folder_blue.png
Binary file added web-app/images/icons/folder_blue_open.png
Binary file added web-app/images/icons/folder_cyan.png
Binary file added web-app/images/icons/folder_cyan_open.png
Binary file added web-app/images/icons/folder_download.png
Binary file added web-app/images/icons/folder_favorite.png
Binary file added web-app/images/icons/folder_font.png
Binary file added web-app/images/icons/folder_games.png
Binary file added web-app/images/icons/folder_green.png
Binary file added web-app/images/icons/folder_green_open.png
Binary file added web-app/images/icons/folder_grey.png
Binary file added web-app/images/icons/folder_grey_open.png
Binary file added web-app/images/icons/folder_home.png
Binary file added web-app/images/icons/folder_html.png
Binary file added web-app/images/icons/folder_http.png
Binary file added web-app/images/icons/folder_image.png
Binary file added web-app/images/icons/folder_important.png
Binary file added web-app/images/icons/folder_inbox.png
Binary file added web-app/images/icons/folder_locked.png
Binary file added web-app/images/icons/folder_mail.png
Binary file added web-app/images/icons/folder_midi.png
Binary file added web-app/images/icons/folder_new.png
Binary file added web-app/images/icons/folder_open.png
Binary file added web-app/images/icons/folder_orange.png
Binary file added web-app/images/icons/folder_orange_open.png
Binary file added web-app/images/icons/folder_outbox.png
Binary file added web-app/images/icons/folder_photo.png
Binary file added web-app/images/icons/folder_print.png
Binary file added web-app/images/icons/folder_red.png
Binary file added web-app/images/icons/folder_red_open.png
Binary file added web-app/images/icons/folder_sent_mail.png
Binary file added web-app/images/icons/folder_sound.png
Binary file added web-app/images/icons/folder_tar.png
Binary file added web-app/images/icons/folder_txt.png
Binary file added web-app/images/icons/folder_video.png
Binary file added web-app/images/icons/folder_violet.png
Binary file added web-app/images/icons/folder_violet_open.png
Binary file added web-app/images/icons/folder_yellow.png
Binary file added web-app/images/icons/folder_yellow_open.png
Binary file added web-app/images/icons/forward.png
Binary file added web-app/images/icons/frameprint.png
Binary file added web-app/images/icons/ftp.png
Binary file added web-app/images/icons/gohome.png
Binary file added web-app/images/icons/help.png
Binary file added web-app/images/icons/history.png
Binary file added web-app/images/icons/history_clear.png
Binary file added web-app/images/icons/identity.png
Binary file added web-app/images/icons/irkick.png
Binary file added web-app/images/icons/irkickflash.png
Binary file added web-app/images/icons/irkickoff.png
Binary file added web-app/images/icons/kaboodleloop.png
Binary file added web-app/images/icons/kalarm.png
Binary file added web-app/images/icons/kalarm_disabled.png
Binary file added web-app/images/icons/kdevelop_down.png
Binary file added web-app/images/icons/kgpg.png
Binary file added web-app/images/icons/kgpg_edit.png
Binary file added web-app/images/icons/kgpg_export.png
Binary file added web-app/images/icons/kgpg_gen.png
Binary file added web-app/images/icons/kgpg_identity.png
Binary file added web-app/images/icons/kgpg_import.png
Binary file added web-app/images/icons/kgpg_info.png
Binary file added web-app/images/icons/kgpg_key1.png
Binary file added web-app/images/icons/kgpg_key2.png
Binary file added web-app/images/icons/kgpg_key3.png
Binary file added web-app/images/icons/kgpg_photo.png
Binary file added web-app/images/icons/kgpg_show.png
Binary file added web-app/images/icons/kgpg_sign.png
Binary file added web-app/images/icons/kgpg_term.png
Binary file added web-app/images/icons/klipper_dock.png
Binary file added web-app/images/icons/kmixdocked.png
Binary file added web-app/images/icons/kmixdocked_error.png
Binary file added web-app/images/icons/kmixdocked_mute.png
Binary file added web-app/images/icons/krec_record.png
Binary file added web-app/images/icons/laptop_charge.png
Binary file added web-app/images/icons/laptop_nobattery.png
Binary file added web-app/images/icons/laptop_nocharge.png
Binary file added web-app/images/icons/laptop_power.png
Binary file added web-app/images/icons/ledblue.png
Binary file added web-app/images/icons/ledgreen.png
Binary file added web-app/images/icons/ledlightblue.png
Binary file added web-app/images/icons/ledlightgreen.png
Binary file added web-app/images/icons/ledorange.png
Binary file added web-app/images/icons/ledpurple.png
Binary file added web-app/images/icons/ledred.png
Binary file added web-app/images/icons/ledyellow.png
Binary file added web-app/images/icons/link.png
Binary file added web-app/images/icons/lock.png
Binary file added web-app/images/icons/lockoverlay.png
Binary file added web-app/images/icons/mail_delete.png
Binary file added web-app/images/icons/mail_find.png
Binary file added web-app/images/icons/mail_forward.png
Binary file added web-app/images/icons/mail_generic.png
Binary file added web-app/images/icons/mail_get.png
Binary file added web-app/images/icons/mail_new.png
Binary file added web-app/images/icons/mail_post_to.png
Binary file added web-app/images/icons/mail_reply.png
Binary file added web-app/images/icons/mail_replyall.png
Binary file added web-app/images/icons/mail_send.png
Binary file added web-app/images/icons/make_kdevelop.png
Binary file added web-app/images/icons/message.png
Binary file added web-app/images/icons/messagebox_critical.png
Binary file added web-app/images/icons/messagebox_info.png
Binary file added web-app/images/icons/messagebox_warning.png
Binary file added web-app/images/icons/misc.png
Binary file added web-app/images/icons/mix_midi.png
Binary file added web-app/images/icons/mix_recmon.png
Binary file added web-app/images/icons/mix_unknown.png
Binary file added web-app/images/icons/mix_volume.png
Binary file added web-app/images/icons/mouse.png
Binary file added web-app/images/icons/network.png
Binary file added web-app/images/icons/network_local.png
Binary file added web-app/images/icons/newfont.png
Binary file added web-app/images/icons/news_subscribe.png
Binary file added web-app/images/icons/news_unsubscribe.png
Binary file added web-app/images/icons/next.png
Binary file added web-app/images/icons/no.png
Binary file added web-app/images/icons/noatunloopsong.png
Binary file added web-app/images/icons/ok.png
Binary file added web-app/images/icons/openterm.png
Binary file added web-app/images/icons/pencil.png
Binary file added web-app/images/icons/piano.png
Binary file added web-app/images/icons/pipe.png
Binary file added web-app/images/icons/player_eject.png
Binary file added web-app/images/icons/player_end.png
Binary file added web-app/images/icons/player_fwd.png
Binary file added web-app/images/icons/player_pause.png
Binary file added web-app/images/icons/player_play.png
Binary file added web-app/images/icons/player_rev.png
Binary file added web-app/images/icons/player_rew.png
Binary file added web-app/images/icons/player_start.png
Binary file added web-app/images/icons/player_stop.png
Binary file added web-app/images/icons/playsound.png
Binary file added web-app/images/icons/power.png
Binary file added web-app/images/icons/previous.png
Binary file added web-app/images/icons/project_open.png
Binary file added web-app/images/icons/queue.png
Binary file added web-app/images/icons/quiz.png
Binary file added web-app/images/icons/rebuild.png
Binary file added web-app/images/icons/redo.png
Binary file added web-app/images/icons/reload.png
Binary file added web-app/images/icons/reload_all_tabs.png
Binary file added web-app/images/icons/reload_page.png
Binary file added web-app/images/icons/revert.png
Binary file added web-app/images/icons/roll.png
Binary file added web-app/images/icons/rotate.png
Binary file added web-app/images/icons/rotate_ccw.png
Binary file added web-app/images/icons/rotate_cw.png
Binary file added web-app/images/icons/run.png
Binary file added web-app/images/icons/save_all.png
Binary file added web-app/images/icons/server.png
Binary file added web-app/images/icons/services.png
Binary file added web-app/images/icons/signature.png
Binary file added web-app/images/icons/socket.png
Binary file added web-app/images/icons/spellcheck.png
Binary file added web-app/images/icons/start.png
Binary file added web-app/images/icons/stop.png
Binary file added web-app/images/icons/tab_duplicate.png
Binary file added web-app/images/icons/tab_new.png
Binary file added web-app/images/icons/tab_new_raised.png
Binary file added web-app/images/icons/tab_remove.png
Binary file added web-app/images/icons/thumbnail.png
Binary file added web-app/images/icons/toggle_log.png
Binary file added web-app/images/icons/top.png
Binary file added web-app/images/icons/trashcan_empty.png
Binary file added web-app/images/icons/trashcan_full.png
Binary file added web-app/images/icons/undo.png
Binary file added web-app/images/icons/up.png
Binary file added web-app/images/icons/view_bottom.png
Binary file added web-app/images/icons/view_choose.png
Binary file added web-app/images/icons/view_detailed.png
Binary file added web-app/images/icons/view_fullscreen.png
Binary file added web-app/images/icons/view_icon.png
Binary file added web-app/images/icons/view_left_right.png
Binary file added web-app/images/icons/view_multicolumn.png
Binary file added web-app/images/icons/view_nofullscreen.png
Binary file added web-app/images/icons/view_remove.png
Binary file added web-app/images/icons/view_right.png
Binary file added web-app/images/icons/view_sidetree.png
Binary file added web-app/images/icons/view_text.png
Binary file added web-app/images/icons/view_top_bottom.png
Binary file added web-app/images/icons/view_tree.png
Binary file added web-app/images/icons/viewmag+.png
Binary file added web-app/images/icons/viewmag-.png
Binary file added web-app/images/icons/viewmag.png
Binary file added web-app/images/icons/viewmag1.png
Binary file added web-app/images/icons/viewmagfit.png
Binary file added web-app/images/icons/window_new.png
Binary file added web-app/images/icons/wizard.png
Binary file added web-app/images/icons/www.png
Binary file added web-app/images/icons/zip.png

0 comments on commit 3983e6c

Please sign in to comment.