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