summary refs log tree commit diff stats
path: root/plugins/perl
ModeNameSize
-rw-r--r--Makefile.am707log stats plain blame
-rw-r--r--alt_completion.pl13361log stats plain blame
-rw-r--r--char_count.pl2245log stats plain blame
-rw-r--r--generate_header1263log stats plain blame
-rw-r--r--generate_html533log stats plain blame
d---------lib169log stats plain
-rw-r--r--perl.c36345log stats plain blame
-rw-r--r--perl.def82log stats plain blame
-rw-r--r--perl.vcxproj6439log stats plain blame
-rw-r--r--perl.vcxproj.filters873log stats plain blame
-rw-r--r--syntax_highlight1523log stats plain blame
-rw-r--r--xcperl_build.bat1829log stats plain blame
Keyword.Declaration */ .highlight .kn { color: #008800; font-weight: bold } /* Keyword.Namespace */ .highlight .kp { color: #008800 } /* Keyword.Pseudo */ .highlight .kr { color: #008800; font-weight: bold } /* Keyword.Reserved */ .highlight .kt { color: #888888; font-weight: bold } /* Keyword.Type */ .highlight .m { color: #0000DD; font-weight: bold } /* Literal.Number */ .highlight .s { color: #dd2200; background-color: #fff0f0 } /* Literal.String */ .highlight .na { color: #336699 } /* Name.Attribute */ .highlight .nb { color: #003388 } /* Name.Builtin */ .highlight .nc { color: #bb0066; font-weight: bold } /* Name.Class */ .highlight .no { color: #003366; font-weight: bold } /* Name.Constant */ .highlight .nd { color: #555555 } /* Name.Decorator */ .highlight .ne { color: #bb0066; font-weight: bold } /* Name.Exception */ .highlight .nf { color: #0066bb; font-weight: bold } /* Name.Function */ .highlight .nl { color: #336699; font-style: italic } /* Name.Label */ .highlight .nn { color: #bb0066; font-weight: bold } /* Name.Namespace */ .highlight .py { color: #336699; font-weight: bold } /* Name.Property */ .highlight .nt { color: #bb0066; font-weight: bold } /* Name.Tag */ .highlight .nv { color: #336699 } /* Name.Variable */ .highlight .ow { color: #008800 } /* Operator.Word */ .highlight .w { color: #bbbbbb } /* Text.Whitespace */ .highlight .mb { color: #0000DD; font-weight: bold } /* Literal.Number.Bin */ .highlight .mf { color: #0000DD; font-weight: bold } /* Literal.Number.Float */ .highlight .mh { color: #0000DD; font-weight: bold } /* Literal.Number.Hex */ .highlight .mi { color: #0000DD; font-weight: bold } /* Literal.Number.Integer */ .highlight .mo { color: #0000DD; font-weight: bold } /* Literal.Number.Oct */ .highlight .sa { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Affix */ .highlight .sb { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Backtick */ .highlight .sc { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Char */ .highlight .dl { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Delimiter */ .highlight .sd { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Doc */ .highlight .s2 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Double */ .highlight .se { color: #0044dd; background-color: #fff0f0 } /* Literal.String.Escape */ .highlight .sh { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Heredoc */ .highlight .si { color: #3333bb; background-color: #fff0f0 } /* Literal.String.Interpol */ .highlight .sx { color: #22bb22; background-color: #f0fff0 } /* Literal.String.Other */ .highlight .sr { color: #008800; background-color: #fff0ff } /* Literal.String.Regex */ .highlight .s1 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Single */ .highlight .ss { color: #aa6600; background-color: #fff0f0 } /* Literal.String.Symbol */ .highlight .bp { color: #003388 } /* Name.Builtin.Pseudo */ .highlight .fm { color: #0066bb; font-weight: bold } /* Name.Function.Magic */ .highlight .vc { color: #336699 } /* Name.Variable.Class */ .highlight .vg { color: #dd7700 } /* Name.Variable.Global */ .highlight .vi { color: #3333bb } /* Name.Variable.Instance */ .highlight .vm { color: #336699 } /* Name.Variable.Magic */ .highlight .il { color: #0000DD; font-weight: bold } /* Literal.Number.Integer.Long */
:: run this from a command prompt
@echo off

SET PACKAGE_NAME=libxml2-2.9.0

copy win32\vc10\Release\runsuite.exe .
set PATH=%PATH%;..\build\Win32\bin;win32\vc10\Release
runsuite.exe
del runsuite.exe
set LIBXML_SRC=%cd%
set LIBXML_DEST=%cd%-x86
echo.Press return when ready to install!
pause

rmdir /q /s %LIBXML_DEST%
mkdir %LIBXML_DEST%
mkdir %LIBXML_DEST%\bin
mkdir %LIBXML_DEST%\include
mkdir %LIBXML_DEST%\include\libxml
mkdir %LIBXML_DEST%\lib
mkdir %LIBXML_DEST%\share
mkdir %LIBXML_DEST%\share\doc
mkdir %LIBXML_DEST%\share\doc\libxml2
copy win32\vc10\Release\libxml2.dll %LIBXML_DEST%\bin
copy win32\vc10\Release\runsuite.exe %LIBXML_DEST%\bin
copy win32\vc10\Release\libxml2.lib %LIBXML_DEST%\lib
copy include\win32config.h %LIBXML_DEST%\include
copy include\wsockcompat.h %LIBXML_DEST%\include
xcopy /s include\libxml\*.h %LIBXML_DEST%\include\libxml\
copy COPYING %LIBXML_DEST%\share\doc\libxml2

cd %LIBXML_DEST%
set PATH=%PATH%;%ProgramFiles%\7-zip
del ..\%PACKAGE_NAME%-x86.7z
7z a ..\%PACKAGE_NAME%-x86.7z *
cd %LIBXML_SRC%
rmdir /q /s %LIBXML_DEST%

echo.Finished!
pause