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