~openerp-dev/openobject-doc/trunk

« back to all changes in this revision

Viewing changes to i18n/fr/source/bi/CubeXML/CubeXMLIntro.rst

  • Committer: Antony Lesuisse
  • Date: 2010-03-05 16:46:40 UTC
  • Revision ID: al@openerp.com-20100305164640-9b7anc1t5ujha8lw
Merge doc into feature, before deletion of both features and doc. (odo)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
 
2
2
.. i18n: XML in open object
3
3
.. i18n: ==================
 
4
..
4
5
 
5
6
XML in open object
6
7
==================
7
8
 
8
9
.. i18n: Introduction to the OpenObject Module
9
10
.. i18n: -------------------------------------
 
11
..
10
12
 
11
13
Introduction to the OpenObject Module
12
14
-------------------------------------
13
15
 
14
16
.. i18n: The :ref:`OLAP <olap-link>`  module is used in validating , running  and formatting the output of *MDXExamples/MDX Queries*
 
17
..
15
18
 
16
19
The :ref:`OLAP <olap-link>`  module is used in validating , running  and formatting the output of *MDXExamples/MDX Queries*
17
20
 
18
21
.. i18n: The general flow is of :ref:`OLAP <olap-link>` module is shown in following diagram:
 
22
..
19
23
 
20
24
The general flow is of :ref:`OLAP <olap-link>` module is shown in following diagram:
21
25
 
22
26
.. i18n: .. image::  images/Cube_olap_schema.png
 
27
..
23
28
 
24
29
.. image::  images/Cube_olap_schema.png
25
30
 
26
31
.. i18n: Explanation of the components
27
32
.. i18n: -----------------------------
 
33
..
28
34
 
29
35
Explanation of the components
30
36
-----------------------------
31
37
 
32
38
.. i18n: :Web-Services:
 
39
..
33
40
 
34
41
:Web-Services:
35
42
 
36
43
.. i18n: This is the layer provided by the base of Open  ERP, protocols: NET-RPC (fast binary), XML-RPC, over HTTP or HTTPS
 
44
..
37
45
 
38
46
This is the layer provided by the base of Open  ERP, protocols: NET-RPC (fast binary), XML-RPC, over HTTP or HTTPS
39
47
 
40
48
.. i18n: :Services:
 
49
..
41
50
 
42
51
:Services:
43
52
 
44
53
.. i18n: Layer provided by Open  ERP that provides: authentification (normal/ldap), users management, access rights, workflows, module management, ...
 
54
..
45
55
 
46
56
Layer provided by Open  ERP that provides: authentification (normal/ldap), users management, access rights, workflows, module management, ...
47
57
 
48
58
.. i18n: :MDX Parser:
 
59
..
49
60
 
50
61
:MDX Parser:
51
62
 
52
63
.. i18n: It parses the MDX query and convert it in the form of python objects. It uses pyparsing module of python to do this . It split the query in form of objects of axis, level, sub level, slicer (if any) and measures. 
 
64
..
53
65
 
54
66
It parses the MDX query and convert it in the form of python objects. It uses pyparsing module of python to do this . It split the query in form of objects of axis, level, sub level, slicer (if any) and measures. 
55
67
 
56
68
.. i18n: :MDX Validator:
 
69
..
57
70
 
58
71
:MDX Validator:
59
72
 
60
73
.. i18n: It parse all the objects created and map it to the browse object ofOpen  ERP resource. For example, the axis object will receive a link to the Open  ERP browse record on the related olap.axis object.
 
74
..
61
75
 
62
76
It parse all the objects created and map it to the browse object ofOpen  ERP resource. For example, the axis object will receive a link to the Open  ERP browse record on the related olap.axis object.
63
77
 
64
78
.. i18n: :MDX Runner:
 
79
..
65
80
 
66
81
:MDX Runner:
67
82
 
68
83
.. i18n: It will run the query on the basis of objects using SQLAlchemy and return different subsets.
69
84
.. i18n: On the basis of it the cube is virtually made in the form of matrix.
70
85
.. i18n: And it fills the cube by values using axis mapping
 
86
..
71
87
 
72
88
It will run the query on the basis of objects using SQLAlchemy and return different subsets.
73
89
On the basis of it the cube is virtually made in the form of matrix.
74
90
And it fills the cube by values using axis mapping
75
91
 
76
92
.. i18n: :RDBMS connectors:
 
93
..
77
94
 
78
95
:RDBMS connectors:
79
96
 
80
97
.. i18n: The layer provided by SQL Alchemy, it supports: mysql, postgresql, oracle, ...
 
98
..
81
99
 
82
100
The layer provided by SQL Alchemy, it supports: mysql, postgresql, oracle, ...
83
101
 
84
102
.. i18n: The schema definition is in the Open  ERP database.
 
103
..
85
104
 
86
105
The schema definition is in the Open  ERP database.