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