]> git.lyx.org Git - lyx.git/blob - development/scons/scons_manifest.py
Properly extend qt standard widgets, remove the search button in PrefShortcuts.
[lyx.git] / development / scons / scons_manifest.py
1 from SCons.Util import Split
2
3 TOP_extra_files = Split('''
4     ABOUT-NLS
5     ANNOUNCE
6     COPYING
7     INSTALL
8     INSTALL.MacOSX
9     INSTALL.Win32
10     INSTALL.autoconf
11     INSTALL.cmake
12     INSTALL.scons
13     Makefile.am
14     NEWS
15     README
16     README.Cygwin
17     README.Win32
18     README.localization
19     RELEASE-NOTES
20     UPGRADING
21     autogen.sh
22     config.log
23     configure.ac
24     lyx.man
25     rename.sh
26     scons_lyx.log
27 ''')
28
29
30 src_header_files = Split('''
31     ASpell_local.h
32     Author.h
33     BiblioInfo.h
34     Bidi.h
35     Box.h
36     BranchList.h
37     Buffer.h
38     BufferList.h
39     BufferParams.h
40     BufferView.h
41     Bullet.h
42     Changes.h
43     Chktex.h
44     CmdDef.h
45     Color.h
46     Converter.h
47     ConverterCache.h
48     CoordCache.h
49     Counters.h
50     Cursor.h
51     CursorSlice.h
52     CutAndPaste.h
53     DepTable.h
54     Dimension.h
55     DispatchResult.h
56     DocIterator.h
57     EmbeddedFiles.h
58     Encoding.h
59     ErrorList.h
60     Exporter.h
61     FloatList.h
62     Floating.h
63     Font.h
64     FontIterator.h
65     FontList.h
66     Format.h
67     FuncRequest.h
68     FuncStatus.h
69     Graph.h
70     ISpell.h
71     Importer.h
72     InsetIterator.h
73     InsetList.h
74     Intl.h
75     KeyMap.h
76     KeySequence.h
77     LaTeX.h
78     LaTeXFeatures.h
79     Language.h
80     Layout.h
81     LayoutEnums.h
82     LayoutPtr.h
83     Length.h
84     Lexer.h
85     LyX.h
86     LyXAction.h
87     LyXFunc.h
88     LyXRC.h
89     LyXVC.h
90     MenuBackend.h
91     Messages.h
92     MetricsInfo.h
93     ModuleList.h
94     Mover.h
95     OutputParams.h
96     ParIterator.h
97     Paragraph.h
98     ParagraphList.h
99     ParagraphMetrics.h
100     ParagraphParameters.h
101     PDFOptions.h
102     PrinterParams.h
103     PSpell.h
104     Row.h
105     Section.h
106     Server.h
107     ServerSocket.h
108     Session.h
109     Spacing.h
110     SpellBase.h
111     TexRow.h
112     Text.h
113     TextClass.h
114     TextClassList.h
115     TextMetrics.h
116     Thesaurus.h
117     TocBackend.h
118     ToolbarBackend.h
119     Trans.h
120     Undo.h
121     VCBackend.h
122     VSpace.h
123     Variables.h
124     WordLangTuple.h
125     buffer_funcs.h
126     debug.h
127     factory.h
128     gettext.h
129     lfuns.h
130     lyxfind.h
131     output.h
132     output_docbook.h
133     output_latex.h
134     output_plaintext.h
135     paper.h
136     paragraph_funcs.h
137     rowpainter.h
138     sgml.h
139     update_flags.h
140     version.h
141 ''')
142
143
144 src_pre_files = Split('''
145     Author.cpp
146     BiblioInfo.cpp
147     Bidi.cpp
148     BranchList.cpp
149     Buffer.cpp
150     BufferList.cpp
151     BufferParams.cpp
152     BufferView.cpp
153     Bullet.cpp
154     Changes.cpp
155     Chktex.cpp
156     CmdDef.cpp
157     Color.cpp
158     Converter.cpp
159     ConverterCache.cpp
160     CoordCache.cpp
161     Counters.cpp
162     Cursor.cpp
163     CursorSlice.cpp
164     CutAndPaste.cpp
165     DepTable.cpp
166     DocIterator.cpp
167     EmbeddedFiles.cpp
168     Encoding.cpp
169     ErrorList.cpp
170     Exporter.cpp
171     FloatList.cpp
172     Floating.cpp
173     Font.cpp
174     FontIterator.cpp
175     FontList.cpp
176     Format.cpp
177     FuncRequest.cpp
178     FuncStatus.cpp
179     Graph.cpp
180     Importer.cpp
181     InsetIterator.cpp
182     InsetList.cpp
183     Intl.cpp
184     KeyMap.cpp
185     KeySequence.cpp
186     LaTeX.cpp
187     LaTeXFeatures.cpp
188     Language.cpp
189     Layout.cpp
190     Length.cpp
191     Lexer.cpp
192     LyX.cpp
193     LyXAction.cpp
194     LyXFunc.cpp
195     LyXRC.cpp
196     LyXVC.cpp
197     MenuBackend.cpp
198     Messages.cpp
199     MetricsInfo.cpp
200     Mover.cpp
201     OutputParams.cpp
202     PDFOptions.cpp
203     ParIterator.cpp
204     Paragraph.cpp
205     ParagraphMetrics.cpp
206     ParagraphParameters.cpp
207     Row.cpp
208     Server.cpp
209     ServerSocket.cpp
210     Session.cpp
211     Spacing.cpp
212     TexRow.cpp
213     Text.cpp
214     Text2.cpp
215     Text3.cpp
216     TextClass.cpp
217     TextClassList.cpp
218     TextMetrics.cpp
219     TocBackend.cpp
220     ToolbarBackend.cpp
221     Trans.cpp
222     Undo.cpp
223     VCBackend.cpp
224     VSpace.cpp
225     boost.cpp
226     buffer_funcs.cpp
227     debug.cpp
228     factory.cpp
229     gettext.cpp
230     lengthcommon.cpp
231     lyxfind.cpp
232     output.cpp
233     output_docbook.cpp
234     output_latex.cpp
235     output_plaintext.cpp
236     paragraph_funcs.cpp
237     rowpainter.cpp
238     sgml.cpp
239     version.cpp
240 ''')
241
242
243 src_post_files = Split('''
244     Box.cpp
245     Dimension.cpp
246     ModuleList.cpp
247     PrinterParams.cpp
248     SpellBase.cpp
249     Thesaurus.cpp
250 ''')
251
252
253 src_extra_src_files = Split('''
254     ASpell.cpp
255     ISpell.cpp
256     PSpell.cpp
257     Section.cpp
258     Variables.cpp
259     main.cpp
260 ''')
261
262
263 src_extra_files = Split('''
264     Makefile.am
265     pch.h
266 ''')
267
268
269 src_client_header_files = Split('''
270     Messages.h
271     debug.h
272 ''')
273
274
275 src_client_files = Split('''
276     Messages.cpp
277     boost.cpp
278     client.cpp
279     debug.cpp
280     gettext.cpp
281 ''')
282
283
284 src_client_extra_files = Split('''
285     Makefile.am
286     lyxclient.man
287     pch.h
288 ''')
289
290
291 src_support_header_files = Split('''
292     ExceptionMessage.h
293     FileFilterList.h
294     FileMonitor.h
295     FileName.h
296     ForkedCallQueue.h
297     Forkedcall.h
298     ForkedcallsController.h
299     Package.h
300     Path.h
301     RandomAccessList.h
302     Systemcall.h
303     Timeout.h
304     Translator.h
305     convert.h
306     copied_ptr.h
307     cow_ptr.h
308     debugstream.h
309     docstream.h
310     docstring.h
311     environment.h
312     filetools.h
313     fs_extras.h
314     gzstream.h
315     limited_stack.h
316     lstrings.h
317     lyxalgo.h
318     lyxlib.h
319     lyxmanip.h
320     lyxtime.h
321     os.h
322     os_win32.h
323     qstring_helpers.h
324     socktools.h
325     std_istream.h
326     std_ostream.h
327     textutils.h
328     types.h
329     unicode.h
330     userinfo.h
331 ''')
332
333
334 src_support_files = Split('''
335     FileFilterList.cpp
336     FileMonitor.cpp
337     FileName.cpp
338     ForkedCallQueue.cpp
339     Forkedcall.cpp
340     ForkedcallsController.cpp
341     Package.cpp
342     Path.cpp
343     Systemcall.cpp
344     Timeout.cpp
345     abort.cpp
346     chdir.cpp
347     convert.cpp
348     copy.cpp
349     docstream.cpp
350     docstring.cpp
351     environment.cpp
352     filetools.cpp
353     fs_extras.cpp
354     gzstream.cpp
355     getcwd.cpp
356     kill.cpp
357     lstrings.cpp
358     lyxsum.cpp
359     lyxtime.cpp
360     mkdir.cpp
361     os.cpp
362     qstring_helpers.cpp
363     rename.cpp
364     socktools.cpp
365     tempname.cpp
366     textutils.cpp
367     unicode.cpp
368     unlink.cpp
369     userinfo.cpp
370 ''')
371
372
373 src_support_extra_header_files = Split('''
374     
375 ''')
376
377
378 src_support_extra_src_files = Split('''
379     atexit.c
380     os_cygwin.cpp
381     os_unix.cpp
382     os_win32.cpp
383     strerror.c
384 ''')
385
386
387 src_support_extra_files = Split('''
388     Makefile.am
389     pch.h
390 ''')
391
392
393 src_support_tests_extra_files = Split('''
394     Makefile.am
395     boost.cpp
396     convert.cpp
397     filetools.cpp
398     lstrings.cpp
399     pch.h
400     test_convert
401     test_filetools
402     test_lstrings
403 ''')
404
405
406 src_support_tests_regfiles_extra_files = Split('''
407     convert
408     filetools
409     lstrings
410 ''')
411
412
413 src_support_minizip_header_files = Split('''
414     crypt.h
415     ioapi.h 
416     iowin32.h
417     unzip.h
418     zip.h
419 ''')
420
421
422 src_support_minizip_files = Split('''
423     ioapi.c
424     iowin32.c
425     zip.c
426     zipunzip.cpp
427     unzip.c
428 ''')
429
430
431 src_graphics_header_files = Split('''
432     GraphicsCache.h
433     GraphicsCacheItem.h
434     GraphicsConverter.h
435     GraphicsImage.h
436     GraphicsLoader.h
437     GraphicsParams.h
438     GraphicsTypes.h
439     LoaderQueue.h
440     PreviewImage.h
441     PreviewLoader.h
442     Previews.h
443 ''')
444
445
446 src_graphics_files = Split('''
447     GraphicsCache.cpp
448     GraphicsCacheItem.cpp
449     GraphicsConverter.cpp
450     GraphicsImage.cpp
451     GraphicsLoader.cpp
452     GraphicsParams.cpp
453     GraphicsTypes.cpp
454     LoaderQueue.cpp
455     PreviewImage.cpp
456     PreviewLoader.cpp
457     Previews.cpp
458 ''')
459
460
461 src_graphics_extra_files = Split('''
462     Makefile.am
463     pch.h
464 ''')
465
466
467 src_mathed_header_files = Split('''
468     CommandInset.h
469     InsetMath.h
470     InsetMathAMSArray.h
471     InsetMathArray.h
472     InsetMathBig.h
473     InsetMathBinom.h
474     InsetMathBoldSymbol.h
475     InsetMathBox.h
476     InsetMathBoxed.h
477     InsetMathBrace.h
478     InsetMathCases.h
479     InsetMathChar.h
480     InsetMathColor.h
481     InsetMathComment.h
482     InsetMathDFrac.h
483     InsetMathDecoration.h
484     InsetMathDelim.h
485     InsetMathDiff.h
486     InsetMathDots.h
487     InsetMathEnv.h
488     InsetMathExFunc.h
489     InsetMathExInt.h
490     InsetMathFBox.h
491     InsetMathFont.h
492     InsetMathFontOld.h
493     InsetMathFrac.h
494     InsetMathFracBase.h
495     InsetMathFrameBox.h
496     InsetMathGrid.h
497     InsetMathHull.h
498     InsetMathKern.h
499     InsetMathLefteqn.h
500     InsetMathLim.h
501     InsetMathMakebox.h
502     InsetMathMatrix.h
503     InsetMathNest.h
504     InsetMathNumber.h
505     InsetMathOverset.h
506     InsetMathPar.h
507     InsetMathPhantom.h
508     InsetMathRef.h
509     InsetMathRoot.h
510     InsetMathScript.h
511     InsetMathSize.h
512     InsetMathSpace.h
513     InsetMathSplit.h
514     InsetMathSqrt.h
515     InsetMathStackrel.h
516     InsetMathString.h
517     InsetMathSubstack.h
518     InsetMathSymbol.h
519     InsetMathTFrac.h
520     InsetMathTabular.h
521     InsetMathUnderset.h
522     InsetMathUnknown.h
523     InsetMathXArrow.h
524     InsetMathXYMatrix.h
525     MacroTable.h
526     MathAtom.h
527     MathAutoCorrect.h
528     MathData.h
529     MathExtern.h
530     MathFactory.h
531     MathGridInfo.h
532     MathMacro.h
533     MathMacroArgument.h
534     MathMacroTemplate.h
535     MathParser.h
536     MathStream.h
537     MathSupport.h
538     ReplaceData.h
539     TextPainter.h
540 ''')
541
542
543 src_mathed_files = Split('''
544     CommandInset.cpp
545     InsetMath.cpp
546     InsetMathAMSArray.cpp
547     InsetMathArray.cpp
548     InsetMathBig.cpp
549     InsetMathBinom.cpp
550     InsetMathBoldSymbol.cpp
551     InsetMathBox.cpp
552     InsetMathBoxed.cpp
553     InsetMathBrace.cpp
554     InsetMathCases.cpp
555     InsetMathChar.cpp
556     InsetMathColor.cpp
557     InsetMathComment.cpp
558     InsetMathDFrac.cpp
559     InsetMathDecoration.cpp
560     InsetMathDelim.cpp
561     InsetMathDiff.cpp
562     InsetMathDots.cpp
563     InsetMathEnv.cpp
564     InsetMathExFunc.cpp
565     InsetMathExInt.cpp
566     InsetMathFBox.cpp
567     InsetMathFont.cpp
568     InsetMathFontOld.cpp
569     InsetMathFrac.cpp
570     InsetMathFracBase.cpp
571     InsetMathFrameBox.cpp
572     InsetMathGrid.cpp
573     InsetMathHull.cpp
574     InsetMathKern.cpp
575     InsetMathLefteqn.cpp
576     InsetMathLim.cpp
577     InsetMathMakebox.cpp
578     InsetMathMatrix.cpp
579     InsetMathNest.cpp
580     InsetMathNumber.cpp
581     InsetMathOverset.cpp
582     InsetMathPar.cpp
583     InsetMathPhantom.cpp
584     InsetMathRef.cpp
585     InsetMathRoot.cpp
586     InsetMathScript.cpp
587     InsetMathSize.cpp
588     InsetMathSpace.cpp
589     InsetMathSplit.cpp
590     InsetMathSqrt.cpp
591     InsetMathStackrel.cpp
592     InsetMathString.cpp
593     InsetMathSubstack.cpp
594     InsetMathSymbol.cpp
595     InsetMathTFrac.cpp
596     InsetMathTabular.cpp
597     InsetMathUnderset.cpp
598     InsetMathUnknown.cpp
599     InsetMathXArrow.cpp
600     InsetMathXYMatrix.cpp
601     MacroTable.cpp
602     MathAtom.cpp
603     MathAutoCorrect.cpp
604     MathData.cpp
605     MathExtern.cpp
606     MathFactory.cpp
607     MathMacro.cpp
608     MathMacroArgument.cpp
609     MathMacroTemplate.cpp
610     MathParser.cpp
611     MathStream.cpp
612     MathSupport.cpp
613     TextPainter.cpp
614 ''')
615
616
617 src_mathed_extra_files = Split('''
618     BUGS
619     InsetFormulaMacro.cpp
620     InsetFormulaMacro.h
621     InsetMathMBox.cpp
622     InsetMathMBox.h
623     InsetMathXYArrow.cpp
624     InsetMathXYArrow.h
625     Makefile.am
626     README
627     pch.h
628     texify
629 ''')
630
631
632 src_tex2lyx_header_files = Split('''
633     Context.h
634     Font.h
635     Parser.h
636     Spacing.h
637     tex2lyx.h
638 ''')
639
640
641 src_tex2lyx_files = Split('''
642     Context.cpp
643     Font.cpp
644     Parser.cpp
645     boost.cpp
646     gettext.cpp
647     lengthcommon.cpp
648     math.cpp
649     preamble.cpp
650     table.cpp
651     tex2lyx.cpp
652     text.cpp
653 ''')
654
655
656 src_tex2lyx_copied_files = Split('''
657     Color.cpp
658     Counters.cpp
659     FloatList.cpp
660     Floating.cpp
661     Layout.cpp
662     Lexer.cpp
663     TextClass.cpp
664 ''')
665
666
667 src_tex2lyx_extra_files = Split('''
668     Makefile.am
669     pch.h
670     test-insets.tex
671     test-structure.tex
672     test.ltx
673     tex2lyx.man
674 ''')
675
676
677 src_frontends_header_files = Split('''
678     Alert_pimpl.h
679     Application.h
680     Clipboard.h
681     Dialogs.h
682     FileDialog.h
683     FontLoader.h
684     FontMetrics.h
685     Gui.h
686     KeyModifier.h
687     KeySymbol.h
688     LyXView.h
689     NoGuiFontLoader.h
690     NoGuiFontMetrics.h
691     Painter.h
692     Selection.h
693     WorkArea.h
694     WorkAreaManager.h
695     alert.h
696     mouse_state.h
697 ''')
698
699
700 src_frontends_files = Split('''
701     Application.cpp
702     Dialogs.cpp
703     LyXView.cpp
704     Painter.cpp
705     WorkArea.cpp
706     WorkAreaManager.cpp
707     alert.cpp
708 ''')
709
710
711 src_frontends_extra_files = Split('''
712     Makefile.am
713     pch.h
714 ''')
715
716
717 src_frontends_controllers_extra_files = Split('''
718     Makefile.am
719     pch.h
720 ''')
721
722
723 src_frontends_controllers_tests_extra_files = Split('''
724     Makefile.am
725     biblio.cpp
726     boost.cpp
727     pch.h
728     test_biblio
729 ''')
730
731
732 src_frontends_controllers_tests_regfiles_extra_files = Split('''
733     biblio
734 ''')
735
736
737 src_frontends_qt4_header_files = Split('''
738                 ../ButtonPolicy.h
739                 ../Dialog.h
740                 ../frontend_helpers.h
741     Action.h
742     BulletsModule.h
743     ButtonController.h
744     ColorCache.h
745     CustomizedWidgets.h
746     DialogView.h
747     DockView.h
748     EmptyTable.h
749     FloatPlacement.h
750     GuiAbout.h
751     GuiApplication.h
752     GuiBibitem.h
753     GuiBibtex.h
754     GuiBox.h
755     GuiBranches.h
756     GuiBranch.h
757     GuiChanges.h
758     GuiCharacter.h
759     GuiCharacter.h
760     GuiCitation.h
761     GuiClipboard.h
762     GuiCommandBuffer.h
763     GuiCommandEdit.h
764     GuiDelimiter.h
765     GuiDialog.h
766     GuiDocument.h
767     GuiErrorList.h
768     GuiERT.h
769     GuiExternal.h
770     GuiFloat.h
771     GuiFontExample.h
772     GuiFontLoader.h
773     GuiGraphics.h
774     GuiGraphicsUi.h
775     GuiHyperlink.h
776     GuiImage.h
777     GuiImplementation.h
778     GuiInclude.h
779     GuiIndex.h
780     GuiKeySymbol.h
781     GuiListings.h
782     GuiLog.h
783     GuiMath.h
784     GuiMathMatrix.h
785     GuiMenubar.h
786     GuiNomencl.h
787     GuiNote.h
788     GuiPainter.h
789     GuiParagraph.h
790     GuiPopupMenu.h
791     GuiPrefs.h
792     GuiPrint.h
793     GuiRef.h
794     GuiSearch.h
795     GuiSelection.h
796     GuiSelectionManager.h
797     GuiSendto.h
798     GuiSetBorder.h
799     GuiShowFile.h
800     GuiSpellchecker.h
801     GuiTabularCreate.h
802     GuiTabular.h
803     GuiTexinfo.h
804     GuiThesaurus.h
805     GuiToc.h
806     GuiToolbar.h
807     GuiToolbars.h
808     GuiView.h
809     GuiViewSource.h
810     GuiVSpace.h
811     GuiWorkArea.h
812     GuiWrap.h
813     IconPalette.h
814     InsertTableWidget.h
815     LaTeXHighlighter.h
816     LengthCombo.h
817     LyXFileDialog.h
818     PanelStack.h
819     TocModel.h
820     TocWidget.h
821     Validator.h
822     qlkey.h
823     qt_helpers.h
824 ''')
825
826
827 src_frontends_qt4_files = Split('''
828                 ../ButtonPolicy.cpp
829                 ../Dialog.cpp
830                 ../frontend_helpers.cpp
831     Action.cpp
832     BulletsModule.cpp
833     ButtonController.cpp
834     ColorCache.cpp
835     CustomizedWidgets.cpp
836     Dialogs.cpp
837     EmptyTable.cpp
838     FileDialog.cpp
839     FloatPlacement.cpp
840     GuiAbout.cpp
841     GuiApplication.cpp
842     GuiBibitem.cpp
843     GuiBibtex.cpp
844     GuiBox.cpp
845     GuiBranch.cpp
846     GuiBranches.cpp
847     GuiChanges.cpp
848     GuiCharacter.cpp
849     GuiCitation.cpp
850     GuiClipboard.cpp
851     GuiCommandBuffer.cpp
852     GuiCommandEdit.cpp
853     GuiDelimiter.cpp
854     GuiDialog.cpp
855     GuiDocument.cpp
856     GuiErrorList.cpp
857     GuiERT.cpp
858     GuiExternal.cpp
859     GuiFloat.cpp
860     GuiFontExample.cpp
861     GuiFontLoader.cpp
862     GuiFontMetrics.cpp
863     GuiGraphics.cpp
864     GuiHyperlink.cpp
865     GuiImage.cpp
866     GuiImplementation.cpp
867     GuiInclude.cpp
868     GuiIndex.cpp
869     GuiKeySymbol.cpp
870     GuiListings.cpp
871     GuiLog.cpp
872     GuiMath.cpp
873     GuiMathMatrix.cpp
874     GuiMenubar.cpp
875     GuiNomencl.cpp
876     GuiNote.cpp
877     GuiPainter.cpp
878     GuiParagraph.cpp
879     GuiPopupMenu.cpp
880     GuiPrefs.cpp
881     GuiPrint.cpp
882     GuiRef.cpp
883     GuiSearch.cpp
884     GuiSelection.cpp
885     GuiSelectionManager.cpp
886     GuiSendto.cpp
887     GuiSetBorder.cpp
888     GuiShowFile.cpp
889     GuiSpellchecker.cpp
890     GuiTabular.cpp
891     GuiTabularCreate.cpp
892     GuiTexinfo.cpp
893     GuiThesaurus.cpp
894     GuiToc.cpp
895     GuiToolbar.cpp
896     GuiToolbars.cpp
897     GuiView.cpp
898     GuiViewSource.cpp
899     GuiVSpace.cpp
900     GuiWorkArea.cpp
901     GuiWrap.cpp
902     IconPalette.cpp
903     InsertTableWidget.cpp
904     LengthCombo.cpp
905     LaTeXHighlighter.cpp
906     LyXFileDialog.cpp
907     PanelStack.cpp
908     TocModel.cpp
909     TocWidget.cpp
910     Validator.cpp
911     alert_pimpl.cpp
912     qt_helpers.cpp
913 ''')
914
915
916 src_frontends_qt4_extra_files = Split('''
917     GuiFontMetrics.h
918     Makefile.am
919     README
920     pch.h
921 ''')
922
923
924 src_frontends_qt4_ui_files = Split('''
925     AboutUi.ui
926     AskForTextUi.ui
927     BibitemUi.ui
928     BiblioUi.ui
929     BibtexAddUi.ui
930     BibtexUi.ui
931     BoxUi.ui
932     BranchUi.ui
933     BranchesUi.ui
934     BulletsUi.ui
935     ChangesUi.ui
936     CharacterUi.ui
937     CitationUi.ui
938     DelimiterUi.ui
939     DocumentUi.ui
940     ERTUi.ui
941     ErrorListUi.ui
942     ExternalUi.ui
943     FloatPlacementUi.ui
944     FloatUi.ui
945     FontUi.ui
946     GraphicsUi.ui
947     HyperlinkUi.ui
948     IncludeUi.ui
949     IndexUi.ui
950     LaTeXUi.ui
951     LanguageUi.ui
952     ListingsUi.ui
953     LogUi.ui
954     MarginsUi.ui
955     MathMatrixUi.ui
956     MathsUi.ui
957     NomenclUi.ui
958     NoteUi.ui
959     NumberingUi.ui
960     PageLayoutUi.ui
961     ParagraphUi.ui
962     PDFSupportUi.ui
963     PreambleUi.ui
964     PrefColorsUi.ui
965     PrefConvertersUi.ui
966     PrefDateUi.ui
967     PrefDisplayUi.ui
968     PrefFileformatsUi.ui
969     PrefIdentityUi.ui
970     PrefKeyboardUi.ui
971     PrefLanguageUi.ui
972     PrefLatexUi.ui
973     PrefPathsUi.ui
974     PrefPlaintextUi.ui
975     PrefPrinterUi.ui
976     PrefScreenFontsUi.ui
977     PrefShortcutsUi.ui
978     PrefSpellcheckerUi.ui
979     PrefUi.ui
980     PrefsUi.ui
981     PrintUi.ui
982     RefUi.ui
983     SearchUi.ui
984     SendtoUi.ui
985     ShortcutUi.ui
986     ShowFileUi.ui
987     SpellcheckerUi.ui
988     TabularCreateUi.ui
989     TabularUi.ui
990     TexinfoUi.ui
991     TextLayoutUi.ui
992     ThesaurusUi.ui
993     TocUi.ui
994     VSpaceUi.ui
995     ViewSourceUi.ui
996     WrapUi.ui
997 ''')
998
999
1000 src_frontends_qt4_ui_extra_files = Split('''
1001     Makefile.am
1002     compile_uic.sh
1003 ''')
1004
1005
1006 src_insets_header_files = Split('''
1007     ExternalSupport.h
1008     ExternalTemplate.h
1009     ExternalTransforms.h
1010     Inset.h
1011     InsetBibitem.h
1012     InsetBibtex.h
1013     InsetBox.h
1014     InsetBranch.h
1015     InsetCaption.h
1016     InsetCitation.h
1017     InsetCode.h
1018     InsetCollapsable.h
1019     InsetCommand.h
1020     InsetCommandParams.h
1021     InsetERT.h
1022     InsetEnvironment.h
1023     InsetExternal.h
1024     InsetFlex.h
1025     InsetFloat.h
1026     InsetFloatList.h
1027     InsetFoot.h
1028     InsetFootlike.h
1029     InsetGraphics.h
1030     InsetGraphicsParams.h
1031     InsetHFill.h
1032     InsetHyperlink.h
1033     InsetInclude.h
1034     InsetIndex.h
1035     InsetInfo.h
1036     InsetLabel.h
1037     InsetLine.h
1038     InsetListings.h
1039     InsetListingsParams.h
1040     InsetMarginal.h
1041     InsetNewline.h
1042     InsetNomencl.h
1043     InsetNote.h
1044     InsetOptArg.h
1045     InsetPagebreak.h
1046     InsetQuotes.h
1047     InsetRef.h
1048     InsetSpace.h
1049     InsetSpecialChar.h
1050     InsetTOC.h
1051     InsetTabular.h
1052     InsetText.h
1053     InsetVSpace.h
1054     InsetWrap.h
1055     MailInset.h
1056     RenderBase.h
1057     RenderButton.h
1058     RenderGraphic.h
1059     RenderPreview.h
1060 ''')
1061
1062
1063 src_insets_files = Split('''
1064     ExternalSupport.cpp
1065     ExternalTemplate.cpp
1066     ExternalTransforms.cpp
1067     Inset.cpp
1068     InsetBibitem.cpp
1069     InsetBibtex.cpp
1070     InsetBox.cpp
1071     InsetBranch.cpp
1072     InsetCaption.cpp
1073     InsetCitation.cpp
1074     InsetCollapsable.cpp
1075     InsetCommand.cpp
1076     InsetCommandParams.cpp
1077     InsetERT.cpp
1078     InsetEnvironment.cpp
1079     InsetExternal.cpp
1080     InsetFlex.cpp
1081     InsetFloat.cpp
1082     InsetFloatList.cpp
1083     InsetFoot.cpp
1084     InsetFootlike.cpp
1085     InsetGraphics.cpp
1086     InsetGraphicsParams.cpp
1087     InsetHFill.cpp
1088     InsetHyperlink.cpp
1089     InsetInclude.cpp
1090     InsetIndex.cpp
1091     InsetInfo.cpp
1092     InsetLabel.cpp
1093     InsetLine.cpp
1094     InsetListings.cpp
1095     InsetListingsParams.cpp
1096     InsetMarginal.cpp
1097     InsetNewline.cpp
1098     InsetNomencl.cpp
1099     InsetNote.cpp
1100     InsetOptArg.cpp
1101     InsetPagebreak.cpp
1102     InsetQuotes.cpp
1103     InsetRef.cpp
1104     InsetSpace.cpp
1105     InsetSpecialChar.cpp
1106     InsetTOC.cpp
1107     InsetTabular.cpp
1108     InsetText.cpp
1109     InsetVSpace.cpp
1110     InsetWrap.cpp
1111     MailInset.cpp
1112     RenderButton.cpp
1113     RenderGraphic.cpp
1114     RenderPreview.cpp
1115 ''')
1116
1117
1118 src_insets_extra_files = Split('''
1119     InsetTheorem.cpp
1120     InsetTheorem.h
1121     Makefile.am
1122     pch.h
1123 ''')
1124
1125
1126 intl_header_files = Split('''
1127     eval-plural.h
1128     gettextP.h
1129     gmo.h
1130     hash-string.h
1131     loadinfo.h
1132     localcharset.h
1133     os2compat.h
1134     plural-exp.h
1135     printf-args.h
1136     printf-parse.h
1137     relocatable.h
1138     vasnprintf.h
1139     vasnwprintf.h
1140     wprintf-parse.h
1141     xsize.h
1142 ''')
1143
1144
1145 intl_files = Split('''
1146     bindtextdom.c
1147     dcgettext.c
1148     dcigettext.c
1149     dcngettext.c
1150     dgettext.c
1151     dngettext.c
1152     explodename.c
1153     finddomain.c
1154     gettext.c
1155     intl-compat.c
1156     l10nflist.c
1157     langprefs.c
1158     loadmsgcat.c
1159     localcharset.c
1160     localealias.c
1161     localename.c
1162     log.c
1163     ngettext.c
1164     osdep.c
1165     plural-exp.c
1166     plural.c
1167     printf.c
1168     relocatable.c
1169     textdomain.c
1170 ''')
1171
1172
1173 intl_extra_files = Split('''
1174     VERSION
1175     config.charset
1176     libgnuintl.h.in
1177     locale.alias
1178     os2compat.c
1179     plural.y
1180     printf-args.c
1181     printf-parse.c
1182     ref-add.sin
1183     ref-del.sin
1184     vasnprintf.c
1185 ''')
1186
1187
1188 config_extra_files = Split('''
1189     Makefile.am
1190     common.am
1191     config.guess
1192     config.rpath
1193     config.sub
1194     depcomp
1195     install-sh
1196     libtool.m4
1197     ltmain.sh
1198     lyxinclude.m4
1199     missing
1200     mkinstalldirs
1201     pkg.m4
1202     py-compile
1203     qt4.m4
1204     spell.m4
1205 ''')
1206
1207
1208 sourcedoc_extra_files = Split('''
1209     Doxyfile.in
1210     Makefile.am
1211 ''')
1212
1213
1214 po_extra_files = Split('''
1215     LINGUAS
1216     Makefile.in.in
1217     Makevars
1218     POTFILES.in
1219     README
1220     Rules-quot
1221     bg.po
1222     boldquot.sed
1223     ca.po
1224     cs.po
1225     da.po
1226     de.po
1227     en@boldquot.header
1228     en@quot.header
1229     es.po
1230     eu.po
1231     fi.po
1232     fr.po
1233     gl.po
1234     he.po
1235     hu.po
1236     insert-header.sin
1237     it.po
1238     ja.po
1239     ko.po
1240     lyx_pot.py
1241     nb.po
1242     nl.po
1243     nn.po
1244     pl.po
1245     pocheck.pl
1246     postats.sh
1247     pt.po
1248     quot.sed
1249     remove-potcdate.sin
1250     ro.po
1251     ru.po
1252     sk.po
1253     sl.po
1254     sv.po
1255     tr.po
1256     wa.po
1257     zh_CN.po
1258     zh_TW.po
1259 ''')
1260
1261
1262 lib_files = Split('''
1263     CREDITS
1264     chkconfig.ltx
1265     configure.py
1266     encodings
1267     external_templates
1268     languages
1269     symbols
1270     syntax.default
1271     unicodesymbols
1272 ''')
1273
1274
1275 lib_extra_files = Split('''
1276     Makefile.am
1277     autocorrect
1278     build-listerrors
1279     generate_contributions.py
1280 ''')
1281
1282
1283 lib_kbd_files = Split('''
1284     american-2.kmap
1285     american.kmap
1286     arabic.kmap
1287     bg-bds-1251.kmap
1288     brazil.kmap
1289     brazil2.kmap
1290     czech-prg.kmap
1291     czech.kmap
1292     espanol.kmap
1293     european.kmap
1294     farsi.kmap
1295     francais.kmap
1296     french.kmap
1297     german-2.kmap
1298     german-3.kmap
1299     german.kmap
1300     greek.kmap
1301     hebrew.kmap
1302     koi8-r.kmap
1303     koi8-u.kmap
1304     latvian.kmap
1305     magyar-2.kmap
1306     magyar-3.kmap
1307     magyar.kmap
1308     null.kmap
1309     polish.kmap
1310     polski.kmap
1311     portuges.kmap
1312     romanian.kmap
1313     serbian.kmap
1314     serbocroatian.kmap
1315     sf.kmap
1316     sg.kmap
1317     slovak.kmap
1318     slovene.kmap
1319     thai-kedmanee.kmap
1320     transilvanian.kmap
1321     turkish-f.kmap
1322     turkish.kmap
1323 ''')
1324
1325
1326 lib_templates_files = Split('''
1327     IEEEtran.lyx
1328     README.new_templates
1329     aa.lyx
1330     aastex.lyx
1331     agu_article.lyx
1332     apa.lyx
1333     beamer-conference-ornate-20min.lyx
1334     de_beamer-conference-ornate-20min.lyx
1335     dinbrief.lyx
1336     docbook_article.lyx
1337     elsart.lyx
1338     fr_beamer-conference-ornate-20min.lyx
1339     g-brief-de.lyx
1340     g-brief-en.lyx
1341     g-brief2.lyx
1342     hollywood.lyx
1343     ijmpc.lyx
1344     ijmpd.lyx
1345     iop-article.lyx
1346     kluwer.lyx
1347     koma-letter2.lyx
1348     latex8.lyx
1349     letter.lyx
1350     revtex.lyx
1351     revtex4.lyx
1352     slides.lyx
1353 ''')
1354
1355
1356 lib_ui_files = Split('''
1357     classic.ui
1358     default.ui
1359     stdmenus.inc
1360     stdtoolbars.inc
1361 ''')
1362
1363
1364 lib_fonts_files = Split('''
1365     BaKoMaFontLicense.txt
1366     ReadmeBaKoMa4LyX.txt
1367     cmex10.ttf
1368     cmmi10.ttf
1369     cmr10.ttf
1370     cmsy10.ttf
1371     esint10.ttf
1372     eufm10.ttf
1373     msam10.ttf
1374     msbm10.ttf
1375     wasy10.ttf
1376 ''')
1377
1378
1379 lib_images_files = Split('''
1380     all-changes-accept.png
1381     all-changes-reject.png
1382     amssymb.png
1383     banner.png
1384     bookmark-goto.png
1385     bookmark-save.png
1386     break-line.png
1387     buffer-close.png
1388     buffer-export_dvi.png
1389     buffer-export_latex.png
1390     buffer-export_pdf2.png
1391     buffer-export_ps.png
1392     buffer-export_text.png
1393     buffer-new.png
1394     buffer-reload.png
1395     buffer-update_dvi.png
1396     buffer-update_pdf2.png
1397     buffer-update_ps.png
1398     buffer-view_dvi.png
1399     buffer-view_pdf2.png
1400     buffer-view_ps.png
1401     buffer-write-as.png
1402     buffer-write.png
1403     build-program.png
1404     change-accept.png
1405     change-next.png
1406     change-reject.png
1407     changes-merge.png
1408     changes-output.png
1409     changes-track.png
1410     closetab.png
1411     copy.png
1412     cut.png
1413     demote.png
1414     depth-decrement.png
1415     depth-increment.png
1416     dialog-preferences.png
1417     dialog-show-new-inset_citation.png
1418     dialog-show-new-inset_graphics.png
1419     dialog-show-new-inset_include.png
1420     dialog-show-new-inset_ref.png
1421     dialog-show_character.png
1422     dialog-show_findreplace.png
1423     dialog-show_mathdelimiter.png
1424     dialog-show_mathmatrix.png
1425     dialog-show_print.png
1426     dialog-show_spellchecker.png
1427     dialog-toggle_toc.png
1428     down.png
1429     ert-insert.png
1430     file-open.png
1431     float-insert_figure.png
1432     float-insert_table.png
1433     font-bold.png
1434     font-emph.png
1435     font-free-apply.png
1436     font-noun.png
1437     font-sans.png
1438     footnote-insert.png
1439     href-insert.png
1440     index-insert.png
1441     label-insert.png
1442     layout-document.png
1443     layout-paragraph.png
1444     layout.png
1445     layout_Description.png
1446     layout_Enumerate.png
1447     layout_Itemize.png
1448     layout_List.png
1449     layout_LyX-Code.png
1450     layout_Scrap.png
1451     layout_Section.png
1452     lyx-quit.png
1453     lyx.png
1454     marginalnote-insert.png
1455     math-display.png
1456     math-matrix.png
1457     math-mode.png
1458     math-subscript.png
1459     math-superscript.png
1460     nomencl-insert.png
1461     note-insert.png
1462     note-next.png
1463     paste.png
1464     promote.png
1465     psnfss1.png
1466     psnfss2.png
1467     psnfss3.png
1468     psnfss4.png
1469     redo.png
1470     reload.png
1471     standard.png
1472     tabular-feature_align-center.png
1473     tabular-feature_align-left.png
1474     tabular-feature_align-right.png
1475     tabular-feature_append-column.png
1476     tabular-feature_append-row.png
1477     tabular-feature_delete-column.png
1478     tabular-feature_delete-row.png
1479     tabular-feature_multicolumn.png
1480     tabular-feature_set-all-lines.png
1481     tabular-feature_set-longtabular.png
1482     tabular-feature_set-rotate-cell.png
1483     tabular-feature_toggle-rotate-cell.png
1484     tabular-feature_set-rotate-tabular.png
1485     tabular-feature_toggle-rotate-tabular.png
1486     tabular-feature_toggle-line-bottom.png
1487     tabular-feature_toggle-line-left.png
1488     tabular-feature_toggle-line-right.png
1489     tabular-feature_toggle-line-top.png
1490     tabular-feature_unset-all-lines.png
1491     tabular-feature_valign-bottom.png
1492     tabular-feature_valign-middle.png
1493     tabular-feature_valign-top.png
1494     tabular-insert.png
1495     thesaurus-entry.png
1496     toolbar-toggle_math.png
1497     toolbar-toggle_math_panels.png
1498     toolbar-toggle_table.png
1499     undo.png
1500     unknown.png
1501     up.png
1502 ''')
1503
1504
1505 lib_images_extra_files = Split('''
1506     README
1507     font-smallcaps.png
1508 ''')
1509
1510
1511 lib_images_math_files = Split('''
1512     Bbbk.png
1513     Finv.png
1514     Game.png
1515     Im.png
1516     Lleftarrow.png
1517     Lsh.png
1518     Re.png
1519     Rrightarrow.png
1520     Rsh.png
1521     Vert.png
1522     Vvdash.png
1523     acute.png
1524     aleph.png
1525     alpha.png
1526     amalg.png
1527     angle.png
1528     approx.png
1529     approxeq.png
1530     asymp.png
1531     backepsilon.png
1532     backprime.png
1533     backsim.png
1534     backsimeq.png
1535     backslash.png
1536     bar.png
1537     bars.png
1538     barwedge.png
1539     because.png
1540     beta.png
1541     beth.png
1542     between.png
1543     bigcap.png
1544     bigcirc.png
1545     bigcup.png
1546     bigodot.png
1547     bigoplus.png
1548     bigotimes.png
1549     bigsqcup.png
1550     bigstar.png
1551     bigtriangledown.png
1552     bigtriangleup.png
1553     biguplus.png
1554     bigvee.png
1555     bigwedge.png
1556     blacklozenge.png
1557     blacksquare.png
1558     blacktriangle.png
1559     blacktriangledown.png
1560     blacktriangleleft.png
1561     blacktriangleright.png
1562     bot.png
1563     bowtie.png
1564     boxdot.png
1565     boxminus.png
1566     boxplus.png
1567     boxtimes.png
1568     breve.png
1569     bullet.png
1570     bumpeq.png
1571     bumpeq2.png
1572     cap.png
1573     cap2.png
1574     cases.png
1575     cdot.png
1576     cdots.png
1577     centerdot.png
1578     check.png
1579     chi.png
1580     circ.png
1581     circeq.png
1582     circlearrowleft.png
1583     circlearrowright.png
1584     circledS.png
1585     circledast.png
1586     circledcirc.png
1587     circleddash.png
1588     clubsuit.png
1589     complement.png
1590     cong.png
1591     coprod.png
1592     cup.png
1593     cup2.png
1594     curlyeqprec.png
1595     curlyeqsucc.png
1596     curlyvee.png
1597     curlywedge.png
1598     curvearrowleft.png
1599     curvearrowright.png
1600     dagger.png
1601     daleth.png
1602     dashleftarrow.png
1603     dashrightarrow.png
1604     dashv.png
1605     ddagger.png
1606     ddot.png
1607     ddots.png
1608     delim.png
1609     delta.png
1610     delta2.png
1611     diagdown.png
1612     diagup.png
1613     diamond.png
1614     diamondsuit.png
1615     digamma.png
1616     div.png
1617     divideontimes.png
1618     dot.png
1619     doteq.png
1620     doteqdot.png
1621     dotplus.png
1622     dotsint.png
1623     dotsintop.png
1624     doublebarwedge.png
1625     downarrow.png
1626     downarrow2.png
1627     downdownarrows.png
1628     downharpoonleft.png
1629     downharpoonright.png
1630     ell.png
1631     empty.png
1632     emptyset.png
1633     epsilon.png
1634     eqcirc.png
1635     eqslantgtr.png
1636     eqslantless.png
1637     equation.png
1638     equiv.png
1639     eta.png
1640     eth.png
1641     exists.png
1642     fallingdotseq.png
1643     flat.png
1644     font.png
1645     forall.png
1646     frac-square.png
1647     frac.png
1648     frown.png
1649     functions.png
1650     gamma.png
1651     gamma2.png
1652     geq.png
1653     geqq.png
1654     geqslant.png
1655     gg.png
1656     ggg.png
1657     gimel.png
1658     gnapprox.png
1659     gneq.png
1660     gneqq.png
1661     gnsim.png
1662     grave.png
1663     gtrapprox.png
1664     gtrdot.png
1665     gtreqless.png
1666     gtreqqless.png
1667     gtrless.png
1668     gtrsim.png
1669     gvertneqq.png
1670     hat.png
1671     hbar.png
1672     heartsuit.png
1673     hookleftarrow.png
1674     hookrightarrow.png
1675     hphantom.png
1676     hslash.png
1677     iiiint.png
1678     iiiintop.png
1679     iiint.png
1680     iiintop.png
1681     iint.png
1682     iintop.png
1683     imath.png
1684     in.png
1685     infty.png
1686     int.png
1687     intercal.png
1688     intop.png
1689     iota.png
1690     jmath.png
1691     kappa.png
1692     lambda.png
1693     lambda2.png
1694     langle.png
1695     lbrace.png
1696     lbrace_rbrace.png
1697     lbracket.png
1698     lbracket_rbracket.png
1699     lceil.png
1700     lceil_rceil.png
1701     ldots.png
1702     leftarrow.png
1703     leftarrow2.png
1704     leftarrowtail.png
1705     leftharpoondown.png
1706     leftharpoonup.png
1707     leftleftarrows.png
1708     leftrightarrow.png
1709     leftrightarrow2.png
1710     leftrightarrows.png
1711     leftrightharpoons.png
1712     leftrightsquigarrow.png
1713     leftthreetimes.png
1714     leq.png
1715     leqq.png
1716     leqslant.png
1717     lessapprox.png
1718     lessdot.png
1719     lesseqgtr.png
1720     lesseqqgtr.png
1721     lessgtr.png
1722     lesssim.png
1723     lfloor.png
1724     lfloor_rfloor.png
1725     ll.png
1726     llcorner.png
1727     lll.png
1728     lnapprox.png
1729     lneq.png
1730     lneqq.png
1731     lnsim.png
1732     longleftarrow.png
1733     longleftarrow2.png
1734     longleftrightarrow.png
1735     longleftrightarrow2.png
1736     longmapsto.png
1737     longrightarrow.png
1738     longrightarrow2.png
1739     looparrowleft.png
1740     looparrowright.png
1741     lozenge.png
1742     lparen.png
1743     lparen_rparen.png
1744     lrcorner.png
1745     ltimes.png
1746     lvertneqq.png
1747     mapsto.png
1748     mathbb_C.png
1749     mathbb_H.png
1750     mathbb_N.png
1751     mathbb_Q.png
1752     mathbb_R.png
1753     mathbb_Z.png
1754     mathcal_F.png
1755     mathcal_H.png
1756     mathcal_L.png
1757     mathcal_O.png
1758     mathcircumflex.png
1759     mathrm_T.png
1760     matrix.png
1761     measuredangle.png
1762     mho.png
1763     mid.png
1764     models.png
1765     mp.png
1766     mu.png
1767     multimap.png
1768     nabla.png
1769     natural.png
1770     ncong.png
1771     nearrow.png
1772     neg.png
1773     neq.png
1774     nexists.png
1775     ngeq.png
1776     ngeqq.png
1777     ngeqslant.png
1778     ngtr.png
1779     ni.png
1780     nleftarrow.png
1781     nleftarrow2.png
1782     nleftrightarrow.png
1783     nleftrightarrow2.png
1784     nleq.png
1785     nleqq.png
1786     nleqslant.png
1787     nless.png
1788     nmid.png
1789     notin.png
1790     nparallel.png
1791     nprec.png
1792     npreceq.png
1793     nrightarrow.png
1794     nrightarrow2.png
1795     nshortmid.png
1796     nshortparallel.png
1797     nsim.png
1798     nsubseteq.png
1799     nsucc.png
1800     nsucceq.png
1801     nsupseteq.png
1802     nsupseteqq.png
1803     ntriangleleft.png
1804     ntrianglelefteq.png
1805     ntriangleright.png
1806     ntrianglerighteq.png
1807     nu.png
1808     nvdash.png
1809     nvdash2.png
1810     nvdash3.png
1811     nwarrow.png
1812     odot.png
1813     oiint.png
1814     oiintop.png
1815     oint.png
1816     ointclockwise.png
1817     ointclockwiseop.png
1818     ointctrclockwise.png
1819     ointctrclockwiseop.png
1820     ointop.png
1821     omega.png
1822     omega2.png
1823     ominus.png
1824     oplus.png
1825     oslash.png
1826     otimes.png
1827     overbrace.png
1828     overleftarrow.png
1829     overleftrightarrow.png
1830     overline.png
1831     overrightarrow.png
1832     overset.png
1833     parallel.png
1834     partial.png
1835     perp.png
1836     phantom.png
1837     phi.png
1838     phi2.png
1839     pi.png
1840     pi2.png
1841     pitchfork.png
1842     pm.png
1843     prec.png
1844     precapprox.png
1845     preccurlyeq.png
1846     preceq.png
1847     precnapprox.png
1848     precnsim.png
1849     precsim.png
1850     prime.png
1851     prod.png
1852     propto.png
1853     psi.png
1854     psi2.png
1855     rangle.png
1856     rbrace.png
1857     rbracket.png
1858     rceil.png
1859     rfloor.png
1860     rho.png
1861     rightarrow.png
1862     rightarrow2.png
1863     rightarrowtail.png
1864     rightharpoondown.png
1865     rightharpoonup.png
1866     rightleftarrows.png
1867     rightleftharpoons.png
1868     rightrightarrows.png
1869     rightsquigarrow.png
1870     rightthreetimes.png
1871     risingdotseq.png
1872     root.png
1873     rparen.png
1874     rtimes.png
1875     searrow.png
1876     setminus.png
1877     sharp.png
1878     shortmid.png
1879     shortparallel.png
1880     sigma.png
1881     sigma2.png
1882     sim.png
1883     simeq.png
1884     slash.png
1885     smallfrown.png
1886     smallsetminus.png
1887     smallsmile.png
1888     smile.png
1889     space.png
1890     spadesuit.png
1891     sphericalangle.png
1892     sqcap.png
1893     sqcup.png
1894     sqiint.png
1895     sqiintop.png
1896     sqint.png
1897     sqintop.png
1898     sqrt-square.png
1899     sqrt.png
1900     sqsubset.png
1901     sqsubseteq.png
1902     sqsupset.png
1903     sqsupseteq.png
1904     square.png
1905     star.png
1906     style.png
1907     style.png
1908     sub.png
1909     subset.png
1910     subset2.png
1911     subseteq.png
1912     subseteqq.png
1913     subsetneq.png
1914     subsetneqq.png
1915     succ.png
1916     succapprox.png
1917     succcurlyeq.png
1918     succeq.png
1919     succnapprox.png
1920     succnsim.png
1921     succsim.png
1922     sum.png
1923     super.png
1924     supset.png
1925     supset2.png
1926     supseteq.png
1927     supseteqq.png
1928     supsetneq.png
1929     supsetneqq.png
1930     surd.png
1931     swarrow.png
1932     tau.png
1933     textrm_AA.png
1934     textrm_Oe.png
1935     therefore.png
1936     theta.png
1937     theta2.png
1938     thickapprox.png
1939     thicksim.png
1940     tilde.png
1941     times.png
1942     top.png
1943     triangle.png
1944     triangledown.png
1945     triangleleft.png
1946     trianglelefteq.png
1947     triangleq.png
1948     triangleright.png
1949     trianglerighteq.png
1950     twoheadleftarrow.png
1951     twoheadrightarrow.png
1952     ulcorner.png
1953     underbrace.png
1954     underleftarrow.png
1955     underleftrightarrow.png
1956     underline.png
1957     underrightarrow.png
1958     underscore.png
1959     underset.png
1960     uparrow.png
1961     uparrow2.png
1962     updownarrow.png
1963     updownarrow2.png
1964     upharpoonleft.png
1965     upharpoonright.png
1966     uplus.png
1967     upsilon.png
1968     upsilon2.png
1969     upuparrows.png
1970     urcorner.png
1971     varepsilon.png
1972     varkappa.png
1973     varnothing.png
1974     varphi.png
1975     varpi.png
1976     varpropto.png
1977     varrho.png
1978     varsigma.png
1979     varsubsetneq.png
1980     varsubsetneqq.png
1981     varsupsetneq.png
1982     varsupsetneqq.png
1983     vartheta.png
1984     vartriangle.png
1985     vartriangleleft.png
1986     vartriangleright.png
1987     vdash.png
1988     vdash2.png
1989     vdash3.png
1990     vdots.png
1991     vec.png
1992     vee.png
1993     veebar.png
1994     vphantom.png
1995     wedge.png
1996     widehat.png
1997     widetilde.png
1998     wp.png
1999     wr.png
2000     xi.png
2001     xi2.png
2002     zeta.png
2003 ''')
2004
2005
2006 lib_images_math_extra_files = Split('''
2007     ams_arrows.png
2008     ams_misc.png
2009     ams_nrel.png
2010     ams_ops.png
2011     ams_rel.png
2012     arrows.png
2013     bop.png
2014     brel.png
2015     deco.png
2016     deco.png
2017     delim.png
2018     delim0.png
2019     delim1.png
2020     dots.png
2021     font.png
2022     functions.png
2023     greek.png
2024     misc.png
2025     varsz.png
2026 ''')
2027
2028
2029 lib_images_commands_files = Split('''
2030 ''')
2031
2032
2033 lib_images_attic_extra_files = Split('''
2034     dialog-show_mathpanel.png
2035 ''')
2036
2037
2038 lib_tex_files = Split('''
2039     broadway.cls
2040     hollywood.cls
2041     lyxchess.sty
2042     lyxskak.sty
2043     revtex.cls
2044 ''')
2045
2046
2047 lib_doc_files = Split('''
2048     Customization.lyx
2049     DocStyle.lyx
2050     DummyDocument1.lyx
2051     DummyDocument2.lyx
2052     DummyTextDocument.txt
2053     EmbeddedObjects.lyx
2054     Extended.lyx
2055     FAQ.lyx
2056     Intro.lyx
2057     LaTeXConfig.lyx
2058     Reference.lyx
2059     Shortcuts.lyx
2060     Tutorial.lyx
2061     UserGuide.lyx
2062 ''')
2063
2064
2065 lib_doc_biblio_files = Split('''
2066     alphadin.bst
2067     LyXDocs.bib
2068 ''')
2069
2070
2071 lib_doc_clipart_files = Split('''
2072     Abstract.pdf
2073     BoxInsetDefaultQt4.png
2074     ChangesToolbar.png
2075     ChildDocumentQt4.png
2076     CommentNoteImageQt4.png
2077     ERT.png
2078     ExternalMaterialQt4.png
2079     ExtraToolbar.png
2080     FramedNoteImageQt4.png
2081     GreyedOutNoteImageQt4.png
2082     LaTeX.png
2083     LyXNoteImageQt4.png
2084     ShadedNoteImageQt4.png
2085     SpaceMarker.png
2086     StandardToolbar.png
2087     ToolbarEnvBox.png
2088     endnotes.pdf
2089     escher-lsd.eps
2090     floatQt4.png
2091     footnoteQt4.png
2092     labelQt4.png
2093     macrobox.png
2094     macrouse.png
2095     mbox.png
2096     mobius.eps
2097     platypus.eps
2098     referenceQt4.png
2099     ViewToolbar.png
2100     with_fntright.pdf
2101     without_fntright.pdf
2102 ''')
2103
2104
2105 lib_doc_extra_files = Split('''
2106     Makefile.am
2107     Makefile.depend
2108     README.Documentation
2109     depend.py
2110     doc_toc.py
2111 ''')
2112
2113
2114 lib_doc_cs_files = Split('''
2115     Tutorial.lyx
2116 ''')
2117
2118
2119 lib_doc_de_files = Split('''
2120     Customization.lyx
2121     DummyDocument1.lyx
2122     DummyDocument2.lyx
2123     DummyTextDocument.txt
2124     EmbeddedObjects.lyx
2125     Extended.lyx
2126     FAQ.lyx
2127     Intro.lyx
2128     Tutorial.lyx
2129     UserGuide.lyx
2130 ''')
2131
2132
2133 lib_doc_de_clipart_files = Split('''
2134     ERT.png
2135     ExternesMaterialQt4.png
2136     FussnoteQt4.png
2137     GerahmteNotizQt4.png
2138     GleitobjektQt4.png
2139     GrauschriftNotizQt4.png
2140     KommentarQt4.png
2141     LyXNotizQt4.png
2142     Marke.png
2143     Querverweis.png
2144     SchattierteNotizQt4.png
2145     StandardBoxQt4.png
2146     UnterdokumentQt4.png
2147 ''')
2148
2149
2150 lib_doc_da_files = Split('''
2151     Intro.lyx
2152 ''')
2153
2154
2155 lib_doc_es_files = Split('''
2156     DocumentoPostizo1.lyx
2157     DocumentoPostizo2.lyx
2158     DocumentoTextoPostizo.txt
2159     EmbeddedObjects.lyx
2160     Extended.lyx
2161     Intro.lyx
2162     Tutorial.lyx
2163     UserGuide.lyx
2164 ''')
2165
2166
2167 lib_doc_es_biblio_files = Split('''
2168     alphadin.bst
2169     LyXDocs.bib
2170 ''')
2171
2172
2173 lib_doc_es_clipart_files = Split('''
2174     ComentNotaImagenQt4.png
2175     CuadroMinipagQt4.png
2176     DocumentoHijoQt4.png
2177     GrisNotaImagenQt4.png
2178     MaterialExternoQt4.png
2179     NotaEnmarcadaImg.png
2180     NotaLyXImagenQt4.png
2181     NotaSombreadaImg.png
2182     Resumen.pdf
2183     es_ERT.png
2184     etiquetaQt4.png
2185     flotanteQt4.png
2186     notapieQt4.png
2187     referenciaQt4.png
2188 ''')
2189
2190
2191 lib_doc_eu_files = Split('''
2192     Customization.lyx
2193     Extended.lyx
2194     FAQ.lyx
2195     Intro.lyx
2196     Tutorial.lyx
2197     UserGuide.lyx
2198 ''')
2199
2200
2201 lib_doc_fr_files = Split('''
2202     Customization.lyx
2203     Extended.lyx
2204     FAQ.lyx
2205     Intro.lyx
2206     Tutorial.lyx
2207     UserGuide.lyx
2208 ''')
2209
2210
2211 lib_doc_gl_extra_files = Split('''
2212     Intro.lyx
2213     Tutorial.lyx
2214 ''')
2215
2216
2217 lib_doc_he_files = Split('''
2218     Intro.lyx
2219     Tutorial.lyx
2220 ''')
2221
2222
2223 lib_doc_hu_files = Split('''
2224     Intro.lyx
2225     Tutorial.lyx
2226 ''')
2227
2228
2229 lib_doc_it_files = Split('''
2230     Customization.lyx
2231     Intro.lyx
2232     Tutorial.lyx
2233     UserGuide.lyx
2234 ''')
2235
2236
2237 lib_doc_nb_files = Split('''
2238     Intro.lyx
2239 ''')
2240
2241
2242 lib_doc_nl_files = Split('''
2243     Intro.lyx
2244     Tutorial.lyx
2245 ''')
2246
2247
2248 lib_doc_pl_files = Split('''
2249     Extended.lyx
2250     Intro.lyx
2251     Tutorial.lyx
2252 ''')
2253
2254
2255 lib_doc_pt_files = Split('''
2256     Intro.lyx
2257     Tutorial.lyx
2258 ''')
2259
2260
2261 lib_doc_ro_files = Split('''
2262     Intro.lyx
2263 ''')
2264
2265
2266 lib_doc_ru_files = Split('''
2267     FAQ.lyx
2268     Intro.lyx
2269     Tutorial.lyx
2270 ''')
2271
2272
2273 lib_doc_sl_files = Split('''
2274     Intro.lyx
2275     Tutorial.lyx
2276 ''')
2277
2278
2279 lib_doc_sk_files = Split('''
2280     Tutorial.lyx
2281     UserGuide.lyx
2282 ''')
2283
2284
2285 lib_doc_sv_files = Split('''
2286     Intro.lyx
2287     Tutorial.lyx
2288 ''')
2289
2290
2291 lib_examples_files = Split('''
2292     CV-image.eps
2293     CV-image.png
2294     Foils.lyx
2295     ItemizeBullets.lyx
2296     Literate.lyx
2297     Minipage.lyx
2298     aa_sample.lyx
2299     aas_sample.lyx
2300     amsart-test.lyx
2301     amsbook-test.lyx
2302     armenian-article.lyx
2303     beamer-g4-mask.jpg
2304     beamer-g4.jpg
2305     beamer-icsi-logo.pdf
2306     beamer-knight1-mask.png
2307     beamer-knight1.png
2308     beamer-knight2-mask.png
2309     beamer-knight2.png
2310     beamer-knight3-mask.png
2311     beamer-knight3.png
2312     beamer-knight4-mask.png
2313     beamer-knight4.png
2314     beamerlyxexample1.lyx
2315     biblioExample.bib
2316     chess-article.lyx
2317     chessgame.lyx
2318     currency.lyx
2319     docbook_article.lyx
2320     europeCV.lyx
2321     example_lyxified.lyx
2322     example_raw.lyx
2323     iecc05.fen
2324     iecc07.fen
2325     iecc12.fen
2326     landslide.lyx
2327     listerrors.lyx
2328     listings.lyx
2329     mathed.lyx
2330     modernCV.lyx
2331     multicol.lyx
2332     noweb2lyx.lyx
2333     powerdot-example.lyx
2334     script_form.lyx
2335     simplecv.lyx
2336     splash.lyx
2337 ''')
2338
2339
2340 lib_examples_ca_files = Split('''
2341     splash.lyx
2342 ''')
2343
2344
2345 lib_examples_cs_files = Split('''
2346     splash.lyx
2347 ''')
2348
2349
2350 lib_examples_da_files = Split('''
2351     splash.lyx
2352 ''')
2353
2354
2355 lib_examples_de_files = Split('''
2356     Dezimal.lyx
2357     ItemizeBullets.lyx
2358     Lebenslauf.lyx
2359     Minipage.lyx
2360     TabellenBeispiel.lyx
2361     Waehrungen.lyx
2362     beispiel_gelyxt.lyx
2363     beispiel_roh.lyx
2364     mathed.lyx
2365     multicol.lyx
2366     splash.lyx
2367 ''')
2368
2369
2370 lib_examples_fa_files = Split('''
2371     splash.lyx
2372 ''')
2373
2374
2375 lib_examples_fr_files = Split('''
2376     AlignementDecimal.lyx
2377     simplecv.lyx
2378     ExemplesTableaux.lyx
2379     Foils.lyx
2380     ListesPuces.lyx
2381     Minipage.lyx
2382     exemple_brut.lyx
2383     exemple_lyxifie.lyx
2384     mathed.lyx
2385     multicol.lyx
2386     splash.lyx
2387 ''')
2388
2389
2390 lib_examples_es_files = Split('''
2391     ejemplo_con_lyx.lyx
2392     ejemplo_sin_lyx.lyx
2393     splash.lyx
2394 ''')
2395
2396
2397 lib_examples_eu_files = Split('''
2398     adibide_gordina.lyx
2399     adibide_lyx-atua.lyx
2400     splash.lyx
2401 ''')
2402
2403
2404 lib_examples_gl_extra_files = Split('''
2405     exemplo_bruto.lyx
2406     exemplo_lyxificado.lyx
2407     splash.lyx
2408 ''')
2409
2410
2411 lib_examples_he_files = Split('''
2412     example_lyxified.lyx
2413     example_raw.lyx
2414     splash.lyx
2415 ''')
2416
2417
2418 lib_examples_hu_files = Split('''
2419     example_lyxified.lyx
2420     example_raw.lyx
2421     splash.lyx
2422 ''')
2423
2424
2425 lib_examples_it_files = Split('''
2426     ItemizeBullets.lyx
2427     splash.lyx
2428 ''')
2429
2430
2431 lib_examples_nl_files = Split('''
2432     multicol.lyx
2433     opsommingstekens.lyx
2434     splash.lyx
2435     voorbeeld_ruw.lyx
2436     voorbeeld_verlyxt.lyx
2437 ''')
2438
2439
2440 lib_examples_pl_files = Split('''
2441     splash.lyx
2442 ''')
2443
2444
2445 lib_examples_pt_files = Split('''
2446     splash.lyx
2447 ''')
2448
2449
2450 lib_examples_ro_files = Split('''
2451     splash.lyx
2452 ''')
2453
2454
2455 lib_examples_ru_files = Split('''
2456     splash.lyx
2457 ''')
2458
2459
2460 lib_examples_sl_files = Split('''
2461     primer_lyxan.lyx
2462     primer_surov.lyx
2463     splash.lyx
2464 ''')
2465
2466
2467 lib_lyx2lyx_files = Split('''
2468     LyX.py
2469     generate_encoding_info.py
2470     lyx2lyx
2471     lyx2lyx_lang.py
2472     lyx_0_06.py
2473     lyx_0_08.py
2474     lyx_0_10.py
2475     lyx_0_12.py
2476     lyx_1_0.py
2477     lyx_1_1.py
2478     lyx_1_1_5.py
2479     lyx_1_1_6_0.py
2480     lyx_1_1_6_3.py
2481     lyx_1_2.py
2482     lyx_1_3.py
2483     lyx_1_4.py
2484     lyx_1_5.py
2485     lyx_1_6.py
2486     parser_tools.py
2487     profiling.py
2488     test_parser_tools.py
2489 ''')
2490
2491
2492 lib_lyx2lyx_extra_files = Split('''
2493     Makefile.am
2494     lyx2lyx_version.py.in
2495 ''')
2496
2497
2498 lib_layouts_files = Split('''
2499     IEEEtran.layout
2500     aa.layout
2501     aapaper.layout
2502     aastex.layout
2503     agu-dtd.layout
2504     agums.layout
2505     amsart-plain.layout
2506     amsart-seq.layout
2507     amsart.layout
2508     amsbook.layout
2509     apa.layout
2510     arab-article.layout
2511     armenian-article.layout
2512     article.layout
2513     beamer.layout
2514     book.layout
2515     broadway.layout
2516     chess.layout
2517     cl2emult.layout
2518     dinbrief.layout
2519     docbook-book.layout
2520     docbook-chapter.layout
2521     docbook-section.layout
2522     docbook.layout
2523     dtk.layout
2524     egs.layout
2525     elsart.layout
2526     entcs.layout
2527     europecv.layout
2528     extarticle.layout
2529     extbook.layout
2530     extletter.layout
2531     extreport.layout
2532     foils.layout
2533     g-brief-de.layout
2534     g-brief-en.layout
2535     g-brief2.layout
2536     heb-article.layout
2537     heb-letter.layout
2538     hollywood.layout
2539     ijmpc.layout
2540     ijmpd.layout
2541     iopart.layout
2542     isprs.layout
2543     jarticle.layout
2544     jbook.layout
2545     jgrga.layout
2546     jreport.layout
2547     jsarticle.layout
2548     jsbook.layout
2549     kluwer.layout
2550     latex8.layout
2551     letter.layout
2552     literate-article.layout
2553     literate-book.layout
2554     literate-report.layout
2555     llncs.layout
2556     ltugboat.layout
2557     manpage.layout
2558     memoir.layout
2559     moderncv.layout
2560     mwart.layout
2561     mwbk.layout
2562     mwrep.layout
2563     paper.layout
2564     powerdot.layout
2565     report.layout
2566     revtex.layout
2567     revtex4.layout
2568     scrartcl.layout
2569     scrbook.layout
2570     scrlettr.layout
2571     scrlttr2.layout
2572     scrreprt.layout
2573     seminar.layout
2574     siamltex.layout
2575     simplecv.layout
2576     slides.layout
2577     spie.layout
2578     svglobal.layout
2579     svjog.layout
2580     svprobth.layout
2581     tarticle.layout
2582     tbook.layout
2583     treport.layout
2584 ''')
2585
2586
2587 lib_layouts_inc_files = Split('''
2588     aapaper.inc
2589     agu_stdclass.inc
2590     agu_stdcounters.inc
2591     agu_stdlists.inc
2592     agu_stdsections.inc
2593     agu_stdtitle.inc
2594     aguplus.inc
2595     amsdefs.inc
2596     amsmaths-plain.inc
2597     amsmaths-seq.inc
2598     amsmaths.inc
2599     db_lyxmacros.inc
2600     db_stdcharstyles.inc
2601     db_stdclass.inc
2602     db_stdcounters.inc
2603     db_stdlayouts.inc
2604     db_stdlists.inc
2605     db_stdsections.inc
2606     db_stdstarsections.inc
2607     db_stdstruct.inc
2608     db_stdtitle.inc
2609     literate-scrap.inc
2610     lyxmacros.inc
2611     numarticle.inc
2612     numreport.inc
2613     numrevtex.inc
2614     scrclass.inc
2615     stdclass.inc
2616     stdcounters.inc
2617     stdfloats.inc
2618     stdinsets.inc
2619     stdlayouts.inc
2620     stdletter.inc
2621     stdlists.inc
2622     stdsections.inc
2623     stdstarsections.inc
2624     stdstruct.inc
2625     stdtitle.inc
2626     svjour.inc
2627     theorems.inc
2628     theorems-ams.inc
2629 ''')
2630
2631
2632 lib_layouts_module_files = Split('''
2633     endnotes.module
2634     foottoend.module
2635     hanging.module
2636     logicalmkup.module
2637     theorems-ams.module
2638     theorems-ams-withinsec.module
2639     theorems-std.module
2640     theorems-withinsec.module
2641     theorems-withinchap.module
2642     url.module
2643 ''')
2644
2645 lib_scripts_files = Split('''
2646     TeXFiles.py
2647     clean_dvi.py
2648     convertDefault.py
2649     date.py
2650     ext_copy.py
2651     fen2ascii.py
2652     fig2pdftex.py
2653     fig2pstex.py
2654     fig_copy.py
2655     layout2layout.py
2656     legacy_lyxpreview2ppm.py
2657     listerrors
2658     lyxpreview2bitmap.py
2659     lyxpreview_tools.py
2660     tex_copy.py
2661 ''')
2662
2663
2664 lib_bind_files = Split('''
2665     aqua.bind
2666     broadway.bind
2667     cua.bind
2668     cyrkeys.bind
2669     emacs.bind
2670     greekkeys.bind
2671     hollywood.bind
2672     latinkeys.bind
2673     mac.bind
2674     math.bind
2675     menus.bind
2676     sciword.bind
2677     xemacs.bind
2678 ''')
2679
2680
2681 lib_bind_fi_files = Split('''
2682     menus.bind
2683 ''')
2684
2685
2686 lib_bind_sv_files = Split('''
2687     menus.bind
2688 ''')
2689
2690
2691 lib_bind_pt_files = Split('''
2692     menus.bind
2693 ''')
2694
2695
2696 lib_bind_de_files = Split('''
2697     menus.bind
2698 ''')
2699
2700
2701 lib_commands_files = Split('''
2702     default.def
2703 ''')
2704
2705
2706 boost_extra_files = Split('''
2707     LICENSE_1_0.txt
2708     Makefile.am
2709 ''')
2710
2711
2712 boost_libs_extra_files = Split('''
2713     Makefile.am
2714     README
2715 ''')
2716
2717
2718 boost_libs_signals_extra_files = Split('''
2719     Makefile.am
2720     signals.vcproj
2721 ''')
2722
2723
2724 boost_libs_signals_src_files = Split('''
2725     connection.cpp
2726     named_slot_map.cpp
2727     signal_base.cpp
2728     slot.cpp
2729     trackable.cpp
2730 ''')
2731
2732
2733 boost_libs_signals_src_extra_files = Split('''
2734     Makefile.am
2735     pch.h
2736 ''')
2737
2738
2739 boost_libs_regex_extra_files = Split('''
2740     Makefile.am
2741     regex.vcproj
2742 ''')
2743
2744
2745 boost_libs_regex_src_files = Split('''
2746     c_regex_traits.cpp
2747     cpp_regex_traits.cpp
2748     cregex.cpp
2749     fileiter.cpp
2750     instances.cpp
2751     posix_api.cpp
2752     regex.cpp
2753     regex_debug.cpp
2754     regex_raw_buffer.cpp
2755     regex_traits_defaults.cpp
2756     w32_regex_traits.cpp
2757     wide_posix_api.cpp
2758     winstances.cpp
2759 ''')
2760
2761
2762 boost_libs_regex_src_extra_files = Split('''
2763     Makefile.am
2764     pch.h
2765 ''')
2766
2767
2768 boost_libs_filesystem_extra_files = Split('''
2769     Makefile.am
2770     filesystem.vcproj
2771 ''')
2772
2773
2774 boost_libs_filesystem_src_files = Split('''
2775     exception.cpp
2776     operations.cpp
2777     path.cpp
2778     portability.cpp
2779 ''')
2780
2781
2782 boost_libs_filesystem_src_extra_files = Split('''
2783     Makefile.am
2784     pch.h
2785 ''')
2786
2787
2788 boost_libs_iostreams_extra_files = Split('''
2789     Makefile.am
2790 ''')
2791
2792
2793 boost_libs_iostreams_src_files = Split('''
2794     file_descriptor.cpp
2795     mapped_file.cpp
2796     zlib.cpp
2797 ''')
2798
2799
2800 boost_libs_iostreams_src_extra_files = Split('''
2801     Makefile.am
2802     pch.h
2803 ''')
2804
2805
2806 development_Win32_packaging_installer = Split('''
2807     license.rtf
2808     lyx.nsi
2809     settings.nsh
2810     settings.user.nsh
2811 ''')
2812
2813
2814 development_Win32_packaging_installer_components = Split('''
2815     configure.nsh
2816     core.nsh
2817     dicts.nsh
2818     external.nsh
2819     langselect.nsh
2820     reinstall.nsh
2821     uninstall.nsh
2822     user.nsh
2823     viewer.nsh
2824 ''')
2825
2826
2827 development_Win32_packaging_installer_dialogs = Split('''
2828     external.ini
2829     langselect.ini
2830     reinstall.ini
2831     user.ini
2832     viewer.ini
2833 ''')
2834
2835
2836 development_Win32_packaging_installer_graphics = Split('''
2837     header.bmp
2838     wizard.bmp
2839 ''')
2840
2841
2842 development_Win32_packaging_installer_include = Split('''
2843     declarations.nsh
2844     detection.nsh
2845     filelists.nsh
2846     gui.nsh
2847     init.nsh
2848     lang.nsh
2849     windows.nsh
2850 ''')
2851
2852
2853 development_Win32_packaging_installer_lang = Split('''
2854     english.nsh
2855     french.nsh
2856     german.nsh
2857     italian.nsh
2858 ''')
2859