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
w2pext
plugin_dbui
Commits
b86b1fd8
Commit
b86b1fd8
authored
Mar 22, 2014
by
legac
Browse files
Web2py 2.9.5 + lazy_tables + polish naming convention for js classes.
parent
32493a35
Changes
16
Hide whitespace changes
Inline
Side-by-side
Showing
16 changed files
with
8 additions
and
8 deletions
+8
-8
languages/fr-fr.py
languages/fr-fr.py
+4
-4
models/access.py
models/access.py
+1
-1
models/db0_categories.py
models/db0_categories.py
+0
-0
models/db0_collaborations.py
models/db0_collaborations.py
+0
-0
models/db0_countries_.py
models/db0_countries_.py
+0
-0
models/db0_new_fields.py
models/db0_new_fields.py
+0
-0
models/db0_projects.py
models/db0_projects.py
+0
-0
models/db0_publishers.py
models/db0_publishers.py
+0
-0
models/db0_reports.py
models/db0_reports.py
+0
-0
models/db0_teams.py
models/db0_teams.py
+0
-0
models/db1_harvesters.py
models/db1_harvesters.py
+0
-0
models/db1_publications.py
models/db1_publications.py
+0
-0
static/plugin_dbui/main.js
static/plugin_dbui/main.js
+1
-1
static/plugin_dbui/src/container/Viewport.js
static/plugin_dbui/src/container/Viewport.js
+1
-1
static/plugin_dbui/src/container/plugin/Login.js
static/plugin_dbui/src/container/plugin/Login.js
+0
-0
static/plugin_dbui/src/grid/column/Json.js
static/plugin_dbui/src/grid/column/Json.js
+1
-1
No files found.
languages/fr-fr.py
View file @
b86b1fd8
# coding: utf-8
#
-*-
coding: utf-8
-*-
{
'%Y-%m-%d'
:
'%Y-%m-%d'
,
'Abbreviation'
:
'Abréviation'
,
...
...
@@ -26,10 +26,10 @@
'domain'
:
'domaine'
,
'E Print'
:
'E Print'
,
'End date'
:
'Date de fin'
,
'
e
nter a number between %(min)g and %(max)g'
:
'
e
nter a number between %(min)g and %(max)g'
,
'
E
nter a number between %(min)g and %(max)g'
:
'
E
nter a number between %(min)g and %(max)g'
,
'enter a value'
:
'entré une valeur'
,
'
e
nter an integer between %(min)g and %(max)g'
:
'
e
nter an integer between %(min)g and %(max)g'
,
'
e
nter an integer greater than or equal to %(min)g'
:
'
e
nter an integer greater than or equal to %(min)g'
,
'
E
nter an integer between %(min)g and %(max)g'
:
'
E
nter an integer between %(min)g and %(max)g'
,
'
E
nter an integer greater than or equal to %(min)g'
:
'
E
nter an integer greater than or equal to %(min)g'
,
'Filter categories'
:
'Filter categories'
,
'Filter collaborations'
:
'Filter collaborations'
,
'Filter countries'
:
'Filter countries'
,
...
...
models/access.py
View file @
b86b1fd8
...
...
@@ -10,7 +10,7 @@
#
#-------------------------------------------------------------------------------
db
=
DAL
(
'sqlite://storage.sqlite'
,
migrate
=
True
)
db
=
DAL
(
'sqlite://storage.sqlite'
,
lazy_tables
=
True
,
migrate
=
True
)
#-------------------------------------------------------------------------------
#
...
...
models/db_categories.py
→
models/db
0
_categories.py
View file @
b86b1fd8
File moved
models/db_collaborations.py
→
models/db
0
_collaborations.py
View file @
b86b1fd8
File moved
models/db_countries_.py
→
models/db
0
_countries_.py
View file @
b86b1fd8
File moved
models/db_new_fields.py
→
models/db
0
_new_fields.py
View file @
b86b1fd8
File moved
models/db_projects.py
→
models/db
0
_projects.py
View file @
b86b1fd8
File moved
models/db_publishers.py
→
models/db
0
_publishers.py
View file @
b86b1fd8
File moved
models/db_reports.py
→
models/db
0
_reports.py
View file @
b86b1fd8
File moved
models/db_teams.py
→
models/db
0
_teams.py
View file @
b86b1fd8
File moved
models/db_harvesters.py
→
models/db
1
_harvesters.py
View file @
b86b1fd8
File moved
models/db_publications.py
→
models/db
1
_publications.py
View file @
b86b1fd8
File moved
static/plugin_dbui/main.js
View file @
b86b1fd8
...
...
@@ -24,5 +24,5 @@ Ext.onReady(function(){
Ext
.
EventManager
.
on
(
window
,
'
beforeunload
'
,
App
.
closeUserSession
);
// Instantiate the application
app
=
Ext
.
create
(
'
App.
viewport
.Viewport
'
,
App
.
config
.
viewport
);
app
=
Ext
.
create
(
'
App.
container
.Viewport
'
,
App
.
config
.
viewport
);
});
\ No newline at end of file
static/plugin_dbui/src/
viewport
/Viewport.js
→
static/plugin_dbui/src/
container
/Viewport.js
View file @
b86b1fd8
...
...
@@ -15,7 +15,7 @@
* In the first case the xtype is *panel* while in the second one is *window*.
*
*/
Ext
.
define
(
'
App.
viewport
.Viewport
'
,
{
Ext
.
define
(
'
App.
container
.Viewport
'
,
{
extend
:
'
Ext.container.Viewport
'
,
alias
:
'
widget.xviewport
'
,
...
...
static/plugin_dbui/src/
viewport
/plugin/Login.js
→
static/plugin_dbui/src/
container
/plugin/Login.js
View file @
b86b1fd8
File moved
static/plugin_dbui/src/grid/
JsonColum
n.js
→
static/plugin_dbui/src/grid/
column/Jso
n.js
View file @
b86b1fd8
...
...
@@ -4,7 +4,7 @@
* @since 0.4.15.0
*
*/
Ext
.
define
(
'
Ext.grid.
JsonColum
n
'
,
{
Ext
.
define
(
'
Ext.grid.
column.Jso
n
'
,
{
extend
:
'
Ext.grid.column.Column
'
,
alias
:
'
widget.jsoncolumn
'
,
...
...
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