Blame view

help/content.json 3.1 KB
16035364   Benjamin Renard   First commit
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{ 
text: '.',
children: [
    { 
      text: 'The ABCs of AMDA',
      id: 'ABC',
      leaf:true
    },{
    text:'WorkSpace Explorer',
    children:[{
        text:'Resources',
        id: 'resourceTree',        
        leaf:true
    },{
        text:'Resources: Parameters',
        id: 'parametersTree',        
        leaf:true
    },{
        text:'Resources: Filtering',
        id: 'filters',        
        leaf:true
    },{
        text:'Resources: Time Tables',
        id: 'timetables',        
        leaf:true
    },{
        text:'Operations', 
        id: 'operationsHelp',
        leaf:true    
    },{
        text:'Jobs', 
        id: 'jobsHelp',
        leaf:true
    }]
   },{
    text:'Creating Parameters and Aliases',
    children:[{
        text:'Derived Parameters',
        id: 'parameterHelp',
        leaf:true
    },{
        text:'MyData Parameters',
        id: 'mydataparameter',
        leaf:true
    },{
        text:'Aliases',
        id: 'aliases',
        leaf:true
    }]
},{
    text:'Plotting',
    children:[{
        text:'Getting Started',
        id: 'plotStart',        
        leaf:true
    },{
        text:'Global Settings',
        id: 'plotSettings',        
        leaf:true
    },{
496ef6c8   Myriam Bouchemit   modif help
61
        text:'Plot Intro',
16035364   Benjamin Renard   First commit
62
63
64
        id: 'panelSettings',        
        leaf:true
    },{
16035364   Benjamin Renard   First commit
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
        text:'Interactive Plot Session',
        id: 'interSession',        
        leaf:true
    },{
        text:'Additional Features',
        id: 'advancedFeatures',        
        leaf:true
    },{
        text:'MultiPlot Mode',
        id: 'multiPlot',         
        leaf:true
    },{
        text:'Access to Hubble Images',
        id: 'hubbleImages',         
        leaf:true
    }]
},{
    text:'Data Mining',
    children:[{
        text:'Searching In Data',
        id: 'dataminingHelp',
        leaf:true
    },{
        text:'Using Functions',
        id: 'functionsHelp',
        leaf:true
    }]
},{
    text:'Data Downloading',
    children:[{
        text:'Data', 
        id: 'downloadDataHelp',
        leaf:true
    },{
        text:'TimeTables', 
        id: 'downloadTTHelp',
        leaf:true
    }]
},{
    text:'Data Uploading',
    children:[{
        text:'Data', 
        id: 'uploadDataHelp',
        leaf:true
    },{
        text:'TimeTables', 
        id: 'uploadTTHelp',
        leaf:true
    }]
},{
    text:'Time Tables',
    children:[{
        text:'Managing Time Tables', 
        id: 'timetableHelp',
        leaf:true
    },{
        text:'Operations on Time Tables', 
        id: 'ttOperationsHelp',
        leaf:true
    },{
        text:'Shared Time Tables', 
        id: 'ttShared',
        leaf:true
    }]
},{
    text:'Working with SAMP',
    children:[
    {
        text:'What is SAMP', 
        id: 'SampMain',
        leaf:true
    },
    {
        text:'Connecting to SAMP Hub', 
        id: 'SampHelp',
        leaf:true
    }]
},{ 
      text:'Remote Data',
      children:[{   
      text:'Remote Data Centers', 
        id: 'remoteIntro',
        leaf:true
    },{   
      text:'Remote Centers: Adding Data', 
        id: 'RemoteDataHelp',
        leaf:true
    }
    ]
}]
496ef6c8   Myriam Bouchemit   modif help
155
}