Skip to content
Snippets Groups Projects
Commit 242b9fe2 authored by Renaud Le Gac's avatar Renaud Le Gac
Browse files

Master cleaning.

Keep ionly the "final" structure and files
parent dacc87c1
No related branches found
No related tags found
No related merge requests found
""" $Id$ """
import os
def index():
"""Controller loading javascript librairies and launching the application.
"""
# application path
base = os.path.join(os.path.sep, request.application)
# css files
csslibs = [os.path.join(base, 'static', 'extjs', 'resources', 'css', 'ext-all.css'),
os.path.join(base, 'static', 'dbjs', 'icons.css')]
# javascript librairies
jslibs = [os.path.join(base, 'static', 'extjs', 'ext-base.js'),
os.path.join(base, 'static', 'extjs', 'ext-all.js'),
os.path.join(base, 'static', 'dbjs', 'base.js'),
os.path.join(base, 'static', 'dbjs', 'action.js'),
os.path.join(base, 'static', 'dbjs', 'jsonstore.js'),
os.path.join(base, 'static', 'dbjs', 'combobox.js'),
os.path.join(base, 'static', 'dbjs', 'entryform.js'),
os.path.join(base, 'static', 'dbjs', 'vieweditgrid.js')]
# application librairies
applibs = [os.path.join(base, 'static', 'appjs', 'core.js'),
os.path.join(base, 'static', 'appjs', 'main.js')]
# page view
response.view = "app.html"
return dict(clibs=csslibs, jlibs=jslibs, alibs= applibs)
\ No newline at end of file
""" $Id$ """
import os
# # sample index page with internationalization (T)
def index():
response.flash = T('Welcome to mdvPostInstall')
return dict()
# # uncomment the following if you have defined "auth" and "crud" in models # # uncomment the following if you have defined "auth" and "crud" in models
# def user(): return dict(form=auth()) # def user(): return dict(form=auth())
# def data(): return dict(form=crud()) # def data(): return dict(form=crud())
# def download(): return response.download(request,db) # def download(): return response.download(request,db)
# # tip: use @auth.requires_login, requires_membership, requires_permission # # tip: use @auth.requires_login, requires_membership, requires_permission
def index():
"""Controller loading javascript librairies and launching the application.
"""
# application path
base = os.path.join(os.path.sep, request.application)
# css files
csslibs = [os.path.join(base, 'static', 'extjs', 'resources', 'css', 'ext-all.css'),
os.path.join(base, 'static', 'dbjs', 'icons.css')]
# javascript librairies
jslibs = [os.path.join(base, 'static', 'extjs', 'ext-base.js'),
os.path.join(base, 'static', 'extjs', 'ext-all.js'),
os.path.join(base, 'static', 'dbjs', 'base.js'),
os.path.join(base, 'static', 'dbjs', 'action.js'),
os.path.join(base, 'static', 'dbjs', 'jsonstore.js'),
os.path.join(base, 'static', 'dbjs', 'combobox.js'),
os.path.join(base, 'static', 'dbjs', 'entryform.js'),
os.path.join(base, 'static', 'dbjs', 'vieweditgrid.js')]
# application librairies
applibs = [os.path.join(base, 'static', 'appjs', 'core.js'),
os.path.join(base, 'static', 'appjs', 'main.js')]
# page view
response.view = "app.html"
return dict(clibs=csslibs, jlibs=jslibs, alibs= applibs)
\ No newline at end of file
""" forms.py
A set of controllers to handle basic forms
$Id$
"""
def index():
"""Instanciate the form/index.html page
Decode the request form in the url: /application/forms?name=xxx
Return the path of the javascript associate to it.
"""
response.view = "forms.html"
table = request.get_vars.table
return dict(js=table)
""" viewedit.py
A controller to view and edit table contents
$Id$
"""
def index():
"""Instanciate the viewedit/index.html page
Decode the request form in the url: /application/viewedit?table=xxx
Return the path of the javascript associate to it.
"""
response.view = "viewedit.html"
table = request.get_vars.table
return dict(js=table)
\ No newline at end of file
/*
* formdistributions.js
*
* Form associated to the distributions table
* common configurations and actions are defined in appbase.js
*
* $Id$
*
*/
Ext.onReady(function(){
Ext.QuickTips.init();
// turn on validation errors beside the field globally
Ext.form.Field.prototype.msgTarget = 'side';
// Create the form
var form1 = new Db.EntryForm({
title: 'Distribution',
table: 'distributions',
items: [{
fieldLabel: 'Version',
name: 'version',
allowBlank:false
}, {
xtype: 'datefield',
fieldLabel: 'Date',
name: 'date',
format:'Y-m-d'
}, {
xtype: 'textarea',
fieldLabel: 'Note',
name: 'note',
grow: true
}]
});
form1.render(document.body);
});
/*
* formrpmCategories.js
*
* Form associated to the rpmCategories table
* common configurations and actions are defined in appbase.js
*
* $id$
*
*/
Ext.onReady(function(){
Ext.QuickTips.init();
// turn on validation errors beside the field globally
Ext.form.Field.prototype.msgTarget = 'side';
// create the form
var form1 = new Db.EntryForm({
title: 'Rpm Category',
table: 'rpmCategories',
items: [{
fieldLabel: 'Name',
name: 'category',
allowBlank:false
}, {
xtype: 'textarea',
fieldLabel: 'Note',
name: 'note',
grow: true
}]
});
form1.render(document.body);
});
/*
* formrpms.js
*
* Form associated to the rpms table
* common configurations and actions are defined in appbase.js
*
* $Id$
*
*/
Ext.onReady(function(){
Ext.QuickTips.init();
// turn on validation errors beside the field globally
Ext.form.Field.prototype.msgTarget = 'side';
// create the form
var form1 = new Db.EntryForm({
title: 'Rpm',
table: 'rpms',
items: [
{
fieldLabel: 'Name',
name: 'rpm',
allowBlank: false
}, {
xtype: 'httpdbcombobox',
displayField: 'category',
fieldLabel: 'Category',
hiddenName: 'idcategory',
table: 'rpmCategories',
valueField: 'id'
}, {
xtype: 'httpdbcombobox',
displayField: 'version',
fieldLabel: 'Distribution',
hiddenName: 'iddistribution',
table: 'distributions',
valueField: 'id'
}, {
xtype: 'radiogroup',
fieldLabel: 'List',
columns: 1,
items: [
{boxLabel: 'add', name: 'list', inputValue: 'add', checked: true},
{boxLabel: 'remove', name: 'list', inputValue: 'remove'}
]
}]
});
form1.render(document.body);
});
/*
* formsystems.js
*
* Form associated to the systems table
* common configurations and actions are defined in appbase.js
*
* $Id$
*
*/
Ext.onReady(function(){
Ext.QuickTips.init();
// turn on validation errors beside the field globally
Ext.form.Field.prototype.msgTarget = 'side';
// Create the form
var form1 = new Db.EntryForm({
title: 'System',
table: 'systems',
items: [
{
fieldLabel: 'Name',
name: 'system',
allowBlank:false
}, {
xtype: 'textarea',
fieldLabel: 'Note',
name: 'note',
grow: true
}]
});
// render the form
form1.render(document.body);
});
/**
* vieweditdistributions.js
*
* GridEdit associated to the distributions table
*
* $Id$
*
*/
Ext.onReady(function(){
Ext.QuickTips.init();
var mystore = new Db.JsonStore({
table: 'distributions',
tableFields: ['id', 'version', 'note', 'date'],
});
// define the columns model for the grid
var mymodel = new Ext.grid.ColumnModel([
new Ext.grid.RowNumberer(),
{header: "Id", width: 10, sortable: true, dataIndex: 'id', hidden: true},
{header: "Version", width: 15, sortable: true, dataIndex: 'version'},
{header: "Note", width: 70, sortable: true, dataIndex: 'note'},
{header: "Date", width: 20, sortable: true, dataIndex: 'date'}
]);
// define the column model for the add form
var formItems = [{
fieldLabel: 'Version',
name: 'version',
allowBlank:false
}, {
xtype: 'datefield',
fieldLabel: 'Date',
name: 'date',
format:'Y-m-d'
}, {
xtype: 'textarea',
fieldLabel: 'Note',
name: 'note',
grow: true
}];
// create the grid
var grid1 = new Db.ViewEditGrid({
colModel: mymodel,
formModel: formItems,
store: mystore,
table: 'distributions',
title: 'Distributions',
// bbar: new Ext.PagingToolbar({
// displayInfo: true,
// pageSize: 5,
// store: mystore
// })
});
// render the grid
grid1.render(document.body);
// mystore.load({params:{start:0, limit:5}});
mystore.load();
});
/**
* vieweditrpms.js
*
* GridEdit associated to the rpms table
*
* $Id$
*
*/
Ext.onReady(function(){
Ext.QuickTips.init();
var mystore = new Db.JsonStore({
table: 'rpms',
tableFields: ['id', 'rpm', 'idcategory', 'iddistribution', 'list'],
foreignFields: [
['iddistribution', 'distributions', 'version'],
['idcategory', 'rpmCategories', 'category']
]
});
// define the columns model for the grid
var mymodel = new Ext.grid.ColumnModel([
new Ext.grid.RowNumberer(),
//{header: "Id", width: 10, sortable: true, dataIndex: 'id', hidden: true},
{header: "Rpm", width: 50, sortable: true, dataIndex: 'rpm'},
//{header: "idCategory", width: 30, sortable: true, dataIndex: 'idcategory'},
//{header: "idDistribution", width: 20, sortable: true, dataIndex: 'iddistribution'},
{header: "Distribution", width: 20, sortable: true, dataIndex: 'version'},
{header: "Category", width: 20, sortable: true, dataIndex: 'category'},
{header: "List", width: 20, sortable: true, dataIndex: 'list'}
]);
// define the column model for the add form
var formItems = [
{
fieldLabel: 'Name',
name: 'rpm',
allowBlank: false
}, {
xtype: 'httpdbcombobox',
displayField: 'category',
fieldLabel: 'Category',
hiddenName: 'idcategory',
table: 'rpmCategories',
valueField: 'id'
}, {
xtype: 'httpdbcombobox',
displayField: 'version',
fieldLabel: 'Distribution',
hiddenName: 'iddistribution',
table: 'distributions',
valueField: 'id'
}, {
xtype: 'radiogroup',
fieldLabel: 'List',
columns: 1,
items: [
{boxLabel: 'add', name: 'list', inputValue: 'add', checked: true},
{boxLabel: 'remove', name: 'list', inputValue: 'remove'}
]
}];
// create the grid
var grid1 = new Db.ViewEditGrid({
colModel: mymodel,
formModel: formItems,
store: mystore,
table: 'rpms',
title: 'Rpms',
});
// render the grid
grid1.render(document.body);
mystore.load();
});
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<!-- $Id$ -->
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<meta name="author" lang="en" content="{{=response.author}}" />
<meta name="keywords" content="{{=response.keywords}}" />
<meta name="description" content="{{=response.description}}" />
<title>{{=response.title or URL(r=request)}}</title>
<!-- css class -->
{{for el in clibs:}}
<link rel="stylesheet" type="text/css" href="{{=el}}"/>{{pass}}
</head>
<body>
<!-- the loading indicator -->
<!-- javascript librairies -->
{{for el in jlibs:}}
<script type="text/javascript" src="{{=el}}"></script>{{pass}}
<!-- Namespace and global variables for the application -->
<script type="text/javascript">
Ext.namespace('App');
App.name = '{{=request.application}}';
</script>
<!-- application scripts -->
{{for el in alibs:}}
<script type="text/javascript" src="{{=el}}"></script>{{pass}}
</body>
</html>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<!-- $Id$ -->
<head> <head>
<meta http-equiv="content-type" content="text/html; charset=utf-8" /> <meta http-equiv="content-type" content="text/html; charset=utf-8" />
<meta name="author" lang="en" content="{{=response.author}}" /> <meta name="author" lang="en" content="{{=response.author}}" />
<meta name="keywords" content="{{=response.keywords}}" /> <meta name="keywords" content="{{=response.keywords}}" />
<meta name="description" content="{{=response.description}}" /> <meta name="description" content="{{=response.description}}" />
<title>{{=response.title or URL(r=request)}}</title> <title>{{=response.title or URL(r=request)}}</title>
<link rel="stylesheet" type="text/css" href="{{=URL(r=request,c='static/extjs/resources/css',f='ext-all.css')}}"/>
<script type="text/javascript" src="{{=URL(r=request,c='static/extjs',f='ext-base.js')}}"></script> <!-- css class -->
<script type="text/javascript" src="{{=URL(r=request,c='static/extjs',f='ext-all.js')}}"></script> {{for el in clibs:}}
<script type="text/javascript" src="{{=URL(r=request,c='static/dbjs',f='base.js')}}"></script> <link rel="stylesheet" type="text/css" href="{{=el}}"/>{{pass}}
<script type="text/javascript" src="{{=URL(r=request,c='static/dbjs',f='action.js')}}"></script>
<script type="text/javascript" src="{{=URL(r=request,c='static/dbjs',f='jsonstore.js')}}"></script>
<script type="text/javascript" src="{{=URL(r=request,c='static/dbjs',f='combobox.js')}}"></script>
<script type="text/javascript" src="{{=URL(r=request,c='static/dbjs',f='entryform.js')}}"></script>
<script type="text/javascript" src="{{=URL(r=request,c='static/dbjs',f='vieweditgrid.js')}}"></script>
<link rel="stylesheet" type="text/css" href="{{=URL(r=request,c='static/dbjs',f='icons.css')}}"/>
</head> </head>
<body> <body>
<div id="header"></div> <!-- the loading indicator -->
{{include}} <!-- javascript librairies -->
{{for el in jlibs:}}
<script type="text/javascript" src="{{=el}}"></script>{{pass}}
<!-- Namespace and global variables for the application -->
<script type="text/javascript">
Ext.namespace('App');
App.name = '{{=request.application}}';
</script>
<!-- application scripts -->
{{for el in alibs:}}
<script type="text/javascript" src="{{=el}}"></script>{{pass}}
</body> </body>
</html> </html>
{{extend 'layout.html'}}
<h2>New entries</h2>
<ul>
<li><a href='/mdvPostInstall/forms?table=distributions'>Distribution</a></li>
<li><a href='/mdvPostInstall/forms?table=rpmCategories'>Rpm category</a></li>
<li><a href='/mdvPostInstall/forms?table=rpms'>Rpm</a></li>
<li><a href='/mdvPostInstall/forms?table=systems'>System</a></li>
</ul>
<h2>View and Edit</h2>
<ul>
<li><a href='/mdvPostInstall/viewedit?table=distributions'>Distribution</a></li>
<li><a href='/mdvPostInstall/viewedit?table=rpmCategories'>Rpm category</a></li>
<li><a href='/mdvPostInstall/viewedit?table=rpms'>Rpm</a></li>
<li><a href='/mdvPostInstall/viewedit?table=systems'>System</a></li>
</ul>
<button onclick="document.location='{{=URL("admin","default","design",args=request.application)}}'">admin</button>
{{extend 'applayout.html'}}
<script type="text/javascript" src="{{=URL(r=request,c='static/appjs' ,f='form%s.js' % js)}}"></script>
{{extend 'applayout.html'}}
<script type="text/javascript" src="{{=URL(r=request,c='static/appjs' ,f='viewedit%s.js' % js)}}"></script>
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment