Visualisierungsmodul für SuperX
http://www.superx-projekt.de/doku/viz_modul/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
824 B
33 lines
824 B
#!/bin/bash |
|
#lädt nur die charts, die Teil der Auslieferung sind: |
|
|
|
DOQUERY "drop table if exists tmp_viz_chart ;" |
|
DOQUERY "create table tmp_viz_chart( |
|
tid SERIAL not null, |
|
uniquename VARCHAR(255) not null, |
|
caption VARCHAR(255) , |
|
description TEXT , |
|
chartmodel TEXT , |
|
preview_svg TEXT , |
|
userinfo_id INTEGER , |
|
creation_date DATE default today(), |
|
update_date DATE default today(), |
|
maskeninfo_id INTEGER , |
|
mask_params TEXT , |
|
renderer_id INTEGER , |
|
chartmodel_miniature TEXT , |
|
chart_position CHAR(10) , |
|
chart_active SMALLINT default 1 , |
|
chart_width INTEGER default 600 , |
|
chart_height INTEGER default 400 , |
|
chart_miniature_width INTEGER default 200 , |
|
chart_miniature_height INTEGER default 100 , |
|
is_custom SMALLINT |
|
|
|
) |
|
;" |
|
|
|
sx_auto_upload_table.x tmp_viz_chart viz_chart.unl |
|
|
|
DOSQL viz_chart_fuellen.sql |
|
|
|
|