# HG changeset patch
# User bsw
# Date 1612211134 -3600
# Node ID dcbe505ddf24a60fbd1663f3c80fd502ed701c2f
# Parent 44b58a76f3e332f94e5c83489fcaac78f1c2ce4f
Removed old views, removed Silk icon set, removed emoticons
diff -r 44b58a76f3e3 -r dcbe505ddf24 app/main/area/_list.lua
--- a/app/main/area/_list.lua Mon Feb 01 21:02:47 2021 +0100
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,39 +0,0 @@
-local areas_selector = param.get("areas_selector", "table")
-local hide_membership = param.get("hide_membership", atom.boolean)
-local member = param.get("member", "table")
-
-areas_selector
- :reset_fields()
- :add_field("area.id", nil, { "grouped" })
- :add_field("area.unit_id", nil, { "grouped" })
- :add_field("area.name", nil, { "grouped" })
- :add_field("member_weight", nil, { "grouped" })
- :add_field("direct_member_count", nil, { "grouped" })
- :add_field("(SELECT COUNT(*) FROM issue WHERE issue.area_id = area.id AND issue.accepted ISNULL AND issue.closed ISNULL)", "issues_new_count")
- :add_field("(SELECT COUNT(*) FROM issue WHERE issue.area_id = area.id AND issue.accepted NOTNULL AND issue.half_frozen ISNULL AND issue.closed ISNULL)", "issues_discussion_count")
- :add_field("(SELECT COUNT(*) FROM issue WHERE issue.area_id = area.id AND issue.half_frozen NOTNULL AND issue.fully_frozen ISNULL AND issue.closed ISNULL)", "issues_frozen_count")
- :add_field("(SELECT COUNT(*) FROM issue WHERE issue.area_id = area.id AND issue.fully_frozen NOTNULL AND issue.closed ISNULL)", "issues_voting_count")
- :add_field("(SELECT COUNT(*) FROM issue WHERE issue.area_id = area.id AND issue.fully_frozen NOTNULL AND issue.closed NOTNULL)", "issues_finished_count")
- :add_field("(SELECT COUNT(*) FROM issue WHERE issue.area_id = area.id AND issue.fully_frozen ISNULL AND issue.closed NOTNULL)", "issues_canceled_count")
-
-if app.session.member_id then
- areas_selector
- :add_field({ "(SELECT COUNT(*) FROM issue LEFT JOIN direct_voter ON direct_voter.issue_id = issue.id AND direct_voter.member_id = ? WHERE issue.area_id = area.id AND issue.fully_frozen NOTNULL AND issue.closed ISNULL AND direct_voter.member_id ISNULL)", app.session.member.id }, "issues_to_vote_count")
- :left_join("membership", "_membership", { "_membership.area_id = area.id AND _membership.member_id = ?", app.session.member.id })
- :add_field("_membership.member_id NOTNULL", "is_member", { "grouped" })
- :left_join("delegation", nil, {
- "delegation.truster_id = ? AND delegation.area_id = area.id AND delegation.scope = 'area'", app.session.member_id
- })
- :left_join("member", nil, "member.id = delegation.trustee_id")
- :add_field("member.id", "trustee_member_id", { "grouped" })
- :add_field("member.name", "trustee_member_name", { "grouped" })
-else
- areas_selector:add_field("0", "issues_to_vote_count")
-end
-
-ui.container{ attr = { class = "area_list" }, content = function()
- for i, area in ipairs(areas_selector:exec()) do
- execute.view { module = "area", view = "_list_entry", params = { area = area, member = member } }
- end
-end }
-
diff -r 44b58a76f3e3 -r dcbe505ddf24 app/main/delegation/show.lua
--- a/app/main/delegation/show.lua Mon Feb 01 21:02:47 2021 +0100
+++ b/app/main/delegation/show.lua Mon Feb 01 21:25:34 2021 +0100
@@ -397,9 +397,6 @@
end
if preview_trustee_id == 0 or not preview_trustee_id == null and delegation and not delegation.trustee_id then
- ui.image{
- static = "icons/16/table_go_crossed.png"
- }
if issue_id then
slot.put(_"Delegation turned off for issue")
elseif area_id then
diff -r 44b58a76f3e3 -r dcbe505ddf24 app/main/index/_member_home.lua
--- a/app/main/index/_member_home.lua Mon Feb 01 21:02:47 2021 +0100
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,153 +0,0 @@
-local member = param.get("member", "table")
-local for_member = param.get("for_member", atom.boolean)
-local filter_unit = request.get_param_strings()["filter_unit"] or "my_areas"
-
-if not for_member then
-
- ui.container{ attr = { class = "ui_filter" }, content = function()
- ui.container{ attr = { class = "ui_filter_head" }, content = function()
-
- ui.link{
- attr = { class = filter_unit == "my_areas" and "ui_tabs_link active" or nil },
- text = _"My areas",
- module = "index", view = "index", params = { filter_unit = "my_areas" }
- }
-
- slot.put(" ")
-
- ui.link{
- attr = { class = filter_unit == "my_units" and "ui_tabs_link active" or nil },
- text = _"All areas in my units",
- module = "index", view = "index", params = { filter_unit = "my_units" }
- }
-
- slot.put(" ")
-
- ui.link{
- attr = { class = filter_unit == "global" and "active" or nil },
- text = _"All units",
- module = "index", view = "index", params = { filter_unit = "global" }
- }
- end }
- end }
-end
-
-if not for_member then
- if filter_unit == "global" then
- execute.view{ module = "unit", view = "_list" }
- return
- end
-
-end
-
-local units = Unit:new_selector():add_where("active"):add_order_by("name"):exec()
-
-if member then
- units:load_delegation_info_once_for_member_id(member.id)
-end
-
-for i, unit in ipairs(units) do
- if member:has_voting_right_for_unit_id(unit.id) then
-
- local areas_selector = Area:new_selector()
- :reset_fields()
- :add_field("area.id", nil, { "grouped" })
- :add_field("area.unit_id", nil, { "grouped" })
- :add_field("area.name", nil, { "grouped" })
- :add_field("member_weight", nil, { "grouped" })
- :add_field("direct_member_count", nil, { "grouped" })
- :add_field("(SELECT COUNT(*) FROM issue WHERE issue.area_id = area.id AND issue.accepted ISNULL AND issue.closed ISNULL)", "issues_new_count")
- :add_field("(SELECT COUNT(*) FROM issue WHERE issue.area_id = area.id AND issue.accepted NOTNULL AND issue.half_frozen ISNULL AND issue.closed ISNULL)", "issues_discussion_count")
- :add_field("(SELECT COUNT(*) FROM issue WHERE issue.area_id = area.id AND issue.half_frozen NOTNULL AND issue.fully_frozen ISNULL AND issue.closed ISNULL)", "issues_frozen_count")
- :add_field("(SELECT COUNT(*) FROM issue WHERE issue.area_id = area.id AND issue.fully_frozen NOTNULL AND issue.closed ISNULL)", "issues_voting_count")
- :add_field("(SELECT COUNT(*) FROM issue WHERE issue.area_id = area.id AND issue.fully_frozen NOTNULL AND issue.closed NOTNULL)", "issues_finished_count")
- :add_field("(SELECT COUNT(*) FROM issue WHERE issue.area_id = area.id AND issue.fully_frozen ISNULL AND issue.closed NOTNULL)", "issues_canceled_count")
- :add_where{ "area.unit_id = ?", unit.id }
- :add_where{ "area.active" }
- :add_order_by("area.name")
-
- if filter_unit == "my_areas" then
- areas_selector:join("membership", nil, { "membership.area_id = area.id AND membership.member_id = ?", member.id })
- else
- areas_selector:join("privilege", nil, { "privilege.unit_id = area.unit_id AND privilege.member_id = ? AND privilege.voting_right", member.id })
- end
-
- local area_count = areas_selector:count()
-
- local max_area_count = Area:new_selector()
- :add_where{ "area.unit_id = ?", unit.id }
- :add_where{ "area.active" }
- :count()
- local more_area_count = max_area_count - area_count
- local delegated_count = Area:new_selector()
- :add_where{ "area.unit_id = ?", unit.id }
- :add_where{ "area.active" }
- :left_join("membership", nil, { "membership.area_id = area.id AND membership.member_id = ?", member.id } )
- :add_where{ "membership.member_id ISNULL" }
- :join("delegation", nil, { "delegation.area_id = area.id AND delegation.truster_id = ?", member.id } )
- :add_where{ "delegation.trustee_id NOTNULL" }
- :count()
-
- local more_area_text
- if area_count == 0 and more_area_count == 1 then
- if app.session.member_id == member.id then
- more_area_text = _("You are not participating in the only area of the unit")
- else
- more_area_text = _("Member is not participating in the only area of the unit")
- end
- elseif area_count == 0 and more_area_count > 0 then
- if app.session.member_id == member.id then
- more_area_text = _("You are not participating in any of the #{count} areas in this unit", { count = more_area_count })
- else
- more_area_text = _("Member is not participating in any of the #{count} areas in this unit", { count = more_area_count })
- end
- elseif area_count > 0 and more_area_count == 1 then
- more_area_text = _("One more area in this unit")
- elseif area_count > 0 and more_area_count > 0 then
- more_area_text = _("#{count} more areas in this unit", { count = more_area_count })
- end
- local delegated_text
- if delegated_count == 1 then
- delegated_text = _("One of them have an area delegation set", { count = delegated_count })
- elseif delegated_count > 0 then
- delegated_text = _("#{count} of them have an area delegation set", { count = delegated_count })
- end
-
- ui.container{ attr = { class = "area_list" }, content = function()
- execute.view{ module = "unit", view = "_head", params = { unit = unit, show_content = true, member = member } }
-
- if area_count > 0 then
- local areas = areas_selector:exec()
-
- areas:load_delegation_info_once_for_member_id(member.id)
-
- for i, area in ipairs(areas) do
- execute.view{
- module = "area", view = "_list_entry", params = {
- area = area, member = member
- }
- }
- end
- end
-
- if area_count == 0 and member:has_voting_right_for_unit_id(unit.id) or
- more_area_count > 0 then
-
- end
- end }
- ui.container{ attr = { class = "area", style="margin-top: 1ex; margin-left: 10px;" }, content = function()
- ui.container{ attr = { class = "title" }, content = function()
- if more_area_text then
- ui.link{ module = "unit", view = "show", id = unit.id, text = more_area_text }
- end
- if delegated_text then
- slot.put(" · ")
- ui.tag{ content = delegated_text }
- end
- end }
- end }
- slot.put("
")
- end
-end
-
-
diff -r 44b58a76f3e3 -r dcbe505ddf24 app/main/index/about.lua
--- a/app/main/index/about.lua Mon Feb 01 21:02:47 2021 +0100
+++ b/app/main/index/about.lua Mon Feb 01 21:25:34 2021 +0100
@@ -95,9 +95,6 @@
}
}
- slot.put("
")
- ui.container{ content = "3rd party license information:" }
- slot.put('Some of the icons used in Liquid Feedback are from Silk icon set 1.3 by Mark James. His work is licensed under a Creative Commons Attribution 2.5 License.')
end }
end }
end }
diff -r 44b58a76f3e3 -r dcbe505ddf24 app/main/index/document.lua
--- a/app/main/index/document.lua Mon Feb 01 21:02:47 2021 +0100
+++ b/app/main/index/document.lua Mon Feb 01 21:25:34 2021 +0100
@@ -7,7 +7,6 @@
slot.select("actions", function()
ui.link{
content = function()
- ui.image{ static = "icons/16/cancel.png" }
slot.put(_"Cancel")
end,
module = "index",
diff -r 44b58a76f3e3 -r dcbe505ddf24 app/main/index/show_tab.lua
--- a/app/main/index/show_tab.lua Mon Feb 01 21:02:47 2021 +0100
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,72 +0,0 @@
-local tabs = {
- module = "index",
- view = "show_tab"
-}
-
-local selector = Area:new_selector()
- :reset_fields()
- :add_field("area.id", nil, { "grouped" })
- :add_field("area.name", nil, { "grouped" })
- :add_field("membership.member_id NOTNULL", "is_member", { "grouped" })
- :add_field("count(issue.id)", "issues_to_vote_count")
- :add_field("count(interest.member_id)", "interested_issues_to_vote_count")
- :add_field("count(interest.member_id NOTNULL OR interest.member_id NOTNULL)", "issues_to_vote_count_sum")
- :join("issue", nil, "issue.area_id = area.id AND issue.fully_frozen NOTNULL AND issue.closed ISNULL")
- :left_join("direct_voter", nil, { "direct_voter.issue_id = issue.id AND direct_voter.member_id = ?", app.session.member.id })
- :add_where{ "direct_voter.member_id ISNULL" }
- :left_join("interest", nil, { "interest.issue_id = issue.id AND interest.member_id = ?", app.session.member.id })
- :left_join("membership", nil, { "membership.area_id = area.id AND membership.member_id = ? ", app.session.member.id })
-
-local not_voted_areas = {}
-local issues_to_vote_count = 0
-for i, area in ipairs(selector:exec()) do
- if area.is_member or area.interested_issues_to_vote_count > 0 then
- not_voted_areas[#not_voted_areas+1] = area
- end
- issues_to_vote_count = issues_to_vote_count + area.issues_to_vote_count_sum
-end
-
-tabs[#tabs+1] = {
- name = "not_voted_issues",
- label = _"Not voted issues" .. " (" .. tostring(issues_to_vote_count) .. ")",
- icon = { static = "icons/16/email_open.png" },
- module = "index",
- view = "_not_voted_issues",
- params = {
- areas = not_voted_areas
- }
-}
-
-local initiator_invites_selector = Initiative:new_selector()
- :join("issue", "_issue_state", "_issue_state.id = initiative.issue_id")
- :join("initiator", nil, { "initiator.initiative_id = initiative.id AND initiator.member_id = ? AND initiator.accepted ISNULL", app.session.member.id })
- :add_where("_issue_state.closed ISNULL AND _issue_state.half_frozen ISNULL")
-
-tabs[#tabs+1] = {
- name = "initiator_invites",
- label = _"Initiator invites" .. " (" .. tostring(initiator_invites_selector:count()) .. ")",
- icon = { static = "icons/16/email_open.png" },
- module = "index",
- view = "_initiator_invites",
- params = {
- initiatives_selector = initiator_invites_selector
- }
-}
-
-local updated_drafts_selector = Initiative:new_selector()
- :join("issue", "_issue_state", "_issue_state.id = initiative.issue_id AND _issue_state.closed ISNULL AND _issue_state.fully_frozen ISNULL")
- :join("current_draft", "_current_draft", "_current_draft.initiative_id = initiative.id")
- :join("supporter", "supporter", { "supporter.member_id = ? AND supporter.initiative_id = initiative.id AND supporter.draft_id < _current_draft.id", app.session.member_id })
-
-tabs[#tabs+1] = {
- name = "updated_drafts",
- label = _"Updated drafts" .. " (" .. tostring(updated_drafts_selector:count()) .. ")",
- icon = { static = "icons/16/email_open.png" },
- module = "index",
- view = "_updated_drafts",
- params = {
- initiatives_selector = updated_drafts_selector
- }
-}
-
-ui.tabs(tabs)
\ No newline at end of file
diff -r 44b58a76f3e3 -r dcbe505ddf24 app/main/initiative/_battles.lua
--- a/app/main/initiative/_battles.lua Mon Feb 01 21:02:47 2021 +0100
+++ b/app/main/initiative/_battles.lua Mon Feb 01 21:25:34 2021 +0100
@@ -51,11 +51,11 @@
{
content = function(record)
if record.winning_count == record.losing_count then
- ui.image{ static = "icons/16/bullet_blue.png" }
+ ui.tag{ tag = "i", attr = { class = "material-icons" }, content = "fiber_manual_record" }
elseif record.winning_count > record.losing_count then
- ui.image{ static = "icons/16/resultset_previous.png" }
+ ui.tag{ tag = "i", attr = { class = "material-icons" }, content = "arrow_left" }
else
- ui.image{ static = "icons/16/resultset_next.png" }
+ ui.tag{ tag = "i", attr = { class = "material-icons" }, content = "arrow_right" }
end
end
},
diff -r 44b58a76f3e3 -r dcbe505ddf24 app/main/issue/_sidebar_whatcanido.lua
--- a/app/main/issue/_sidebar_whatcanido.lua Mon Feb 01 21:02:47 2021 +0100
+++ b/app/main/issue/_sidebar_whatcanido.lua Mon Feb 01 21:25:34 2021 +0100
@@ -259,18 +259,6 @@
if privileged_to_vote and not issue.closed and not issue.fully_frozen then
if issue.member_info.own_participation then
ui.container { attr = { class = "mdl-card__content mdl-card--border" }, content = function ()
- --[[
- ui.container{ attr = { class = "right" }, content = function()
- ui.image{ attr = { class = "right" }, static = "icons/48/eye.png" }
- if issue.member_info.weight and issue.member_info.weight > 1 then
- slot.put("
")
- ui.tag{
- attr = { class = "right" },
- content = "+" .. issue.member_info.weight - 1
- }
- end
- end }
- --]]
ui.tag{ content = _("You are interested in this issue", { id = issue.id }) }
ui.tag { tag = "ul", attr = { class = "ul" }, content = function ()
if issue.member_info.weight and issue.member_info.weight > 1 then
diff -r 44b58a76f3e3 -r dcbe505ddf24 app/main/member/_show_thumb.lua
--- a/app/main/member/_show_thumb.lua Mon Feb 01 21:02:47 2021 +0100
+++ b/app/main/member/_show_thumb.lua Mon Feb 01 21:25:34 2021 +0100
@@ -101,14 +101,8 @@
end
if (member.voter_comment) then
- ui.image{
- attr = {
- alt = _"Voting comment available",
- title = _"Voting comment available",
- class = "icon24 right"
- },
- static = "icons/16/comment.png"
- }
+ local text = _"Voting comment available",
+ ui.tag{ tag = "i", attr = { class = "material-icons" }, content = "comment" }
end
@@ -128,13 +122,8 @@
end
if not member.active then
- slot.put ( " " )
local text = _"member inactive"
- ui.image{
- attr = { alt = text, title = text },
- static = "icons/16/cross.png"
- }
- ui.tag{ content = _"inactive" }
+ ui.tag{ tag = "i", attr = { class = "material-icons icon-red" }, content = "disabled_by_default" }
end
if initiator and initiator.accepted then
@@ -147,10 +136,7 @@
if member.is_informed == false then
local text = _"Member has not approved latest draft"
- ui.image{
- attr = { alt = text, title = text },
- static = "icons/16/help_yellow.png"
- }
+ ui.tag{ tag = "i", attr = { class = "material-icons icon-yellow" }, content = "help" }
end
end
diff -r 44b58a76f3e3 -r dcbe505ddf24 app/main/member_image/show.lua
--- a/app/main/member_image/show.lua Mon Feb 01 21:02:47 2021 +0100
+++ b/app/main/member_image/show.lua Mon Feb 01 21:25:34 2021 +0100
@@ -14,7 +14,7 @@
local default_file = "avatar.jpg"
content_type = "image/jpeg"
if image_type == "photo" then
- default_file = "icons/16/lightning.png"
+ default_file = "avatar.jpg"
content_type = "image/png"
end
diff -r 44b58a76f3e3 -r dcbe505ddf24 app/main/membership/_action/update.lua
--- a/app/main/membership/_action/update.lua Mon Feb 01 21:02:47 2021 +0100
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,26 +0,0 @@
-local area_id = assert(param.get("area_id", atom.integer), "no area id given")
-local membership = Membership:by_pk(area_id, app.session.member.id)
-
-local area = Area:by_id(area_id)
-if param.get("delete", atom.boolean) then
- if membership then
- membership:destroy()
- slot.put_into("notice", _"Subscription removed")
- else
- slot.put_into("notice", _"Subscription already removed")
- end
- return
-end
-
-if not app.session.member:has_voting_right_for_unit_id(area.unit_id) then
- slot.put_into("error", _"You are not eligible to participate")
- return false
-end
-
-if not membership then
- membership = Membership:new()
- membership.area_id = area_id
- membership.member_id = app.session.member_id
- membership:save()
- slot.put_into("notice", _"Subject area subscribed")
-end
diff -r 44b58a76f3e3 -r dcbe505ddf24 app/main/membership/_show_box.lua
--- a/app/main/membership/_show_box.lua Mon Feb 01 21:02:47 2021 +0100
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,44 +0,0 @@
-local area = param.get("area", "table")
-
-local membership = Membership:by_pk(area.id, app.session.member.id)
-
-if membership then
-
- ui.container{
- attr = {
- class = "head head_active",
- },
- content = function()
- ui.image{
- static = "icons/16/user_green.png"
- }
- slot.put(_"You are member")
- end
- }
-
- ui.link{
- image = { static = "icons/16/cross.png" },
- text = _"Withdraw membership",
- module = "membership",
- action = "update",
- params = { area_id = area.id, delete = true },
- routing = { default = { mode = "redirect", module = "area", view = "show", id = area.id } }
- }
-elseif app.session.member:has_voting_right_for_unit_id(area.unit_id) then
- ui.link{
- image = { static = "icons/16/user_add.png" },
- text = _"Become a member",
- module = "membership",
- action = "update",
- params = { area_id = area.id },
- routing = {
- default = {
- mode = "redirect",
- module = "area",
- view = "show",
- id = area.id
- }
- }
- }
-end
-
diff -r 44b58a76f3e3 -r dcbe505ddf24 static/icons/16/add.png
Binary file static/icons/16/add.png has changed
diff -r 44b58a76f3e3 -r dcbe505ddf24 static/icons/16/application_form.png
Binary file static/icons/16/application_form.png has changed
diff -r 44b58a76f3e3 -r dcbe505ddf24 static/icons/16/arrow_refresh.png
Binary file static/icons/16/arrow_refresh.png has changed
diff -r 44b58a76f3e3 -r dcbe505ddf24 static/icons/16/award_star_gold_2.png
Binary file static/icons/16/award_star_gold_2.png has changed
diff -r 44b58a76f3e3 -r dcbe505ddf24 static/icons/16/award_star_silver_2.png
Binary file static/icons/16/award_star_silver_2.png has changed
diff -r 44b58a76f3e3 -r dcbe505ddf24 static/icons/16/bell.png
Binary file static/icons/16/bell.png has changed
diff -r 44b58a76f3e3 -r dcbe505ddf24 static/icons/16/book_add.png
Binary file static/icons/16/book_add.png has changed
diff -r 44b58a76f3e3 -r dcbe505ddf24 static/icons/16/book_delete.png
Binary file static/icons/16/book_delete.png has changed
diff -r 44b58a76f3e3 -r dcbe505ddf24 static/icons/16/book_edit.png
Binary file static/icons/16/book_edit.png has changed
diff -r 44b58a76f3e3 -r dcbe505ddf24 static/icons/16/bug.png
Binary file static/icons/16/bug.png has changed
diff -r 44b58a76f3e3 -r dcbe505ddf24 static/icons/16/bullet_blue.png
Binary file static/icons/16/bullet_blue.png has changed
diff -r 44b58a76f3e3 -r dcbe505ddf24 static/icons/16/bullet_disk.png
Binary file static/icons/16/bullet_disk.png has changed
diff -r 44b58a76f3e3 -r dcbe505ddf24 static/icons/16/bullet_toggle_minus.png
Binary file static/icons/16/bullet_toggle_minus.png has changed
diff -r 44b58a76f3e3 -r dcbe505ddf24 static/icons/16/bullet_toggle_plus.png
Binary file static/icons/16/bullet_toggle_plus.png has changed
diff -r 44b58a76f3e3 -r dcbe505ddf24 static/icons/16/bullet_yellow.png
Binary file static/icons/16/bullet_yellow.png has changed
diff -r 44b58a76f3e3 -r dcbe505ddf24 static/icons/16/cancel.png
Binary file static/icons/16/cancel.png has changed
diff -r 44b58a76f3e3 -r dcbe505ddf24 static/icons/16/chart_organisation.png
Binary file static/icons/16/chart_organisation.png has changed
diff -r 44b58a76f3e3 -r dcbe505ddf24 static/icons/16/clock.png
Binary file static/icons/16/clock.png has changed
diff -r 44b58a76f3e3 -r dcbe505ddf24 static/icons/16/clock_edit.png
Binary file static/icons/16/clock_edit.png has changed
diff -r 44b58a76f3e3 -r dcbe505ddf24 static/icons/16/clock_play.png
Binary file static/icons/16/clock_play.png has changed
diff -r 44b58a76f3e3 -r dcbe505ddf24 static/icons/16/cog.png
Binary file static/icons/16/cog.png has changed
diff -r 44b58a76f3e3 -r dcbe505ddf24 static/icons/16/comment.png
Binary file static/icons/16/comment.png has changed
diff -r 44b58a76f3e3 -r dcbe505ddf24 static/icons/16/comment_add.png
Binary file static/icons/16/comment_add.png has changed
diff -r 44b58a76f3e3 -r dcbe505ddf24 static/icons/16/comments.png
Binary file static/icons/16/comments.png has changed
diff -r 44b58a76f3e3 -r dcbe505ddf24 static/icons/16/connect.png
Binary file static/icons/16/connect.png has changed
diff -r 44b58a76f3e3 -r dcbe505ddf24 static/icons/16/cross.png
Binary file static/icons/16/cross.png has changed
diff -r 44b58a76f3e3 -r dcbe505ddf24 static/icons/16/database_save.png
Binary file static/icons/16/database_save.png has changed
diff -r 44b58a76f3e3 -r dcbe505ddf24 static/icons/16/delete.png
Binary file static/icons/16/delete.png has changed
diff -r 44b58a76f3e3 -r dcbe505ddf24 static/icons/16/dropdown.png
Binary file static/icons/16/dropdown.png has changed
diff -r 44b58a76f3e3 -r dcbe505ddf24 static/icons/16/email_delete.png
Binary file static/icons/16/email_delete.png has changed
diff -r 44b58a76f3e3 -r dcbe505ddf24 static/icons/16/email_open.png
Binary file static/icons/16/email_open.png has changed
diff -r 44b58a76f3e3 -r dcbe505ddf24 static/icons/16/error.png
Binary file static/icons/16/error.png has changed
diff -r 44b58a76f3e3 -r dcbe505ddf24 static/icons/16/eye.png
Binary file static/icons/16/eye.png has changed
diff -r 44b58a76f3e3 -r dcbe505ddf24 static/icons/16/folder.png
Binary file static/icons/16/folder.png has changed
diff -r 44b58a76f3e3 -r dcbe505ddf24 static/icons/16/folder_add.png
Binary file static/icons/16/folder_add.png has changed
diff -r 44b58a76f3e3 -r dcbe505ddf24 static/icons/16/go_up.png
Binary file static/icons/16/go_up.png has changed
diff -r 44b58a76f3e3 -r dcbe505ddf24 static/icons/16/group.png
Binary file static/icons/16/group.png has changed
diff -r 44b58a76f3e3 -r dcbe505ddf24 static/icons/16/help.png
Binary file static/icons/16/help.png has changed
diff -r 44b58a76f3e3 -r dcbe505ddf24 static/icons/16/help_yellow.png
Binary file static/icons/16/help_yellow.png has changed
diff -r 44b58a76f3e3 -r dcbe505ddf24 static/icons/16/house.png
Binary file static/icons/16/house.png has changed
diff -r 44b58a76f3e3 -r dcbe505ddf24 static/icons/16/information.png
Binary file static/icons/16/information.png has changed
diff -r 44b58a76f3e3 -r dcbe505ddf24 static/icons/16/key.png
Binary file static/icons/16/key.png has changed
diff -r 44b58a76f3e3 -r dcbe505ddf24 static/icons/16/key_forgot.png
Binary file static/icons/16/key_forgot.png has changed
diff -r 44b58a76f3e3 -r dcbe505ddf24 static/icons/16/lightning.png
Binary file static/icons/16/lightning.png has changed
diff -r 44b58a76f3e3 -r dcbe505ddf24 static/icons/16/link.png
Binary file static/icons/16/link.png has changed
diff -r 44b58a76f3e3 -r dcbe505ddf24 static/icons/16/lock.png
Binary file static/icons/16/lock.png has changed
diff -r 44b58a76f3e3 -r dcbe505ddf24 static/icons/16/magnifier.png
Binary file static/icons/16/magnifier.png has changed
diff -r 44b58a76f3e3 -r dcbe505ddf24 static/icons/16/new.png
Binary file static/icons/16/new.png has changed
diff -r 44b58a76f3e3 -r dcbe505ddf24 static/icons/16/package.png
Binary file static/icons/16/package.png has changed
diff -r 44b58a76f3e3 -r dcbe505ddf24 static/icons/16/page.png
Binary file static/icons/16/page.png has changed
diff -r 44b58a76f3e3 -r dcbe505ddf24 static/icons/16/page_add.png
Binary file static/icons/16/page_add.png has changed
diff -r 44b58a76f3e3 -r dcbe505ddf24 static/icons/16/resultset_next.png
Binary file static/icons/16/resultset_next.png has changed
diff -r 44b58a76f3e3 -r dcbe505ddf24 static/icons/16/resultset_next_double.png
Binary file static/icons/16/resultset_next_double.png has changed
diff -r 44b58a76f3e3 -r dcbe505ddf24 static/icons/16/resultset_previous.png
Binary file static/icons/16/resultset_previous.png has changed
diff -r 44b58a76f3e3 -r dcbe505ddf24 static/icons/16/resultset_previous_double.png
Binary file static/icons/16/resultset_previous_double.png has changed
diff -r 44b58a76f3e3 -r dcbe505ddf24 static/icons/16/script.png
Binary file static/icons/16/script.png has changed
diff -r 44b58a76f3e3 -r dcbe505ddf24 static/icons/16/script_add.png
Binary file static/icons/16/script_add.png has changed
diff -r 44b58a76f3e3 -r dcbe505ddf24 static/icons/16/script_delete.png
Binary file static/icons/16/script_delete.png has changed
diff -r 44b58a76f3e3 -r dcbe505ddf24 static/icons/16/stop.png
Binary file static/icons/16/stop.png has changed
diff -r 44b58a76f3e3 -r dcbe505ddf24 static/icons/16/table_go.png
Binary file static/icons/16/table_go.png has changed
diff -r 44b58a76f3e3 -r dcbe505ddf24 static/icons/16/table_go_crossed.png
Binary file static/icons/16/table_go_crossed.png has changed
diff -r 44b58a76f3e3 -r dcbe505ddf24 static/icons/16/text_list_bullets.png
Binary file static/icons/16/text_list_bullets.png has changed
diff -r 44b58a76f3e3 -r dcbe505ddf24 static/icons/16/thumb_down_red.png
Binary file static/icons/16/thumb_down_red.png has changed
diff -r 44b58a76f3e3 -r dcbe505ddf24 static/icons/16/thumb_down_red_crossed.png
Binary file static/icons/16/thumb_down_red_crossed.png has changed
diff -r 44b58a76f3e3 -r dcbe505ddf24 static/icons/16/thumb_up.png
Binary file static/icons/16/thumb_up.png has changed
diff -r 44b58a76f3e3 -r dcbe505ddf24 static/icons/16/thumb_up_arrow.png
Binary file static/icons/16/thumb_up_arrow.png has changed
diff -r 44b58a76f3e3 -r dcbe505ddf24 static/icons/16/thumb_up_green.png
Binary file static/icons/16/thumb_up_green.png has changed
diff -r 44b58a76f3e3 -r dcbe505ddf24 static/icons/16/thumb_up_green_arrow.png
Binary file static/icons/16/thumb_up_green_arrow.png has changed
diff -r 44b58a76f3e3 -r dcbe505ddf24 static/icons/16/tick.png
Binary file static/icons/16/tick.png has changed
diff -r 44b58a76f3e3 -r dcbe505ddf24 static/icons/16/time.png
Binary file static/icons/16/time.png has changed
diff -r 44b58a76f3e3 -r dcbe505ddf24 static/icons/16/user_add.png
Binary file static/icons/16/user_add.png has changed
diff -r 44b58a76f3e3 -r dcbe505ddf24 static/icons/16/user_comment.png
Binary file static/icons/16/user_comment.png has changed
diff -r 44b58a76f3e3 -r dcbe505ddf24 static/icons/16/user_delete.png
Binary file static/icons/16/user_delete.png has changed
diff -r 44b58a76f3e3 -r dcbe505ddf24 static/icons/16/user_edit.png
Binary file static/icons/16/user_edit.png has changed
diff -r 44b58a76f3e3 -r dcbe505ddf24 static/icons/16/user_gray.png
Binary file static/icons/16/user_gray.png has changed
diff -r 44b58a76f3e3 -r dcbe505ddf24 static/icons/16/user_green.png
Binary file static/icons/16/user_green.png has changed
diff -r 44b58a76f3e3 -r dcbe505ddf24 static/icons/16/wrench.png
Binary file static/icons/16/wrench.png has changed
diff -r 44b58a76f3e3 -r dcbe505ddf24 static/icons/32/empty.png
Binary file static/icons/32/empty.png has changed
diff -r 44b58a76f3e3 -r dcbe505ddf24 static/icons/32/phase_current.png
Binary file static/icons/32/phase_current.png has changed
diff -r 44b58a76f3e3 -r dcbe505ddf24 static/icons/32/phase_failed.png
Binary file static/icons/32/phase_failed.png has changed
diff -r 44b58a76f3e3 -r dcbe505ddf24 static/icons/32/phase_finished.png
Binary file static/icons/32/phase_finished.png has changed
diff -r 44b58a76f3e3 -r dcbe505ddf24 static/icons/32/support_none.png
Binary file static/icons/32/support_none.png has changed
diff -r 44b58a76f3e3 -r dcbe505ddf24 static/icons/32/support_satisfied.png
Binary file static/icons/32/support_satisfied.png has changed
diff -r 44b58a76f3e3 -r dcbe505ddf24 static/icons/32/support_satisfied_via_delegation.png
Binary file static/icons/32/support_satisfied_via_delegation.png has changed
diff -r 44b58a76f3e3 -r dcbe505ddf24 static/icons/32/support_unsatisfied.png
Binary file static/icons/32/support_unsatisfied.png has changed
diff -r 44b58a76f3e3 -r dcbe505ddf24 static/icons/32/support_unsatisfied_via_delegation.png
Binary file static/icons/32/support_unsatisfied_via_delegation.png has changed
diff -r 44b58a76f3e3 -r dcbe505ddf24 static/icons/32/voted_no.png
Binary file static/icons/32/voted_no.png has changed
diff -r 44b58a76f3e3 -r dcbe505ddf24 static/icons/48/bell.png
Binary file static/icons/48/bell.png has changed
diff -r 44b58a76f3e3 -r dcbe505ddf24 static/icons/48/eye.png
Binary file static/icons/48/eye.png has changed
diff -r 44b58a76f3e3 -r dcbe505ddf24 static/icons/48/home.png
Binary file static/icons/48/home.png has changed
diff -r 44b58a76f3e3 -r dcbe505ddf24 static/icons/48/info.png
Binary file static/icons/48/info.png has changed
diff -r 44b58a76f3e3 -r dcbe505ddf24 static/icons/48/lf_plus.png
Binary file static/icons/48/lf_plus.png has changed
diff -r 44b58a76f3e3 -r dcbe505ddf24 static/icons/48/star.png
Binary file static/icons/48/star.png has changed
diff -r 44b58a76f3e3 -r dcbe505ddf24 static/icons/48/star_empty.png
Binary file static/icons/48/star_empty.png has changed
diff -r 44b58a76f3e3 -r dcbe505ddf24 static/icons/48/voted_ok.png
Binary file static/icons/48/voted_ok.png has changed
diff -r 44b58a76f3e3 -r dcbe505ddf24 static/icons/emoticon_happy.png
Binary file static/icons/emoticon_happy.png has changed
diff -r 44b58a76f3e3 -r dcbe505ddf24 static/icons/emoticon_unhappy.png
Binary file static/icons/emoticon_unhappy.png has changed
diff -r 44b58a76f3e3 -r dcbe505ddf24 static/icons/emoticon_unhappy_red.png
Binary file static/icons/emoticon_unhappy_red.png has changed
diff -r 44b58a76f3e3 -r dcbe505ddf24 static/icons/move_down.png
Binary file static/icons/move_down.png has changed
diff -r 44b58a76f3e3 -r dcbe505ddf24 static/icons/move_up.png
Binary file static/icons/move_up.png has changed
diff -r 44b58a76f3e3 -r dcbe505ddf24 static/star.png
Binary file static/star.png has changed