4 <meta http-equiv=
"Content-Type" content=
"text/html; charset=utf-8" />
5 <meta name=
"robots" content=
"noindex" /> <link rel=
"alternate" type=
"application/rss+xml" title=
"RSS Feed" href=
"/bin/view/Main/WebRss" />
6 <link rel=
"icon" href=
"http://en.flossmanuals.net/floss/pub/TWiki/FlossSkin2/fl2.ico" type=
"image/x-icon" /> <link rel=
"shortcut icon" href=
"http://en.flossmanuals.net/floss/pub/TWiki/FlossSkin2/fl2.ico" type=
"image/x-icon" />
7 <link rel=StyleSheet
href=
"http://en.flossmanuals.net/floss/pub/TWiki/FlossSkin2/typography_cover.css" type=
"text/css" media=
"screen"/>
8 <style type=
"text/css">
26 url('http://en.flossmanuals.net/floss/pub/TWiki/FlossSkin2/header_bg.gif');
27 background-position:
600px
0px; /* this places the orange background at
28 an offset, making sure it doesn't underlap the left side of the gif */
29 background-repeat: no-repeat;
46 <p /><script type=
"text/javascript" src=
"/floss/pub/TWiki/MochiKit/MochiKit.js"></script>
47 <script type=
"text/javascript" src=
"/floss/pub/TWiki/MochiKit/New.js"></script>
48 <script type=
"text/javascript" src=
"/floss/pub/TWiki/MochiKit/Visual.js"></script>
49 <script type=
"text/javascript" src=
"/floss/pub/TWiki/MochiKit/Signal.js"></script>
50 <script type=
"text/javascript" src=
"/floss/pub/TWiki/MochiKit/DragAndDrop.js"></script>
51 <script type=
"text/javascript" src=
"/floss/pub/TWiki/MochiKit/Sortable.js"></script>
54 if(typeof(PdfArrange
) == 'undefined') {
60 if(typeof(PdfArrange
.Base
) == 'undefined') {
64 PdfArrange
.Base
.web_list
= new Array();
65 PdfArrange
.Base
.web_topics
= new Array();
67 PdfArrange
.Base
.selected_items
= new Array();
69 PdfArrange
.Base
.edited_topics
= new Array();
70 PdfArrange
.Base
.possible_topics
= new Array();
72 PdfArrange
.Base
.edited_topics_n
= 0;
75 MochiKit
.Base
.update(PdfArrange
.Base
, {
76 getTopic: function(webName
, topicName
) {
77 for(var i
= 0; i
< PdfArrange
.Base
.web_topics
[webName
].length
; i
++) {
78 var elem
= PdfArrange
.Base
.web_topics
[webName
][i
];
79 if(elem
[1] == topicName
)
86 getTopicWithID: function(eid
) {
87 for(var webName
in PdfArrange
.Base
.web_topics
) {
88 for(var i
= 0; i
< PdfArrange
.Base
.web_topics
[webName
].length
; i
++) {
89 if("thelist1_"+PdfArrange
.Base
.web_topics
[webName
][i
][0] == eid
)
90 return PdfArrange
.Base
.web_topics
[webName
][i
];
96 getWebForId: function(eid
) {
97 for(var webName
in PdfArrange
.Base
.web_topics
) {
98 for(var i
= 0; i
< PdfArrange
.Base
.web_topics
[webName
].length
; i
++) {
99 if("thelist1_"+PdfArrange
.Base
.web_topics
[webName
][i
][0] == eid
)
106 doExport: function() {
107 var s
= MochiKit
.Sortable
.Sortable
.serialize('thelist2');
108 var element
= s
.split("&");
109 var eid_elements
= new Array();
113 for(var i
= 0; i
< element
.length
; i
++) {
114 var idx
= element
[i
].lastIndexOf("=");
115 var eid
= element
[i
].substr(idx
+1);
116 // eid_elements.push(eid);
123 postform
.pagesn
.value
= s
;
127 hasTopic: function(webName
, topicName
) {
129 for(var i
= 0; i
<PdfArrange
.Base
.selected_items
.length
; i
++) {
130 if(PdfArrange
.Base
.selected_items
[i
] == webName
+"_"+topicName
)
140 if(typeof(PdfArrange
.Editor
) == 'undefined') {
141 PdfArrange
.Editor
= {}
144 PdfArrange
.Editor
.selected_item
= null;
147 MochiKit
.Base
.update(PdfArrange
.Editor
, {
148 closeEditor: function(myform
, eid
) {
149 var elem
= PdfArrange
.Base
.getTopicWithID(eid
);
150 var text
= myform
.elements
[0].value
;
153 replaceChildNodes($(eid
), PdfArrange
.Editor
.makeLink(eid
, PdfArrange
.Base
.getWebForId(eid
), elem
[1], elem
[2]));
155 PdfArrange
.Editor
.selected_item
= null;
158 cancelEditor: function(eid
) {
159 var elem
= PdfArrange
.Base
.getTopicWithID(eid
);
160 replaceChildNodes($(eid
), PdfArrange
.Editor
.makeLink(eid
, PdfArrange
.Base
.getWebForId(eid
), elem
[1], elem
[2]));
162 PdfArrange
.Editor
.selected_item
= null;
165 undoEditor: function(eid
) {
166 var form
= $("embededitor");
167 var elem
= PdfArrange
.Base
.getTopicWithID(eid
);
169 form
.title
.value
= elem
[4];
173 makeEditor: function(eid
) {
175 if(PdfArrange.Editor.selected_item != null) {
176 PdfArrange.Editor.closeEditor($("embededitor"), PdfArrange.Editor.selected_item);
179 // if(!PdfArrange.Editor.selected_item) {
182 var elem
= PdfArrange
.Base
.getTopicWithID(eid
);
185 var myform
= FORM({"style": "margin: 0px",
188 "action": "javascript:void(0)",
189 "onsubmit": "PdfArrange.Editor.closeEditor(this, '"+eid
+"')"},
190 INPUT({"name": "title", "type": "text", "value": value
}),
191 // A({"href":"javascript:void(0)", "onclick": "PdfArrange.Editor.undoEditor('"+eid+"')"}, "undo"),
193 A({"href":"javascript:void(0)", "onclick": "PdfArrange.Editor.cancelEditor('"+eid
+"')"}, "cancel"));
195 replaceChildNodes($(eid
+"_description"), myform
);
197 myform
.title
.focus();
198 myform
.title
.select();
200 PdfArrange
.Editor
.selected_item
= eid
;
204 makeLink: function(eid
, webName
, name
, description
) {
205 return DIV(null, DIV({"style": "font-size: 10px"}, SPAN({"style": "float: right"}, A({"href":"javascript:void(0)", "onclick": "PdfArrange.Editor.makeEditor('"+eid
+"');"}, "edit title")), webName
), DIV({"id": eid
+"_description", "style": "font-size: 14px"}, A({"target": "_new", "href": "/bin/view/"+webName
+"/"+name
+"?skin=basic"}, description
)));
208 makeElement: function(eid
, webName
, name
, description
) {
209 return LI({"id": eid
}, PdfArrange
.Editor
.makeLink(eid
, webName
, name
, description
));
212 makeTitle: function(eid
, webName
, name
, description
) {
213 return LI({"id": eid
, "style": "background-color: #ff7f00", "class": "title"}, description
);
216 makeHeader: function(eid
, webName
, name
, description
) {
217 return LI({"id": eid
, "style": "background-color: green", "class": "header"}, description
);
224 var thelist2
= $("thelist2");
227 PdfArrange
.Base
.web_list
.push("Alchemy");
228 PdfArrange
.Base
.web_topics
["Alchemy"] = new Array();
229 PdfArrange
.Base
.web_topics
["Alchemy"].push(new Array("Alchemy_TITLE1", "TITLE1", "ALCHEMY", "2"));
230 PdfArrange
.Base
.web_topics
["Alchemy"].push(new Array("Alchemy_---2", "---2", "INTRODUCTION", "0"));
231 PdfArrange
.Base
.web_topics
["Alchemy"].push(new Array("Alchemy_Introduction", "Introduction", "INTRODUCTION", "1"));
232 PdfArrange
.Base
.web_topics
["Alchemy"].push(new Array("Alchemy_---3", "---3", "INSTALLING", "0"));
233 PdfArrange
.Base
.web_topics
["Alchemy"].push(new Array("Alchemy_InstallingOSX", "InstallingOSX", "OS X", "1"));
234 PdfArrange
.Base
.web_topics
["Alchemy"].push(new Array("Alchemy_InstallingLinux", "InstallingLinux", "LINUX", "1"));
235 PdfArrange
.Base
.web_topics
["Alchemy"].push(new Array("Alchemy_InstallingWindows", "InstallingWindows", "WINDOWS", "1"));
236 PdfArrange
.Base
.web_topics
["Alchemy"].push(new Array("Alchemy_---4", "---4", "INTERFACE", "0"));
237 PdfArrange
.Base
.web_topics
["Alchemy"].push(new Array("Alchemy_InterfaceBasics", "InterfaceBasics", "BASICS", "1"));
238 PdfArrange
.Base
.web_topics
["Alchemy"].push(new Array("Alchemy_MenuBar", "MenuBar", "MENU BAR", "1"));
239 PdfArrange
.Base
.web_topics
["Alchemy"].push(new Array("Alchemy_ToolBar", "ToolBar", "TOOL BAR", "1"));
240 PdfArrange
.Base
.web_topics
["Alchemy"].push(new Array("Alchemy_KeyboardShortcuts", "KeyboardShortcuts", "KEYBOARD SHORTCUTS", "1"));
241 PdfArrange
.Base
.web_topics
["Alchemy"].push(new Array("Alchemy_PreferencesOptions", "PreferencesOptions", "PREFERENCES", "1"));
242 PdfArrange
.Base
.web_topics
["Alchemy"].push(new Array("Alchemy_---5", "---5", "MODULES", "0"));
243 PdfArrange
.Base
.web_topics
["Alchemy"].push(new Array("Alchemy_Modules", "Modules", "WHAT IS A MODULE?", "1"));
244 PdfArrange
.Base
.web_topics
["Alchemy"].push(new Array("Alchemy_CreateModules", "CreateModules", "CREATE MODULES", "1"));
245 PdfArrange
.Base
.web_topics
["Alchemy"].push(new Array("Alchemy_AffectModules", "AffectModules", "AFFECT MODULES", "1"));
246 PdfArrange
.Base
.web_topics
["Alchemy"].push(new Array("Alchemy_---6", "---6", "APPENDICES", "0"));
247 PdfArrange
.Base
.web_topics
["Alchemy"].push(new Array("Alchemy_Help", "Help", "ADDITIONAL HELP", "1"));
248 PdfArrange
.Base
.web_list
.push("Analyze");
249 PdfArrange
.Base
.web_topics
["Analyze"] = new Array();
250 PdfArrange
.Base
.web_topics
["Analyze"].push(new Array("Analyze_TITLE7", "TITLE7", "ANALYZE ACTIVITY", "2"));
251 PdfArrange
.Base
.web_topics
["Analyze"].push(new Array("Analyze_---8", "---8", "INTRODUCTION", "0"));
252 PdfArrange
.Base
.web_topics
["Analyze"].push(new Array("Analyze_Introduction", "Introduction", "INTRODUCTION", "1"));
253 PdfArrange
.Base
.web_topics
["Analyze"].push(new Array("Analyze_---9", "---9", "GETTING STARTED", "0"));
254 PdfArrange
.Base
.web_topics
["Analyze"].push(new Array("Analyze_---10", "---10", "TUTORIALS", "0"));
255 PdfArrange
.Base
.web_topics
["Analyze"].push(new Array("Analyze_---11", "---11", "REFERENCE", "0"));
256 PdfArrange
.Base
.web_topics
["Analyze"].push(new Array("Analyze_---12", "---12", "APPENDICES", "0"));
257 PdfArrange
.Base
.web_topics
["Analyze"].push(new Array("Analyze_Credits", "Credits", "CREDITS", "1"));
258 PdfArrange
.Base
.web_list
.push("Audacity");
259 PdfArrange
.Base
.web_topics
["Audacity"] = new Array();
260 PdfArrange
.Base
.web_topics
["Audacity"].push(new Array("Audacity_TITLE13", "TITLE13", "AUDACITY", "2"));
261 PdfArrange
.Base
.web_topics
["Audacity"].push(new Array("Audacity_---14", "---14", "INTRODUCTION", "0"));
262 PdfArrange
.Base
.web_topics
["Audacity"].push(new Array("Audacity_Introduction", "Introduction", "INTRODUCTION", "1"));
263 PdfArrange
.Base
.web_topics
["Audacity"].push(new Array("Audacity_DigitalAudio", "DigitalAudio", "WHAT IS DIGITAL AUDIO?", "1"));
264 PdfArrange
.Base
.web_topics
["Audacity"].push(new Array("Audacity_---15", "---15", "INSTALLING", "0"));
265 PdfArrange
.Base
.web_topics
["Audacity"].push(new Array("Audacity_InstallingUbuntu", "InstallingUbuntu", "UBUNTU", "1"));
266 PdfArrange
.Base
.web_topics
["Audacity"].push(new Array("Audacity_InstallingOSX", "InstallingOSX", "OSX", "1"));
267 PdfArrange
.Base
.web_topics
["Audacity"].push(new Array("Audacity_InstallingWindows", "InstallingWindows", "WINDOWS", "1"));
268 PdfArrange
.Base
.web_topics
["Audacity"].push(new Array("Audacity_---16", "---16", "INTERFACE", "0"));
269 PdfArrange
.Base
.web_topics
["Audacity"].push(new Array("Audacity_TrackBar", "TrackBar", "TRACK BAR", "1"));
270 PdfArrange
.Base
.web_topics
["Audacity"].push(new Array("Audacity_MenuBar", "MenuBar", "MENU BAR", "1"));
271 PdfArrange
.Base
.web_topics
["Audacity"].push(new Array("Audacity_ToolBar", "ToolBar", "TOOL BAR", "1"));
272 PdfArrange
.Base
.web_topics
["Audacity"].push(new Array("Audacity_---17", "---17", "TUTORIALS", "0"));
273 PdfArrange
.Base
.web_topics
["Audacity"].push(new Array("Audacity_OpenFile", "OpenFile", "OPEN (IMPORT) A FILE", "1"));
274 PdfArrange
.Base
.web_topics
["Audacity"].push(new Array("Audacity_RecordingASound", "RecordingASound", "RECORDING", "1"));
275 PdfArrange
.Base
.web_topics
["Audacity"].push(new Array("Audacity_AddTrack", "AddTrack", "ADD A NEW TRACK", "1"));
276 PdfArrange
.Base
.web_topics
["Audacity"].push(new Array("Audacity_EnvelopeTool", "EnvelopeTool", "CREATING FADES", "1"));
277 PdfArrange
.Base
.web_topics
["Audacity"].push(new Array("Audacity_BasicEditing", "BasicEditing", "BASIC EDITING", "1"));
278 PdfArrange
.Base
.web_topics
["Audacity"].push(new Array("Audacity_ExportingAFile", "ExportingAFile", "EXPORTING", "1"));
279 PdfArrange
.Base
.web_topics
["Audacity"].push(new Array("Audacity_---18", "---18", "APPENDICES", "0"));
280 PdfArrange
.Base
.web_topics
["Audacity"].push(new Array("Audacity_Help", "Help", "ADDITIONAL HELP", "1"));
281 PdfArrange
.Base
.web_topics
["Audacity"].push(new Array("Audacity_Credits", "Credits", "CREDITS", "1"));
282 PdfArrange
.Base
.web_list
.push("AudioProduction");
283 PdfArrange
.Base
.web_topics
["AudioProduction"] = new Array();
284 PdfArrange
.Base
.web_list
.push("Avidemux");
285 PdfArrange
.Base
.web_topics
["Avidemux"] = new Array();
286 PdfArrange
.Base
.web_topics
["Avidemux"].push(new Array("Avidemux_TITLE19", "TITLE19", "AVIDEMUX ", "2"));
287 PdfArrange
.Base
.web_topics
["Avidemux"].push(new Array("Avidemux_---20", "---20", "INTRODUCTION", "0"));
288 PdfArrange
.Base
.web_topics
["Avidemux"].push(new Array("Avidemux_Introduction", "Introduction", "INTRODUCTION", "1"));
289 PdfArrange
.Base
.web_topics
["Avidemux"].push(new Array("Avidemux_---21", "---21", "INSTALLATION", "0"));
290 PdfArrange
.Base
.web_topics
["Avidemux"].push(new Array("Avidemux_InstallingWin", "InstallingWin", "WINDOWS", "1"));
291 PdfArrange
.Base
.web_topics
["Avidemux"].push(new Array("Avidemux_InstallingUbuntu", "InstallingUbuntu", "UBUNTU", "1"));
292 PdfArrange
.Base
.web_topics
["Avidemux"].push(new Array("Avidemux_---22", "---22", "BASICS", "0"));
293 PdfArrange
.Base
.web_topics
["Avidemux"].push(new Array("Avidemux_OpenAFile", "OpenAFile", "OPEN A FILE", "1"));
294 PdfArrange
.Base
.web_topics
["Avidemux"].push(new Array("Avidemux_ResizingVideo", "ResizingVideo", "RESIZING VIDEO", "1"));
295 PdfArrange
.Base
.web_topics
["Avidemux"].push(new Array("Avidemux_DeinterlacingVideo", "DeinterlacingVideo", "DEINTERLACING VIDEO", "1"));
296 PdfArrange
.Base
.web_topics
["Avidemux"].push(new Array("Avidemux_---23", "---23", "TUTORIALS", "0"));
297 PdfArrange
.Base
.web_topics
["Avidemux"].push(new Array("Avidemux_DvdFileEncoding", "DvdFileEncoding", "CREATE DVD FILES ", "1"));
298 PdfArrange
.Base
.web_topics
["Avidemux"].push(new Array("Avidemux_CreateMpFourFiles", "CreateMpFourFiles", "CREATE MP4", "1"));
299 PdfArrange
.Base
.web_topics
["Avidemux"].push(new Array("Avidemux_AvidemuxMpegOne", "AvidemuxMpegOne", "CREATE MPEG1 / VCD FILE", "1"));
300 PdfArrange
.Base
.web_topics
["Avidemux"].push(new Array("Avidemux_CREATEXVIDAVI", "CREATEXVIDAVI", "CREATE XVID AVI", "1"));
301 PdfArrange
.Base
.web_topics
["Avidemux"].push(new Array("Avidemux_MpgTwoFilefromDVD", "MpgTwoFilefromDVD", "EXTRACT DVD FILE", "1"));
302 PdfArrange
.Base
.web_topics
["Avidemux"].push(new Array("Avidemux_ExtractingDVDSubtitles", "ExtractingDVDSubtitles", "EXTRACT DVD SUBTITLES", "1"));
303 PdfArrange
.Base
.web_topics
["Avidemux"].push(new Array("Avidemux_OverlayingSubtitles", "OverlayingSubtitles", "ADD SUBTITLES TO FILES", "1"));
304 PdfArrange
.Base
.web_topics
["Avidemux"].push(new Array("Avidemux_Templates", "Templates", "CREATE PRESETS", "1"));
305 PdfArrange
.Base
.web_topics
["Avidemux"].push(new Array("Avidemux_---24", "---24", "APPENDICES", "0"));
306 PdfArrange
.Base
.web_topics
["Avidemux"].push(new Array("Avidemux_Credits", "Credits", "CREDITS", "1"));
307 PdfArrange
.Base
.web_list
.push("BCFG2");
308 PdfArrange
.Base
.web_topics
["BCFG2"] = new Array();
309 PdfArrange
.Base
.web_topics
["BCFG2"].push(new Array("BCFG2_TITLE25", "TITLE25", "Bcfg2", "2"));
310 PdfArrange
.Base
.web_topics
["BCFG2"].push(new Array("BCFG2_---26", "---26", "INTRODUCTION", "0"));
311 PdfArrange
.Base
.web_topics
["BCFG2"].push(new Array("BCFG2_Introduction", "Introduction", "INTRODUCTION", "1"));
312 PdfArrange
.Base
.web_topics
["BCFG2"].push(new Array("BCFG2_---27", "---27", "APPENDICES", "0"));
313 PdfArrange
.Base
.web_topics
["BCFG2"].push(new Array("BCFG2_Credits", "Credits", "CREDITS", "1"));
314 PdfArrange
.Base
.web_list
.push("Blender");
315 PdfArrange
.Base
.web_topics
["Blender"] = new Array();
316 PdfArrange
.Base
.web_topics
["Blender"].push(new Array("Blender_TITLE28", "TITLE28", "BLENDER", "2"));
317 PdfArrange
.Base
.web_topics
["Blender"].push(new Array("Blender_---29", "---29", "INTRODUCTION", "0"));
318 PdfArrange
.Base
.web_topics
["Blender"].push(new Array("Blender_Introduction", "Introduction", "INTRODUCTION", "1"));
319 PdfArrange
.Base
.web_topics
["Blender"].push(new Array("Blender_Conventions", "Conventions", "CONVENTIONS", "1"));
320 PdfArrange
.Base
.web_topics
["Blender"].push(new Array("Blender_---30", "---30", "INSTALLING", "0"));
321 PdfArrange
.Base
.web_topics
["Blender"].push(new Array("Blender_InstallingOSX", "InstallingOSX", "OSX", "1"));
322 PdfArrange
.Base
.web_topics
["Blender"].push(new Array("Blender_InstallingUbuntu", "InstallingUbuntu", "UBUNTU", "1"));
323 PdfArrange
.Base
.web_topics
["Blender"].push(new Array("Blender_InstallingWin", "InstallingWin", "WINDOWS", "1"));
324 PdfArrange
.Base
.web_topics
["Blender"].push(new Array("Blender_Installing", "Installing", "LINUX", "1"));
325 PdfArrange
.Base
.web_topics
["Blender"].push(new Array("Blender_---31", "---31", "USING", "0"));
326 PdfArrange
.Base
.web_topics
["Blender"].push(new Array("Blender_Configuring", "Configuring", "CONFIGURING", "1"));
327 PdfArrange
.Base
.web_topics
["Blender"].push(new Array("Blender_Interface", "Interface", "INTERFACE", "1"));
328 PdfArrange
.Base
.web_topics
["Blender"].push(new Array("Blender_Editing", "Editing", "EDITING", "1"));
329 PdfArrange
.Base
.web_topics
["Blender"].push(new Array("Blender_Texturing", "Texturing", "TEXTURING", "1"));
330 PdfArrange
.Base
.web_topics
["Blender"].push(new Array("Blender_Rendering", "Rendering", "RENDERING", "1"));
331 PdfArrange
.Base
.web_topics
["Blender"].push(new Array("Blender_---32", "---32", "APPENDICES", "0"));
332 PdfArrange
.Base
.web_topics
["Blender"].push(new Array("Blender_Credits", "Credits", "CREDITS", "1"));
333 PdfArrange
.Base
.web_list
.push("BlipTV");
334 PdfArrange
.Base
.web_topics
["BlipTV"] = new Array();
335 PdfArrange
.Base
.web_topics
["BlipTV"].push(new Array("BlipTV_TITLE33", "TITLE33", "BLIP.TV", "2"));
336 PdfArrange
.Base
.web_topics
["BlipTV"].push(new Array("BlipTV_Introduction", "Introduction", "INTRODUCTION", "1"));
337 PdfArrange
.Base
.web_topics
["BlipTV"].push(new Array("BlipTV_---34", "---34", "USING BLIP.TV", "0"));
338 PdfArrange
.Base
.web_topics
["BlipTV"].push(new Array("BlipTV_SigningUp", "SigningUp", "GETTING STARTED", "1"));
339 PdfArrange
.Base
.web_topics
["BlipTV"].push(new Array("BlipTV_UploadingVideo", "UploadingVideo", "UPLOADING VIDEO", "1"));
340 PdfArrange
.Base
.web_topics
["BlipTV"].push(new Array("BlipTV_LinkToArchiveOrg", "LinkToArchiveOrg", "LINK TO ARCHIVE.ORG", "1"));
341 PdfArrange
.Base
.web_topics
["BlipTV"].push(new Array("BlipTV_PublicisingVideo", "PublicisingVideo", "PUBLICISE VIDEO", "1"));
342 PdfArrange
.Base
.web_list
.push("BookSprints");
343 PdfArrange
.Base
.web_topics
["BookSprints"] = new Array();
344 PdfArrange
.Base
.web_topics
["BookSprints"].push(new Array("BookSprints_TITLE35", "TITLE35", "BOOK SPRINTS", "2"));
345 PdfArrange
.Base
.web_topics
["BookSprints"].push(new Array("BookSprints_---36", "---36", "INTRODUCTION", "0"));
346 PdfArrange
.Base
.web_topics
["BookSprints"].push(new Array("BookSprints_Introduction", "Introduction", "INTRODUCTION", "1"));
347 PdfArrange
.Base
.web_topics
["BookSprints"].push(new Array("BookSprints_---37", "---37", "PHILOSOPHY", "0"));
348 PdfArrange
.Base
.web_topics
["BookSprints"].push(new Array("BookSprints_Aims", "Aims", "THE AIMS", "1"));
349 PdfArrange
.Base
.web_topics
["BookSprints"].push(new Array("BookSprints_Face2Face", "Face2Face", "COMMUNITIES", "1"));
350 PdfArrange
.Base
.web_topics
["BookSprints"].push(new Array("BookSprints_VivaLaDocs", "VivaLaDocs", "VIVA LA DOCS", "1"));
351 PdfArrange
.Base
.web_topics
["BookSprints"].push(new Array("BookSprints_---38", "---38", "PRE-PLANNING", "0"));
352 PdfArrange
.Base
.web_topics
["BookSprints"].push(new Array("BookSprints_PrePlanning", "PrePlanning", "THE PLAN", "1"));
353 PdfArrange
.Base
.web_topics
["BookSprints"].push(new Array("BookSprints_---39", "---39", "MAIN ISSUES", "0"));
354 PdfArrange
.Base
.web_topics
["BookSprints"].push(new Array("BookSprints_Roles", "Roles", "ROLES", "1"));
355 PdfArrange
.Base
.web_topics
["BookSprints"].push(new Array("BookSprints_TimeLine", "TimeLine", "TIMELINE", "1"));
356 PdfArrange
.Base
.web_topics
["BookSprints"].push(new Array("BookSprints_Budget", "Budget", "BUDGET", "1"));
357 PdfArrange
.Base
.web_topics
["BookSprints"].push(new Array("BookSprints_Venue", "Venue", "VENUE", "1"));
358 PdfArrange
.Base
.web_topics
["BookSprints"].push(new Array("BookSprints_Tools", "Tools", "TOOLS", "1"));
359 PdfArrange
.Base
.web_topics
["BookSprints"].push(new Array("BookSprints_Hosting", "Hosting", "HOSTING", "1"));
360 PdfArrange
.Base
.web_topics
["BookSprints"].push(new Array("BookSprints_RemoteContrib", "RemoteContrib", "REMOTE CONTRIBUTIONS", "1"));
361 PdfArrange
.Base
.web_topics
["BookSprints"].push(new Array("BookSprints_---40", "---40", "TRANSLATION", "0"));
362 PdfArrange
.Base
.web_topics
["BookSprints"].push(new Array("BookSprints_Translation", "Translation", "TRANSLATION PROCESS", "1"));
363 PdfArrange
.Base
.web_topics
["BookSprints"].push(new Array("BookSprints_---41", "---41", "WRITING TIPS", "0"));
364 PdfArrange
.Base
.web_topics
["BookSprints"].push(new Array("BookSprints_AnnesTips", "AnnesTips", "ANNES TIPS", "1"));
365 PdfArrange
.Base
.web_topics
["BookSprints"].push(new Array("BookSprints_---42", "---42", "CASE STUDIES", "0"));
366 PdfArrange
.Base
.web_topics
["BookSprints"].push(new Array("BookSprints_CaseStudyOne", "CaseStudyOne", "INKSCAPE", "1"));
367 PdfArrange
.Base
.web_topics
["BookSprints"].push(new Array("BookSprints_CaseStudyTwo", "CaseStudyTwo", "XO / SUGAR", "1"));
368 PdfArrange
.Base
.web_topics
["BookSprints"].push(new Array("BookSprints_CaseStudyThree", "CaseStudyThree", "CIRCUMVENTION", "1"));
369 PdfArrange
.Base
.web_topics
["BookSprints"].push(new Array("BookSprints_---43", "---43", "APPENDICES", "0"));
370 PdfArrange
.Base
.web_topics
["BookSprints"].push(new Array("BookSprints_History", "History", "FM SPRINTS", "1"));
371 PdfArrange
.Base
.web_topics
["BookSprints"].push(new Array("BookSprints_Credits", "Credits", "CREDITS", "1"));
372 PdfArrange
.Base
.web_list
.push("Browse");
373 PdfArrange
.Base
.web_topics
["Browse"] = new Array();
374 PdfArrange
.Base
.web_list
.push("Calculate");
375 PdfArrange
.Base
.web_topics
["Calculate"] = new Array();
376 PdfArrange
.Base
.web_topics
["Calculate"].push(new Array("Calculate_TITLE44", "TITLE44", "CALCULATE ACTIVITY", "2"));
377 PdfArrange
.Base
.web_topics
["Calculate"].push(new Array("Calculate_---45", "---45", "INTRODUCTION", "0"));
378 PdfArrange
.Base
.web_topics
["Calculate"].push(new Array("Calculate_Introduction", "Introduction", "INTRODUCTION", "1"));
379 PdfArrange
.Base
.web_topics
["Calculate"].push(new Array("Calculate_---46", "---46", "GETTING STARTED", "0"));
380 PdfArrange
.Base
.web_topics
["Calculate"].push(new Array("Calculate_---47", "---47", "TUTORIALS", "0"));
381 PdfArrange
.Base
.web_topics
["Calculate"].push(new Array("Calculate_---48", "---48", "REFERENCE", "0"));
382 PdfArrange
.Base
.web_topics
["Calculate"].push(new Array("Calculate_---49", "---49", "APPENDICES", "0"));
383 PdfArrange
.Base
.web_topics
["Calculate"].push(new Array("Calculate_Credits", "Credits", "CREDITS", "1"));
384 PdfArrange
.Base
.web_list
.push("Chat");
385 PdfArrange
.Base
.web_topics
["Chat"] = new Array();
386 PdfArrange
.Base
.web_list
.push("CircumventionTools");
387 PdfArrange
.Base
.web_topics
["CircumventionTools"] = new Array();
388 PdfArrange
.Base
.web_topics
["CircumventionTools"].push(new Array("CircumventionTools_TITLE50", "TITLE50", "CIRCUMVENTION TOOLS", "2"));
389 PdfArrange
.Base
.web_topics
["CircumventionTools"].push(new Array("CircumventionTools_---51", "---51", "INTRODUCTION", "0"));
390 PdfArrange
.Base
.web_topics
["CircumventionTools"].push(new Array("CircumventionTools_Introduction", "Introduction", "INTRODUCTION", "1"));
391 PdfArrange
.Base
.web_topics
["CircumventionTools"].push(new Array("CircumventionTools_AboutThisManual", "AboutThisManual", "ABOUT THIS MANUAL", "1"));
392 PdfArrange
.Base
.web_topics
["CircumventionTools"].push(new Array("CircumventionTools_---52", "---52", "BACKGROUND", "0"));
393 PdfArrange
.Base
.web_topics
["CircumventionTools"].push(new Array("CircumventionTools_WhatIsCircumvention", "WhatIsCircumvention", "WHAT IS CIRCUMVENTION", "1"));
394 PdfArrange
.Base
.web_topics
["CircumventionTools"].push(new Array("CircumventionTools_HowDoIKnow", "HowDoIKnow", "AM I BEING CENSORED?", "1"));
395 PdfArrange
.Base
.web_topics
["CircumventionTools"].push(new Array("CircumventionTools_BeingAnonymous", "BeingAnonymous", "DETECTION AND ANONYMITY", "1"));
396 PdfArrange
.Base
.web_topics
["CircumventionTools"].push(new Array("CircumventionTools_HowTheNetWorks", "HowTheNetWorks", "HOW THE NET WORKS", "1"));
397 PdfArrange
.Base
.web_topics
["CircumventionTools"].push(new Array("CircumventionTools_WhooControlsTheNet", "WhooControlsTheNet", "WHO CONTROLS THE NET", "1"));
398 PdfArrange
.Base
.web_topics
["CircumventionTools"].push(new Array("CircumventionTools_FilteringTechniques", "FilteringTechniques", "FILTERING TECHNIQUES", "1"));
399 PdfArrange
.Base
.web_topics
["CircumventionTools"].push(new Array("CircumventionTools_---53", "---53", "FIRST TECHNIQUES", "0"));
400 PdfArrange
.Base
.web_topics
["CircumventionTools"].push(new Array("CircumventionTools_SimpleTricks", "SimpleTricks", "SIMPLE TRICKS", "1"));
401 PdfArrange
.Base
.web_topics
["CircumventionTools"].push(new Array("CircumventionTools_WhatIsAWebProxy", "WhatIsAWebProxy", "USING A WEB PROXY", "1"));
402 PdfArrange
.Base
.web_topics
["CircumventionTools"].push(new Array("CircumventionTools_UsingPHProxy", "UsingPHProxy", "USING PHProxy", "1"));
403 PdfArrange
.Base
.web_topics
["CircumventionTools"].push(new Array("CircumventionTools_UsingPsiphon", "UsingPsiphon", "USING PSIPHON", "1"));
404 PdfArrange
.Base
.web_topics
["CircumventionTools"].push(new Array("CircumventionTools_BrowserProxyRisks", "BrowserProxyRisks", "RISKS", "1"));
405 PdfArrange
.Base
.web_topics
["CircumventionTools"].push(new Array("CircumventionTools_---54", "---54", "ADVANCED TECHNIQUES", "0"));
406 PdfArrange
.Base
.web_topics
["CircumventionTools"].push(new Array("CircumventionTools_AdvancedBackground", "AdvancedBackground", "ADVANCED BACKGROUND", "1"));
407 PdfArrange
.Base
.web_topics
["CircumventionTools"].push(new Array("CircumventionTools_WhatIsAProxy", "WhatIsAProxy", "HTTP PROXIES", "1"));
408 PdfArrange
.Base
.web_topics
["CircumventionTools"].push(new Array("CircumventionTools_InstallingSwitchProxy", "InstallingSwitchProxy", "INSTALLING SWITCH PROXY", "1"));
409 PdfArrange
.Base
.web_topics
["CircumventionTools"].push(new Array("CircumventionTools_ConfiguringSwitchProxy", "ConfiguringSwitchProxy", "USING SWITCH PROXY", "1"));
410 PdfArrange
.Base
.web_topics
["CircumventionTools"].push(new Array("CircumventionTools_TorTheOnionRouter", "TorTheOnionRouter", "TOR: THE ONION ROUTER", "1"));
411 PdfArrange
.Base
.web_topics
["CircumventionTools"].push(new Array("CircumventionTools_UsingTheTorBrowserBundle", "UsingTheTorBrowserBundle", "USING TOR BROWSER BUNDLE", "1"));
412 PdfArrange
.Base
.web_topics
["CircumventionTools"].push(new Array("CircumventionTools_UsingTorIMBrowserBundle", "UsingTorIMBrowserBundle", "USING TOR IM BROWSER BUNDLE", "1"));
413 PdfArrange
.Base
.web_topics
["CircumventionTools"].push(new Array("CircumventionTools_Torusingbridges", "Torusingbridges", "USING TOR WITH BRIDGES", "1"));
414 PdfArrange
.Base
.web_topics
["CircumventionTools"].push(new Array("CircumventionTools_UsingJonDo", "UsingJonDo", "USING JON DO", "1"));
415 PdfArrange
.Base
.web_topics
["CircumventionTools"].push(new Array("CircumventionTools_---55", "---55", "TUNNELLING", "0"));
416 PdfArrange
.Base
.web_topics
["CircumventionTools"].push(new Array("CircumventionTools_WhatIsVPN", "WhatIsVPN", "WHAT IS VPN?", "1"));
417 PdfArrange
.Base
.web_topics
["CircumventionTools"].push(new Array("CircumventionTools_UsingOpenVPN", "UsingOpenVPN", "OPENVPN", "1"));
418 PdfArrange
.Base
.web_topics
["CircumventionTools"].push(new Array("CircumventionTools_SSHTunnelling", "SSHTunnelling", "SSH TUNNELLING", "1"));
419 PdfArrange
.Base
.web_topics
["CircumventionTools"].push(new Array("CircumventionTools_ConfiguringSocksProxies", "ConfiguringSocksProxies", "SOCKS PROXIES", "1"));
420 PdfArrange
.Base
.web_topics
["CircumventionTools"].push(new Array("CircumventionTools_---56", "---56", "HELPING OTHERS", "0"));
421 PdfArrange
.Base
.web_topics
["CircumventionTools"].push(new Array("CircumventionTools_InstallingAWebProxy", "InstallingAWebProxy", "INSTALLING WEB PROXIES", "1"));
422 PdfArrange
.Base
.web_topics
["CircumventionTools"].push(new Array("CircumventionTools_InstallingPHProxy", "InstallingPHProxy", "INSTALLING PHProxy", "1"));
423 PdfArrange
.Base
.web_topics
["CircumventionTools"].push(new Array("CircumventionTools_InstallingPsiphon1", "InstallingPsiphon1", "INSTALLING PSIPHON", "1"));
424 PdfArrange
.Base
.web_topics
["CircumventionTools"].push(new Array("CircumventionTools_SettingUpaTorRelay", "SettingUpaTorRelay", "SETTING UP A TOR RELAY", "1"));
425 PdfArrange
.Base
.web_topics
["CircumventionTools"].push(new Array("CircumventionTools_ProxyServerRisks", "ProxyServerRisks", "RISKS OF OPERATING A PROXY", "1"));
426 PdfArrange
.Base
.web_topics
["CircumventionTools"].push(new Array("CircumventionTools_---57", "---57", "APPENDICES", "0"));
427 PdfArrange
.Base
.web_topics
["CircumventionTools"].push(new Array("CircumventionTools_FurtherResources", "FurtherResources", "FURTHER RESOURCES", "1"));
428 PdfArrange
.Base
.web_topics
["CircumventionTools"].push(new Array("CircumventionTools_Glossary", "Glossary", "GLOSSARY", "1"));
429 PdfArrange
.Base
.web_topics
["CircumventionTools"].push(new Array("CircumventionTools_Credits", "Credits", "CREDITS", "1"));
430 PdfArrange
.Base
.web_list
.push("DigitalFoundations");
431 PdfArrange
.Base
.web_topics
["DigitalFoundations"] = new Array();
432 PdfArrange
.Base
.web_topics
["DigitalFoundations"].push(new Array("DigitalFoundations_TITLE58", "TITLE58", "TITLE", "2"));
433 PdfArrange
.Base
.web_list
.push("Education_Deployment");
434 PdfArrange
.Base
.web_topics
["Education_Deployment"] = new Array();
435 PdfArrange
.Base
.web_topics
["Education_Deployment"].push(new Array("Education_Deployment_TITLE59", "TITLE59", "LINUX DEPLOYMENT IN EDUCATION", "2"));
436 PdfArrange
.Base
.web_topics
["Education_Deployment"].push(new Array("Education_Deployment_---60", "---60", "INTRODUCTION", "0"));
437 PdfArrange
.Base
.web_topics
["Education_Deployment"].push(new Array("Education_Deployment_Introduction", "Introduction", "INTRODUCTION", "1"));
438 PdfArrange
.Base
.web_topics
["Education_Deployment"].push(new Array("Education_Deployment_---61", "---61", "APPENDICES", "0"));
439 PdfArrange
.Base
.web_topics
["Education_Deployment"].push(new Array("Education_Deployment_Credits", "Credits", "CREDITS", "1"));
440 PdfArrange
.Base
.web_list
.push("Etoys");
441 PdfArrange
.Base
.web_topics
["Etoys"] = new Array();
442 PdfArrange
.Base
.web_list
.push("FFmpeg2Theora");
443 PdfArrange
.Base
.web_topics
["FFmpeg2Theora"] = new Array();
444 PdfArrange
.Base
.web_topics
["FFmpeg2Theora"].push(new Array("FFmpeg2Theora_TITLE62", "TITLE62", "ffmpeg2theora", "2"));
445 PdfArrange
.Base
.web_topics
["FFmpeg2Theora"].push(new Array("FFmpeg2Theora_Introduction", "Introduction", "INTRODUCTION", "1"));
446 PdfArrange
.Base
.web_topics
["FFmpeg2Theora"].push(new Array("FFmpeg2Theora_---63", "---63", "INSTALLING", "0"));
447 PdfArrange
.Base
.web_topics
["FFmpeg2Theora"].push(new Array("FFmpeg2Theora_InstallingWin", "InstallingWin", "WINDOWS", "1"));
448 PdfArrange
.Base
.web_topics
["FFmpeg2Theora"].push(new Array("FFmpeg2Theora_InstallingUbuntu", "InstallingUbuntu", "UBUNTU", "1"));
449 PdfArrange
.Base
.web_topics
["FFmpeg2Theora"].push(new Array("FFmpeg2Theora_---64", "---64", "BASICS", "0"));
450 PdfArrange
.Base
.web_topics
["FFmpeg2Theora"].push(new Array("FFmpeg2Theora_BasicEncoding", "BasicEncoding", "BASIC ENCODING", "1"));
451 PdfArrange
.Base
.web_topics
["FFmpeg2Theora"].push(new Array("FFmpeg2Theora_UsingWindows", "UsingWindows", "WINDOWS BASICS", "1"));
452 PdfArrange
.Base
.web_topics
["FFmpeg2Theora"].push(new Array("FFmpeg2Theora_---65", "---65", "ADVANCED", "0"));
453 PdfArrange
.Base
.web_topics
["FFmpeg2Theora"].push(new Array("FFmpeg2Theora_AdvancedEncoding", "AdvancedEncoding", "COMMANDS", "1"));
454 PdfArrange
.Base
.web_topics
["FFmpeg2Theora"].push(new Array("FFmpeg2Theora_StreamingDV", "StreamingDV", "STREAMING DV", "1"));
455 PdfArrange
.Base
.web_topics
["FFmpeg2Theora"].push(new Array("FFmpeg2Theora_---66", "---66", "APPENDICES", "0"));
456 PdfArrange
.Base
.web_topics
["FFmpeg2Theora"].push(new Array("FFmpeg2Theora_Credits", "Credits", "CREDITS", "1"));
457 PdfArrange
.Base
.web_list
.push("Firefox");
458 PdfArrange
.Base
.web_topics
["Firefox"] = new Array();
459 PdfArrange
.Base
.web_topics
["Firefox"].push(new Array("Firefox_TITLE67", "TITLE67", "FIREFOX", "2"));
460 PdfArrange
.Base
.web_topics
["Firefox"].push(new Array("Firefox_---68", "---68", "INTRODUCTION", "0"));
461 PdfArrange
.Base
.web_topics
["Firefox"].push(new Array("Firefox_Introduction", "Introduction", "INTRODUCTION", "1"));
462 PdfArrange
.Base
.web_topics
["Firefox"].push(new Array("Firefox_---69", "---69", "INSTALLING", "0"));
463 PdfArrange
.Base
.web_topics
["Firefox"].push(new Array("Firefox_InstallingOSX", "InstallingOSX", "OSX", "1"));
464 PdfArrange
.Base
.web_topics
["Firefox"].push(new Array("Firefox_InstallingUbun", "InstallingUbun", "UBUNTU", "1"));
465 PdfArrange
.Base
.web_topics
["Firefox"].push(new Array("Firefox_InstallingWindows", "InstallingWindows", "WINDOWS", "1"));
466 PdfArrange
.Base
.web_topics
["Firefox"].push(new Array("Firefox_---70", "---70", "USING", "0"));
467 PdfArrange
.Base
.web_topics
["Firefox"].push(new Array("Firefox_OpenAURL", "OpenAURL", "OPEN A PAGE", "1"));
468 PdfArrange
.Base
.web_topics
["Firefox"].push(new Array("Firefox_RSSLiveBookmarks", "RSSLiveBookmarks", "LIVE BOOKMARKS", "1"));
469 PdfArrange
.Base
.web_topics
["Firefox"].push(new Array("Firefox_SubPodcasts", "SubPodcasts", "SUBSCRIBE TO PODCASTS", "1"));
470 PdfArrange
.Base
.web_topics
["Firefox"].push(new Array("Firefox_---71", "---71", "ADD-ONS", "0"));
471 PdfArrange
.Base
.web_topics
["Firefox"].push(new Array("Firefox_AddOns", "AddOns", "INSTALLING ADD-ONS", "1"));
472 PdfArrange
.Base
.web_topics
["Firefox"].push(new Array("Firefox_FireFtp", "FireFtp", "FIREFTP", "1"));
473 PdfArrange
.Base
.web_topics
["Firefox"].push(new Array("Firefox_---72", "---72", "APPENDICES", "0"));
474 PdfArrange
.Base
.web_topics
["Firefox"].push(new Array("Firefox_Credits", "Credits", "CREDITS", "1"));
475 PdfArrange
.Base
.web_list
.push("G1G1");
476 PdfArrange
.Base
.web_topics
["G1G1"] = new Array();
477 PdfArrange
.Base
.web_topics
["G1G1"].push(new Array("G1G1_TITLE73", "TITLE73", "G1G1", "2"));
478 PdfArrange
.Base
.web_topics
["G1G1"].push(new Array("G1G1_---74", "---74", "INTRODUCTION", "0"));
479 PdfArrange
.Base
.web_topics
["G1G1"].push(new Array("G1G1_Introduction", "Introduction", "Introduction", "1"));
480 PdfArrange
.Base
.web_topics
["G1G1"].push(new Array("G1G1_GettingStarted", "GettingStarted", "Welcome", "1"));
481 PdfArrange
.Base
.web_topics
["G1G1"].push(new Array("G1G1_AboutOLPC", "AboutOLPC", "About OLPC", "1"));
482 PdfArrange
.Base
.web_topics
["G1G1"].push(new Array("G1G1_HowToVolunteer", "HowToVolunteer", "How To Volunteer", "1"));
483 PdfArrange
.Base
.web_topics
["G1G1"].push(new Array("G1G1_---75", "---75", "GETTING STARTED", "0"));
484 PdfArrange
.Base
.web_topics
["G1G1"].push(new Array("G1G1_OpeningTheXO", "OpeningTheXO", "Opening The XO", "1"));
485 PdfArrange
.Base
.web_topics
["G1G1"].push(new Array("G1G1_StartingTheXO", "StartingTheXO", "Starting The XO", "1"));
486 PdfArrange
.Base
.web_topics
["G1G1"].push(new Array("G1G1_AboutComputers", "AboutComputers", "About Computers", "1"));
487 PdfArrange
.Base
.web_topics
["G1G1"].push(new Array("G1G1_XOPorts", "XOPorts", "Ports", "1"));
488 PdfArrange
.Base
.web_topics
["G1G1"].push(new Array("G1G1_Powering", "Powering", "Powering", "1"));
489 PdfArrange
.Base
.web_topics
["G1G1"].push(new Array("G1G1_Keyboard", "Keyboard", "Keyboard", "1"));
490 PdfArrange
.Base
.web_topics
["G1G1"].push(new Array("G1G1_XOScreen", "XOScreen", "Screen", "1"));
491 PdfArrange
.Base
.web_topics
["G1G1"].push(new Array("G1G1_XOExStorage", "XOExStorage", "Storage", "1"));
492 PdfArrange
.Base
.web_topics
["G1G1"].push(new Array("G1G1_---76", "---76", "INTERFACE", "0"));
493 PdfArrange
.Base
.web_topics
["G1G1"].push(new Array("G1G1_NeighborhoodView", "NeighborhoodView", "Neighborhood View", "1"));
494 PdfArrange
.Base
.web_topics
["G1G1"].push(new Array("G1G1_GroupView", "GroupView", "Group View", "1"));
495 PdfArrange
.Base
.web_topics
["G1G1"].push(new Array("G1G1_HomeView", "HomeView", "Home View", "1"));
496 PdfArrange
.Base
.web_topics
["G1G1"].push(new Array("G1G1_ActivityView", "ActivityView", "Activity View", "1"));
497 PdfArrange
.Base
.web_topics
["G1G1"].push(new Array("G1G1_TheFrame", "TheFrame", "The Frame", "1"));
498 PdfArrange
.Base
.web_topics
["G1G1"].push(new Array("G1G1_TheJournal", "TheJournal", "The Journal", "1"));
499 PdfArrange
.Base
.web_topics
["G1G1"].push(new Array("G1G1_Personalizing", "Personalizing", "Personalizing", "1"));
500 PdfArrange
.Base
.web_topics
["G1G1"].push(new Array("G1G1_---77", "---77", "ACTIVITIES", "0"));
501 PdfArrange
.Base
.web_topics
["G1G1"].push(new Array("G1G1_WhatIsActivity", "WhatIsActivity", "What Is an Activity", "1"));
502 PdfArrange
.Base
.web_topics
["G1G1"].push(new Array("G1G1_WhatIsSugar", "WhatIsSugar", "What Is Sugar", "1"));
503 PdfArrange
.Base
.web_topics
["G1G1"].push(new Array("G1G1_LaunchingActivities", "LaunchingActivities", "Launching Activities", "1"));
504 PdfArrange
.Base
.web_topics
["G1G1"].push(new Array("G1G1_Collaborating", "Collaborating", "Collaborating", "1"));
505 PdfArrange
.Base
.web_topics
["G1G1"].push(new Array("G1G1_SwitchingActivities", "SwitchingActivities", "Switching Activities", "1"));
506 PdfArrange
.Base
.web_topics
["G1G1"].push(new Array("G1G1_ExitingActivities", "ExitingActivities", "Exiting Activities", "1"));
507 PdfArrange
.Base
.web_topics
["G1G1"].push(new Array("G1G1_InstallingActivities", "InstallingActivities", "Installing Activities", "1"));
508 PdfArrange
.Base
.web_topics
["G1G1"].push(new Array("G1G1_ActivitySampler", "ActivitySampler", "Activity Sampler", "1"));
509 PdfArrange
.Base
.web_topics
["G1G1"].push(new Array("G1G1_BeyondActivities", "BeyondActivities", "Beyond Activities", "1"));
510 PdfArrange
.Base
.web_topics
["G1G1"].push(new Array("G1G1_---78", "---78", "CONNECTING", "0"));
511 PdfArrange
.Base
.web_topics
["G1G1"].push(new Array("G1G1_IntroNetwork", "IntroNetwork", "About Network Connections", "1"));
512 PdfArrange
.Base
.web_topics
["G1G1"].push(new Array("G1G1_ConnectingNetwork", "ConnectingNetwork", "Connecting to the Network", "1"));
513 PdfArrange
.Base
.web_topics
["G1G1"].push(new Array("G1G1_GiveMeInternet", "GiveMeInternet", "Give Me the Internet, Please", "1"));
514 PdfArrange
.Base
.web_topics
["G1G1"].push(new Array("G1G1_NetworkingHardware", "NetworkingHardware", "Networking Hardware", "1"));
515 PdfArrange
.Base
.web_topics
["G1G1"].push(new Array("G1G1_WirelessDevices", "WirelessDevices", "Wireless Devices", "1"));
516 PdfArrange
.Base
.web_topics
["G1G1"].push(new Array("G1G1_TroubleshootingNet", "TroubleshootingNet", "Troubleshooting Network", "1"));
517 PdfArrange
.Base
.web_topics
["G1G1"].push(new Array("G1G1_---79", "---79", "MAINTENANCE", "0"));
518 PdfArrange
.Base
.web_topics
["G1G1"].push(new Array("G1G1_Caring", "Caring", "Caring", "1"));
519 PdfArrange
.Base
.web_topics
["G1G1"].push(new Array("G1G1_BackingUp", "BackingUp", "BackingUp", "1"));
520 PdfArrange
.Base
.web_topics
["G1G1"].push(new Array("G1G1_Maintenance", "Maintenance", "Maintenance", "1"));
521 PdfArrange
.Base
.web_topics
["G1G1"].push(new Array("G1G1_Repairing", "Repairing", "Repairing", "1"));
522 PdfArrange
.Base
.web_topics
["G1G1"].push(new Array("G1G1_ConservingDiskSpace", "ConservingDiskSpace", "Conserving Disk Space", "1"));
523 PdfArrange
.Base
.web_topics
["G1G1"].push(new Array("G1G1_Charging", "Charging", "Charging", "1"));
524 PdfArrange
.Base
.web_topics
["G1G1"].push(new Array("G1G1_ReplacingBattery", "ReplacingBattery", "Replacing Battery", "1"));
525 PdfArrange
.Base
.web_topics
["G1G1"].push(new Array("G1G1_XOFlash", "XOFlash", "How to Re-Flash the XO", "1"));
526 PdfArrange
.Base
.web_topics
["G1G1"].push(new Array("G1G1_TroubleshootingSugar", "TroubleshootingSugar", "Questions and Answers", "1"));
527 PdfArrange
.Base
.web_topics
["G1G1"].push(new Array("G1G1_GettingSupport", "GettingSupport", "Getting Support", "1"));
528 PdfArrange
.Base
.web_topics
["G1G1"].push(new Array("G1G1_---80", "---80", "MORE", "0"));
529 PdfArrange
.Base
.web_topics
["G1G1"].push(new Array("G1G1_KeyboardShortcuts", "KeyboardShortcuts", "Keyboard Shortcuts", "1"));
530 PdfArrange
.Base
.web_topics
["G1G1"].push(new Array("G1G1_HardwareSpecs", "HardwareSpecs", "Hardware Specifications", "1"));
531 PdfArrange
.Base
.web_topics
["G1G1"].push(new Array("G1G1_Glossary", "Glossary", "Glossary", "1"));
532 PdfArrange
.Base
.web_topics
["G1G1"].push(new Array("G1G1_SpecialCredits", "SpecialCredits", "About this Manual", "1"));
533 PdfArrange
.Base
.web_topics
["G1G1"].push(new Array("G1G1_Credits", "Credits", "Credits", "1"));
534 PdfArrange
.Base
.web_list
.push("GTranscode");
535 PdfArrange
.Base
.web_topics
["GTranscode"] = new Array();
536 PdfArrange
.Base
.web_topics
["GTranscode"].push(new Array("GTranscode_TITLE81", "TITLE81", "GTranscode", "2"));
537 PdfArrange
.Base
.web_topics
["GTranscode"].push(new Array("GTranscode_---82", "---82", "INTRODUCTION", "0"));
538 PdfArrange
.Base
.web_topics
["GTranscode"].push(new Array("GTranscode_Introduction", "Introduction", "INTRODUCTION", "1"));
539 PdfArrange
.Base
.web_topics
["GTranscode"].push(new Array("GTranscode_---83", "---83", "INSTALLING", "0"));
540 PdfArrange
.Base
.web_topics
["GTranscode"].push(new Array("GTranscode_Installing", "Installing", "LINUX", "1"));
541 PdfArrange
.Base
.web_topics
["GTranscode"].push(new Array("GTranscode_---84", "---84", "USING", "0"));
542 PdfArrange
.Base
.web_topics
["GTranscode"].push(new Array("GTranscode_Interface", "Interface", "INTERFACE", "1"));
543 PdfArrange
.Base
.web_topics
["GTranscode"].push(new Array("GTranscode_Using", "Using", "BASIC EXAMPLE", "1"));
544 PdfArrange
.Base
.web_topics
["GTranscode"].push(new Array("GTranscode_---85", "---85", "APPENDICES", "0"));
545 PdfArrange
.Base
.web_topics
["GTranscode"].push(new Array("GTranscode_Credits", "Credits", "CREDITS", "1"));
546 PdfArrange
.Base
.web_list
.push("Gimp");
547 PdfArrange
.Base
.web_topics
["Gimp"] = new Array();
548 PdfArrange
.Base
.web_topics
["Gimp"].push(new Array("Gimp_TITLE86", "TITLE86", "GIMP", "2"));
549 PdfArrange
.Base
.web_topics
["Gimp"].push(new Array("Gimp_---87", "---87", "INTRODUCTION", "0"));
550 PdfArrange
.Base
.web_topics
["Gimp"].push(new Array("Gimp_Introduction", "Introduction", "INTRODUCTION", "1"));
551 PdfArrange
.Base
.web_topics
["Gimp"].push(new Array("Gimp_WhatIsAnImage", "WhatIsAnImage", "WHAT IS AN IMAGE?", "1"));
552 PdfArrange
.Base
.web_topics
["Gimp"].push(new Array("Gimp_---88", "---88", "INSTALLING", "0"));
553 PdfArrange
.Base
.web_topics
["Gimp"].push(new Array("Gimp_InstallingWindows", "InstallingWindows", "WINDOWS", "1"));
554 PdfArrange
.Base
.web_topics
["Gimp"].push(new Array("Gimp_---89", "---89", "USING", "0"));
555 PdfArrange
.Base
.web_topics
["Gimp"].push(new Array("Gimp_OpenAFile", "OpenAFile", "OPEN A FILE", "1"));
556 PdfArrange
.Base
.web_topics
["Gimp"].push(new Array("Gimp_Cropping", "Cropping", "CROPPING IMAGES", "1"));
557 PdfArrange
.Base
.web_topics
["Gimp"].push(new Array("Gimp_Scaling", "Scaling", "RESIZING IMAGES", "1"));
558 PdfArrange
.Base
.web_topics
["Gimp"].push(new Array("Gimp_OptimisingImagesForWeb", "OptimisingImagesForWeb", "SAVING IMAGES FOR THE WEB", "1"));
559 PdfArrange
.Base
.web_topics
["Gimp"].push(new Array("Gimp_---90", "---90", "APPENDICES", "0"));
560 PdfArrange
.Base
.web_topics
["Gimp"].push(new Array("Gimp_Help", "Help", "HELP", "1"));
561 PdfArrange
.Base
.web_list
.push("Icecast");
562 PdfArrange
.Base
.web_topics
["Icecast"] = new Array();
563 PdfArrange
.Base
.web_topics
["Icecast"].push(new Array("Icecast_TITLE91", "TITLE91", "ICECAST", "2"));
564 PdfArrange
.Base
.web_topics
["Icecast"].push(new Array("Icecast_---92", "---92", "INTRODUCTION", "0"));
565 PdfArrange
.Base
.web_topics
["Icecast"].push(new Array("Icecast_Introduction", "Introduction", "INTRODUCTION", "1"));
566 PdfArrange
.Base
.web_topics
["Icecast"].push(new Array("Icecast_StreamingIntro", "StreamingIntro", "WHAT IS STREAMING?", "1"));
567 PdfArrange
.Base
.web_topics
["Icecast"].push(new Array("Icecast_---93", "---93", "INSTALLING", "0"));
568 PdfArrange
.Base
.web_topics
["Icecast"].push(new Array("Icecast_InstallingWindows", "InstallingWindows", "WINDOWS", "1"));
569 PdfArrange
.Base
.web_topics
["Icecast"].push(new Array("Icecast_InstallingLinux", "InstallingLinux", "LINUX (SOURCE)", "1"));
570 PdfArrange
.Base
.web_topics
["Icecast"].push(new Array("Icecast_InstallingLinuxDebian", "InstallingLinuxDebian", "LINUX (DEBIAN or UBUNTU)", "1"));
571 PdfArrange
.Base
.web_topics
["Icecast"].push(new Array("Icecast_---94", "---94", "GETTING STARTED", "0"));
572 PdfArrange
.Base
.web_topics
["Icecast"].push(new Array("Icecast_StartingWindows", "StartingWindows", "STARTING (WINDOWS)", "1"));
573 PdfArrange
.Base
.web_topics
["Icecast"].push(new Array("Icecast_LogsLinux", "LogsLinux", "LOGS (LINUX)", "1"));
574 PdfArrange
.Base
.web_topics
["Icecast"].push(new Array("Icecast_StartingLinux", "StartingLinux", "STARTING (LINUX)", "1"));
575 PdfArrange
.Base
.web_topics
["Icecast"].push(new Array("Icecast_---95", "---95", "CONFIGURING", "0"));
576 PdfArrange
.Base
.web_topics
["Icecast"].push(new Array("Icecast_BasicConfig", "BasicConfig", "BASIC CONFIG", "1"));
577 PdfArrange
.Base
.web_topics
["Icecast"].push(new Array("Icecast_CreatingAccounts", "CreatingAccounts", "ACCOUNTS", "1"));
578 PdfArrange
.Base
.web_topics
["Icecast"].push(new Array("Icecast_---96", "---96", "APPENDICES", "0"));
579 PdfArrange
.Base
.web_topics
["Icecast"].push(new Array("Icecast_Glossary", "Glossary", "GLOSSARY", "1"));
580 PdfArrange
.Base
.web_topics
["Icecast"].push(new Array("Icecast_Links", "Links", "LINKS", "1"));
581 PdfArrange
.Base
.web_topics
["Icecast"].push(new Array("Icecast_Credits", "Credits", "CREDITS", "1"));
582 PdfArrange
.Base
.web_list
.push("Inkscape");
583 PdfArrange
.Base
.web_topics
["Inkscape"] = new Array();
584 PdfArrange
.Base
.web_topics
["Inkscape"].push(new Array("Inkscape_TITLE97", "TITLE97", "INKSCAPE", "2"));
585 PdfArrange
.Base
.web_topics
["Inkscape"].push(new Array("Inkscape_---98", "---98", "INTRODUCTION", "0"));
586 PdfArrange
.Base
.web_topics
["Inkscape"].push(new Array("Inkscape_Introduction", "Introduction", "ABOUT INKSCAPE", "1"));
587 PdfArrange
.Base
.web_topics
["Inkscape"].push(new Array("Inkscape_AboutSVG", "AboutSVG", "ABOUT SVG", "1"));
588 PdfArrange
.Base
.web_topics
["Inkscape"].push(new Array("Inkscape_Interface", "Interface", "THE INKSCAPE INTERFACE", "1"));
589 PdfArrange
.Base
.web_topics
["Inkscape"].push(new Array("Inkscape_WorkingwithFiles", "WorkingwithFiles", "WORKING WITH FILES", "1"));
590 PdfArrange
.Base
.web_topics
["Inkscape"].push(new Array("Inkscape_---99", "---99", "TOOLBOX", "0"));
591 PdfArrange
.Base
.web_topics
["Inkscape"].push(new Array("Inkscape_SelectorTool", "SelectorTool", "SELECTOR TOOL", "1"));
592 PdfArrange
.Base
.web_topics
["Inkscape"].push(new Array("Inkscape_NodeTool", "NodeTool", "NODE TOOL", "1"));
593 PdfArrange
.Base
.web_topics
["Inkscape"].push(new Array("Inkscape_TweakTool", "TweakTool", "TWEAK TOOL", "1"));
594 PdfArrange
.Base
.web_topics
["Inkscape"].push(new Array("Inkscape_ZoomTool", "ZoomTool", "ZOOM TOOL", "1"));
595 PdfArrange
.Base
.web_topics
["Inkscape"].push(new Array("Inkscape_RectangleTool", "RectangleTool", "RECTANGLE TOOL", "1"));
596 PdfArrange
.Base
.web_topics
["Inkscape"].push(new Array("Inkscape_3DBoxTool", "3DBoxTool", "3D BOX TOOL", "1"));
597 PdfArrange
.Base
.web_topics
["Inkscape"].push(new Array("Inkscape_EllipseTool", "EllipseTool", "ELLIPSE TOOL", "1"));
598 PdfArrange
.Base
.web_topics
["Inkscape"].push(new Array("Inkscape_StarTool", "StarTool", "STAR TOOL", "1"));
599 PdfArrange
.Base
.web_topics
["Inkscape"].push(new Array("Inkscape_SpiralTool", "SpiralTool", "SPIRAL TOOL", "1"));
600 PdfArrange
.Base
.web_topics
["Inkscape"].push(new Array("Inkscape_PencilTool", "PencilTool", "PENCIL TOOL", "1"));
601 PdfArrange
.Base
.web_topics
["Inkscape"].push(new Array("Inkscape_PenTool", "PenTool", "PEN TOOL", "1"));
602 PdfArrange
.Base
.web_topics
["Inkscape"].push(new Array("Inkscape_CalligraphyTool", "CalligraphyTool", "CALLIGRAPHY TOOL", "1"));
603 PdfArrange
.Base
.web_topics
["Inkscape"].push(new Array("Inkscape_BucketFillTool", "BucketFillTool", "BUCKET FILL TOOL", "1"));
604 PdfArrange
.Base
.web_topics
["Inkscape"].push(new Array("Inkscape_TextTool", "TextTool", "TEXT TOOL", "1"));
605 PdfArrange
.Base
.web_topics
["Inkscape"].push(new Array("Inkscape_ConnectorTool", "ConnectorTool", "CONNECTOR TOOL", "1"));
606 PdfArrange
.Base
.web_topics
["Inkscape"].push(new Array("Inkscape_GradientTool", "GradientTool", "GRADIENT TOOL", "1"));
607 PdfArrange
.Base
.web_topics
["Inkscape"].push(new Array("Inkscape_DropperTool", "DropperTool", "DROPPER TOOL", "1"));
608 PdfArrange
.Base
.web_topics
["Inkscape"].push(new Array("Inkscape_---100", "---100", "PATHS", "0"));
609 PdfArrange
.Base
.web_topics
["Inkscape"].push(new Array("Inkscape_ModifyPathEffects", "ModifyPathEffects", "MODIFY PATH", "1"));
610 PdfArrange
.Base
.web_topics
["Inkscape"].push(new Array("Inkscape_---101", "---101", "TEXT", "0"));
611 PdfArrange
.Base
.web_topics
["Inkscape"].push(new Array("Inkscape_StylingText", "StylingText", "STYLING TEXT", "1"));
612 PdfArrange
.Base
.web_topics
["Inkscape"].push(new Array("Inkscape_TextEffects", "TextEffects", "TEXT EFFECTS", "1"));
613 PdfArrange
.Base
.web_topics
["Inkscape"].push(new Array("Inkscape_TextAndPaths", "TextAndPaths", "TEXT AND PATHS", "1"));
614 PdfArrange
.Base
.web_topics
["Inkscape"].push(new Array("Inkscape_---102", "---102", "MULTIPLE OBJECT OPERATIONS", "0"));
615 PdfArrange
.Base
.web_topics
["Inkscape"].push(new Array("Inkscape_CopyCloneDuplicate", "CopyCloneDuplicate", "COPY, CLONE, & DUPLICATE", "1"));
616 PdfArrange
.Base
.web_topics
["Inkscape"].push(new Array("Inkscape_ClipAndMask", "ClipAndMask", "CLIP AND MASK", "1"));
617 PdfArrange
.Base
.web_topics
["Inkscape"].push(new Array("Inkscape_---103", "---103", "POSITIONING OBJECTS", "0"));
618 PdfArrange
.Base
.web_topics
["Inkscape"].push(new Array("Inkscape_IntroductionToPositioning", "IntroductionToPositioning", "INTRODUCTION", "1"));
619 PdfArrange
.Base
.web_topics
["Inkscape"].push(new Array("Inkscape_AlignandDistribute", "AlignandDistribute", "ALIGN AND DISTRIBUTE", "1"));
620 PdfArrange
.Base
.web_topics
["Inkscape"].push(new Array("Inkscape_---104", "---104", "ORGANISING OBJECTS", "0"));
621 PdfArrange
.Base
.web_topics
["Inkscape"].push(new Array("Inkscape_Layers", "Layers", "LAYERS", "1"));
622 PdfArrange
.Base
.web_topics
["Inkscape"].push(new Array("Inkscape_Grouping", "Grouping", "GROUPING", "1"));
623 PdfArrange
.Base
.web_topics
["Inkscape"].push(new Array("Inkscape_---105", "---105", "STYLING OBJECTS", "0"));
624 PdfArrange
.Base
.web_topics
["Inkscape"].push(new Array("Inkscape_IntroductionToStyling", "IntroductionToStyling", "INTRODUCTION", "1"));
625 PdfArrange
.Base
.web_topics
["Inkscape"].push(new Array("Inkscape_FillAndStroke", "FillAndStroke", "FILL AND STROKE", "1"));
626 PdfArrange
.Base
.web_topics
["Inkscape"].push(new Array("Inkscape_StrokeStyle", "StrokeStyle", "STROKE STYLE", "1"));
627 PdfArrange
.Base
.web_topics
["Inkscape"].push(new Array("Inkscape_ColorSwatches", "ColorSwatches", "COLOR PALETTE", "1"));
628 PdfArrange
.Base
.web_topics
["Inkscape"].push(new Array("Inkscape_---106", "---106", "LIVE PATH EFFECTS", "0"));
629 PdfArrange
.Base
.web_topics
["Inkscape"].push(new Array("Inkscape_LivePathEffects", "LivePathEffects", "INTRODUCTION", "1"));
630 PdfArrange
.Base
.web_topics
["Inkscape"].push(new Array("Inkscape_Gears", "Gears", "GEARS", "1"));
631 PdfArrange
.Base
.web_topics
["Inkscape"].push(new Array("Inkscape_PatternAlongPath", "PatternAlongPath", "PATTERN ALONG PATH", "1"));
632 PdfArrange
.Base
.web_topics
["Inkscape"].push(new Array("Inkscape_---107", "---107", "SVG FILTERS", "0"));
633 PdfArrange
.Base
.web_topics
["Inkscape"].push(new Array("Inkscape_SVGFilterEffects", "SVGFilterEffects", "INTRODUCTION", "1"));
634 PdfArrange
.Base
.web_topics
["Inkscape"].push(new Array("Inkscape_---108", "---108", "ADVANCED", "0"));
635 PdfArrange
.Base
.web_topics
["Inkscape"].push(new Array("Inkscape_ColorManagement", "ColorManagement", "COLOR MANAGEMENT", "1"));
636 PdfArrange
.Base
.web_topics
["Inkscape"].push(new Array("Inkscape_GenerateTemplateEffects", "GenerateTemplateEffects", "GENERATE TEMPLATE", "1"));
637 PdfArrange
.Base
.web_topics
["Inkscape"].push(new Array("Inkscape_---109", "---109", "TUTORIALS", "0"));
638 PdfArrange
.Base
.web_topics
["Inkscape"].push(new Array("Inkscape_InstallWindows", "InstallWindows", "INSTALLING ON WINDOWS", "1"));
639 PdfArrange
.Base
.web_topics
["Inkscape"].push(new Array("Inkscape_CreateIcon", "CreateIcon", "CREATING ICONS", "1"));
640 PdfArrange
.Base
.web_topics
["Inkscape"].push(new Array("Inkscape_---110", "---110", "APPENDICES", "0"));
641 PdfArrange
.Base
.web_topics
["Inkscape"].push(new Array("Inkscape_Credits", "Credits", "CREDITS", "1"));
642 PdfArrange
.Base
.web_list
.push("Kino");
643 PdfArrange
.Base
.web_topics
["Kino"] = new Array();
644 PdfArrange
.Base
.web_topics
["Kino"].push(new Array("Kino_TITLE111", "TITLE111", "KINO", "2"));
645 PdfArrange
.Base
.web_topics
["Kino"].push(new Array("Kino_---112", "---112", "INTRODUCTION", "0"));
646 PdfArrange
.Base
.web_topics
["Kino"].push(new Array("Kino_Introduction", "Introduction", "INTRODUCTION", "1"));
647 PdfArrange
.Base
.web_topics
["Kino"].push(new Array("Kino_---113", "---113", "USING KINO", "0"));
648 PdfArrange
.Base
.web_topics
["Kino"].push(new Array("Kino_CapturingVideo", "CapturingVideo", "CAPTURING VIDEO", "1"));
649 PdfArrange
.Base
.web_topics
["Kino"].push(new Array("Kino_EditingClips", "EditingClips", "EDITING CLIPS", "1"));
650 PdfArrange
.Base
.web_topics
["Kino"].push(new Array("Kino_AddingTitlesAndCredits", "AddingTitlesAndCredits", "ADDING TITLES", "1"));
651 PdfArrange
.Base
.web_topics
["Kino"].push(new Array("Kino_TransitionsAndEffects", "TransitionsAndEffects", "TRANSITIONS AND EFFECTS", "1"));
652 PdfArrange
.Base
.web_topics
["Kino"].push(new Array("Kino_AudioFilters", "AudioFilters", "AUDIO FILTERS", "1"));
653 PdfArrange
.Base
.web_topics
["Kino"].push(new Array("Kino_ExportingVideo", "ExportingVideo", "EXPORTING VIDEO", "1"));
654 PdfArrange
.Base
.web_topics
["Kino"].push(new Array("Kino_---114", "---114", "APPENDIX", "0"));
655 PdfArrange
.Base
.web_topics
["Kino"].push(new Array("Kino_Help", "Help", "ADDITIONAL HELP", "1"));
656 PdfArrange
.Base
.web_topics
["Kino"].push(new Array("Kino_Credits", "Credits", "CREDITS", "1"));
657 PdfArrange
.Base
.web_list
.push("Linphone");
658 PdfArrange
.Base
.web_topics
["Linphone"] = new Array();
659 PdfArrange
.Base
.web_topics
["Linphone"].push(new Array("Linphone_TITLE115", "TITLE115", "LINPHONE", "2"));
660 PdfArrange
.Base
.web_topics
["Linphone"].push(new Array("Linphone_---116", "---116", "INTRODUCTION", "0"));
661 PdfArrange
.Base
.web_topics
["Linphone"].push(new Array("Linphone_Introduction", "Introduction", "INTRODUCTION", "1"));
662 PdfArrange
.Base
.web_topics
["Linphone"].push(new Array("Linphone_VoIP", "VoIP", "WHAT IS VOIP?", "1"));
663 PdfArrange
.Base
.web_topics
["Linphone"].push(new Array("Linphone_---117", "---117", "INSTALLING", "0"));
664 PdfArrange
.Base
.web_topics
["Linphone"].push(new Array("Linphone_InstallingUbuntu", "InstallingUbuntu", "UBUNTU", "1"));
665 PdfArrange
.Base
.web_topics
["Linphone"].push(new Array("Linphone_Installing", "Installing", "LINUX (ADVANCED)", "1"));
666 PdfArrange
.Base
.web_topics
["Linphone"].push(new Array("Linphone_---118", "---118", "GETTING STARTED", "0"));
667 PdfArrange
.Base
.web_topics
["Linphone"].push(new Array("Linphone_Interface", "Interface", "INTERFACE", "1"));
668 PdfArrange
.Base
.web_topics
["Linphone"].push(new Array("Linphone_Preferences", "Preferences", "PREFERENECES", "1"));
669 PdfArrange
.Base
.web_topics
["Linphone"].push(new Array("Linphone_Configuring", "Configuring", "CONFIGURING", "1"));
670 PdfArrange
.Base
.web_topics
["Linphone"].push(new Array("Linphone_---119", "---119", "APPENDICES", "0"));
671 PdfArrange
.Base
.web_topics
["Linphone"].push(new Array("Linphone_Credits", "Credits", "CREDITS", "1"));
672 PdfArrange
.Base
.web_list
.push("Linux");
673 PdfArrange
.Base
.web_topics
["Linux"] = new Array();
674 PdfArrange
.Base
.web_topics
["Linux"].push(new Array("Linux_TITLE120", "TITLE120", "GNU/LINUX CLI", "2"));
675 PdfArrange
.Base
.web_topics
["Linux"].push(new Array("Linux_---121", "---121", "INTRODUCTION", "0"));
676 PdfArrange
.Base
.web_topics
["Linux"].push(new Array("Linux_Introduction", "Introduction", "INTRODUCTION", "1"));
677 PdfArrange
.Base
.web_topics
["Linux"].push(new Array("Linux_---122", "---122", "GETTING STARTED", "0"));
678 PdfArrange
.Base
.web_topics
["Linux"].push(new Array("Linux_BasicCommands", "BasicCommands", "BASIC COMMANDS", "1"));
679 PdfArrange
.Base
.web_topics
["Linux"].push(new Array("Linux_BasicFileStructure", "BasicFileStructure", "FILE STRUCTURE", "1"));
680 PdfArrange
.Base
.web_topics
["Linux"].push(new Array("Linux_BasicTextEditors", "BasicTextEditors", "TEXT EDITING", "1"));
681 PdfArrange
.Base
.web_topics
["Linux"].push(new Array("Linux_BasicSoftwareInstallProcess", "BasicSoftwareInstallProcess", "INSTALLING SOFTWARE", "1"));
682 PdfArrange
.Base
.web_topics
["Linux"].push(new Array("Linux_BasicConnectivity", "BasicConnectivity", "CONNECTING", "1"));
683 PdfArrange
.Base
.web_topics
["Linux"].push(new Array("Linux_BasicCheatSheet", "BasicCheatSheet", "CHEAT SHEET", "1"));
684 PdfArrange
.Base
.web_topics
["Linux"].push(new Array("Linux_---123", "---123", "APPENDICES", "0"));
685 PdfArrange
.Base
.web_topics
["Linux"].push(new Array("Linux_Credits", "Credits", "CREDITS", "1"));
686 PdfArrange
.Base
.web_list
.push("LogViewer");
687 PdfArrange
.Base
.web_topics
["LogViewer"] = new Array();
688 PdfArrange
.Base
.web_topics
["LogViewer"].push(new Array("LogViewer_TITLE124", "TITLE124", "LOG VIEWER ACTIVITY", "2"));
689 PdfArrange
.Base
.web_topics
["LogViewer"].push(new Array("LogViewer_---125", "---125", "INTRODUCTION", "0"));
690 PdfArrange
.Base
.web_topics
["LogViewer"].push(new Array("LogViewer_Introduction", "Introduction", "INTRODUCTION", "1"));
691 PdfArrange
.Base
.web_topics
["LogViewer"].push(new Array("LogViewer_---126", "---126", "GETTING STARTED", "0"));
692 PdfArrange
.Base
.web_topics
["LogViewer"].push(new Array("LogViewer_---127", "---127", "TUTORIALS", "0"));
693 PdfArrange
.Base
.web_topics
["LogViewer"].push(new Array("LogViewer_---128", "---128", "REFERENCE", "0"));
694 PdfArrange
.Base
.web_topics
["LogViewer"].push(new Array("LogViewer_---129", "---129", "APPENDICES", "0"));
695 PdfArrange
.Base
.web_topics
["LogViewer"].push(new Array("LogViewer_Credits", "Credits", "CREDITS", "1"));
696 PdfArrange
.Base
.web_list
.push("M3W");
697 PdfArrange
.Base
.web_topics
["M3W"] = new Array();
698 PdfArrange
.Base
.web_topics
["M3W"].push(new Array("M3W_TITLE130", "TITLE130", "M3W", "2"));
699 PdfArrange
.Base
.web_topics
["M3W"].push(new Array("M3W_---131", "---131", "INTRODUCTION", "0"));
700 PdfArrange
.Base
.web_topics
["M3W"].push(new Array("M3W_Introduction", "Introduction", "INTRODUCTION", "1"));
701 PdfArrange
.Base
.web_topics
["M3W"].push(new Array("M3W_StreamingIntro", "StreamingIntro", "WHAT IS STREAMING?", "1"));
702 PdfArrange
.Base
.web_topics
["M3W"].push(new Array("M3W_---132", "---132", "INSTALLING", "0"));
703 PdfArrange
.Base
.web_topics
["M3W"].push(new Array("M3W_Installing", "Installing", "INSTALLING", "1"));
704 PdfArrange
.Base
.web_topics
["M3W"].push(new Array("M3W_---133", "---133", "GETTING STARTED", "0"));
705 PdfArrange
.Base
.web_topics
["M3W"].push(new Array("M3W_Interface", "Interface", "INTERFACE", "1"));
706 PdfArrange
.Base
.web_topics
["M3W"].push(new Array("M3W_Configuring", "Configuring", "CONFIGURING", "1"));
707 PdfArrange
.Base
.web_topics
["M3W"].push(new Array("M3W_---134", "---134", "USING", "0"));
708 PdfArrange
.Base
.web_topics
["M3W"].push(new Array("M3W_Using", "Using", "LIVE STREAMING", "1"));
709 PdfArrange
.Base
.web_topics
["M3W"].push(new Array("M3W_---135", "---135", "APPENDICES", "0"));
710 PdfArrange
.Base
.web_topics
["M3W"].push(new Array("M3W_Credits", "Credits", "CREDITS", "1"));
711 PdfArrange
.Base
.web_list
.push("MPlayer");
712 PdfArrange
.Base
.web_topics
["MPlayer"] = new Array();
713 PdfArrange
.Base
.web_topics
["MPlayer"].push(new Array("MPlayer_TITLE136", "TITLE136", "MPLAYER", "2"));
714 PdfArrange
.Base
.web_topics
["MPlayer"].push(new Array("MPlayer_---137", "---137", "INTRODUCTION", "0"));
715 PdfArrange
.Base
.web_topics
["MPlayer"].push(new Array("MPlayer_Introduction", "Introduction", "INTRODUCTION", "1"));
716 PdfArrange
.Base
.web_topics
["MPlayer"].push(new Array("MPlayer_---138", "---138", "INSTALLING", "0"));
717 PdfArrange
.Base
.web_topics
["MPlayer"].push(new Array("MPlayer_InstallingOSX", "InstallingOSX", "OSX", "1"));
718 PdfArrange
.Base
.web_topics
["MPlayer"].push(new Array("MPlayer_InstallingUbuntu", "InstallingUbuntu", "UBUNTU", "1"));
719 PdfArrange
.Base
.web_topics
["MPlayer"].push(new Array("MPlayer_InstallingWindows", "InstallingWindows", "WINDOWS", "1"));
720 PdfArrange
.Base
.web_topics
["MPlayer"].push(new Array("MPlayer_---139", "---139", "USING", "0"));
721 PdfArrange
.Base
.web_topics
["MPlayer"].push(new Array("MPlayer_PlayingAudioUbuntu", "PlayingAudioUbuntu", "PLAYING A FILE (UBUNTU)", "1"));
722 PdfArrange
.Base
.web_topics
["MPlayer"].push(new Array("MPlayer_PlayingAnAudioFile", "PlayingAnAudioFile", "PLAYING A FILE (OSX)", "1"));
723 PdfArrange
.Base
.web_topics
["MPlayer"].push(new Array("MPlayer_---140", "---140", "APPENDICES", "0"));
724 PdfArrange
.Base
.web_topics
["MPlayer"].push(new Array("MPlayer_Help", "Help", "HELP", "1"));
725 PdfArrange
.Base
.web_topics
["MPlayer"].push(new Array("MPlayer_Credits", "Credits", "CREDITS", "1"));
726 PdfArrange
.Base
.web_list
.push("Measure");
727 PdfArrange
.Base
.web_topics
["Measure"] = new Array();
728 PdfArrange
.Base
.web_topics
["Measure"].push(new Array("Measure_TITLE141", "TITLE141", "MEASURE ACTIVITY", "2"));
729 PdfArrange
.Base
.web_topics
["Measure"].push(new Array("Measure_---142", "---142", "INTRODUCTION", "0"));
730 PdfArrange
.Base
.web_topics
["Measure"].push(new Array("Measure_Introduction", "Introduction", "INTRODUCTION", "1"));
731 PdfArrange
.Base
.web_topics
["Measure"].push(new Array("Measure_---143", "---143", "GETTING STARTED", "0"));
732 PdfArrange
.Base
.web_topics
["Measure"].push(new Array("Measure_---144", "---144", "TUTORIALS", "0"));
733 PdfArrange
.Base
.web_topics
["Measure"].push(new Array("Measure_---145", "---145", "REFERENCE", "0"));
734 PdfArrange
.Base
.web_topics
["Measure"].push(new Array("Measure_---146", "---146", "APPENDICES", "0"));
735 PdfArrange
.Base
.web_topics
["Measure"].push(new Array("Measure_Credits", "Credits", "CREDITS", "1"));
736 PdfArrange
.Base
.web_list
.push("Memorize");
737 PdfArrange
.Base
.web_topics
["Memorize"] = new Array();
738 PdfArrange
.Base
.web_topics
["Memorize"].push(new Array("Memorize_TITLE147", "TITLE147", "MEMORIZE ACTIVITY", "2"));
739 PdfArrange
.Base
.web_topics
["Memorize"].push(new Array("Memorize_---148", "---148", "INTRODUCTION", "0"));
740 PdfArrange
.Base
.web_topics
["Memorize"].push(new Array("Memorize_Introduction", "Introduction", "INTRODUCTION", "1"));
741 PdfArrange
.Base
.web_topics
["Memorize"].push(new Array("Memorize_---149", "---149", "GETTING STARTED", "0"));
742 PdfArrange
.Base
.web_topics
["Memorize"].push(new Array("Memorize_---150", "---150", "TUTORIALS", "0"));
743 PdfArrange
.Base
.web_topics
["Memorize"].push(new Array("Memorize_---151", "---151", "REFERENCE", "0"));
744 PdfArrange
.Base
.web_topics
["Memorize"].push(new Array("Memorize_---152", "---152", "APPENDICES", "0"));
745 PdfArrange
.Base
.web_topics
["Memorize"].push(new Array("Memorize_Credits", "Credits", "CREDITS", "1"));
746 PdfArrange
.Base
.web_list
.push("MuSE");
747 PdfArrange
.Base
.web_topics
["MuSE"] = new Array();
748 PdfArrange
.Base
.web_topics
["MuSE"].push(new Array("MuSE_TITLE153", "TITLE153", "MuSE", "2"));
749 PdfArrange
.Base
.web_topics
["MuSE"].push(new Array("MuSE_---154", "---154", "INTRODUCTION", "0"));
750 PdfArrange
.Base
.web_topics
["MuSE"].push(new Array("MuSE_Introduction", "Introduction", "INTRODUCTION", "1"));
751 PdfArrange
.Base
.web_topics
["MuSE"].push(new Array("MuSE_StreamingIntro", "StreamingIntro", "WHAT IS STREAMING?", "1"));
752 PdfArrange
.Base
.web_topics
["MuSE"].push(new Array("MuSE_---155", "---155", "INSTALLING", "0"));
753 PdfArrange
.Base
.web_topics
["MuSE"].push(new Array("MuSE_InstallingLinux", "InstallingLinux", "LINUX (SOURCE)", "1"));
754 PdfArrange
.Base
.web_topics
["MuSE"].push(new Array("MuSE_---156", "---156", "INTERFACE", "0"));
755 PdfArrange
.Base
.web_topics
["MuSE"].push(new Array("MuSE_ToolBar", "ToolBar", "TOOLBAR", "1"));
756 PdfArrange
.Base
.web_topics
["MuSE"].push(new Array("MuSE_---157", "---157", "USING", "0"));
757 PdfArrange
.Base
.web_topics
["MuSE"].push(new Array("MuSE_LiveStreaming", "LiveStreaming", "LIVE STREAMING", "1"));
758 PdfArrange
.Base
.web_topics
["MuSE"].push(new Array("MuSE_PlaylistStreaming", "PlaylistStreaming", "PLAYLIST STREAMING", "1"));
759 PdfArrange
.Base
.web_topics
["MuSE"].push(new Array("MuSE_---158", "---158", "APPENDICES", "0"));
760 PdfArrange
.Base
.web_topics
["MuSE"].push(new Array("MuSE_Links", "Links", "LINKS", "1"));
761 PdfArrange
.Base
.web_topics
["MuSE"].push(new Array("MuSE_Glossary", "Glossary", "GLOSSARY", "1"));
762 PdfArrange
.Base
.web_topics
["MuSE"].push(new Array("MuSE_Credits", "Credits", "CREDITS", "1"));
763 PdfArrange
.Base
.web_list
.push("NewsReader");
764 PdfArrange
.Base
.web_topics
["NewsReader"] = new Array();
765 PdfArrange
.Base
.web_list
.push("OpenMovieEditor");
766 PdfArrange
.Base
.web_topics
["OpenMovieEditor"] = new Array();
767 PdfArrange
.Base
.web_list
.push("OpenOffice");
768 PdfArrange
.Base
.web_topics
["OpenOffice"] = new Array();
769 PdfArrange
.Base
.web_topics
["OpenOffice"].push(new Array("OpenOffice_TITLE159", "TITLE159", "OPENOFFICE.ORG", "2"));
770 PdfArrange
.Base
.web_topics
["OpenOffice"].push(new Array("OpenOffice_---160", "---160", "INTRODUCTION", "0"));
771 PdfArrange
.Base
.web_topics
["OpenOffice"].push(new Array("OpenOffice_Introduction", "Introduction", "INTRODUCTION", "1"));
772 PdfArrange
.Base
.web_topics
["OpenOffice"].push(new Array("OpenOffice_---161", "---161", "INSTALLING", "0"));
773 PdfArrange
.Base
.web_topics
["OpenOffice"].push(new Array("OpenOffice_InstallingWin", "InstallingWin", "WINDOWS", "1"));
774 PdfArrange
.Base
.web_topics
["OpenOffice"].push(new Array("OpenOffice_InstallingUbuntu", "InstallingUbuntu", "UBUNTU", "1"));
775 PdfArrange
.Base
.web_topics
["OpenOffice"].push(new Array("OpenOffice_---162", "---162", "USING WITH TEXT", "0"));
776 PdfArrange
.Base
.web_topics
["OpenOffice"].push(new Array("OpenOffice_OpenFile", "OpenFile", "OPEN A FILE", "1"));
777 PdfArrange
.Base
.web_topics
["OpenOffice"].push(new Array("OpenOffice_CreatePage", "CreatePage", "CREATE A PAGE", "1"));
778 PdfArrange
.Base
.web_topics
["OpenOffice"].push(new Array("OpenOffice_---163", "---163", "OFFICE USES", "0"));
779 PdfArrange
.Base
.web_topics
["OpenOffice"].push(new Array("OpenOffice_MakeAddressBook", "MakeAddressBook", "MAKE ADDRESS BOOK", "1"));
780 PdfArrange
.Base
.web_topics
["OpenOffice"].push(new Array("OpenOffice_MailMerge", "MailMerge", "MAIL MERGE LETTERS", "1"));
781 PdfArrange
.Base
.web_topics
["OpenOffice"].push(new Array("OpenOffice_---164", "---164", "APPENDICES", "0"));
782 PdfArrange
.Base
.web_topics
["OpenOffice"].push(new Array("OpenOffice_Credits", "Credits", "CREDITS", "1"));
783 PdfArrange
.Base
.web_list
.push("Opticks");
784 PdfArrange
.Base
.web_topics
["Opticks"] = new Array();
785 PdfArrange
.Base
.web_topics
["Opticks"].push(new Array("Opticks_TITLE165", "TITLE165", "OPTICKS", "2"));
786 PdfArrange
.Base
.web_topics
["Opticks"].push(new Array("Opticks_---166", "---166", "INTRODUCTION", "0"));
787 PdfArrange
.Base
.web_topics
["Opticks"].push(new Array("Opticks_OpticksTutorialLearningTheBasics", "OpticksTutorialLearningTheBasics", "OpticksTutorialLearningTheBasics", "1"));
788 PdfArrange
.Base
.web_topics
["Opticks"].push(new Array("Opticks_OpticksTutorialShapeFiles", "OpticksTutorialShapeFiles", "OpticksTutorialShapeFiles", "1"));
789 PdfArrange
.Base
.web_topics
["Opticks"].push(new Array("Opticks_---167", "---167", "APPENDICES", "0"));
790 PdfArrange
.Base
.web_topics
["Opticks"].push(new Array("Opticks_Credits", "Credits", "CREDITS", "1"));
791 PdfArrange
.Base
.web_list
.push("OurMedia");
792 PdfArrange
.Base
.web_topics
["OurMedia"] = new Array();
793 PdfArrange
.Base
.web_topics
["OurMedia"].push(new Array("OurMedia_TITLE168", "TITLE168", "OURMEDIA", "2"));
794 PdfArrange
.Base
.web_topics
["OurMedia"].push(new Array("OurMedia_Introduction", "Introduction", "INTRODUCTION", "1"));
795 PdfArrange
.Base
.web_topics
["OurMedia"].push(new Array("OurMedia_---169", "---169", "GETTING STARTED", "0"));
796 PdfArrange
.Base
.web_topics
["OurMedia"].push(new Array("OurMedia_SignUp", "SignUp", "SIGNING UP", "1"));
797 PdfArrange
.Base
.web_topics
["OurMedia"].push(new Array("OurMedia_---170", "---170", "AUDIO", "0"));
798 PdfArrange
.Base
.web_topics
["OurMedia"].push(new Array("OurMedia_OurmediaContributeAudio", "OurmediaContributeAudio", "ADD AUDIO FILES", "1"));
799 PdfArrange
.Base
.web_topics
["OurMedia"].push(new Array("OurMedia_OurmediaAudioPodcast", "OurmediaAudioPodcast", "PREPARE PODCAST", "1"));
800 PdfArrange
.Base
.web_list
.push("Paint");
801 PdfArrange
.Base
.web_topics
["Paint"] = new Array();
802 PdfArrange
.Base
.web_topics
["Paint"].push(new Array("Paint_TITLE171", "TITLE171", "PAINT ACTIVITY", "2"));
803 PdfArrange
.Base
.web_topics
["Paint"].push(new Array("Paint_---172", "---172", "INTRODUCTION", "0"));
804 PdfArrange
.Base
.web_topics
["Paint"].push(new Array("Paint_Introduction", "Introduction", "INTRODUCTION", "1"));
805 PdfArrange
.Base
.web_topics
["Paint"].push(new Array("Paint_---173", "---173", "GETTING STARTED", "0"));
806 PdfArrange
.Base
.web_topics
["Paint"].push(new Array("Paint_---174", "---174", "TUTORIALS", "0"));
807 PdfArrange
.Base
.web_topics
["Paint"].push(new Array("Paint_---175", "---175", "REFERENCE", "0"));
808 PdfArrange
.Base
.web_topics
["Paint"].push(new Array("Paint_---176", "---176", "APPENDICES", "0"));
809 PdfArrange
.Base
.web_topics
["Paint"].push(new Array("Paint_Credits", "Credits", "CREDITS", "1"));
810 PdfArrange
.Base
.web_list
.push("Pippy");
811 PdfArrange
.Base
.web_topics
["Pippy"] = new Array();
812 PdfArrange
.Base
.web_topics
["Pippy"].push(new Array("Pippy_TITLE177", "TITLE177", "PIPPY ACTIVITY", "2"));
813 PdfArrange
.Base
.web_topics
["Pippy"].push(new Array("Pippy_---178", "---178", "INTRODUCTION", "0"));
814 PdfArrange
.Base
.web_topics
["Pippy"].push(new Array("Pippy_Introduction", "Introduction", "INTRODUCTION", "1"));
815 PdfArrange
.Base
.web_topics
["Pippy"].push(new Array("Pippy_---179", "---179", "GETTING STARTED", "0"));
816 PdfArrange
.Base
.web_topics
["Pippy"].push(new Array("Pippy_---180", "---180", "TUTORIALS", "0"));
817 PdfArrange
.Base
.web_topics
["Pippy"].push(new Array("Pippy_---181", "---181", "REFERENCE", "0"));
818 PdfArrange
.Base
.web_topics
["Pippy"].push(new Array("Pippy_---182", "---182", "APPENDICES", "0"));
819 PdfArrange
.Base
.web_topics
["Pippy"].push(new Array("Pippy_Credits", "Credits", "CREDITS", "1"));
820 PdfArrange
.Base
.web_list
.push("Podcasting");
821 PdfArrange
.Base
.web_topics
["Podcasting"] = new Array();
822 PdfArrange
.Base
.web_topics
["Podcasting"].push(new Array("Podcasting_TITLE183", "TITLE183", "PODCASTING", "2"));
823 PdfArrange
.Base
.web_topics
["Podcasting"].push(new Array("Podcasting_---184", "---184", "INTRODUCTION", "0"));
824 PdfArrange
.Base
.web_topics
["Podcasting"].push(new Array("Podcasting_WhatisPodcasting", "WhatisPodcasting", "WHAT IS PODCASTING?", "1"));
825 PdfArrange
.Base
.web_topics
["Podcasting"].push(new Array("Podcasting_WhatisRSS", "WhatisRSS", "WHAT IS RSS?", "1"));
826 PdfArrange
.Base
.web_topics
["Podcasting"].push(new Array("Podcasting_WhatisXML", "WhatisXML", "WHAT IS XML?", "1"));
827 PdfArrange
.Base
.web_topics
["Podcasting"].push(new Array("Podcasting_ChoosingAPodcastCMS", "ChoosingAPodcastCMS", "CHOOSING A PODCAST SYSTEM", "1"));
828 PdfArrange
.Base
.web_topics
["Podcasting"].push(new Array("Podcasting_---185", "---185", "MAKE A PODCAST", "0"));
829 PdfArrange
.Base
.web_topics
["Podcasting"].push(new Array("Podcasting_MakePodcastOverview", "MakePodcastOverview", "OVERVIEW", "1"));
830 PdfArrange
.Base
.web_topics
["Podcasting"].push(new Array("Podcasting_MakeAPodcast", "MakeAPodcast", "MAKING A FEED", "1"));
831 PdfArrange
.Base
.web_topics
["Podcasting"].push(new Array("Podcasting_---186", "---186", "VIDEO", "0"));
832 PdfArrange
.Base
.web_topics
["Podcasting"].push(new Array("Podcasting_MediaRssOutline", "MediaRssOutline", "WHY CREATE VIDEO PODCASTS", "1"));
833 PdfArrange
.Base
.web_topics
["Podcasting"].push(new Array("Podcasting_---187", "---187", "STRATEGY", "0"));
834 PdfArrange
.Base
.web_topics
["Podcasting"].push(new Array("Podcasting_PubliciseMediaRss", "PubliciseMediaRss", "PUBLICISING ONLINE", "1"));
835 PdfArrange
.Base
.web_list
.push("PureData");
836 PdfArrange
.Base
.web_topics
["PureData"] = new Array();
837 PdfArrange
.Base
.web_topics
["PureData"].push(new Array("PureData_TITLE188", "TITLE188", "PURE DATA", "2"));
838 PdfArrange
.Base
.web_topics
["PureData"].push(new Array("PureData_---189", "---189", "INTRODUCTION", "0"));
839 PdfArrange
.Base
.web_topics
["PureData"].push(new Array("PureData_Introduction", "Introduction", "INTRODUCTION", "1"));
840 PdfArrange
.Base
.web_topics
["PureData"].push(new Array("PureData_WhatIsRealtimeGraphicalProgramming", "WhatIsRealtimeGraphicalProgramming", "GRAPHICAL PROGRAMMING", "1"));
841 PdfArrange
.Base
.web_topics
["PureData"].push(new Array("PureData_WhatIsDigitalAudio", "WhatIsDigitalAudio", "WHAT IS DIGITAL AUDIO?", "1"));
842 PdfArrange
.Base
.web_topics
["PureData"].push(new Array("PureData_---190", "---190", "INSTALLING", "0"));
843 PdfArrange
.Base
.web_topics
["PureData"].push(new Array("PureData_InstallingOSX", "InstallingOSX", "OSX", "1"));
844 PdfArrange
.Base
.web_topics
["PureData"].push(new Array("PureData_InstallingWindows", "InstallingWindows", "WINDOWS", "1"));
845 PdfArrange
.Base
.web_topics
["PureData"].push(new Array("PureData_InstallingUbuntu", "InstallingUbuntu", "UBUNTU", "1"));
846 PdfArrange
.Base
.web_topics
["PureData"].push(new Array("PureData_InstallingDebian", "InstallingDebian", "DEBIAN", "1"));
847 PdfArrange
.Base
.web_topics
["PureData"].push(new Array("PureData_---191", "---191", "GETTING STARTED", "0"));
848 PdfArrange
.Base
.web_topics
["PureData"].push(new Array("PureData_ConfiguringPD", "ConfiguringPD", "CONFIGURING", "1"));
849 PdfArrange
.Base
.web_topics
["PureData"].push(new Array("PureData_StartingPD", "StartingPD", "STARTING", "1"));
850 PdfArrange
.Base
.web_topics
["PureData"].push(new Array("PureData_---192", "---192", "THE INTERFACE", "0"));
851 PdfArrange
.Base
.web_topics
["PureData"].push(new Array("PureData_TheInterface", "TheInterface", "THE INTERFACE", "1"));
852 PdfArrange
.Base
.web_topics
["PureData"].push(new Array("PureData_TroubleShooting", "TroubleShooting", "TROUBLE SHOOTING", "1"));
853 PdfArrange
.Base
.web_topics
["PureData"].push(new Array("PureData_---193", "---193", "AUDIO TUTORIALS", "0"));
854 PdfArrange
.Base
.web_topics
["PureData"].push(new Array("PureData_SimpleSynthIntroduction", "SimpleSynthIntroduction", "SimpleSynthIntroduction", "1"));
855 PdfArrange
.Base
.web_topics
["PureData"].push(new Array("PureData_Oscillators", "Oscillators", "Oscillators", "1"));
856 PdfArrange
.Base
.web_topics
["PureData"].push(new Array("PureData_Frequency", "Frequency", "Frequency", "1"));
857 PdfArrange
.Base
.web_topics
["PureData"].push(new Array("PureData_AdditiveSynthesis", "AdditiveSynthesis", "AdditiveSynthesis", "1"));
858 PdfArrange
.Base
.web_topics
["PureData"].push(new Array("PureData_AmplitudeModulation", "AmplitudeModulation", "AmplitudeModulation", "1"));
859 PdfArrange
.Base
.web_topics
["PureData"].push(new Array("PureData_FrequencyModulation", "FrequencyModulation", "FrequencyModulation", "1"));
860 PdfArrange
.Base
.web_topics
["PureData"].push(new Array("PureData_SquarewavesAndLogic", "SquarewavesAndLogic", "SquarewavesAndLogic", "1"));
861 PdfArrange
.Base
.web_topics
["PureData"].push(new Array("PureData_Filters", "Filters", "Filters", "1"));
862 PdfArrange
.Base
.web_topics
["PureData"].push(new Array("PureData_EnvelopeGenerator", "EnvelopeGenerator", "EnvelopeGenerator", "1"));
863 PdfArrange
.Base
.web_topics
["PureData"].push(new Array("PureData_Amplifier", "Amplifier", "Amplifier", "1"));
864 PdfArrange
.Base
.web_topics
["PureData"].push(new Array("PureData_ControllingTheSynthesizer", "ControllingTheSynthesizer", "ControllingTheSynthesizer", "1"));
865 PdfArrange
.Base
.web_topics
["PureData"].push(new Array("PureData_StepSequencer", "StepSequencer", "StepSequencer", "1"));
866 PdfArrange
.Base
.web_topics
["PureData"].push(new Array("PureData_FourStageSynthesizer", "FourStageSynthesizer", "FourStageSynthesizer", "1"));
867 PdfArrange
.Base
.web_topics
["PureData"].push(new Array("PureData_AudioStreaming", "AudioStreaming", "AUDIO STREAMING", "1"));
868 PdfArrange
.Base
.web_topics
["PureData"].push(new Array("PureData_---194", "---194", "DATAFLOW TUTORIALS", "0"));
869 PdfArrange
.Base
.web_topics
["PureData"].push(new Array("PureData_DataFlowIntroduction", "DataFlowIntroduction", "DataFlowIntroduction", "1"));
870 PdfArrange
.Base
.web_topics
["PureData"].push(new Array("PureData_Messages", "Messages", "Messages", "1"));
871 PdfArrange
.Base
.web_topics
["PureData"].push(new Array("PureData_Math", "Math", "Math", "1"));
872 PdfArrange
.Base
.web_topics
["PureData"].push(new Array("PureData_OrderOfOperations", "OrderOfOperations", "OrderOfOperations", "1"));
873 PdfArrange
.Base
.web_topics
["PureData"].push(new Array("PureData_WirelessConnections", "WirelessConnections", "WirelessConnections", "1"));
874 PdfArrange
.Base
.web_topics
["PureData"].push(new Array("PureData_Subpatches", "Subpatches", "Subpatches", "1"));
875 PdfArrange
.Base
.web_topics
["PureData"].push(new Array("PureData_Abstractions", "Abstractions", "Abstractions", "1"));
876 PdfArrange
.Base
.web_topics
["PureData"].push(new Array("PureData_DollarSigns", "DollarSigns", "DollarSigns", "1"));
877 PdfArrange
.Base
.web_topics
["PureData"].push(new Array("PureData_GraphOnParent", "GraphOnParent", "GraphOnParent", "1"));
878 PdfArrange
.Base
.web_topics
["PureData"].push(new Array("PureData_ArraysGraphsTables", "ArraysGraphsTables", "ArraysGraphsTables", "1"));
879 PdfArrange
.Base
.web_topics
["PureData"].push(new Array("PureData_---195", "---195", "APPENDICES", "0"));
880 PdfArrange
.Base
.web_topics
["PureData"].push(new Array("PureData_PureGlossary", "PureGlossary", "GLOSSARY", "1"));
881 PdfArrange
.Base
.web_topics
["PureData"].push(new Array("PureData_ListofObjects", "ListofObjects", "LIST OF OBJECTS", "1"));
882 PdfArrange
.Base
.web_topics
["PureData"].push(new Array("PureData_PureLinks", "PureLinks", "LINKS", "1"));
883 PdfArrange
.Base
.web_topics
["PureData"].push(new Array("PureData_Credits", "Credits", "CREDITS", "1"));
884 PdfArrange
.Base
.web_list
.push("Record");
885 PdfArrange
.Base
.web_topics
["Record"] = new Array();
886 PdfArrange
.Base
.web_list
.push("RubyOnRails");
887 PdfArrange
.Base
.web_topics
["RubyOnRails"] = new Array();
888 PdfArrange
.Base
.web_topics
["RubyOnRails"].push(new Array("RubyOnRails_TITLE196", "TITLE196", "RUBY ON RAILS", "2"));
889 PdfArrange
.Base
.web_topics
["RubyOnRails"].push(new Array("RubyOnRails_---197", "---197", "INTRODUCTION", "0"));
890 PdfArrange
.Base
.web_topics
["RubyOnRails"].push(new Array("RubyOnRails_Introduction", "Introduction", "INTRODUCTION", "1"));
891 PdfArrange
.Base
.web_topics
["RubyOnRails"].push(new Array("RubyOnRails_HelloWorld", "HelloWorld", "HelloWorld", "1"));
892 PdfArrange
.Base
.web_topics
["RubyOnRails"].push(new Array("RubyOnRails_GettingStarted", "GettingStarted", "GettingStarted", "1"));
893 PdfArrange
.Base
.web_topics
["RubyOnRails"].push(new Array("RubyOnRails_ADigitalClock", "ADigitalClock", "ADigitalClock", "1"));
894 PdfArrange
.Base
.web_topics
["RubyOnRails"].push(new Array("RubyOnRails_---198", "---198", "APPENDICES", "0"));
895 PdfArrange
.Base
.web_topics
["RubyOnRails"].push(new Array("RubyOnRails_Credits", "Credits", "CREDITS", "1"));
896 PdfArrange
.Base
.web_list
.push("Scribus");
897 PdfArrange
.Base
.web_topics
["Scribus"] = new Array();
898 PdfArrange
.Base
.web_topics
["Scribus"].push(new Array("Scribus_TITLE199", "TITLE199", "SCRIBUS", "2"));
899 PdfArrange
.Base
.web_topics
["Scribus"].push(new Array("Scribus_---200", "---200", "INTRODUCTION", "0"));
900 PdfArrange
.Base
.web_topics
["Scribus"].push(new Array("Scribus_Introduction", "Introduction", "INTRODUCTION", "1"));
901 PdfArrange
.Base
.web_topics
["Scribus"].push(new Array("Scribus_---201", "---201", "INSTALLING", "0"));
902 PdfArrange
.Base
.web_topics
["Scribus"].push(new Array("Scribus_InstallingWindows", "InstallingWindows", "WINDOWS", "1"));
903 PdfArrange
.Base
.web_topics
["Scribus"].push(new Array("Scribus_InstallGSViewWin", "InstallGSViewWin", "GHOSTSCRIPT (WIN)", "1"));
904 PdfArrange
.Base
.web_topics
["Scribus"].push(new Array("Scribus_RegisterGSWin", "RegisterGSWin", "REGISTER GS (WIN)", "1"));
905 PdfArrange
.Base
.web_topics
["Scribus"].push(new Array("Scribus_---202", "---202", "BASIC USE", "0"));
906 PdfArrange
.Base
.web_topics
["Scribus"].push(new Array("Scribus_CreateNewFile", "CreateNewFile", "CREATE A FILE", "1"));
907 PdfArrange
.Base
.web_topics
["Scribus"].push(new Array("Scribus_---203", "---203", "TUTORIALS", "0"));
908 PdfArrange
.Base
.web_topics
["Scribus"].push(new Array("Scribus_MakingANewsletter", "MakingANewsletter", "MAKE A NEWSLETTER", "1"));
909 PdfArrange
.Base
.web_list
.push("Songbird");
910 PdfArrange
.Base
.web_topics
["Songbird"] = new Array();
911 PdfArrange
.Base
.web_topics
["Songbird"].push(new Array("Songbird_TITLE204", "TITLE204", "SONGBIRD", "2"));
912 PdfArrange
.Base
.web_topics
["Songbird"].push(new Array("Songbird_Introduction", "Introduction", "INTRODUCTION", "1"));
913 PdfArrange
.Base
.web_topics
["Songbird"].push(new Array("Songbird_---205", "---205", "INSTALLING", "0"));
914 PdfArrange
.Base
.web_topics
["Songbird"].push(new Array("Songbird_InstallingSongbird", "InstallingSongbird", "WINDOWS", "1"));
915 PdfArrange
.Base
.web_topics
["Songbird"].push(new Array("Songbird_---206", "---206", "PODCASTS", "0"));
916 PdfArrange
.Base
.web_topics
["Songbird"].push(new Array("Songbird_SubscribingPodcastSongbird", "SubscribingPodcastSongbird", "SUBSCRIBING TO PODCASTS", "1"));
917 PdfArrange
.Base
.web_list
.push("StreamingConferences");
918 PdfArrange
.Base
.web_topics
["StreamingConferences"] = new Array();
919 PdfArrange
.Base
.web_topics
["StreamingConferences"].push(new Array("StreamingConferences_TITLE207", "TITLE207", "STREAMING EVENTS", "2"));
920 PdfArrange
.Base
.web_topics
["StreamingConferences"].push(new Array("StreamingConferences_---208", "---208", "INTRODUCTION", "0"));
921 PdfArrange
.Base
.web_topics
["StreamingConferences"].push(new Array("StreamingConferences_Introduction", "Introduction", "INTRODUCTION", "1"));
922 PdfArrange
.Base
.web_topics
["StreamingConferences"].push(new Array("StreamingConferences_AboutThisManual", "AboutThisManual", "ABOUT THIS MANUAL", "1"));
923 PdfArrange
.Base
.web_topics
["StreamingConferences"].push(new Array("StreamingConferences_---209", "---209", "SOFTWARE - ENCODERS", "0"));
924 PdfArrange
.Base
.web_topics
["StreamingConferences"].push(new Array("StreamingConferences_TSS", "TSS", "TSS", "1"));
925 PdfArrange
.Base
.web_topics
["StreamingConferences"].push(new Array("StreamingConferences_---210", "---210", "APPENDICES", "0"));
926 PdfArrange
.Base
.web_topics
["StreamingConferences"].push(new Array("StreamingConferences_Credits", "Credits", "CREDITS", "1"));
927 PdfArrange
.Base
.web_list
.push("Sugar");
928 PdfArrange
.Base
.web_topics
["Sugar"] = new Array();
929 PdfArrange
.Base
.web_topics
["Sugar"].push(new Array("Sugar_---211", "---211", "INTRODUCTION", "0"));
930 PdfArrange
.Base
.web_topics
["Sugar"].push(new Array("Sugar_Introduction", "Introduction", "What is Sugar?", "1"));
931 PdfArrange
.Base
.web_topics
["Sugar"].push(new Array("Sugar_---212", "---212", "INSTALLING", "0"));
932 PdfArrange
.Base
.web_topics
["Sugar"].push(new Array("Sugar_Installing", "Installing", "Getting Sugar", "1"));
933 PdfArrange
.Base
.web_topics
["Sugar"].push(new Array("Sugar_Personalising", "Personalising", "Personalising Sugar", "1"));
934 PdfArrange
.Base
.web_topics
["Sugar"].push(new Array("Sugar_---213", "---213", "INTERFACE", "0"));
935 PdfArrange
.Base
.web_topics
["Sugar"].push(new Array("Sugar_Interface", "Interface", "The Sugar User Interface", "1"));
936 PdfArrange
.Base
.web_topics
["Sugar"].push(new Array("Sugar_HomeView", "HomeView", " Home View", "1"));
937 PdfArrange
.Base
.web_topics
["Sugar"].push(new Array("Sugar_ActivityView", "ActivityView", "Activity View", "1"));
938 PdfArrange
.Base
.web_topics
["Sugar"].push(new Array("Sugar_NeighbourhoodView", "NeighbourhoodView", "Neighbourhood View", "1"));
939 PdfArrange
.Base
.web_topics
["Sugar"].push(new Array("Sugar_GroupView", "GroupView", "Group View", "1"));
940 PdfArrange
.Base
.web_topics
["Sugar"].push(new Array("Sugar_TheFrame", "TheFrame", "The Frame", "1"));
941 PdfArrange
.Base
.web_topics
["Sugar"].push(new Array("Sugar_TheJournal", "TheJournal", "The Journal", "1"));
942 PdfArrange
.Base
.web_topics
["Sugar"].push(new Array("Sugar_---214", "---214", "ACTIVITIES", "0"));
943 PdfArrange
.Base
.web_topics
["Sugar"].push(new Array("Sugar_WhatIsAnActivity", "WhatIsAnActivity", "What Is An Activity?", "1"));
944 PdfArrange
.Base
.web_topics
["Sugar"].push(new Array("Sugar_LaunchingActivities", "LaunchingActivities", "Launching Activities", "1"));
945 PdfArrange
.Base
.web_topics
["Sugar"].push(new Array("Sugar_Overview", "Overview", "Overview", "1"));
946 PdfArrange
.Base
.web_topics
["Sugar"].push(new Array("Sugar_Collaborating", "Collaborating", "Collaborating", "1"));
947 PdfArrange
.Base
.web_topics
["Sugar"].push(new Array("Sugar_JoiningActivities", "JoiningActivities", " Joining Activities", "1"));
948 PdfArrange
.Base
.web_topics
["Sugar"].push(new Array("Sugar_SwitichingActivities", "SwitichingActivities", "Switiching Activities", "1"));
949 PdfArrange
.Base
.web_topics
["Sugar"].push(new Array("Sugar_ExitingActivities", "ExitingActivities", "Exiting Activities", "1"));
950 PdfArrange
.Base
.web_topics
["Sugar"].push(new Array("Sugar_InstallingActivities", "InstallingActivities", "Installing Activities", "1"));
951 PdfArrange
.Base
.web_topics
["Sugar"].push(new Array("Sugar_Beyondactivities", "Beyondactivities", "Going Beyond Activities", "1"));
952 PdfArrange
.Base
.web_topics
["Sugar"].push(new Array("Sugar_FindingActivities", "FindingActivities", " Finding Activities", "1"));
953 PdfArrange
.Base
.web_topics
["Sugar"].push(new Array("Sugar_---215", "---215", "NETWORKS", "0"));
954 PdfArrange
.Base
.web_topics
["Sugar"].push(new Array("Sugar_ConnectingNetwork", "ConnectingNetwork", "Getting Connected", "1"));
955 PdfArrange
.Base
.web_topics
["Sugar"].push(new Array("Sugar_---216", "---216", "MAINTENANCE", "0"));
956 PdfArrange
.Base
.web_topics
["Sugar"].push(new Array("Sugar_BackingUp", "BackingUp", " Backing Up", "1"));
957 PdfArrange
.Base
.web_topics
["Sugar"].push(new Array("Sugar_Updating", "Updating", "Updating Sugar", "1"));
958 PdfArrange
.Base
.web_topics
["Sugar"].push(new Array("Sugar_ConservingDiskspace", "ConservingDiskspace", "Conserving Disk Space", "1"));
959 PdfArrange
.Base
.web_topics
["Sugar"].push(new Array("Sugar_---217", "---217", "EXTENDING SUGAR", "0"));
960 PdfArrange
.Base
.web_topics
["Sugar"].push(new Array("Sugar_CreatingActivities", "CreatingActivities", "Creating Activities", "1"));
961 PdfArrange
.Base
.web_topics
["Sugar"].push(new Array("Sugar_RunningLiuxApplications", "RunningLiuxApplications", "Running GNU/Linux Applications", "1"));
962 PdfArrange
.Base
.web_topics
["Sugar"].push(new Array("Sugar_DevelopSugar", "DevelopSugar", "Develop Sugar", "1"));
963 PdfArrange
.Base
.web_topics
["Sugar"].push(new Array("Sugar_---218", "---218", "APPENDICES", "0"));
964 PdfArrange
.Base
.web_topics
["Sugar"].push(new Array("Sugar_Troubleshooting", "Troubleshooting", "Troubleshooting Guide", "1"));
965 PdfArrange
.Base
.web_topics
["Sugar"].push(new Array("Sugar_Glossary", "Glossary", "Glossary", "1"));
966 PdfArrange
.Base
.web_topics
["Sugar"].push(new Array("Sugar_Credits", "Credits", "Credits", "1"));
967 PdfArrange
.Base
.web_list
.push("TamTamEdit");
968 PdfArrange
.Base
.web_topics
["TamTamEdit"] = new Array();
969 PdfArrange
.Base
.web_topics
["TamTamEdit"].push(new Array("TamTamEdit_TITLE219", "TITLE219", "TAMTAMEDIT ACTIVITY", "2"));
970 PdfArrange
.Base
.web_topics
["TamTamEdit"].push(new Array("TamTamEdit_---220", "---220", "INTRODUCTION", "0"));
971 PdfArrange
.Base
.web_topics
["TamTamEdit"].push(new Array("TamTamEdit_Introduction", "Introduction", "INTRODUCTION", "1"));
972 PdfArrange
.Base
.web_topics
["TamTamEdit"].push(new Array("TamTamEdit_---221", "---221", "GETTING STARTED", "0"));
973 PdfArrange
.Base
.web_topics
["TamTamEdit"].push(new Array("TamTamEdit_---222", "---222", "TUTORIALS", "0"));
974 PdfArrange
.Base
.web_topics
["TamTamEdit"].push(new Array("TamTamEdit_---223", "---223", "REFERENCE", "0"));
975 PdfArrange
.Base
.web_topics
["TamTamEdit"].push(new Array("TamTamEdit_---224", "---224", "APPENDICES", "0"));
976 PdfArrange
.Base
.web_topics
["TamTamEdit"].push(new Array("TamTamEdit_Credits", "Credits", "CREDITS", "1"));
977 PdfArrange
.Base
.web_list
.push("TamTamJam");
978 PdfArrange
.Base
.web_topics
["TamTamJam"] = new Array();
979 PdfArrange
.Base
.web_list
.push("TamTamMini");
980 PdfArrange
.Base
.web_topics
["TamTamMini"] = new Array();
981 PdfArrange
.Base
.web_topics
["TamTamMini"].push(new Array("TamTamMini_TITLE225", "TITLE225", "TAMTAMMINI ACTIVITY", "2"));
982 PdfArrange
.Base
.web_topics
["TamTamMini"].push(new Array("TamTamMini_---226", "---226", "INTRODUCTION", "0"));
983 PdfArrange
.Base
.web_topics
["TamTamMini"].push(new Array("TamTamMini_Introduction", "Introduction", "INTRODUCTION", "1"));
984 PdfArrange
.Base
.web_topics
["TamTamMini"].push(new Array("TamTamMini_---227", "---227", "GETTING STARTED", "0"));
985 PdfArrange
.Base
.web_topics
["TamTamMini"].push(new Array("TamTamMini_---228", "---228", "TUTORIALS", "0"));
986 PdfArrange
.Base
.web_topics
["TamTamMini"].push(new Array("TamTamMini_---229", "---229", "REFERENCE", "0"));
987 PdfArrange
.Base
.web_topics
["TamTamMini"].push(new Array("TamTamMini_---230", "---230", "APPENDICES", "0"));
988 PdfArrange
.Base
.web_topics
["TamTamMini"].push(new Array("TamTamMini_Credits", "Credits", "CREDITS", "1"));
989 PdfArrange
.Base
.web_list
.push("TamTamSynthLab");
990 PdfArrange
.Base
.web_topics
["TamTamSynthLab"] = new Array();
991 PdfArrange
.Base
.web_topics
["TamTamSynthLab"].push(new Array("TamTamSynthLab_TITLE231", "TITLE231", "TAMTAMSYNTH ACTIVITY", "2"));
992 PdfArrange
.Base
.web_topics
["TamTamSynthLab"].push(new Array("TamTamSynthLab_---232", "---232", "INTRODUCTION", "0"));
993 PdfArrange
.Base
.web_topics
["TamTamSynthLab"].push(new Array("TamTamSynthLab_Introduction", "Introduction", "INTRODUCTION", "1"));
994 PdfArrange
.Base
.web_topics
["TamTamSynthLab"].push(new Array("TamTamSynthLab_---233", "---233", "GETTING STARTED", "0"));
995 PdfArrange
.Base
.web_topics
["TamTamSynthLab"].push(new Array("TamTamSynthLab_---234", "---234", "TUTORIALS", "0"));
996 PdfArrange
.Base
.web_topics
["TamTamSynthLab"].push(new Array("TamTamSynthLab_---235", "---235", "REFERENCE", "0"));
997 PdfArrange
.Base
.web_topics
["TamTamSynthLab"].push(new Array("TamTamSynthLab_---236", "---236", "APPENDICES", "0"));
998 PdfArrange
.Base
.web_topics
["TamTamSynthLab"].push(new Array("TamTamSynthLab_Credits", "Credits", "CREDITS", "1"));
999 PdfArrange
.Base
.web_list
.push("Terminal");
1000 PdfArrange
.Base
.web_topics
["Terminal"] = new Array();
1001 PdfArrange
.Base
.web_list
.push("TheoraCookbook");
1002 PdfArrange
.Base
.web_topics
["TheoraCookbook"] = new Array();
1003 PdfArrange
.Base
.web_topics
["TheoraCookbook"].push(new Array("TheoraCookbook_TITLE237", "TITLE237", "OGG THEORA", "2"));
1004 PdfArrange
.Base
.web_topics
["TheoraCookbook"].push(new Array("TheoraCookbook_---238", "---238", "INTRODUCTION", "0"));
1005 PdfArrange
.Base
.web_topics
["TheoraCookbook"].push(new Array("TheoraCookbook_Introduction", "Introduction", "INTRODUCTION", "1"));
1006 PdfArrange
.Base
.web_topics
["TheoraCookbook"].push(new Array("TheoraCookbook_---239", "---239", "STREAMING", "0"));
1007 PdfArrange
.Base
.web_topics
["TheoraCookbook"].push(new Array("TheoraCookbook_FfmpegStreaming", "FfmpegStreaming", "DV STREAMING", "1"));
1008 PdfArrange
.Base
.web_topics
["TheoraCookbook"].push(new Array("TheoraCookbook_VLCSreaming", "VLCSreaming", "WITH VLC", "1"));
1009 PdfArrange
.Base
.web_topics
["TheoraCookbook"].push(new Array("TheoraCookbook_---240", "---240", "PUTTING IT ONLINE", "0"));
1010 PdfArrange
.Base
.web_topics
["TheoraCookbook"].push(new Array("TheoraCookbook_Cortado", "Cortado", "CORTADO", "1"));
1011 PdfArrange
.Base
.web_topics
["TheoraCookbook"].push(new Array("TheoraCookbook_---241", "---241", "SERVERS", "0"));
1012 PdfArrange
.Base
.web_topics
["TheoraCookbook"].push(new Array("TheoraCookbook_Jorbis", "Jorbis", "JORBIS", "1"));
1013 PdfArrange
.Base
.web_topics
["TheoraCookbook"].push(new Array("TheoraCookbook_---242", "---242", "WORKING WITH OGG FILES", "0"));
1014 PdfArrange
.Base
.web_topics
["TheoraCookbook"].push(new Array("TheoraCookbook_ManipulateOggTheoraFiles", "ManipulateOggTheoraFiles", "OGG VIDEO TOOLS", "1"));
1015 PdfArrange
.Base
.web_topics
["TheoraCookbook"].push(new Array("TheoraCookbook_---243", "---243", "TIPS N TRICKS", "0"));
1016 PdfArrange
.Base
.web_topics
["TheoraCookbook"].push(new Array("TheoraCookbook_HandlingFirewireCables", "HandlingFirewireCables", "HANDLING FIREWIRE CABLES", "1"));
1017 PdfArrange
.Base
.web_topics
["TheoraCookbook"].push(new Array("TheoraCookbook_JoinOgg", "JoinOgg", "JOIN 2 OGG FILES", "1"));
1018 PdfArrange
.Base
.web_topics
["TheoraCookbook"].push(new Array("TheoraCookbook_---244", "---244", "APPENDICES", "0"));
1019 PdfArrange
.Base
.web_topics
["TheoraCookbook"].push(new Array("TheoraCookbook_Help", "Help", "HELP", "1"));
1020 PdfArrange
.Base
.web_topics
["TheoraCookbook"].push(new Array("TheoraCookbook_Glossary", "Glossary", "GLOSSARY", "1"));
1021 PdfArrange
.Base
.web_topics
["TheoraCookbook"].push(new Array("TheoraCookbook_Credits", "Credits", "CREDITS", "1"));
1022 PdfArrange
.Base
.web_list
.push("TurtleArt");
1023 PdfArrange
.Base
.web_topics
["TurtleArt"] = new Array();
1024 PdfArrange
.Base
.web_topics
["TurtleArt"].push(new Array("TurtleArt_TITLE245", "TITLE245", "TURTLE ART", "2"));
1025 PdfArrange
.Base
.web_topics
["TurtleArt"].push(new Array("TurtleArt_---246", "---246", "INTRODUCTION", "0"));
1026 PdfArrange
.Base
.web_topics
["TurtleArt"].push(new Array("TurtleArt_Introduction", "Introduction", "INTRODUCTION", "1"));
1027 PdfArrange
.Base
.web_topics
["TurtleArt"].push(new Array("TurtleArt_---247", "---247", "GETTING STARTED", "0"));
1028 PdfArrange
.Base
.web_topics
["TurtleArt"].push(new Array("TurtleArt_TurtleArtGetStart", "TurtleArtGetStart", "GETTING STARTED", "1"));
1029 PdfArrange
.Base
.web_topics
["TurtleArt"].push(new Array("TurtleArt_StarterCommands", "StarterCommands", "STARTER COMMANDS", "1"));
1030 PdfArrange
.Base
.web_topics
["TurtleArt"].push(new Array("TurtleArt_---248", "---248", "USING", "0"));
1031 PdfArrange
.Base
.web_topics
["TurtleArt"].push(new Array("TurtleArt_PenCommands", "PenCommands", "PEN COMMANDS", "1"));
1032 PdfArrange
.Base
.web_topics
["TurtleArt"].push(new Array("TurtleArt_PenColors", "PenColors", "PEN COLORS", "1"));
1033 PdfArrange
.Base
.web_topics
["TurtleArt"].push(new Array("TurtleArt_TryTurtleArt", "TryTurtleArt", "TRY TURTLE ART", "1"));
1034 PdfArrange
.Base
.web_topics
["TurtleArt"].push(new Array("TurtleArt_TurtleArtLetters", "TurtleArtLetters", "TURTLE ART LETTERS", "1"));
1035 PdfArrange
.Base
.web_topics
["TurtleArt"].push(new Array("TurtleArt_RepeatingCommands", "RepeatingCommands", "REPEATING COMMANDS", "1"));
1036 PdfArrange
.Base
.web_topics
["TurtleArt"].push(new Array("TurtleArt_NumbersandCommands", "NumbersandCommands", "NUMBERS AND COMMANDS", "1"));
1037 PdfArrange
.Base
.web_topics
["TurtleArt"].push(new Array("TurtleArt_ShapesandSpectrum", "ShapesandSpectrum", "SHAPES AND SPECTRUM", "1"));
1038 PdfArrange
.Base
.web_topics
["TurtleArt"].push(new Array("TurtleArt_---249", "---249", "APPENDICES", "0"));
1039 PdfArrange
.Base
.web_topics
["TurtleArt"].push(new Array("TurtleArt_Credits", "Credits", "CREDITS", "1"));
1040 PdfArrange
.Base
.web_list
.push("Ubuntu");
1041 PdfArrange
.Base
.web_topics
["Ubuntu"] = new Array();
1042 PdfArrange
.Base
.web_topics
["Ubuntu"].push(new Array("Ubuntu_TITLE250", "TITLE250", "TITLE", "2"));
1043 PdfArrange
.Base
.web_topics
["Ubuntu"].push(new Array("Ubuntu_---251", "---251", "yaya", "0"));
1044 PdfArrange
.Base
.web_topics
["Ubuntu"].push(new Array("Ubuntu_Introduction", "Introduction", "Introduction", "1"));
1045 PdfArrange
.Base
.web_list
.push("Ubuntu_Desktop");
1046 PdfArrange
.Base
.web_topics
["Ubuntu_Desktop"] = new Array();
1047 PdfArrange
.Base
.web_topics
["Ubuntu_Desktop"].push(new Array("Ubuntu_Desktop_TITLE252", "TITLE252", "UBUNTU DESKTOP", "2"));
1048 PdfArrange
.Base
.web_topics
["Ubuntu_Desktop"].push(new Array("Ubuntu_Desktop_---253", "---253", "INTRODUCTION", "0"));
1049 PdfArrange
.Base
.web_topics
["Ubuntu_Desktop"].push(new Array("Ubuntu_Desktop_Introduction", "Introduction", "INTRODUCTION", "1"));
1050 PdfArrange
.Base
.web_topics
["Ubuntu_Desktop"].push(new Array("Ubuntu_Desktop_TargetAudience", "TargetAudience", "TARGET AUDIENCE", "1"));
1051 PdfArrange
.Base
.web_topics
["Ubuntu_Desktop"].push(new Array("Ubuntu_Desktop_StudentResponsibilities", "StudentResponsibilities", "STUDENT RESPONSIBILITIES", "1"));
1052 PdfArrange
.Base
.web_topics
["Ubuntu_Desktop"].push(new Array("Ubuntu_Desktop_SessionPlan", "SessionPlan", "SESSION PLAN", "1"));
1053 PdfArrange
.Base
.web_topics
["Ubuntu_Desktop"].push(new Array("Ubuntu_Desktop_InstructorResponsibilities", "InstructorResponsibilities", "INSTRUCTOR RESPONSIBILITIES", "1"));
1054 PdfArrange
.Base
.web_topics
["Ubuntu_Desktop"].push(new Array("Ubuntu_Desktop_Summary", "Summary", "SUMMARY", "1"));
1055 PdfArrange
.Base
.web_topics
["Ubuntu_Desktop"].push(new Array("Ubuntu_Desktop_---254", "---254", "BACKGROUND", "0"));
1056 PdfArrange
.Base
.web_topics
["Ubuntu_Desktop"].push(new Array("Ubuntu_Desktop_BackgroundObjectives", "BackgroundObjectives", "OBJECTIVES", "1"));
1057 PdfArrange
.Base
.web_topics
["Ubuntu_Desktop"].push(new Array("Ubuntu_Desktop_AboutOpenSource", "AboutOpenSource", "ABOUT OPEN SOURCE", "1"));
1058 PdfArrange
.Base
.web_topics
["Ubuntu_Desktop"].push(new Array("Ubuntu_Desktop_AboutUbuntu", "AboutUbuntu", "ABOUT UBUNTU", "1"));
1059 PdfArrange
.Base
.web_topics
["Ubuntu_Desktop"].push(new Array("Ubuntu_Desktop_UBuntuVWindows", "UBuntuVWindows", "UBUNTU vs WINDOWS", "1"));
1060 PdfArrange
.Base
.web_topics
["Ubuntu_Desktop"].push(new Array("Ubuntu_Desktop_BackgroundSummaryReview", "BackgroundSummaryReview", "SUMMARY AND REVIEW", "1"));
1061 PdfArrange
.Base
.web_topics
["Ubuntu_Desktop"].push(new Array("Ubuntu_Desktop_---255", "---255", "UBUNTU DESKTOP", "0"));
1062 PdfArrange
.Base
.web_topics
["Ubuntu_Desktop"].push(new Array("Ubuntu_Desktop_DesktopObjectives", "DesktopObjectives", "OBJECTIVES", "1"));
1063 PdfArrange
.Base
.web_topics
["Ubuntu_Desktop"].push(new Array("Ubuntu_Desktop_DesktopComponents", "DesktopComponents", "DESKTOP COMPONENTS", "1"));
1064 PdfArrange
.Base
.web_topics
["Ubuntu_Desktop"].push(new Array("Ubuntu_Desktop_ChangingLanguage", "ChangingLanguage", "CHANGING LANGUAGE", "1"));
1065 PdfArrange
.Base
.web_topics
["Ubuntu_Desktop"].push(new Array("Ubuntu_Desktop_UserAccounts", "UserAccounts", "USER ACCOUNTS", "1"));
1066 PdfArrange
.Base
.web_topics
["Ubuntu_Desktop"].push(new Array("Ubuntu_Desktop_AddingRemovingApplications", "AddingRemovingApplications", "ADDING / REMOVING APPLICATIONS", "1"));
1067 PdfArrange
.Base
.web_topics
["Ubuntu_Desktop"].push(new Array("Ubuntu_Desktop_DesktopEffects", "DesktopEffects", "DESKTOP EFFECTS", "1"));
1068 PdfArrange
.Base
.web_topics
["Ubuntu_Desktop"].push(new Array("Ubuntu_Desktop_DesktopSearch", "DesktopSearch", "SEARCH", "1"));
1069 PdfArrange
.Base
.web_topics
["Ubuntu_Desktop"].push(new Array("Ubuntu_Desktop_DesktopSummaryReview", "DesktopSummaryReview", "SUMMARY AND REVIEW", "1"));
1070 PdfArrange
.Base
.web_topics
["Ubuntu_Desktop"].push(new Array("Ubuntu_Desktop_---256", "---256", "APPENDICES", "0"));
1071 PdfArrange
.Base
.web_topics
["Ubuntu_Desktop"].push(new Array("Ubuntu_Desktop_Credits", "Credits", "CREDITS", "1"));
1072 PdfArrange
.Base
.web_list
.push("VLC");
1073 PdfArrange
.Base
.web_topics
["VLC"] = new Array();
1074 PdfArrange
.Base
.web_topics
["VLC"].push(new Array("VLC_TITLE257", "TITLE257", "VLC", "2"));
1075 PdfArrange
.Base
.web_topics
["VLC"].push(new Array("VLC_Introduction", "Introduction", "INTRODUCTION", "1"));
1076 PdfArrange
.Base
.web_topics
["VLC"].push(new Array("VLC_---258", "---258", "INSTALLING", "0"));
1077 PdfArrange
.Base
.web_topics
["VLC"].push(new Array("VLC_InstallingUbuntu", "InstallingUbuntu", "UBUNTU", "1"));
1078 PdfArrange
.Base
.web_topics
["VLC"].push(new Array("VLC_InstallingOSX", "InstallingOSX", "OSX", "1"));
1079 PdfArrange
.Base
.web_topics
["VLC"].push(new Array("VLC_InstallingWindows", "InstallingWindows", "WINDOWS", "1"));
1080 PdfArrange
.Base
.web_topics
["VLC"].push(new Array("VLC_InstallingLinux", "InstallingLinux", "LINUX (advanced)", "1"));
1081 PdfArrange
.Base
.web_topics
["VLC"].push(new Array("VLC_---259", "---259", "GETTING STARTED", "0"));
1082 PdfArrange
.Base
.web_topics
["VLC"].push(new Array("VLC_Interface", "Interface", "INTERFACE", "1"));
1083 PdfArrange
.Base
.web_topics
["VLC"].push(new Array("VLC_---260", "---260", "PLAYING CONTENT", "0"));
1084 PdfArrange
.Base
.web_topics
["VLC"].push(new Array("VLC_PlayHTTPStream", "PlayHTTPStream", "PLAYING STREAMS", "1"));
1085 PdfArrange
.Base
.web_topics
["VLC"].push(new Array("VLC_VlcViewingSubs", "VlcViewingSubs", "VIEWING SUBTITLES", "1"));
1086 PdfArrange
.Base
.web_topics
["VLC"].push(new Array("VLC_ViewingDVDTS", "ViewingDVDTS", "PLAYING VIDEO_TS FILES", "1"));
1087 PdfArrange
.Base
.web_topics
["VLC"].push(new Array("VLC_---261", "---261", "STREAMING", "0"));
1088 PdfArrange
.Base
.web_topics
["VLC"].push(new Array("VLC_StreamingIntro", "StreamingIntro", "WHAT IS STREAMING?", "1"));
1089 PdfArrange
.Base
.web_topics
["VLC"].push(new Array("VLC_StreamingIcecast", "StreamingIcecast", "STREAMING TO ICECAST", "1"));
1090 PdfArrange
.Base
.web_topics
["VLC"].push(new Array("VLC_StreamingWizard", "StreamingWizard", "STREAMING WIZARD", "1"));
1091 PdfArrange
.Base
.web_topics
["VLC"].push(new Array("VLC_---262", "---262", "ENCODING AUDIO", "0"));
1092 PdfArrange
.Base
.web_topics
["VLC"].push(new Array("VLC_RipCD", "RipCD", "RIPPING CDS", "1"));
1093 PdfArrange
.Base
.web_topics
["VLC"].push(new Array("VLC_---263", "---263", "ENCODING VIDEO", "0"));
1094 PdfArrange
.Base
.web_topics
["VLC"].push(new Array("VLC_EncodeVideoinVLC", "EncodeVideoinVLC", "BASIC ENCODING", "1"));
1095 PdfArrange
.Base
.web_topics
["VLC"].push(new Array("VLC_CreateScreenshots", "CreateScreenshots", "GRABBING STILLS", "1"));
1096 PdfArrange
.Base
.web_topics
["VLC"].push(new Array("VLC_---264", "---264", "APPENDICES", "0"));
1097 PdfArrange
.Base
.web_topics
["VLC"].push(new Array("VLC_Glossary", "Glossary", "GLOSSARY", "1"));
1098 PdfArrange
.Base
.web_topics
["VLC"].push(new Array("VLC_Links", "Links", "LINKS", "1"));
1099 PdfArrange
.Base
.web_topics
["VLC"].push(new Array("VLC_Credits", "Credits", "CREDITS", "1"));
1100 PdfArrange
.Base
.web_list
.push("VideoProduction");
1101 PdfArrange
.Base
.web_topics
["VideoProduction"] = new Array();
1102 PdfArrange
.Base
.web_topics
["VideoProduction"].push(new Array("VideoProduction_TITLE265", "TITLE265", "Introduction", "2"));
1103 PdfArrange
.Base
.web_topics
["VideoProduction"].push(new Array("VideoProduction_Introduction", "Introduction", "Introduction", "1"));
1104 PdfArrange
.Base
.web_topics
["VideoProduction"].push(new Array("VideoProduction_---266", "---266", "Working Out Your Idea", "0"));
1105 PdfArrange
.Base
.web_topics
["VideoProduction"].push(new Array("VideoProduction_WorkingOutYourIdea", "WorkingOutYourIdea", "Working Out Your Idea", "1"));
1106 PdfArrange
.Base
.web_topics
["VideoProduction"].push(new Array("VideoProduction_WhatDoYouWantToCommunicateAndWhy", "WhatDoYouWantToCommunicateAndWhy", "What Do You Want To Communicate And Why", "1"));
1107 PdfArrange
.Base
.web_list
.push("WikimediaCommons");
1108 PdfArrange
.Base
.web_topics
["WikimediaCommons"] = new Array();
1109 PdfArrange
.Base
.web_topics
["WikimediaCommons"].push(new Array("WikimediaCommons_TITLE267", "TITLE267", "Wikimedia Commons", "2"));
1110 PdfArrange
.Base
.web_topics
["WikimediaCommons"].push(new Array("WikimediaCommons_---268", "---268", "Introduction", "0"));
1111 PdfArrange
.Base
.web_topics
["WikimediaCommons"].push(new Array("WikimediaCommons_Introduction", "Introduction", "Introduction", "1"));
1112 PdfArrange
.Base
.web_topics
["WikimediaCommons"].push(new Array("WikimediaCommons_---269", "---269", "Getting started", "0"));
1113 PdfArrange
.Base
.web_topics
["WikimediaCommons"].push(new Array("WikimediaCommons_MediaWiki", "MediaWiki", "About MediaWiki software", "1"));
1114 PdfArrange
.Base
.web_topics
["WikimediaCommons"].push(new Array("WikimediaCommons_UserAccount", "UserAccount", "Log in / create account", "1"));
1115 PdfArrange
.Base
.web_topics
["WikimediaCommons"].push(new Array("WikimediaCommons_Uploading", "Uploading", "Uploading your first file", "1"));
1116 PdfArrange
.Base
.web_topics
["WikimediaCommons"].push(new Array("WikimediaCommons_License", "License", "Choosing a license", "1"));
1117 PdfArrange
.Base
.web_topics
["WikimediaCommons"].push(new Array("WikimediaCommons_InsertingMedia", "InsertingMedia", "Inserting an image into a page", "1"));
1118 PdfArrange
.Base
.web_topics
["WikimediaCommons"].push(new Array("WikimediaCommons_---270", "---270", "Format-specific considerations", "0"));
1119 PdfArrange
.Base
.web_topics
["WikimediaCommons"].push(new Array("WikimediaCommons_SVG", "SVG", "SVG", "1"));
1120 PdfArrange
.Base
.web_topics
["WikimediaCommons"].push(new Array("WikimediaCommons_---271", "---271", "Staying involved", "0"));
1121 PdfArrange
.Base
.web_topics
["WikimediaCommons"].push(new Array("WikimediaCommons_Publicising", "Publicising", "Publicising your work", "1"));
1122 PdfArrange
.Base
.web_topics
["WikimediaCommons"].push(new Array("WikimediaCommons_ToolsResources", "ToolsResources", "Tools and resources", "1"));
1123 PdfArrange
.Base
.web_topics
["WikimediaCommons"].push(new Array("WikimediaCommons_Credits", "Credits", "Credits", "1"));
1124 PdfArrange
.Base
.web_list
.push("WordPress");
1125 PdfArrange
.Base
.web_topics
["WordPress"] = new Array();
1126 PdfArrange
.Base
.web_topics
["WordPress"].push(new Array("WordPress_TITLE272", "TITLE272", "WORDPRESS", "2"));
1127 PdfArrange
.Base
.web_topics
["WordPress"].push(new Array("WordPress_Introduction", "Introduction", "INTRODUCTION", "1"));
1128 PdfArrange
.Base
.web_topics
["WordPress"].push(new Array("WordPress_WhatIsABlog", "WhatIsABlog", "WHAT IS A BLOG", "1"));
1129 PdfArrange
.Base
.web_topics
["WordPress"].push(new Array("WordPress_---273", "---273", "INSTALLATION", "0"));
1130 PdfArrange
.Base
.web_topics
["WordPress"].push(new Array("WordPress_InstallingWordPress", "InstallingWordPress", "INSTALLLING ON A SERVER", "1"));
1131 PdfArrange
.Base
.web_topics
["WordPress"].push(new Array("WordPress_UsingWordpresscom", "UsingWordpresscom", "SIGN UP FOR WORDPRESS.COM", "1"));
1132 PdfArrange
.Base
.web_topics
["WordPress"].push(new Array("WordPress_---274", "---274", "AUDIO PODCASTING", "0"));
1133 PdfArrange
.Base
.web_topics
["WordPress"].push(new Array("WordPress_PodcastingWithWordPress", "PodcastingWithWordPress", "PODCASTING", "1"));
1134 PdfArrange
.Base
.web_topics
["WordPress"].push(new Array("WordPress_AudioFreePodcast", "AudioFreePodcast", "FREE AUDIO PODCASTING", "1"));
1135 PdfArrange
.Base
.web_topics
["WordPress"].push(new Array("WordPress_---275", "---275", "VIDEO PODCASTING", "0"));
1136 PdfArrange
.Base
.web_topics
["WordPress"].push(new Array("WordPress_Vlog", "Vlog", "FREE VIDEO PODCASTING", "1"));
1137 PdfArrange
.Base
.web_topics
["WordPress"].push(new Array("WordPress_---276", "---276", "DESIGN", "0"));
1138 PdfArrange
.Base
.web_topics
["WordPress"].push(new Array("WordPress_DESIGN", "DESIGN", "THEMES", "1"));
1139 PdfArrange
.Base
.web_topics
["WordPress"].push(new Array("WordPress_WIDGETS", "WIDGETS", "WIDGETS", "1"));
1140 PdfArrange
.Base
.web_topics
["WordPress"].push(new Array("WordPress_---277", "---277", "APPENDICES", "0"));
1141 PdfArrange
.Base
.web_topics
["WordPress"].push(new Array("WordPress_Credits", "Credits", "CREDITS", "1"));
1142 PdfArrange
.Base
.web_list
.push("Write");
1143 PdfArrange
.Base
.web_topics
["Write"] = new Array();
1144 PdfArrange
.Base
.web_topics
["Write"].push(new Array("Write_TITLE278", "TITLE278", "WRITE ACTIVITY", "2"));
1145 PdfArrange
.Base
.web_topics
["Write"].push(new Array("Write_---279", "---279", "INTRODUCTION", "0"));
1146 PdfArrange
.Base
.web_topics
["Write"].push(new Array("Write_Introduction", "Introduction", "INTRODUCTION", "1"));
1147 PdfArrange
.Base
.web_topics
["Write"].push(new Array("Write_---280", "---280", "GETTING STARTED", "0"));
1148 PdfArrange
.Base
.web_topics
["Write"].push(new Array("Write_Starting", "Starting", "STARTING WRITE", "1"));
1149 PdfArrange
.Base
.web_topics
["Write"].push(new Array("Write_Basics", "Basics", "THE BASICS", "1"));
1150 PdfArrange
.Base
.web_topics
["Write"].push(new Array("Write_Collaborating", "Collaborating", "COLLABORATING", "1"));
1151 PdfArrange
.Base
.web_topics
["Write"].push(new Array("Write_---281", "---281", "TUTORIALS", "0"));
1152 PdfArrange
.Base
.web_topics
["Write"].push(new Array("Write_PeerEditing", "PeerEditing", "PEER EDITING", "1"));
1153 PdfArrange
.Base
.web_topics
["Write"].push(new Array("Write_GroupStoryTelling", "GroupStoryTelling", "GROUP STORY TELLING", "1"));
1154 PdfArrange
.Base
.web_topics
["Write"].push(new Array("Write_LetterToTheEditor", "LetterToTheEditor", "LETTER TO THE EDITOR", "1"));
1155 PdfArrange
.Base
.web_topics
["Write"].push(new Array("Write_EmailingADocument", "EmailingADocument", "EMAILING A DOCUMENT", "1"));
1156 PdfArrange
.Base
.web_topics
["Write"].push(new Array("Write_---282", "---282", "APPENDICES", "0"));
1157 PdfArrange
.Base
.web_topics
["Write"].push(new Array("Write_Credits", "Credits", "CREDITS", "1"));
1158 PdfArrange
.Base
.web_list
.push("XO");
1159 PdfArrange
.Base
.web_topics
["XO"] = new Array();
1160 PdfArrange
.Base
.web_topics
["XO"].push(new Array("XO_TITLE283", "TITLE283", "XO", "2"));
1161 PdfArrange
.Base
.web_topics
["XO"].push(new Array("XO_---284", "---284", "INTRODUCTION", "0"));
1162 PdfArrange
.Base
.web_topics
["XO"].push(new Array("XO_Introduction", "Introduction", "INTRODUCTION", "1"));
1163 PdfArrange
.Base
.web_topics
["XO"].push(new Array("XO_AboutOLPC", "AboutOLPC", "ABOUT OLPC", "1"));
1164 PdfArrange
.Base
.web_topics
["XO"].push(new Array("XO_AboutComputers", "AboutComputers", "ABOUT COMPUTERS", "1"));
1165 PdfArrange
.Base
.web_topics
["XO"].push(new Array("XO_HowToVolunteer", "HowToVolunteer", "HOW TO VOLUNTEER", "1"));
1166 PdfArrange
.Base
.web_topics
["XO"].push(new Array("XO_---285", "---285", "GETTING STARTED", "0"));
1167 PdfArrange
.Base
.web_topics
["XO"].push(new Array("XO_GettingStarted", "GettingStarted", "GETTING STARTED", "1"));
1168 PdfArrange
.Base
.web_topics
["XO"].push(new Array("XO_OpeningTheXO", "OpeningTheXO", "OPENING THE XO", "1"));
1169 PdfArrange
.Base
.web_topics
["XO"].push(new Array("XO_Ports", "Ports", "PORTS", "1"));
1170 PdfArrange
.Base
.web_topics
["XO"].push(new Array("XO_ChargingBattery", "ChargingBattery", "BATTERY CHARGING", "1"));
1171 PdfArrange
.Base
.web_topics
["XO"].push(new Array("XO_Starting", "Starting", "STARTING THE XO", "1"));
1172 PdfArrange
.Base
.web_topics
["XO"].push(new Array("XO_Keyboard", "Keyboard", "KEYBOARD", "1"));
1173 PdfArrange
.Base
.web_topics
["XO"].push(new Array("XO_Screen", "Screen", "SCREEN", "1"));
1174 PdfArrange
.Base
.web_topics
["XO"].push(new Array("XO_Externalstorage", "Externalstorage", "STORAGE", "1"));
1175 PdfArrange
.Base
.web_topics
["XO"].push(new Array("XO_---286", "---286", "BATTERY", "0"));
1176 PdfArrange
.Base
.web_topics
["XO"].push(new Array("XO_ReplacingBattery", "ReplacingBattery", "REPLACING", "1"));
1177 PdfArrange
.Base
.web_topics
["XO"].push(new Array("XO_AdvancedPower", "AdvancedPower", "POWERING OF YOUR LAPTOP", "1"));
1178 PdfArrange
.Base
.web_topics
["XO"].push(new Array("XO_---287", "---287", "NETWORK", "0"));
1179 PdfArrange
.Base
.web_topics
["XO"].push(new Array("XO_AboutNetworksAndTheInternet", "AboutNetworksAndTheInternet", "INTRODUCTION", "1"));
1180 PdfArrange
.Base
.web_topics
["XO"].push(new Array("XO_GiveMeTheInternet", "GiveMeTheInternet", "GIVE ME THE INTERNET", "1"));
1181 PdfArrange
.Base
.web_topics
["XO"].push(new Array("XO_Troubleshooting", "Troubleshooting", "TROUBLESHOOTING", "1"));
1182 PdfArrange
.Base
.web_topics
["XO"].push(new Array("XO_ExternalHardware", "ExternalHardware", "NETWORKING HARDWARE", "1"));
1183 PdfArrange
.Base
.web_topics
["XO"].push(new Array("XO_RouterTable", "RouterTable", "WIRELESS DEVICES", "1"));
1184 PdfArrange
.Base
.web_topics
["XO"].push(new Array("XO_---288", "---288", "SUPPORT", "0"));
1185 PdfArrange
.Base
.web_topics
["XO"].push(new Array("XO_Safety", "Safety", "SAFETY", "1"));
1186 PdfArrange
.Base
.web_topics
["XO"].push(new Array("XO_CaringForXO", "CaringForXO", "CARING FOR YOUR XO", "1"));
1187 PdfArrange
.Base
.web_topics
["XO"].push(new Array("XO_HowToFlash", "HowToFlash", "HOW TO REFLASH", "1"));
1188 PdfArrange
.Base
.web_topics
["XO"].push(new Array("XO_Maintenance", "Maintenance", "MAINTENANCE", "1"));
1189 PdfArrange
.Base
.web_topics
["XO"].push(new Array("XO_Repairing", "Repairing", "REPAIRING", "1"));
1190 PdfArrange
.Base
.web_topics
["XO"].push(new Array("XO_GettingSupport", "GettingSupport", "GETTING SUPPORT", "1"));
1191 PdfArrange
.Base
.web_topics
["XO"].push(new Array("XO_---289", "---289", "APPENDICES", "0"));
1192 PdfArrange
.Base
.web_topics
["XO"].push(new Array("XO_KeyboardShortcuts", "KeyboardShortcuts", "KEYBOARD SHORTCUTS", "1"));
1193 PdfArrange
.Base
.web_topics
["XO"].push(new Array("XO_HardwareSpecifications", "HardwareSpecifications", "HARDWARE SPECIFICATIONS", "1"));
1194 PdfArrange
.Base
.web_topics
["XO"].push(new Array("XO_Credits", "Credits", "CREDITS", "1"));
1195 MochiKit
.Sortable
.Sortable
.create('thelist1',{containment
:['thelist1','thelist2'], dropOnEmpty
:true, constraint
: false});
1196 MochiKit
.Sortable
.Sortable
.create('thelist2',{containment
:['thelist1','thelist2'], dropOnEmpty
:true, constraint
: false});
1200 var l
= $("emptyitem");
1202 if(l
.style
.display
== "block") {
1203 if($("thelist2").childNodes
.length
== 2)
1204 l
.style
.display
= "none";
1206 if($("thelist2").childNodes
.length
== 1)
1207 l
.style
.display
= "block";
1215 function select_web(sel
) {
1216 var webName
= sel
.options
[sel
.selectedIndex
].value
;
1220 // destroy sortable list
1221 MochiKit
.Sortable
.Sortable
.destroy('thelist1');
1222 MochiKit
.Sortable
.Sortable
.destroy('thelist2');
1224 var l
= $("thelist1");
1226 replaceChildNodes(l
);
1228 // go trough the list
1229 MochiKit
.Base
.map(function (elem
) {
1230 var eid
= "thelist1_"+elem
[0];
1232 if(!PdfArrange
.Base
.hasTopic(webName
, elem
[1])) {
1233 if(elem
[3] == "1") {
1234 l
.appendChild(PdfArrange
.Editor
.makeElement(eid
, webName
, elem
[1], elem
[2]));
1235 } else if(elem
[3] == "2") {
1236 l
.appendChild(PdfArrange
.Editor
.makeTitle(eid
, webName
, elem
[1], elem
[2]));
1238 l
.appendChild(PdfArrange
.Editor
.makeTitle(eid
, webName
, elem
[1], elem
[2]));
1241 }, PdfArrange
.Base
.web_topics
[webName
]);
1243 MochiKit
.Sortable
.Sortable
.create('thelist1',{containment
:['thelist1','thelist2'], dropOnEmpty
:true, constraint
: false});
1244 MochiKit
.Sortable
.Sortable
.create('thelist2',{containment
:['thelist1','thelist2'], dropOnEmpty
:true, constraint
: false, onUpdate
: test2
});
1248 function checkSelected() {
1249 var s
= MochiKit
.Sortable
.Sortable
.serialize('thelist2');
1250 var element
= s
.split("&");
1251 PdfArrange
.Base
.selected_items
= new Array();
1253 for(var i
= 0; i
< element
.length
; i
++) {
1254 var idx
= element
[i
].lastIndexOf("=");
1255 var eid
= element
[i
].substr(idx
+1);
1256 PdfArrange
.Base
.selected_items
.push(eid
);
1260 function setTab(tabNumber
) {
1261 $("block1").style
.display
="none";
1262 $("block2").style
.display
="none";
1263 $("block3").style
.display
="none";
1266 $("block"+tabNumber
).style
.display
="block";
1268 $("step1").style
.backgroundColor
="#ff7f00";
1269 $("step2").style
.backgroundColor
="#ff7f00";
1270 $("step3").style
.backgroundColor
="#ff7f00";
1272 $("step"+tabNumber
).style
.backgroundColor
="white";
1275 if(tabNumber
== 2) {
1276 var pages
= PdfArrange
.Base
.doExport().split(",");
1277 var form
= $("formexpo");
1280 var reg
= new RegExp("(.+)_(.+)", "i");
1283 for(var i
= 0; i
< pages
.length
; i
++) {
1284 if(pages
[i
] != "") {
1285 if(pages
[i
].match(reg
)) {
1286 var el
= PdfArrange
.Base
.getTopic(RegExp
.$1, RegExp
.$2);
1289 elems
.push(LI(null, A({"href": "javascript:void(0)"}, el
[2])));
1291 elems
.push(LI({"class": "heading"}, el
[2]));
1298 if(window
.frames
["preview"]) {
1300 // withWindow(window.frames["preview"], function () { var doc = currentDocument();if(doc) { var elem = MochiKit.DOM.getFirstElementByTagAndClassName("div", "topics", parent=doc); replaceChildNodes(elem, UL(null, elems));} });
1305 changedExportType();
1309 if(tabNumber
== 3) {
1310 var pages
= PdfArrange
.Base
.doExport().split(",");
1311 var form
= $("formexpo");
1312 var form2
= $("exportform");
1316 var reg
= new RegExp("(.+)_(.+)", "i");
1318 for(var i
= 0; i
< pages
.length
; i
++) {
1319 if(pages
[i
] != "") {
1320 if(s
!= "") s
+= ", ";
1321 if(pages
[i
].match(reg
)) {
1322 var el
= PdfArrange
.Base
.getTopic(RegExp
.$1, RegExp
.$2);
1324 s
+= '["'+RegExp
.$1+'", "'+RegExp
.$2+'", "'+el
[2]+'", '+el
[3]+']';
1330 form
.ajax
.value
= '<div id="flossembed" style="border:1px solid #ff7f00;width:834px"/>';
1331 form
.ajax
.value
+= "\n";
1332 form
.ajax
.value
+= "<scr"+"ipt>\n";
1333 form
.ajax
.value
+= "var FLOSSConfig = {'style': {}, 'config': {}, 'pages': ["+s
+"], 'title': '"+encodeURI(form2
.pdftitle
.value
)+"'};\n";
1334 form
.ajax
.value
+= "</scri"+"pt>\n";
1335 form
.ajax
.value
+= '<script type="text/javascript" src="http://en.flossmanuals.net/pub/TWiki/jquery/jquery.js">'+"\n";
1336 form
.ajax
.value
+= "</scri"+"pt>\n";
1338 form
.ajax
.value
+= '<script type="text/javascript" src="http://en.flossmanuals.net/js/embed.js">\n';
1339 form
.ajax
.value
+= "</scri"+"pt>\n";
1340 form
.ajax
.value
+= "</div>\n";
1345 function checkArchive() {
1346 if($("comment").style
.display
== "none")
1347 $("comment").style
.display
="block";
1348 else $("comment").style
.display
="none";
1351 function changedExportType() {
1352 var exportas
= $("exportform").exportas
;
1353 var export_type
= exportas
.options
[exportas
.selectedIndex
].value
;
1355 if(export_type
== "pdf") {
1356 $("optionpdf").style
.display
="block";
1357 $("optionhtml").style
.display
= "none";
1358 // $("optionsubmit").value = "Export manual";
1360 $("optionpdf").style
.display
="none";
1361 $("optionhtml").style
.display
= "block";
1362 // $("optionsubmit").value = "Next";
1366 var preview_window
= null;
1368 function updatePreview() {
1369 var my_css
= $("mycss").value
;
1370 if(window
.frames
["preview"] && my_css
) {
1371 if(navigator
.userAgent
.indexOf("MSIE") != -1) {
1372 var el
= window
.frames
["preview"].document
;
1373 if(el
.styleSheets
[0])
1374 el
.styleSheets
[0].cssText
= my_css
;
1376 withWindow(window
.frames
["preview"], function () { var doc
= currentDocument(); if(doc
) {var elem
= MochiKit
.DOM
.getFirstElementByTagAndClassName("style", "mystyle", parent
=doc
); replaceChildNodes(elem
, my_css
); }});
1381 function doExportManual() {
1382 var pages
= PdfArrange
.Base
.doExport();
1384 var form
= $("formexpo");
1385 var form2
= $("exportform");
1387 form
.exportas
.value
= form2
.exportas
.options
[form2
.exportas
.selectedIndex
].value
;
1388 form
.cover
.value
= form2
.cover
.options
[form2
.cover
.selectedIndex
].value
;
1389 form
.template
.value
= form2
.template
.value
;
1390 // ACO COMMENTED THIS
1392 form
.archive
.value
= form2
.archive
.value
;
1394 form
.comment
.value
= form2
.comment
.value
;
1396 form
.pdftitle
.value
= form2
.pdftitle
.value
;
1398 form
.css
.value
= form2
.mycss
.value
;
1400 form
.pagesn
.value
= pages
;
1402 // form.step.value = 3;
1404 // Add all extra info
1405 var pageList
= pages
.split(",");
1406 var reg
= new RegExp("(.+)_(.+)", "i");
1408 replaceChildNodes($("formexpocontainer"));
1410 appendChildNodes($("formexpocontainer"), INPUT({"type": "hidden", name
: "extra_n", value
: pageList
.length
}));
1413 for(var i
= 0; i
< pageList
.length
; i
++) {
1414 if(pageList
[i
] != "") {
1415 if(pageList
[i
].match(reg
)) {
1416 var el
= PdfArrange
.Base
.getTopic(RegExp
.$1, RegExp
.$2);
1418 appendChildNodes($("formexpocontainer"), INPUT({"type": "hidden", name
: "extra_desc_"+n
, value
: el
[2]}));
1419 appendChildNodes($("formexpocontainer"), INPUT({"type": "hidden", name
: "extra_type_"+n
, value
: el
[3]}));
1432 <style type=
"text/css" media=
"screen">
1434 text-decoration: None;
1438 border:
1px solid black;
1439 list-style-type: none;
1444 border:
1px solid black;
1446 padding-right:
10px;
1449 .heder { color: red; background-color: #ff7f00}
1451 .topic { color: black; }
1453 .title { color: black; background-color: #f0f0f0}
1458 <body onload=
"init()" background=
"http://en.flossmanuals.net/floss/pub/TWiki/FlossSkin2/background.gif" style=
"margin:0;color:#000000;text-decoration:none;">
1459 <div id=
"header"><img id=
"header_imagemap" width=
"465" height=
"95" alt=
"FlossManuals menu" src='http://en.flossmanuals.net/floss/pub/TWiki/FlossSkin2/top_remix.gif' border=
0 usemap='#map'
></div>
1461 <!-- #$-:Image Map file created by GIMP Imagemap Plugin -->
1462 <!-- #$-:GIMP Imagemap Plugin by Maurits Rijk -->
1463 <!-- #$-:Please do not edit lines starting with "#$" -->
1464 <!-- #$VERSION:2.0 -->
1465 <!-- #$AUTHOR:reset -->
1466 <area shape=
"rect" coords=
"90,57,152,84" href=
"/read" />
1467 <area shape=
"rect" coords=
"159,57,219,84" href=
"/write" />
1468 <area shape=
"rect" coords=
"226,58,287,84" href=
"/remix" />
1469 <area shape=
"rect" coords=
"293,58,353,84" href=
"/about" />
1470 <area shape=
"rect" coords=
"401,63,424,79" href=
"http://en.flossmanuals.net/read" />
1471 <area shape=
"rect" coords=
"427,63,448,79" href=
"http://nl.flossmanuals.net/read" />
1472 <area shape=
"rect" coords=
"398,38,424,59" href=
"http://fa.flossmanuals.net" />
1475 <div style=
"position:absolute;left:20px;top:140px;">
1476 <img src=
"http://en.flossmanuals.net/floss/pub/TWiki/FlossSkin2/remixarrow.gif" border=
0>
1478 <img src=
"http://en.flossmanuals.net/floss/pub/TWiki/FlossSkin2/remix_text.gif" border=
0>
1480 <div style=
"position:absolute;left:270px;top:130px;">
1481 <table cellpadding=
"0" cellspacing=
"0" summary=
"" style=
"table-layout:fixed;width:730;border: 5px solid #666666;padding-right: 0px;padding-left: 0px;padding-bottom: 0px;padding-top: 0px;margin-left : 10px;margin-top:10;background:#FFF7F0;">
1484 <div class=
"ds-contentcontainer">
1485 <div style=
"margin-left:1.2em;">
1487 <img src=
"http://en.flossmanuals.net/floss/pub/TWiki/FlossSkin2/text_remix.gif">
1491 <font color=
"#666666">You can remix your own manuals. Select a manual (or manuals) in Step one with the drop down menu and drag chapters to the box on the right. Choose an output format (html/pdf) in step two and tweak the style. In step three you can export the remix and also use the (beta) ajax provided to put a live manual in your web page.
</font> </p>
1495 <div id=
"step1" style=
"border:1px solid #ff7f00;float: left;padding-left: 20px; padding-right: 20px; background-color: white; margin-right: 20px;color:black;">
1496 <a href=
"javascript:void(0)" onclick=
"setTab(1)"><b><font color=black
>STEP
1. REMIX
<?font></b></a>
1499 <div id=
"step2" style=
"border:1px solid #ff7f00;float: left; padding-left: 20px; padding-right: 20px; background-color: #ff7f00; margin-right: 20px">
1500 <a href=
"javascript:void(0)" onclick=
"setTab(2)"><b><font color=black
>STEP
2. STYLE
</font></b></a>
1503 <div id=
"step3" style=
"border:1px solid #ff7f00;float: left; padding-left: 20px; padding-right: 20px; background-color: #ff7f00;">
1504 <a href=
"javascript:void(0)" onclick=
"setTab(3)"><b><font color=black
>STEP
3. EXPORT
</font></b></a>
1507 <div style=
"margin-bottom: 20px; clear: both"/>
1510 <!-- start of table -->
1512 <table border=
"0" style=
"border: 0px;">
1516 <form id=
"formone" name=
"formone">
1519 <b>Make a manual remix
</b><br/>
1520 1. From this menu you can select one or more manuals to remix
1521 <br>2. Drag manual items to the remix box on the right in the order you want them
1522 <br>3. The output if the remix can be HTML or PDF (selected in step
2).
<br>
1523 4. You can also use the AJAX code supplied in step
3 to include the manual in your website or blog.
<br><br>
1524 <select onchange=
"select_web(this)">
1525 <option value=
"Alchemy">Alchemy
</option>
1526 <option value=
"Analyze">Analyze
</option>
1527 <option value=
"Audacity">Audacity
</option>
1528 <option value=
"AudioProduction">AudioProduction
</option>
1529 <option value=
"Avidemux">Avidemux
</option>
1530 <option value=
"BCFG2">BCFG2
</option>
1531 <option value=
"Blender">Blender
</option>
1532 <option value=
"BlipTV">BlipTV
</option>
1533 <option value=
"BookSprints">BookSprints
</option>
1534 <option value=
"Browse">Browse
</option>
1535 <option value=
"Calculate">Calculate
</option>
1536 <option value=
"Chat">Chat
</option>
1537 <option value=
"CircumventionTools">CircumventionTools
</option>
1538 <option value=
"DigitalFoundations">DigitalFoundations
</option>
1539 <option value=
"Education_Deployment">Education_Deployment
</option>
1540 <option value=
"Etoys">Etoys
</option>
1541 <option value=
"FFmpeg2Theora">FFmpeg2Theora
</option>
1542 <option value=
"Firefox">Firefox
</option>
1543 <option value=
"G1G1">G1G1
</option>
1544 <option value=
"GTranscode">GTranscode
</option>
1545 <option value=
"Gimp">Gimp
</option>
1546 <option value=
"Icecast">Icecast
</option>
1547 <option value=
"Inkscape">Inkscape
</option>
1548 <option value=
"Kino">Kino
</option>
1549 <option value=
"Linphone">Linphone
</option>
1550 <option value=
"Linux">Linux
</option>
1551 <option value=
"LogViewer">LogViewer
</option>
1552 <option value=
"M3W">M3W
</option>
1553 <option value=
"MPlayer">MPlayer
</option>
1554 <option value=
"Measure">Measure
</option>
1555 <option value=
"Memorize">Memorize
</option>
1556 <option value=
"MuSE">MuSE
</option>
1557 <option value=
"NewsReader">NewsReader
</option>
1558 <option value=
"OpenMovieEditor">OpenMovieEditor
</option>
1559 <option value=
"OpenOffice">OpenOffice
</option>
1560 <option value=
"Opticks">Opticks
</option>
1561 <option value=
"OurMedia">OurMedia
</option>
1562 <option value=
"Paint">Paint
</option>
1563 <option value=
"Pippy">Pippy
</option>
1564 <option value=
"Podcasting">Podcasting
</option>
1565 <option value=
"PureData">PureData
</option>
1566 <option value=
"Record">Record
</option>
1567 <option value=
"RubyOnRails">RubyOnRails
</option>
1568 <option value=
"Scribus">Scribus
</option>
1569 <option value=
"Songbird">Songbird
</option>
1570 <option value=
"StreamingConferences">StreamingConferences
</option>
1571 <option value=
"Sugar">Sugar
</option>
1572 <option value=
"TamTamEdit">TamTamEdit
</option>
1573 <option value=
"TamTamJam">TamTamJam
</option>
1574 <option value=
"TamTamMini">TamTamMini
</option>
1575 <option value=
"TamTamSynthLab">TamTamSynthLab
</option>
1576 <option value=
"Terminal">Terminal
</option>
1577 <option value=
"TheoraCookbook">TheoraCookbook
</option>
1578 <option value=
"TurtleArt">TurtleArt
</option>
1579 <option value=
"Ubuntu">Ubuntu
</option>
1580 <option value=
"Ubuntu_Desktop">Ubuntu_Desktop
</option>
1581 <option value=
"VLC">VLC
</option>
1582 <option value=
"VideoProduction">VideoProduction
</option>
1583 <option value=
"WikimediaCommons">WikimediaCommons
</option>
1584 <option value=
"WordPress">WordPress
</option>
1585 <option value=
"Write">Write
</option>
1586 <option value=
"XO">XO
</option>
1594 <div style=
"width: 300px">
1600 <td align=
"center" valign=
"center" width=
"100">
1601 <!-- <form name="postform" id="postform" method="POST" action=""> -->
1602 <form name=
"postform" id=
"postform" method=
"POST" action=
"javascript:void(0)" onsubmit=
"return false">
1603 <input type=
"hidden" name=
"step" value=
"1"/>
1604 <input type=
"hidden" name=
"pagesn" value=
""/>
1607 <form method="GET" action="javascript:void(0)" onsubmit="javascript: return false">
1608 <input type="button" name="left" value="export" onclick="PdfArrange.Base.doExport(); return false;">
1613 <div style=
"width: 300px;height:80px">
1615 <li id=
"emptyitem" style=
"display: block"> <b>remix box
</b> (drag chapters here)
</li>
1619 <form method="GET" action="javascript:void(0)" onsubmit="javascript: return false">
1620 <input type="button" name="left" value="export" onclick="PdfArrange.Base.doExport(); return false;">
1628 <div id=
"block2" style=
"position: relative; display: none">
1629 <form id=
"exportform" name=
"exportform" method=
"POST" action=
"javascript:void(0)">
1630 <!-- <input type="hidden" name="pagesn" value="'.CGI=HASH(0x814faf4)->param("pagesn").'"/> -->
1631 <input type=
"hidden" name=
"step" value=
"2"/>
1633 <b>Format and style
</b><br>
1634 1. Choose type of output for the remix and style (for HTML)
<br>
1635 2. You can also call the PDF or HTML file to be downloaded using 'title'.
1636 <br>3. If you choose HTML you can preview the look and feel below, by changing the style sheet in the text box you can custom the look and feel.
<br>
1637 4. If you choose PDF you can choose a cover (in future remixes you will be able to design your own cover)
<br><br>
1638 Title:
<br/><input type=
"text" name=
"pdftitle" size=
"50"/> <br/>
1640 <select name=
"exportas" onchange=
"changedExportType()" >
1641 <option value=
"pdf">PDF
</option>
1642 <option value=
"htmlzip">HTML zip
</option>
1643 <option value=
"htmltgz">HTML tar.gz
</option>
1646 <div id=
"optionpdf">
1647 Select cover page:
<br/><select name=
"cover">
1648 <option value=
"AlchemyCover" >AlchemyCover
</option><option value=
"Default" selected
>Default
</option><option value=
"FlossManuals" >FlossManuals
</option><option value=
"InkscapeCover" >InkscapeCover
</option></select></div><div id=
"optionhtml" style=
"display: none">Select template:
<br/><select name=
"template"><option value=
"default">default
</option></select><br clear=
"all"/>Your CSS:
<br/><textarea name=
"mycss" id=
"mycss" rows=
"10" cols=
"50">body {
1649 font-family : trebuchet,verdana, sans-serif;
1661 border-color:#
666666;
1665 font-family: trebuchet,sans-serif;
1675 list-style-type: None;
1677 border:
14px solid #ff7f00;
1678 background-color: #ff7f00;
1679 margin:
0px
0px
0px
0px;
1684 padding-right:
10px;
1686 padding-bottom:
4px;
1688 margin:
0px
0px
0px
0px;
1689 background-color: #ff7f00;
1690 border-top:
1px solid #ff7f00;
1694 background-color: #F99B1C;
1698 background-color: #ff7f00;
1700 border-top:
1px solid #FFE5CC;
1706 border-bottom:
2px solid #FFE5CC;
1707 background-color: #ff7f00;
1709 font-weight: bolder;
1711 padding-bottom:
20px;
1715 text-decoration: none;
1722 background-color : #
666666;
1727 margin-bottom:
10px;
1741 font-family : Arial,verdana, sans-serif;
1743 margin-bottom:
10px;
1746 letter-spacing: -
1px;
1751 font-family : Arial,verdana, sans-serif;
1753 margin-bottom:
10px;
1760 font-family : Arial,verdana, sans-serif;
1767 font-family : Arial,verdana, sans-serif;
1769 margin-bottom: -
12px;
1771 pre, span.Code, span.verbatim {
1774 background-color:#FFE5CC;
1775 border:
0px solid #
000000;
1776 margin-left :
0.5em;
1777 margin-bottom :
20px;
1782 padding-bottom:
0.2em;
1784 white-space: pre-wrap; /* css-
3 */
1785 white-space: -moz-pre-wrap; /* Mozilla, since
1999 */
1786 white-space: -pre-wrap; /* Opera
4-
6 */
1787 white-space: -o-pre-wrap; /* Opera
7 */
1788 word-wrap: break-word; /* Internet Explorer
5.5+ */
1791 </textarea><br/><input type=
"button" onclick=
"javascript:updatePreview()" value=
"Update preview"/><iframe name=
"preview" id=
"preview" style=
"margin-top: 10px; width: 680px; height: 400px;" src=
"http://en.flossmanuals.net/bin/remix/?preview=1&template=default">TO JE TO
</iframe></div><br/> <input type=
"hidden" name=
"pdfheadertopic" value=
"TWiki.GenPDFExampleHeaderFooterTopic"/>
1793 <!-- <input type="submit" id="optionsubmit" value="Export manual"/> -->
1798 <div id=
"block3" style=
"position: relative; display: none">
1800 <form id=
"formexpo" name=
"formexpo" method=
"POST" action=
"">
1801 <b>Export the manual
</b><br>1. You can go back to Step
1 or Step
2 and change the remix options.
<br>2. You can also export the manual and make changes to export another version.
<br>
1802 <br><button onclick=
"doExportManual()">Export manual
</button>
1804 <input type=
"hidden" name=
"step" value=
"3"/>
1805 <input type=
"hidden" name=
"pagesn" value=
""/>
1806 <input type=
"hidden" name=
"cover" value=
""/>
1807 <input type=
"hidden" name=
"exportas" value=
""/>
1808 <input type=
"hidden" name=
"template" value=
""/>
1809 <input type=
"hidden" name=
"archive" value=
""/>
1810 <input type=
"hidden" name=
"comment" value=
""/>
1811 <input type=
"hidden" name=
"css" value=
""/>
1812 <input type=
"hidden" name=
"pdftitle" value=
""/>
1813 <span id=
"formexpocontainer"></span>
1817 <b>AJAX MANUAL (BETA)
</b><br>
1818 This live manual functionality will allow you to keep a manual on your blog / web page which is maintained by the community of authors at FLOSS Manuals.
1819 This is in development and we will improve the api, layout, and documentation over the next weeks.
<br><br>
1820 1. Copy+paste this text if you want to embed it
<br/>
1821 2. This manual can be customised. We will publish the instruction (api) shortly
<br><br>
1822 <textarea name=
"ajax" rows=
"15" cols=
"80">
1826 <b>api notes :
</b><br>
1827 1. below are the defaults for the style of the text and layout
<br>
1828 2. the style of the chapter content cannot yet be changed although we will work on this.
1829 <br>3. more documentation is coming. This is beta (testing) state at the moment.
1831 var _config = {
"width":
"835px",
1835 "indexwidth":
"160px",
1836 "indexbackground":
"#ff7f00",
1837 "framewidth":
"670px",
1838 "frameheight":
"500px",
1841 var _style = {
"title":
"color: #ffe5cc;font-size: 20;font-family: Arial,verdana,
1842 sans-serif;font-weight: bold;margin-left:20px",
1845 "embed":
"font-size: 10px;font-family: Arial,verdana, sans-serif;
1846 font-weight: bold; line-height:14px",
1847 "topic":
"font-weight: bold",
1848 "heading":
"font-weight: bold; color:black;font-family: Arial,verdana,
1849 sans-serif;font-size: 10px;padding-top: 4px;
1850 padding-bottom: 4px",
1851 "list":
"list-style-type: none; padding-left: 20px; margin-left:
1852 0px;margin-top:2px;",
1853 "link":
"color: #ffe5cc; text-decoration: none; font-weight: bold"};
1855 Use the following to override the defaults an external style sheet.
1857 FLOSSConfig.style = null
1859 An example customisation syntax :
1861 var FLOSSConfig = {'style': {'title': 'color: black; font-size:
20;font-family:
1862 Arial,verdana, sans-serif;font-weight: bold', 'heading': 'font-weight: bold;
1863 color:black;font-family: Arial,verdana, sans-serif;font-size:
12','embed':
1864 'font-size:
12px;font-family: Arial,verdana, sans-serif;font-weight: bold'},
1865 'config': {'width': '
870px', 'height': '
500px', 'framewidth': '
670px'},
1866 'pages': [], 'title': ''};