Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/monodevelop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/extras
diff options
context:
space:
mode:
authorMatthias Mailänder <matthias@mailaender.name>2015-01-01 00:32:14 +0300
committerMatthias Mailänder <matthias@mailaender.name>2015-01-01 13:15:09 +0300
commit1a0e1773545adfdb428dd579dec9909bd546faca (patch)
treefaa76aab44feeebebec3ec6faf23067cbb3dee21 /extras
parent25f341f6411f519e551aaaac95e1088a50595f8f (diff)
delete the redundant Lua bindings
moved to https://github.com/monodevelop/LuaBinding
Diffstat (limited to 'extras')
-rw-r--r--extras/LuaBinding/AssemblyInfo.cs9
-rw-r--r--extras/LuaBinding/LuaBinding.addin.xml51
-rw-r--r--extras/LuaBinding/LuaBinding.csproj74
-rw-r--r--extras/LuaBinding/LuaBinding.sln21
-rw-r--r--extras/LuaBinding/LuaLanguageBinding.cs118
-rw-r--r--extras/LuaBinding/Project/LuaCompilerParameters.cs35
-rw-r--r--extras/LuaBinding/templates/EmptyLuaFile.xft.xml20
-rw-r--r--extras/LuaBinding/templates/WowAddinProject.xpt.xml15
8 files changed, 0 insertions, 343 deletions
diff --git a/extras/LuaBinding/AssemblyInfo.cs b/extras/LuaBinding/AssemblyInfo.cs
deleted file mode 100644
index 4d5f94527e..0000000000
--- a/extras/LuaBinding/AssemblyInfo.cs
+++ /dev/null
@@ -1,9 +0,0 @@
-// Autogenerated from LuaBinding.addin.xml
-
-using System.Reflection;
-
-[assembly: AssemblyProduct ("MonoDevelop")]
-[assembly: AssemblyTitle ("Lua Language Binding")]
-[assembly: AssemblyDescription ("Lua Language Binding")]
-[assembly: AssemblyVersion ("2.6")]
-[assembly: AssemblyCopyright ("MIT X11")]
diff --git a/extras/LuaBinding/LuaBinding.addin.xml b/extras/LuaBinding/LuaBinding.addin.xml
deleted file mode 100644
index ef1bdc6563..0000000000
--- a/extras/LuaBinding/LuaBinding.addin.xml
+++ /dev/null
@@ -1,51 +0,0 @@
-<Addin id = "LuaBinding"
- namespace = "MonoDevelop"
- name = "Lua Language Binding"
- author = "Mike Krüger"
- copyright = "MIT X11"
- url = "http://www.monodevelop.com"
- description = "Lua Language Binding"
- category = "Language bindings"
- version = "4.2.3">
-
- <Runtime>
- <Import assembly = "LuaBinding.dll"/>
- </Runtime>
-
- <Dependencies>
- <Addin id="Core" version="4.2.3"/>
- <Addin id="Ide" version="4.2.3"/>
- </Dependencies>
-
- <Extension path = "/MonoDevelop/Ide/FileFilters">
- <FileFilter id = "Lua"
- insertbefore = "AllFiles"
- _label = "Lua Files"
- extensions = "*.lua"/>
- </Extension>
-
- <Extension path = "/MonoDevelop/Ide/FileTemplates">
- <FileTemplate id = "EmptyLuaFile" resource = "EmptyLuaFile.xft.xml"/>
- </Extension>
-
- <Extension path = "/MonoDevelop/Ide/ProjectTemplates">
- <ProjectTemplate id = "WowAddin" resource = "WowAddinProject.xpt.xml"/>
- </Extension>
-
-
- <Extension path = "/MonoDevelop/ProjectModel/LanguageBindings">
- <LanguageBinding id = "Lua" supportedextensions = ".lua" class = "LuaBinding.LuaLanguageBinding" />
- </Extension>
-
- <Extension path = "/MonoDevelop/ProjectModel/MSBuildItemTypes">
- <DotNetProject
- language="Lua"
- extension="luaproj"
- guid="{B4EC64DC-6D44-22EE-BBA0-C4A155D89593}" />
- </Extension>
-
- <Extension path = "/MonoDevelop/ProjectModel/SerializableClasses">
- <DataType class = "LuaBinding.LuaCompilerParameters" />
- </Extension>
-
-</Addin>
diff --git a/extras/LuaBinding/LuaBinding.csproj b/extras/LuaBinding/LuaBinding.csproj
deleted file mode 100644
index 957d7fbb9c..0000000000
--- a/extras/LuaBinding/LuaBinding.csproj
+++ /dev/null
@@ -1,74 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
- <PropertyGroup>
- <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
- <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
- <ProductVersion>8.0.50727</ProductVersion>
- <SchemaVersion>2.0</SchemaVersion>
- <ProjectGuid>{DDD03FAE-DD11-4676-8D52-3B93570E43D6}</ProjectGuid>
- <OutputType>Library</OutputType>
- <AssemblyName>LuaBinding</AssemblyName>
- </PropertyGroup>
- <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
- <DebugSymbols>true</DebugSymbols>
- <DebugType>full</DebugType>
- <Optimize>false</Optimize>
- <OutputPath>..\..\main\build\AddIns\BackendBindings</OutputPath>
- <DefineConstants>DEBUG</DefineConstants>
- <ErrorReport>prompt</ErrorReport>
- <WarningLevel>4</WarningLevel>
- <ConsolePause>false</ConsolePause>
- </PropertyGroup>
- <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
- <DebugType>none</DebugType>
- <Optimize>false</Optimize>
- <OutputPath>bin\Release</OutputPath>
- <ErrorReport>prompt</ErrorReport>
- <WarningLevel>4</WarningLevel>
- <ConsolePause>false</ConsolePause>
- </PropertyGroup>
- <ItemGroup>
- <Reference Include="System" />
- <Reference Include="MonoDevelop.Core, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null">
- <SpecificVersion>False</SpecificVersion>
- <HintPath>..\..\main\build\bin\MonoDevelop.Core.dll</HintPath>
- </Reference>
- <Reference Include="MonoDevelop.Core.Gui, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null">
- <SpecificVersion>False</SpecificVersion>
- <HintPath>..\..\main\build\bin\MonoDevelop.Core.Gui.dll</HintPath>
- </Reference>
- <Reference Include="MonoDevelop.Ide, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null">
- <SpecificVersion>False</SpecificVersion>
- <HintPath>..\..\main\build\bin\MonoDevelop.Ide.dll</HintPath>
- </Reference>
- <Reference Include="MonoDevelop.Projects, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null">
- <SpecificVersion>False</SpecificVersion>
- <HintPath>..\..\main\build\bin\MonoDevelop.Projects.dll</HintPath>
- </Reference>
- <Reference Include="System.Xml" />
- </ItemGroup>
- <ItemGroup>
- <Compile Include="LuaLanguageBinding.cs" />
- <Compile Include="AssemblyInfo.cs" />
- <Compile Include="Project\LuaCompilerParameters.cs" />
- </ItemGroup>
- <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
- <ItemGroup>
- <EmbeddedResource Include="LuaBinding.addin.xml" />
- <EmbeddedResource Include="templates\EmptyLuaFile.xft.xml">
- <LogicalName>EmptyLuaFile.xft.xml</LogicalName>
- </EmbeddedResource>
- <EmbeddedResource Include="templates\WowAddinProject.xpt.xml">
- <LogicalName>WowAddinProject.xpt.xml</LogicalName>
- </EmbeddedResource>
- </ItemGroup>
- <ItemGroup>
- <Folder Include="templates\" />
- <Folder Include="Project\" />
- </ItemGroup>
- <ProjectExtensions>
- <MonoDevelop>
- <Properties InternalTargetFrameworkVersion="3.5" />
- </MonoDevelop>
- </ProjectExtensions>
-</Project>
diff --git a/extras/LuaBinding/LuaBinding.sln b/extras/LuaBinding/LuaBinding.sln
deleted file mode 100644
index b778b56d0a..0000000000
--- a/extras/LuaBinding/LuaBinding.sln
+++ /dev/null
@@ -1,21 +0,0 @@
-
-Microsoft Visual Studio Solution File, Format Version 9.00
-# Visual Studio 2005
-Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "LuaBinding", "LuaBinding.csproj", "{DDD03FAE-DD11-4676-8D52-3B93570E43D6}"
-EndProject
-Global
- GlobalSection(SolutionConfigurationPlatforms) = preSolution
- Debug|Any CPU = Debug|Any CPU
- Release|Any CPU = Release|Any CPU
- EndGlobalSection
- GlobalSection(ProjectConfigurationPlatforms) = postSolution
- {DDD03FAE-DD11-4676-8D52-3B93570E43D6}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
- {DDD03FAE-DD11-4676-8D52-3B93570E43D6}.Debug|Any CPU.Build.0 = Debug|Any CPU
- {DDD03FAE-DD11-4676-8D52-3B93570E43D6}.Release|Any CPU.ActiveCfg = Release|Any CPU
- {DDD03FAE-DD11-4676-8D52-3B93570E43D6}.Release|Any CPU.Build.0 = Release|Any CPU
- EndGlobalSection
- GlobalSection(MonoDevelopProperties) = preSolution
- version = 0.1
- StartupItem = LuaBinding\LuaBinding.csproj
- EndGlobalSection
-EndGlobal
diff --git a/extras/LuaBinding/LuaLanguageBinding.cs b/extras/LuaBinding/LuaLanguageBinding.cs
deleted file mode 100644
index a37730dae5..0000000000
--- a/extras/LuaBinding/LuaLanguageBinding.cs
+++ /dev/null
@@ -1,118 +0,0 @@
-//
-// MyClass.cs
-//
-// Author:
-// Mike Krüger <mkrueger@novell.com>
-//
-// Copyright (c) 2009 Novell, Inc (http://www.novell.com)
-//
-// Permission is hereby granted, free of charge, to any person obtaining a copy
-// of this software and associated documentation files (the "Software"), to deal
-// in the Software without restriction, including without limitation the rights
-// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
-// copies of the Software, and to permit persons to whom the Software is
-// furnished to do so, subject to the following conditions:
-//
-// The above copyright notice and this permission notice shall be included in
-// all copies or substantial portions of the Software.
-//
-// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
-// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
-// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
-// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
-// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
-// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
-// THE SOFTWARE.
-
-using System;
-using MonoDevelop.Projects.Dom.Parser;
-using MonoDevelop.Projects.CodeGeneration;
-using MonoDevelop.Projects;
-using MonoDevelop.Core;
-
-
-namespace LuaBinding
-{
- public class LuaLanguageBinding : IDotNetLanguageBinding
- {
- public string Language {
- get {
- return "Lua";
- }
- }
-
- public string SingleLineCommentTag {
- get {
- return "--";
- }
- }
- public string BlockCommentStartTag {
- get {
- return "--[";
- }
- }
- public string BlockCommentEndTag {
- get {
- return "]--";
- }
- }
-
- public IParser Parser {
- get {
- return null;
- }
- }
-
- public IRefactorer Refactorer {
- get {
- return null;
- }
- }
-
-
- public bool IsSourceCodeFile (string fileName)
- {
- string ext = System.IO.Path.GetExtension (fileName);
- return ext.Equals(".lua", StringComparison.OrdinalIgnoreCase);
- }
-
- public string GetFileName (string baseName)
- {
- return baseName + ".lua";
- }
-
- #region IDotNetLanguageBinding implementation
- public BuildResult Compile (ProjectItemCollection items, DotNetProjectConfiguration configuration, MonoDevelop.Core.IProgressMonitor monitor)
- {
- return null;
- }
-
- public ProjectParameters CreateProjectParameters (System.Xml.XmlElement projectOptions)
- {
- return new LuaCompilerParameters ();
- }
-
- public ConfigurationParameters CreateCompilationParameters (System.Xml.XmlElement projectOptions)
- {
- return new LuaCompilerParameters ();
- }
-
- public System.CodeDom.Compiler.CodeDomProvider GetCodeDomProvider ()
- {
- return null;
- }
-
- public MonoDevelop.Core.ClrVersion[] GetSupportedClrVersions ()
- {
- return new ClrVersion[] { ClrVersion.Net_1_1 };
- }
-
- public string ProjectStockIcon {
- get {
- return "md-project";
- }
- }
- #endregion
-
- }
-}
diff --git a/extras/LuaBinding/Project/LuaCompilerParameters.cs b/extras/LuaBinding/Project/LuaCompilerParameters.cs
deleted file mode 100644
index 9412e43ce9..0000000000
--- a/extras/LuaBinding/Project/LuaCompilerParameters.cs
+++ /dev/null
@@ -1,35 +0,0 @@
-//
-// LuaCompilerParameters.cs
-//
-// Author:
-// Mike Krüger <mkrueger@novell.com>
-//
-// Copyright (c) 2009 Novell, Inc (http://www.novell.com)
-//
-// Permission is hereby granted, free of charge, to any person obtaining a copy
-// of this software and associated documentation files (the "Software"), to deal
-// in the Software without restriction, including without limitation the rights
-// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
-// copies of the Software, and to permit persons to whom the Software is
-// furnished to do so, subject to the following conditions:
-//
-// The above copyright notice and this permission notice shall be included in
-// all copies or substantial portions of the Software.
-//
-// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
-// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
-// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
-// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
-// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
-// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
-// THE SOFTWARE.
-
-using System;
-using MonoDevelop.Projects;
-
-namespace LuaBinding
-{
- public class LuaCompilerParameters : ConfigurationParameters
- {
- }
-}
diff --git a/extras/LuaBinding/templates/EmptyLuaFile.xft.xml b/extras/LuaBinding/templates/EmptyLuaFile.xft.xml
deleted file mode 100644
index 3fe329a80b..0000000000
--- a/extras/LuaBinding/templates/EmptyLuaFile.xft.xml
+++ /dev/null
@@ -1,20 +0,0 @@
-<?xml version="1.0"?>
-<Template Language="Lua">
-
- <TemplateConfiguration>
- <_Name>Empty File</_Name>
- <Icon>md-text-file-icon</Icon>
- <_Category>General</_Category>
- <LanguageName>Lua</LanguageName>
- <_Description>Creates an empty Lua file.</_Description>
- </TemplateConfiguration>
-
- <TemplateFiles>
- <File DefaultExtension=".lua" DefaultName="EmptyLuaFile">
- <![CDATA[-- created on ${Date} at ${Time}]]>
- </File>
- </TemplateFiles>
-
- <FileOptions/>
-
-</Template>
diff --git a/extras/LuaBinding/templates/WowAddinProject.xpt.xml b/extras/LuaBinding/templates/WowAddinProject.xpt.xml
deleted file mode 100644
index 9f0788f30c..0000000000
--- a/extras/LuaBinding/templates/WowAddinProject.xpt.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<?xml version="1.0"?>
-<Template originator = "Mike Krüger" created = "04/26/2009" lastModified = "04/26/2009">
-
- <TemplateConfiguration>
- <_Name>WoW addin</_Name>
- <_Category>Lua</_Category>
- <Icon>md-project</Icon>
- <LanguageName>Lua</LanguageName>
- <_Description>Creates an empty WoW addin.</_Description>
- </TemplateConfiguration>
-
- <Combine name = "${ProjectName}" directory = ".">
- <Project name = "${ProjectName}" directory = "."/>
- </Combine>
-</Template>