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