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