erp_app 3.0.2 → 3.0.3
Sign up to get free protection for your applications and to get access to all the features.
- data/app/controllers/erp_app/desktop/audit_log_viewer/base_controller.rb +73 -0
- data/config/routes.rb +3 -0
- data/db/data_migrations/20110816161238_create_desktop_app_audit_log_viewer.rb +20 -0
- data/lib/erp_app/version.rb +1 -1
- data/lib/erp_app/widgets/base.rb +8 -0
- data/public/images/icons/add/Thumbs.db +0 -0
- data/public/images/icons/calendar/Thumbs.db +0 -0
- data/public/images/icons/copy/Thumbs.db +0 -0
- data/public/images/icons/cut/Thumbs.db +0 -0
- data/public/images/icons/delete/Thumbs.db +0 -0
- data/public/images/icons/edit/Thumbs.db +0 -0
- data/public/images/icons/folder/Thumbs.db +0 -0
- data/public/images/icons/gear/Thumbs.db +0 -0
- data/public/images/icons/globe/Thumbs.db +0 -0
- data/public/images/icons/grid/Thumbs.db +0 -0
- data/public/images/icons/help/Thumbs.db +0 -0
- data/public/images/icons/information/Thumbs.db +0 -0
- data/public/images/icons/key/Thumbs.db +0 -0
- data/public/images/icons/log_out/Thumbs.db +0 -0
- data/public/images/icons/mail/Thumbs.db +0 -0
- data/public/images/icons/new/Thumbs.db +0 -0
- data/public/images/icons/next/Thumbs.db +0 -0
- data/public/images/icons/open/Thumbs.db +0 -0
- data/public/images/icons/paste/Thumbs.db +0 -0
- data/public/images/icons/picture/Thumbs.db +0 -0
- data/public/images/icons/presentation/Thumbs.db +0 -0
- data/public/images/icons/preview/Thumbs.db +0 -0
- data/public/images/icons/previous/Thumbs.db +0 -0
- data/public/images/icons/print/Thumbs.db +0 -0
- data/public/images/icons/properties/Thumbs.db +0 -0
- data/public/images/icons/redo/Thumbs.db +0 -0
- data/public/images/icons/refresh/Thumbs.db +0 -0
- data/public/images/icons/remove/Thumbs.db +0 -0
- data/public/images/icons/rename/Thumbs.db +0 -0
- data/public/images/icons/save/Thumbs.db +0 -0
- data/public/images/icons/search/Thumbs.db +0 -0
- data/public/images/icons/send/Thumbs.db +0 -0
- data/public/images/icons/settings/Thumbs.db +0 -0
- data/public/images/icons/synchronize/Thumbs.db +0 -0
- data/public/images/icons/undo/Thumbs.db +0 -0
- data/public/images/icons/upload/Thumbs.db +0 -0
- data/public/images/icons/user/Thumbs.db +0 -0
- data/public/images/icons/zoom_in/Thumbs.db +0 -0
- data/public/images/icons/zoom_out/Thumbs.db +0 -0
- data/public/javascripts/erp_app/ckeditor/plugins/jwplayer/jwplayer/Thumbs.db +0 -0
- data/public/javascripts/erp_app/desktop/applications/audit_log_viewer/audit_log_grid_panel.js +94 -0
- data/public/javascripts/erp_app/desktop/applications/audit_log_viewer/module.js +127 -0
- data/public/javascripts/erp_app/shared/file_manager_tree.js +2 -1
- data/public/stylesheets/erp_app/shared/compass-ext-all.css +5 -0
- metadata +55 -11
@@ -0,0 +1,73 @@
|
|
1
|
+
module ErpApp
|
2
|
+
module Desktop
|
3
|
+
module AuditLogViewer
|
4
|
+
class BaseController < ::ErpApp::Desktop::BaseController
|
5
|
+
|
6
|
+
def index
|
7
|
+
start_date = params[:start_date].to_time
|
8
|
+
end_date = params[:end_date].to_time
|
9
|
+
audit_log_type_id = params[:audit_log_type_id]
|
10
|
+
|
11
|
+
sort_hash = params[:sort].blank? ? {} : Hash.symbolize_keys(JSON.parse(params[:sort]).first)
|
12
|
+
sort = sort_hash[:property] || 'id'
|
13
|
+
dir = sort_hash[:direction] || 'ASC'
|
14
|
+
limit = params[:limit] || 15
|
15
|
+
start = params[:start] || 0
|
16
|
+
|
17
|
+
if start_date.blank? and end_date.blank? and audit_log_type_id.blank?
|
18
|
+
audit_log_entries = AuditLog.order("#{sort} #{dir}").offset(start).limit(limit).all
|
19
|
+
total_count = AuditLog.count
|
20
|
+
else
|
21
|
+
audit_logs = AuditLog.arel_table
|
22
|
+
|
23
|
+
audit_log_entries = AuditLog.where(audit_logs[:created_at].gteq(start_date)
|
24
|
+
.and(audit_logs[:created_at].lteq(end_date))
|
25
|
+
.and(audit_logs[:audit_log_type_id].eq(audit_log_type_id)))
|
26
|
+
.order("#{sort} #{dir}").offset(start).limit(limit).all
|
27
|
+
total_count = AuditLog.where(audit_logs[:created_at].gteq(start_date)
|
28
|
+
.and(audit_logs[:created_at].lteq(end_date))
|
29
|
+
.and(audit_logs[:audit_log_type_id].eq(audit_log_type_id))).count
|
30
|
+
end
|
31
|
+
|
32
|
+
render :json => {:total_count => total_count,
|
33
|
+
:audit_log_entries => audit_log_entries.collect{
|
34
|
+
|audit_log| audit_log.to_hash(:only => [:id, :description, :created_at],
|
35
|
+
:additional_values => {:party_description => audit_log.party.description,
|
36
|
+
:audit_log_type => audit_log.audit_log_type.description})}}
|
37
|
+
end
|
38
|
+
|
39
|
+
def items
|
40
|
+
id=params[:id]
|
41
|
+
|
42
|
+
page= (params[:page].to_i)
|
43
|
+
if (page==0)
|
44
|
+
page=1
|
45
|
+
end
|
46
|
+
row_count= params[:limit].to_i
|
47
|
+
if (row_count==0)
|
48
|
+
row_count=10
|
49
|
+
end
|
50
|
+
sort=params[:sort]
|
51
|
+
if (sort!=nil)
|
52
|
+
sort_hash = ActiveSupport::JSON.decode(sort)
|
53
|
+
logger.debug("\n\nsort_hash :#{sort_hash[0].class}-#{sort_hash[0]}")
|
54
|
+
property=sort_hash[0]['property']
|
55
|
+
direction=sort_hash[0]['direction']
|
56
|
+
logger.debug("\n\nsort :#{property} -#{direction}")
|
57
|
+
end
|
58
|
+
|
59
|
+
rec_count=AuditLogItem.count(:conditions => ["audit_log_id = ?", id])
|
60
|
+
paged_results=AuditLogItem.paginate(:page => page, :per_page => row_count, :conditions => ["audit_log_id = ?", id])
|
61
|
+
render :json => {:total_count => rec_count, :audit_items => paged_results}
|
62
|
+
end
|
63
|
+
|
64
|
+
|
65
|
+
def audit_log_types
|
66
|
+
audit_log_types= AuditLogType.all
|
67
|
+
render :json => {:audit_log_types => audit_log_types.collect{|type| type.to_hash(:only => [:id, :description, :internal_identifier])}}
|
68
|
+
end
|
69
|
+
|
70
|
+
end #BaseController
|
71
|
+
end #AuditLogViewer
|
72
|
+
end #Desktop
|
73
|
+
end #ErpApp
|
data/config/routes.rb
CHANGED
@@ -68,6 +68,9 @@ ErpApp::Engine.routes.draw do
|
|
68
68
|
match '/desktop/configuration_management/types/:action' => "desktop/configuration_management/types"
|
69
69
|
match '/desktop/configuration_management/options/:action' => "desktop/configuration_management/options"
|
70
70
|
|
71
|
+
#audit_log_view
|
72
|
+
match '/desktop/audit_log_viewer/:action.:format' => 'desktop/audit_log_viewer/base'
|
73
|
+
|
71
74
|
#widget proxy
|
72
75
|
match '/widgets/:widget_name/:widget_action/:uuid(/:id)' => "widget_proxy#index", :as => :widget
|
73
76
|
|
@@ -0,0 +1,20 @@
|
|
1
|
+
class CreateDesktopAppAuditLogViewer
|
2
|
+
def self.up
|
3
|
+
app = DesktopApplication.create(
|
4
|
+
:description => 'Audit Log Viewer',
|
5
|
+
:icon => 'icon-history',
|
6
|
+
:javascript_class_name => 'Compass.ErpApp.Desktop.Applications.AuditLogViewer',
|
7
|
+
:internal_identifier => 'audit_log_viewer',
|
8
|
+
:shortcut_id => 'audit_log_viewer-win'
|
9
|
+
)
|
10
|
+
|
11
|
+
app.preference_types << PreferenceType.iid('desktop_shortcut')
|
12
|
+
app.preference_types << PreferenceType.iid('autoload_application')
|
13
|
+
app.save
|
14
|
+
|
15
|
+
end
|
16
|
+
|
17
|
+
def self.down
|
18
|
+
DesktopApplication.destroy_all(['internal_identifier = ?','audit_log_viewer'])
|
19
|
+
end
|
20
|
+
end
|
data/lib/erp_app/version.rb
CHANGED
data/lib/erp_app/widgets/base.rb
CHANGED
@@ -141,6 +141,14 @@ module ErpApp
|
|
141
141
|
end
|
142
142
|
|
143
143
|
class << self
|
144
|
+
def render_template(view, locals={})
|
145
|
+
widget = Rails.application.config.erp_app.widgets.find{|item| item[:name] == self.widget_name}
|
146
|
+
paths = widget[:view_paths]
|
147
|
+
|
148
|
+
paths.reverse!
|
149
|
+
ActionView::Base.new(paths).render(:template => view, :locals => locals)
|
150
|
+
end
|
151
|
+
|
144
152
|
def widget_name
|
145
153
|
File.basename(File.dirname(__FILE__))
|
146
154
|
end
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
@@ -0,0 +1,94 @@
|
|
1
|
+
function short_date_renderer(value) {
|
2
|
+
return Ext.Date.format(value, 'm-d-Y');
|
3
|
+
}
|
4
|
+
|
5
|
+
Ext.define('Compass.ErpApp.Desktop.Applications.AuditLogViewer.AuditLogEntry', {
|
6
|
+
extend:'Ext.data.Model',
|
7
|
+
fields:[
|
8
|
+
{
|
9
|
+
name:'id',
|
10
|
+
type:'int'
|
11
|
+
},
|
12
|
+
{
|
13
|
+
name:'party_description',
|
14
|
+
type:'string'
|
15
|
+
},
|
16
|
+
{
|
17
|
+
name:'description',
|
18
|
+
type:'string'
|
19
|
+
},
|
20
|
+
{
|
21
|
+
name:'created_at',
|
22
|
+
type:'date'
|
23
|
+
},
|
24
|
+
{
|
25
|
+
name:'audit_log_type',
|
26
|
+
type:'string'
|
27
|
+
}
|
28
|
+
|
29
|
+
]
|
30
|
+
});
|
31
|
+
|
32
|
+
Ext.create('Ext.data.Store', {
|
33
|
+
storeId:'audit-log-view-audit-log-entry-store',
|
34
|
+
model:'Compass.ErpApp.Desktop.Applications.AuditLogViewer.AuditLogEntry',
|
35
|
+
pageSize:15,
|
36
|
+
start:0,
|
37
|
+
remoteSort:true,
|
38
|
+
proxy:{
|
39
|
+
type:'ajax',
|
40
|
+
url:'/erp_app/desktop/audit_log_viewer/index.json',
|
41
|
+
extraParams:{
|
42
|
+
start_date:null,
|
43
|
+
end_date:null,
|
44
|
+
audit_log_type_id:null
|
45
|
+
},
|
46
|
+
reader:{
|
47
|
+
type:'json',
|
48
|
+
root:'audit_log_entries',
|
49
|
+
totalProperty:'total_count'
|
50
|
+
|
51
|
+
}
|
52
|
+
}
|
53
|
+
});
|
54
|
+
|
55
|
+
Ext.define('Compass.ErpApp.Desktop.Applications.AuditLogViewer.AuditLogGrid', {
|
56
|
+
alias:'widget.audit_log_viewer-audit_log_grid',
|
57
|
+
extend:'Ext.grid.Panel',
|
58
|
+
title:'Audit Log Records',
|
59
|
+
store:Ext.getStore('audit-log-view-audit-log-entry-store'),
|
60
|
+
columns:[
|
61
|
+
{
|
62
|
+
header:'Log Id',
|
63
|
+
dataIndex:'id',
|
64
|
+
width:50
|
65
|
+
},
|
66
|
+
{
|
67
|
+
header:'Logged By',
|
68
|
+
dataIndex:'party_description',
|
69
|
+
sortable:false,
|
70
|
+
width:200
|
71
|
+
},
|
72
|
+
{
|
73
|
+
header:'Description',
|
74
|
+
dataIndex:'description',
|
75
|
+
sortable:false,
|
76
|
+
width:300
|
77
|
+
},
|
78
|
+
{
|
79
|
+
header:'Created At',
|
80
|
+
dataIndex:'created_at',
|
81
|
+
renderer:short_date_renderer,
|
82
|
+
width:100
|
83
|
+
},
|
84
|
+
{
|
85
|
+
header:'Audit Log Type',
|
86
|
+
dataIndex:'audit_log_type',
|
87
|
+
width:200
|
88
|
+
}
|
89
|
+
|
90
|
+
],
|
91
|
+
viewConfig:{
|
92
|
+
stripeRows:true
|
93
|
+
}
|
94
|
+
});
|
@@ -0,0 +1,127 @@
|
|
1
|
+
Ext.define('Compass.ErpApp.Desktop.Applications.AuditLogViewer.AuditLogType', {
|
2
|
+
extend:'Ext.data.Model',
|
3
|
+
fields:[
|
4
|
+
{name:'id', type:'int'},
|
5
|
+
{name:'description', type:'string'},
|
6
|
+
{name:'internal_identifier', type:'string'}
|
7
|
+
]
|
8
|
+
});
|
9
|
+
|
10
|
+
Ext.create('Ext.data.Store', {
|
11
|
+
storeId:'audit-log-view-audit-log-type-store',
|
12
|
+
model:'Compass.ErpApp.Desktop.Applications.AuditLogViewer.AuditLogType',
|
13
|
+
proxy:{
|
14
|
+
type:'ajax',
|
15
|
+
url:'/erp_app/desktop/audit_log_viewer/audit_log_types.json',
|
16
|
+
reader:{
|
17
|
+
type:'json',
|
18
|
+
root:'audit_log_types'
|
19
|
+
}
|
20
|
+
}
|
21
|
+
});
|
22
|
+
|
23
|
+
Ext.define("Compass.ErpApp.Desktop.Applications.AuditLogViewer", {
|
24
|
+
extend:"Ext.ux.desktop.Module",
|
25
|
+
id:'audit_log_viewer-win',
|
26
|
+
init:function () {
|
27
|
+
this.launcher = {
|
28
|
+
text:'audit_log_viewer',
|
29
|
+
iconCls:'icon-history',
|
30
|
+
handler:this.createWindow,
|
31
|
+
scope:this
|
32
|
+
}
|
33
|
+
},
|
34
|
+
|
35
|
+
createWindow:function () {
|
36
|
+
var desktop = this.app.getDesktop();
|
37
|
+
var win = desktop.getWindow('audit_log_viewer');
|
38
|
+
if (!win) {
|
39
|
+
|
40
|
+
var container = Ext.create('Ext.panel.Panel', {
|
41
|
+
layout:'fit',
|
42
|
+
dockedItems:[
|
43
|
+
{
|
44
|
+
xtype:'toolbar',
|
45
|
+
dock:'top',
|
46
|
+
items:[
|
47
|
+
'Start Date:',
|
48
|
+
{
|
49
|
+
xtype:'datefield',
|
50
|
+
itemId:'startDate',
|
51
|
+
value:new Date()
|
52
|
+
|
53
|
+
},
|
54
|
+
'End Date:',
|
55
|
+
{
|
56
|
+
xtype:'datefield',
|
57
|
+
itemId:'endDate',
|
58
|
+
value:new Date()
|
59
|
+
},
|
60
|
+
'Audit Log Type',
|
61
|
+
{
|
62
|
+
xtype:'combo',
|
63
|
+
itemId:'auditLogTypeId',
|
64
|
+
store:Ext.getStore('audit-log-view-audit-log-type-store'),
|
65
|
+
queryMode:'remote',
|
66
|
+
displayField:'description',
|
67
|
+
valueField:'id'
|
68
|
+
},
|
69
|
+
{
|
70
|
+
xtype:'button',
|
71
|
+
text:'Search',
|
72
|
+
iconCls:'icon-search',
|
73
|
+
handler:function (btn) {
|
74
|
+
var startDate = btn.up('toolbar').down('#startDate').getValue();
|
75
|
+
var endDate = btn.up('toolbar').down('#endDate').getValue();
|
76
|
+
var auditLogTypeId = btn.up('toolbar').down('#auditLogTypeId').getValue();
|
77
|
+
|
78
|
+
var store = btn.up('toolbar').up('panel').down('audit_log_viewer-audit_log_grid').getStore();
|
79
|
+
store.currentPage = 1;
|
80
|
+
store.load({params:{start:0, start_date:startDate, end_date:endDate, audit_log_type_id:auditLogTypeId}});
|
81
|
+
}
|
82
|
+
},
|
83
|
+
{
|
84
|
+
xtype:'button',
|
85
|
+
text:'All',
|
86
|
+
iconCls:'icon-eye',
|
87
|
+
handler:function (btn) {
|
88
|
+
var store = btn.up('toolbar').up('panel').down('audit_log_viewer-audit_log_grid').getStore();
|
89
|
+
store.currentPage = 1;
|
90
|
+
store.load({params:{start:0, start_date:null, end_date:null, audit_log_type_id:null}});
|
91
|
+
}
|
92
|
+
}
|
93
|
+
]
|
94
|
+
}
|
95
|
+
],
|
96
|
+
items:[
|
97
|
+
{xtype:'audit_log_viewer-audit_log_grid'}
|
98
|
+
]
|
99
|
+
});
|
100
|
+
|
101
|
+
win = desktop.createWindow({
|
102
|
+
id:'audit_log_viewer',
|
103
|
+
title:'Audit Log Viewer',
|
104
|
+
width:1000,
|
105
|
+
height:540,
|
106
|
+
iconCls:'icon-history',
|
107
|
+
shim:false,
|
108
|
+
animCollapse:false,
|
109
|
+
constrainHeader:true,
|
110
|
+
layout:'fit',
|
111
|
+
items:[container]
|
112
|
+
});
|
113
|
+
|
114
|
+
//had to add the docked this docked item after it was created. Was throwing style error????
|
115
|
+
container.down('audit_log_viewer-audit_log_grid').addDocked({
|
116
|
+
xtype:'pagingtoolbar',
|
117
|
+
store:Ext.getStore('audit-log-view-audit-log-entry-store'),
|
118
|
+
dock:'bottom',
|
119
|
+
displayInfo:true
|
120
|
+
});
|
121
|
+
|
122
|
+
//load the grid store
|
123
|
+
container.down('audit_log_viewer-audit_log_grid').getStore().load({params:{start:0}});
|
124
|
+
}
|
125
|
+
win.show();
|
126
|
+
}
|
127
|
+
});
|
@@ -326,7 +326,8 @@ Ext.define("Compass.ErpApp.Shared.FileManagerTree",{
|
|
326
326
|
if(btn == 'yes')
|
327
327
|
{
|
328
328
|
Ext.apply(self.extraPostData, {
|
329
|
-
node:record.data.id
|
329
|
+
node:record.data.id,
|
330
|
+
leaf:record.data.leaf
|
330
331
|
});
|
331
332
|
var msg = Ext.Msg.wait("Loading", "Deleting file...");
|
332
333
|
Ext.Ajax.request({
|
@@ -2,6 +2,11 @@
|
|
2
2
|
padding : 5px;
|
3
3
|
}
|
4
4
|
|
5
|
+
.icon-history {
|
6
|
+
background-image: url(/images/icons/history/history_16x16.png) !important;
|
7
|
+
filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='/images/icons/history/history_16x16.png', sizingMethod='crop');
|
8
|
+
}
|
9
|
+
|
5
10
|
.icon-apartment {
|
6
11
|
background-image: url(/images/icons/apartment/apartment_16x16.png) !important;
|
7
12
|
filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='/images/icons/apartment/apartment_16x16.png', sizingMethod='crop');
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: erp_app
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.0.
|
4
|
+
version: 3.0.3
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -9,11 +9,11 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2012-
|
12
|
+
date: 2012-06-26 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: will_paginate
|
16
|
-
requirement: &
|
16
|
+
requirement: &70242529816100 !ruby/object:Gem::Requirement
|
17
17
|
none: false
|
18
18
|
requirements:
|
19
19
|
- - =
|
@@ -21,10 +21,10 @@ dependencies:
|
|
21
21
|
version: 3.0.2
|
22
22
|
type: :runtime
|
23
23
|
prerelease: false
|
24
|
-
version_requirements: *
|
24
|
+
version_requirements: *70242529816100
|
25
25
|
- !ruby/object:Gem::Dependency
|
26
26
|
name: uglifier
|
27
|
-
requirement: &
|
27
|
+
requirement: &70242529814900 !ruby/object:Gem::Requirement
|
28
28
|
none: false
|
29
29
|
requirements:
|
30
30
|
- - ~>
|
@@ -32,10 +32,10 @@ dependencies:
|
|
32
32
|
version: 1.0.3
|
33
33
|
type: :runtime
|
34
34
|
prerelease: false
|
35
|
-
version_requirements: *
|
35
|
+
version_requirements: *70242529814900
|
36
36
|
- !ruby/object:Gem::Dependency
|
37
37
|
name: erp_tech_svcs
|
38
|
-
requirement: &
|
38
|
+
requirement: &70242529813840 !ruby/object:Gem::Requirement
|
39
39
|
none: false
|
40
40
|
requirements:
|
41
41
|
- - ~>
|
@@ -43,10 +43,10 @@ dependencies:
|
|
43
43
|
version: '3.0'
|
44
44
|
type: :runtime
|
45
45
|
prerelease: false
|
46
|
-
version_requirements: *
|
46
|
+
version_requirements: *70242529813840
|
47
47
|
- !ruby/object:Gem::Dependency
|
48
48
|
name: erp_dev_svcs
|
49
|
-
requirement: &
|
49
|
+
requirement: &70242529813080 !ruby/object:Gem::Requirement
|
50
50
|
none: false
|
51
51
|
requirements:
|
52
52
|
- - ~>
|
@@ -54,7 +54,7 @@ dependencies:
|
|
54
54
|
version: '3.0'
|
55
55
|
type: :development
|
56
56
|
prerelease: false
|
57
|
-
version_requirements: *
|
57
|
+
version_requirements: *70242529813080
|
58
58
|
description: Provides an application infrastructure based on the Sencha/extjs UI framework,
|
59
59
|
as well as several utilities and example applications. It houses the core application
|
60
60
|
container framework and component model infrastructure that play a key role in the
|
@@ -89,6 +89,7 @@ files:
|
|
89
89
|
- public/images/icons/add/add_24x24.png
|
90
90
|
- public/images/icons/add/add_32x32.png
|
91
91
|
- public/images/icons/add/add_48x48.png
|
92
|
+
- public/images/icons/add/Thumbs.db
|
92
93
|
- public/images/icons/apartment/apartment_16x16.png
|
93
94
|
- public/images/icons/apartment/apartment_24x24.png
|
94
95
|
- public/images/icons/apartment/apartment_32x32.png
|
@@ -125,6 +126,7 @@ files:
|
|
125
126
|
- public/images/icons/calendar/calendar_24x24.png
|
126
127
|
- public/images/icons/calendar/calendar_32x32.png
|
127
128
|
- public/images/icons/calendar/calendar_48x48.png
|
129
|
+
- public/images/icons/calendar/Thumbs.db
|
128
130
|
- public/images/icons/clock/clock.png
|
129
131
|
- public/images/icons/compass/compass_16x16.png
|
130
132
|
- public/images/icons/compass/compass_24x24.png
|
@@ -145,6 +147,7 @@ files:
|
|
145
147
|
- public/images/icons/copy/copy_24x24.png
|
146
148
|
- public/images/icons/copy/copy_32x32.png
|
147
149
|
- public/images/icons/copy/copy_48x48.png
|
150
|
+
- public/images/icons/copy/Thumbs.db
|
148
151
|
- public/images/icons/creditcards/creditcards_16x16.png
|
149
152
|
- public/images/icons/creditcards/creditcards_24x24.png
|
150
153
|
- public/images/icons/creditcards/creditcards_32x32.png
|
@@ -153,6 +156,7 @@ files:
|
|
153
156
|
- public/images/icons/cut/cut_24x24.png
|
154
157
|
- public/images/icons/cut/cut_32x32.png
|
155
158
|
- public/images/icons/cut/cut_48x48.png
|
159
|
+
- public/images/icons/cut/Thumbs.db
|
156
160
|
- public/images/icons/data/data_16x16.png
|
157
161
|
- public/images/icons/data/data_24x24.png
|
158
162
|
- public/images/icons/data/data_32x32.png
|
@@ -161,6 +165,7 @@ files:
|
|
161
165
|
- public/images/icons/delete/delete_24x24.png
|
162
166
|
- public/images/icons/delete/delete_32x32.png
|
163
167
|
- public/images/icons/delete/delete_48x48.png
|
168
|
+
- public/images/icons/delete/Thumbs.db
|
164
169
|
- public/images/icons/desktop/desktop_16x16.png
|
165
170
|
- public/images/icons/desktop/desktop_24x24.png
|
166
171
|
- public/images/icons/desktop/desktop_32x32.png
|
@@ -345,6 +350,7 @@ files:
|
|
345
350
|
- public/images/icons/edit/edit_24x24.png
|
346
351
|
- public/images/icons/edit/edit_32x32.png
|
347
352
|
- public/images/icons/edit/edit_48x48.png
|
353
|
+
- public/images/icons/edit/Thumbs.db
|
348
354
|
- public/images/icons/error/error_16x16.png
|
349
355
|
- public/images/icons/error/error_24x24.png
|
350
356
|
- public/images/icons/error/error_32x32.png
|
@@ -361,6 +367,7 @@ files:
|
|
361
367
|
- public/images/icons/folder/folder_24x24.png
|
362
368
|
- public/images/icons/folder/folder_32x32.png
|
363
369
|
- public/images/icons/folder/folder_48x48.png
|
370
|
+
- public/images/icons/folder/Thumbs.db
|
364
371
|
- public/images/icons/folder_gear/folder_gear_16x16.png
|
365
372
|
- public/images/icons/folder_gear/folder_gear_24x24.png
|
366
373
|
- public/images/icons/folder_gear/folder_gear_32x32.png
|
@@ -373,10 +380,12 @@ files:
|
|
373
380
|
- public/images/icons/gear/gear_24x24.png
|
374
381
|
- public/images/icons/gear/gear_32x32.png
|
375
382
|
- public/images/icons/gear/gear_48x48.png
|
383
|
+
- public/images/icons/gear/Thumbs.db
|
376
384
|
- public/images/icons/globe/globe_16x16.png
|
377
385
|
- public/images/icons/globe/globe_24x24.png
|
378
386
|
- public/images/icons/globe/globe_32x32.png
|
379
387
|
- public/images/icons/globe/globe_48x48.png
|
388
|
+
- public/images/icons/globe/Thumbs.db
|
380
389
|
- public/images/icons/globe_disconnected/globe_disconnected_16x16.png
|
381
390
|
- public/images/icons/globe_disconnected/globe_disconnected_24x24.png
|
382
391
|
- public/images/icons/globe_disconnected/globe_disconnected_32x32.png
|
@@ -385,10 +394,12 @@ files:
|
|
385
394
|
- public/images/icons/grid/grid_32x32.gif
|
386
395
|
- public/images/icons/grid/grid_48x48.gif
|
387
396
|
- public/images/icons/grid/grid_48x48.png
|
397
|
+
- public/images/icons/grid/Thumbs.db
|
388
398
|
- public/images/icons/help/help_16x16.png
|
389
399
|
- public/images/icons/help/help_24x24.png
|
390
400
|
- public/images/icons/help/help_32x32.png
|
391
401
|
- public/images/icons/help/help_48x48.png
|
402
|
+
- public/images/icons/help/Thumbs.db
|
392
403
|
- public/images/icons/history/history_16x16.png
|
393
404
|
- public/images/icons/history/history_24x24.png
|
394
405
|
- public/images/icons/history/history_32x32.png
|
@@ -405,10 +416,12 @@ files:
|
|
405
416
|
- public/images/icons/information/information_24x24.png
|
406
417
|
- public/images/icons/information/information_32x32.png
|
407
418
|
- public/images/icons/information/information_48x48.png
|
419
|
+
- public/images/icons/information/Thumbs.db
|
408
420
|
- public/images/icons/key/key_16x16.png
|
409
421
|
- public/images/icons/key/key_24x24.png
|
410
422
|
- public/images/icons/key/key_32x32.png
|
411
423
|
- public/images/icons/key/key_48x48.png
|
424
|
+
- public/images/icons/key/Thumbs.db
|
412
425
|
- public/images/icons/keyboard/keyboard_16x16.png
|
413
426
|
- public/images/icons/keyboard/keyboard_24x24.png
|
414
427
|
- public/images/icons/keyboard/keyboard_32x32.png
|
@@ -425,10 +438,12 @@ files:
|
|
425
438
|
- public/images/icons/log_out/log_out_24x24.png
|
426
439
|
- public/images/icons/log_out/log_out_32x32.png
|
427
440
|
- public/images/icons/log_out/log_out_48x48.png
|
441
|
+
- public/images/icons/log_out/Thumbs.db
|
428
442
|
- public/images/icons/mail/mail_16x16.png
|
429
443
|
- public/images/icons/mail/mail_24x24.png
|
430
444
|
- public/images/icons/mail/mail_32x32.png
|
431
445
|
- public/images/icons/mail/mail_48x48.png
|
446
|
+
- public/images/icons/mail/Thumbs.db
|
432
447
|
- public/images/icons/map/map_16x16.png
|
433
448
|
- public/images/icons/map/map_24x24.png
|
434
449
|
- public/images/icons/map/map_32x32.png
|
@@ -501,10 +516,12 @@ files:
|
|
501
516
|
- public/images/icons/new/new_24x24.png
|
502
517
|
- public/images/icons/new/new_32x32.png
|
503
518
|
- public/images/icons/new/new_48x48.png
|
519
|
+
- public/images/icons/new/Thumbs.db
|
504
520
|
- public/images/icons/next/next_16x16.png
|
505
521
|
- public/images/icons/next/next_24x24.png
|
506
522
|
- public/images/icons/next/next_32x32.png
|
507
523
|
- public/images/icons/next/next_48x48.png
|
524
|
+
- public/images/icons/next/Thumbs.db
|
508
525
|
- public/images/icons/note/note_16x16.png
|
509
526
|
- public/images/icons/note/note_24x24.png
|
510
527
|
- public/images/icons/note/note_32x32.png
|
@@ -561,6 +578,7 @@ files:
|
|
561
578
|
- public/images/icons/open/open_24x24.png
|
562
579
|
- public/images/icons/open/open_32x32.png
|
563
580
|
- public/images/icons/open/open_48x48.png
|
581
|
+
- public/images/icons/open/Thumbs.db
|
564
582
|
- public/images/icons/package/package_16x16.png
|
565
583
|
- public/images/icons/package/package_24x24.png
|
566
584
|
- public/images/icons/package/package_32x32.png
|
@@ -577,10 +595,12 @@ files:
|
|
577
595
|
- public/images/icons/paste/paste_24x24.png
|
578
596
|
- public/images/icons/paste/paste_32x32.png
|
579
597
|
- public/images/icons/paste/paste_48x48.png
|
598
|
+
- public/images/icons/paste/Thumbs.db
|
580
599
|
- public/images/icons/picture/picture_16x16.png
|
581
600
|
- public/images/icons/picture/picture_24x24.png
|
582
601
|
- public/images/icons/picture/picture_32x32.png
|
583
602
|
- public/images/icons/picture/picture_48x48.png
|
603
|
+
- public/images/icons/picture/Thumbs.db
|
584
604
|
- public/images/icons/preferences/preferences_16x16.png
|
585
605
|
- public/images/icons/preferences/preferences_24x24.png
|
586
606
|
- public/images/icons/preferences/preferences_32x32.png
|
@@ -589,6 +609,7 @@ files:
|
|
589
609
|
- public/images/icons/presentation/presentation_24x24.png
|
590
610
|
- public/images/icons/presentation/presentation_32x32.png
|
591
611
|
- public/images/icons/presentation/presentation_48x48.png
|
612
|
+
- public/images/icons/presentation/Thumbs.db
|
592
613
|
- public/images/icons/presentation_chart/presentation_chart_16x16.png
|
593
614
|
- public/images/icons/presentation_chart/presentation_chart_24x24.png
|
594
615
|
- public/images/icons/presentation_chart/presentation_chart_32x32.png
|
@@ -597,14 +618,17 @@ files:
|
|
597
618
|
- public/images/icons/preview/preview_24x24.png
|
598
619
|
- public/images/icons/preview/preview_32x32.png
|
599
620
|
- public/images/icons/preview/preview_48x48.png
|
621
|
+
- public/images/icons/preview/Thumbs.db
|
600
622
|
- public/images/icons/previous/previous_16x16.png
|
601
623
|
- public/images/icons/previous/previous_24x24.png
|
602
624
|
- public/images/icons/previous/previous_32x32.png
|
603
625
|
- public/images/icons/previous/previous_48x48.png
|
626
|
+
- public/images/icons/previous/Thumbs.db
|
604
627
|
- public/images/icons/print/print_16x16.png
|
605
628
|
- public/images/icons/print/print_24x24.png
|
606
629
|
- public/images/icons/print/print_32x32.png
|
607
630
|
- public/images/icons/print/print_48x48.png
|
631
|
+
- public/images/icons/print/Thumbs.db
|
608
632
|
- public/images/icons/printer/printer_16x16.png
|
609
633
|
- public/images/icons/printer/printer_24x24.png
|
610
634
|
- public/images/icons/printer/printer_32x32.png
|
@@ -621,6 +645,7 @@ files:
|
|
621
645
|
- public/images/icons/properties/properties_24x24.png
|
622
646
|
- public/images/icons/properties/properties_32x32.png
|
623
647
|
- public/images/icons/properties/properties_48x48.png
|
648
|
+
- public/images/icons/properties/Thumbs.db
|
624
649
|
- public/images/icons/question_and_answer/question_and_answer_16x16.png
|
625
650
|
- public/images/icons/question_and_answer/question_and_answer_24x24.png
|
626
651
|
- public/images/icons/question_and_answer/question_and_answer_32x32.png
|
@@ -633,18 +658,22 @@ files:
|
|
633
658
|
- public/images/icons/redo/redo_24x24.png
|
634
659
|
- public/images/icons/redo/redo_32x32.png
|
635
660
|
- public/images/icons/redo/redo_48x48.png
|
661
|
+
- public/images/icons/redo/Thumbs.db
|
636
662
|
- public/images/icons/refresh/refresh_16x16.png
|
637
663
|
- public/images/icons/refresh/refresh_24x24.png
|
638
664
|
- public/images/icons/refresh/refresh_32x32.png
|
639
665
|
- public/images/icons/refresh/refresh_48x48.png
|
666
|
+
- public/images/icons/refresh/Thumbs.db
|
640
667
|
- public/images/icons/remove/remove_16x16.png
|
641
668
|
- public/images/icons/remove/remove_24x24.png
|
642
669
|
- public/images/icons/remove/remove_32x32.png
|
643
670
|
- public/images/icons/remove/remove_48x48.png
|
671
|
+
- public/images/icons/remove/Thumbs.db
|
644
672
|
- public/images/icons/rename/rename_16x16.png
|
645
673
|
- public/images/icons/rename/rename_24x24.png
|
646
674
|
- public/images/icons/rename/rename_32xr2.png
|
647
675
|
- public/images/icons/rename/rename_48x48.png
|
676
|
+
- public/images/icons/rename/Thumbs.db
|
648
677
|
- public/images/icons/replace/replace_16x16.png
|
649
678
|
- public/images/icons/replace/replace_24x24.png
|
650
679
|
- public/images/icons/replace/replace_32x32.png
|
@@ -653,6 +682,7 @@ files:
|
|
653
682
|
- public/images/icons/save/save_24x24.png
|
654
683
|
- public/images/icons/save/save_32x32.png
|
655
684
|
- public/images/icons/save/save_48x48.png
|
685
|
+
- public/images/icons/save/Thumbs.db
|
656
686
|
- public/images/icons/save_as/save_as_16x16.png
|
657
687
|
- public/images/icons/save_as/save_as_24x24.png
|
658
688
|
- public/images/icons/save_as/save_as_32x32.png
|
@@ -665,14 +695,17 @@ files:
|
|
665
695
|
- public/images/icons/search/search_24x24.png
|
666
696
|
- public/images/icons/search/search_32x32.png
|
667
697
|
- public/images/icons/search/search_48x48.png
|
698
|
+
- public/images/icons/search/Thumbs.db
|
668
699
|
- public/images/icons/send/send_16x16.png
|
669
700
|
- public/images/icons/send/send_24x24.png
|
670
701
|
- public/images/icons/send/send_32x32.png
|
671
702
|
- public/images/icons/send/send_48x48.png
|
703
|
+
- public/images/icons/send/Thumbs.db
|
672
704
|
- public/images/icons/settings/settings_16x16.png
|
673
705
|
- public/images/icons/settings/settings_24x24.png
|
674
706
|
- public/images/icons/settings/settings_32x32.png
|
675
707
|
- public/images/icons/settings/settings_48x48.png
|
708
|
+
- public/images/icons/settings/Thumbs.db
|
676
709
|
- public/images/icons/shoppingbasket/shoppingbasket_16x16.png
|
677
710
|
- public/images/icons/shoppingbasket/shoppingbasket_24x24.png
|
678
711
|
- public/images/icons/shoppingbasket/shoppingbasket_32x32.png
|
@@ -745,20 +778,24 @@ files:
|
|
745
778
|
- public/images/icons/synchronize/synchronize_24x24.png
|
746
779
|
- public/images/icons/synchronize/synchronize_32x32.png
|
747
780
|
- public/images/icons/synchronize/synchronize_48x48.png
|
781
|
+
- public/images/icons/synchronize/Thumbs.db
|
748
782
|
- public/images/icons/toolbar/class.png
|
749
783
|
- public/images/icons/toolbar/class_folder.png
|
750
784
|
- public/images/icons/toolbar/mixed_folder.png
|
751
785
|
- public/images/icons/toolbar/object_graph.png
|
752
786
|
- public/images/icons/toolbar/package_yellow.png
|
753
787
|
- public/images/icons/toolbar/table_go.png
|
788
|
+
- public/images/icons/undo/Thumbs.db
|
754
789
|
- public/images/icons/undo/undo_16x16.png
|
755
790
|
- public/images/icons/undo/undo_24x24.png
|
756
791
|
- public/images/icons/undo/undo_32x32.png
|
757
792
|
- public/images/icons/undo/undo_48x48.png
|
793
|
+
- public/images/icons/upload/Thumbs.db
|
758
794
|
- public/images/icons/upload/upload_16x16.png
|
759
795
|
- public/images/icons/upload/upload_24x24.png
|
760
796
|
- public/images/icons/upload/upload_32x32.png
|
761
797
|
- public/images/icons/upload/upload_48x48.png
|
798
|
+
- public/images/icons/user/Thumbs.db
|
762
799
|
- public/images/icons/user/user_16x16.png
|
763
800
|
- public/images/icons/user/user_24x24.png
|
764
801
|
- public/images/icons/user/user_32x32.png
|
@@ -771,10 +808,12 @@ files:
|
|
771
808
|
- public/images/icons/warning/warning_24x24.png
|
772
809
|
- public/images/icons/warning/warning_32x32.png
|
773
810
|
- public/images/icons/warning/warning_48x48.png
|
811
|
+
- public/images/icons/zoom_in/Thumbs.db
|
774
812
|
- public/images/icons/zoom_in/zoom_in_16x16.png
|
775
813
|
- public/images/icons/zoom_in/zoom_in_24x24.png
|
776
814
|
- public/images/icons/zoom_in/zoom_in_32x32.png
|
777
815
|
- public/images/icons/zoom_in/zoom_in_48x48.png
|
816
|
+
- public/images/icons/zoom_out/Thumbs.db
|
778
817
|
- public/images/icons/zoom_out/zoom_out_16x16.png
|
779
818
|
- public/images/icons/zoom_out/zoom_out_24x24.png
|
780
819
|
- public/images/icons/zoom_out/zoom_out_32x32.png
|
@@ -926,6 +965,7 @@ files:
|
|
926
965
|
- public/javascripts/erp_app/ckeditor/plugins/jwplayer/jwplayer/skin/stijl.zip
|
927
966
|
- public/javascripts/erp_app/ckeditor/plugins/jwplayer/jwplayer/skin/stormtrooper.zip
|
928
967
|
- public/javascripts/erp_app/ckeditor/plugins/jwplayer/jwplayer/swfobject.js
|
968
|
+
- public/javascripts/erp_app/ckeditor/plugins/jwplayer/jwplayer/Thumbs.db
|
929
969
|
- public/javascripts/erp_app/ckeditor/plugins/jwplayer/jwplayer/video.mp4
|
930
970
|
- public/javascripts/erp_app/ckeditor/plugins/jwplayer/jwplayer/yt.swf
|
931
971
|
- public/javascripts/erp_app/ckeditor/plugins/jwplayer/plugin.js
|
@@ -1234,6 +1274,8 @@ files:
|
|
1234
1274
|
- public/javascripts/erp_app/codemirror/theme/elegant.css
|
1235
1275
|
- public/javascripts/erp_app/codemirror/theme/neat.css
|
1236
1276
|
- public/javascripts/erp_app/codemirror/theme/night.css
|
1277
|
+
- public/javascripts/erp_app/desktop/applications/audit_log_viewer/audit_log_grid_panel.js
|
1278
|
+
- public/javascripts/erp_app/desktop/applications/audit_log_viewer/module.js
|
1237
1279
|
- public/javascripts/erp_app/desktop/applications/configuration_management/configuration_options_panel.js
|
1238
1280
|
- public/javascripts/erp_app/desktop/applications/configuration_management/configuration_tree_panel.js
|
1239
1281
|
- public/javascripts/erp_app/desktop/applications/configuration_management/configuration_types_panel.js
|
@@ -3203,6 +3245,7 @@ files:
|
|
3203
3245
|
- public/stylesheets/sencha_touch/resources/themes/templates/project/sencha-touch.scss
|
3204
3246
|
- app/assets/stylesheets/erp_app/application.css
|
3205
3247
|
- app/controllers/erp_app/application_controller.rb
|
3248
|
+
- app/controllers/erp_app/desktop/audit_log_viewer/base_controller.rb
|
3206
3249
|
- app/controllers/erp_app/desktop/base_controller.rb
|
3207
3250
|
- app/controllers/erp_app/desktop/configuration_management/base_controller.rb
|
3208
3251
|
- app/controllers/erp_app/desktop/configuration_management/options_controller.rb
|
@@ -3274,6 +3317,7 @@ files:
|
|
3274
3317
|
- config/initializers/has_many_polymorphic.rb
|
3275
3318
|
- config/routes.rb
|
3276
3319
|
- db/data_migrations/20110728201729_erp_app_setup.rb
|
3320
|
+
- db/data_migrations/20110816161238_create_desktop_app_audit_log_viewer.rb
|
3277
3321
|
- db/data_migrations/20110817160743_add_file_manager_application.rb
|
3278
3322
|
- db/data_migrations/20111108183739_add_default_capabilities.rb
|
3279
3323
|
- db/data_migrations/20111108183740_add_new_contact_widgets.rb
|
@@ -3435,7 +3479,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
3435
3479
|
version: '0'
|
3436
3480
|
requirements: []
|
3437
3481
|
rubyforge_project:
|
3438
|
-
rubygems_version: 1.8.
|
3482
|
+
rubygems_version: 1.8.11
|
3439
3483
|
signing_key:
|
3440
3484
|
specification_version: 3
|
3441
3485
|
summary: Provides an application infrastructure based on the Sencha/extjs UI framework,
|