Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
tev
plugin_event
Commits
86be0780
Commit
86be0780
authored
Nov 29, 2016
by
LE GAC Renaud
Browse files
Move dedicated javascript to plugin_event using the namespace Event.
parent
454f5105
Changes
7
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
16 additions
and
16 deletions
+16
-16
static/app.js
static/app.js
+5
-5
static/plugin_event/locale/event-lang-fr.js
static/plugin_event/locale/event-lang-fr.js
+7
-7
static/plugin_event/resources/css/event.css
static/plugin_event/resources/css/event.css
+0
-0
static/plugin_event/src/form/field/UserData.js
static/plugin_event/src/form/field/UserData.js
+1
-1
static/plugin_event/src/form/field/UserDataMultiDefault.js
static/plugin_event/src/form/field/UserDataMultiDefault.js
+1
-1
static/plugin_event/src/form/plugin/UserDataConsistency.js
static/plugin_event/src/form/plugin/UserDataConsistency.js
+1
-1
static/plugin_event/src/grid/HistoryFilter.js
static/plugin_event/src/grid/HistoryFilter.js
+1
-1
No files found.
static/app.js
View file @
86be0780
...
...
@@ -11,7 +11,7 @@ if (Dbui.debug) {
paths
:
{
'
Dbui
'
:
'
/
'
+
Dbui
.
name
+
'
/static/plugin_dbui/src
'
,
'
Ext
'
:
'
/
'
+
Dbui
.
name
+
'
/static/plugin_extjs/src
'
,
'
Track
Event
s
'
:
'
/
'
+
Dbui
.
name
+
'
/static/
track
_event
s
/src
'
'
Event
'
:
'
/
'
+
Dbui
.
name
+
'
/static/
plugin
_event/src
'
}
});
}
...
...
@@ -24,10 +24,10 @@ Ext.require('Ext.direct.RemotingProvider');
Ext
.
require
(
'
Ext.EventManager
'
);
Ext
.
require
(
'
Ext.tip.QuickTipManager
'
);
Ext
.
require
(
'
Track
Event
s
.form.field.UserData
'
);
Ext
.
require
(
'
Track
Event
s
.form.field.UserDataMultiDefault
'
);
Ext
.
require
(
'
Track
Event
s
.form.plugin.UserDataConsistency
'
);
Ext
.
require
(
'
Track
Event
s
.grid.HistoryFilter
'
);
Ext
.
require
(
'
Event.form.field.UserData
'
);
Ext
.
require
(
'
Event.form.field.UserDataMultiDefault
'
);
Ext
.
require
(
'
Event.form.plugin.UserDataConsistency
'
);
Ext
.
require
(
'
Event.grid.HistoryFilter
'
);
Ext
.
onReady
(
function
(){
...
...
static/
track
_event
s
/locale/
myapp
-lang-fr.js
→
static/
plugin
_event/locale/
event
-lang-fr.js
View file @
86be0780
...
...
@@ -3,8 +3,8 @@
*
*/
Ext
.
define
(
"
Track
Event
s
.locale.form.field.UserData
"
,
{
override
:
"
Track
Event
s
.form.field.UserData
"
,
Ext
.
define
(
"
Event.locale.form.field.UserData
"
,
{
override
:
"
Event.form.field.UserData
"
,
textAddMenu
:
"
ajouter
"
,
textAddTitle
:
"
Entrer une nouvelle propriété
"
,
textDestroyMenu
:
"
Détruire
"
,
...
...
@@ -20,17 +20,17 @@ Ext.define("TrackEvents.locale.form.field.UserData", {
textValue
:
"
valeur
"
});
Ext
.
define
(
"
Track
Event
s
.locale.form.plugin.UserDataConsistency
"
,
{
override
:
"
Track
Event
s
.form.plugin.UserDataConsistency
"
,
Ext
.
define
(
"
Event.locale.form.plugin.UserDataConsistency
"
,
{
override
:
"
Event.form.plugin.UserDataConsistency
"
,
textError
:
"
Erreur en mettant à jour l'historique...
"
,
textInfo
:
"
Information...
"
,
textUpdate
:
"
Mise à jour de l'historique...
"
});
Ext
.
define
(
"
Track
Event
s
.locale.grid.HistoryFilter
"
,
{
override
:
"
Track
Event
s
.grid.HistoryFilter
"
,
Ext
.
define
(
"
Event.locale.grid.HistoryFilter
"
,
{
override
:
"
Event.grid.HistoryFilter
"
,
textEventData
:
"
Donnée d'un évènement
"
,
textFunding
:
"
Financement
"
,
textFunding
:
"
Financement
"
,
textMetadata
:
"
Métadonnée
"
,
textObject
:
"
Objet
"
,
textPeople
:
"
Personne
"
,
...
...
static/
track
_event
s
/resources/css/
my
.css
→
static/
plugin
_event/resources/css/
event
.css
View file @
86be0780
File moved
static/
track
_event
s
/src/form/field/UserData.js
→
static/
plugin
_event/src/form/field/UserData.js
View file @
86be0780
...
...
@@ -2,7 +2,7 @@
* Dedicated form field to setup the user data block
*
*/
Ext
.
define
(
'
Track
Event
s
.form.field.UserData
'
,
{
Ext
.
define
(
'
Event.form.field.UserData
'
,
{
extend
:
'
Ext.form.FieldContainer
'
,
mixins
:
{
...
...
static/
track
_event
s
/src/form/field/UserDataMultiDefault.js
→
static/
plugin
_event/src/form/field/UserDataMultiDefault.js
View file @
86be0780
...
...
@@ -12,7 +12,7 @@
* change. Value is equal to null when the conversion failed.
*
*/
Ext
.
define
(
'
Track
Event
s
.form.field.UserDataMultiDefault
'
,
{
Ext
.
define
(
'
Event.form.field.UserDataMultiDefault
'
,
{
extend
:
'
Dbui.form.field.Dict
'
,
alias
:
'
widget.xuserdatamultidefault
'
,
...
...
static/
track
_event
s
/src/form/plugin/UserDataConsistency.js
→
static/
plugin
_event/src/form/plugin/UserDataConsistency.js
View file @
86be0780
...
...
@@ -10,7 +10,7 @@
* This is the job of this plugin.
*
*/
Ext
.
define
(
'
Track
Event
s
.form.plugin.UserDataConsistency
'
,
{
Ext
.
define
(
'
Event.form.plugin.UserDataConsistency
'
,
{
extend
:
'
Ext.AbstractPlugin
'
,
alias
:
'
plugin.pUserDataConsistency
'
,
...
...
static/
track
_event
s
/src/grid/HistoryFilter.js
→
static/
plugin
_event/src/grid/HistoryFilter.js
View file @
86be0780
...
...
@@ -6,7 +6,7 @@
*
*
*/
Ext
.
define
(
'
Track
Event
s
.grid.HistoryFilter
'
,
{
Ext
.
define
(
'
Event.grid.HistoryFilter
'
,
{
extend
:
'
Dbui.grid.Filter
'
,
alias
:
'
widget.xhistorygridfilter
'
,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment