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