CapicuaGenGaspar 0.0.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (84) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +11 -0
  3. data/.rspec +2 -0
  4. data/.travis.yml +4 -0
  5. data/CODE_OF_CONDUCT.md +49 -0
  6. data/CapicuaGenGaspar.gemspec +60 -0
  7. data/Gemfile +4 -0
  8. data/Gemfile.lock +33 -0
  9. data/LICENSE +165 -0
  10. data/README.md +41 -0
  11. data/Rakefile +6 -0
  12. data/bin/console +14 -0
  13. data/bin/setup +8 -0
  14. data/lib/CapicuaGenGaspar/Business/CSSqlEntitityInterface/Source/cs_sql_entity_interface_feature.rb +96 -0
  15. data/lib/CapicuaGenGaspar/Business/CSSqlEntitityInterface/Template/table_interface.erb +49 -0
  16. data/lib/CapicuaGenGaspar/Business/CSSqlEntity/Source/cs_sql_entity_feature.rb +103 -0
  17. data/lib/CapicuaGenGaspar/Business/CSSqlEntity/Template/table_entity.erb +51 -0
  18. data/lib/CapicuaGenGaspar/CodeTransformer/CSHeaderFooter/Source/cs_header_footer_feature.rb +148 -0
  19. data/lib/CapicuaGenGaspar/CodeTransformer/CSHeaderFooter/Template/footer.erb +37 -0
  20. data/lib/CapicuaGenGaspar/CodeTransformer/CSHeaderFooter/Template/header.erb +43 -0
  21. data/lib/CapicuaGenGaspar/CodeTransformer/CodeMaidCleaner/Bin/EnvDTE.dll +0 -0
  22. data/lib/CapicuaGenGaspar/CodeTransformer/CodeMaidCleaner/Bin/EnvDTE80.dll +0 -0
  23. data/lib/CapicuaGenGaspar/CodeTransformer/CodeMaidCleaner/Bin/RunCodeMaidCleaner.exe +0 -0
  24. data/lib/CapicuaGenGaspar/CodeTransformer/CodeMaidCleaner/Bin/RunCodeMaidCleaner.exe.config +52 -0
  25. data/lib/CapicuaGenGaspar/CodeTransformer/CodeMaidCleaner/Bin/stdole.dll +0 -0
  26. data/lib/CapicuaGenGaspar/CodeTransformer/CodeMaidCleaner/Source/code_maid_cleaner_feature.rb +162 -0
  27. data/lib/CapicuaGenGaspar/DataAccess/CSConnectionProvider/Source/cs_db_connection_provider_feature.rb +90 -0
  28. data/lib/CapicuaGenGaspar/DataAccess/CSSqlDataAccess/Source/cs_sql_data_access_feature.rb +106 -0
  29. data/lib/CapicuaGenGaspar/DataAccess/CSSqlDataAccess/Template/data_access.erb +154 -0
  30. data/lib/CapicuaGenGaspar/DataAccess/CSSqlDataAccess/Template/data_access_exception.erb +36 -0
  31. data/lib/CapicuaGenGaspar/DataAccess/CSSqlDataAccess/Template/data_access_table.erb +298 -0
  32. data/lib/CapicuaGenGaspar/Entities/CSEntity/Source/entity_field_schema.rb +100 -0
  33. data/lib/CapicuaGenGaspar/GUI/CSAboutWindowsForm/Source/cs_about_windows_form_feature.rb +85 -0
  34. data/lib/CapicuaGenGaspar/GUI/CSAboutWindowsForm/Template/AboutForm.designer.erb +211 -0
  35. data/lib/CapicuaGenGaspar/GUI/CSAboutWindowsForm/Template/AboutForm.erb +127 -0
  36. data/lib/CapicuaGenGaspar/GUI/CSAboutWindowsForm/Template/AboutForm.resx.erb +535 -0
  37. data/lib/CapicuaGenGaspar/GUI/CSCatalogWindowsForm/Source/cs_catalog_windows_form_feature.rb +146 -0
  38. data/lib/CapicuaGenGaspar/GUI/CSCatalogWindowsForm/Template/CatalogForm.Designer.erb +363 -0
  39. data/lib/CapicuaGenGaspar/GUI/CSCatalogWindowsForm/Template/CatalogForm.erb +320 -0
  40. data/lib/CapicuaGenGaspar/GUI/CSCatalogWindowsForm/Template/CatalogForm.resx.erb +2407 -0
  41. data/lib/CapicuaGenGaspar/GUI/CSCatalogWindowsForm/Template/CatalogState.erb +51 -0
  42. data/lib/CapicuaGenGaspar/GUI/CSMDIWindowsForm/Source/cs_mdi_windows_form_feature.rb +93 -0
  43. data/lib/CapicuaGenGaspar/GUI/CSMDIWindowsForm/Template/MainForm.Designer.erb +316 -0
  44. data/lib/CapicuaGenGaspar/GUI/CSMDIWindowsForm/Template/MainForm.erb +161 -0
  45. data/lib/CapicuaGenGaspar/GUI/CSMDIWindowsForm/Template/MainForm.resx.erb +2504 -0
  46. data/lib/CapicuaGenGaspar/GUI/CSMDIWindowsForm/Template/MsgboxConsts.erb +31 -0
  47. data/lib/CapicuaGenGaspar/GUI/CSSplashWindowsForm/Source/cs_splash_windows_feature.rb +87 -0
  48. data/lib/CapicuaGenGaspar/GUI/CSSplashWindowsForm/Template/SplashForm.designer.erb +141 -0
  49. data/lib/CapicuaGenGaspar/GUI/CSSplashWindowsForm/Template/SplashForm.erb +160 -0
  50. data/lib/CapicuaGenGaspar/GUI/CSSplashWindowsForm/Template/SplashForm.resx.erb +535 -0
  51. data/lib/CapicuaGenGaspar/Mixins/about_mixin.rb +55 -0
  52. data/lib/CapicuaGenGaspar/Mixins/catalog_mixin.rb +65 -0
  53. data/lib/CapicuaGenGaspar/Mixins/cs_app_config_mixin.rb +41 -0
  54. data/lib/CapicuaGenGaspar/Mixins/cs_db_connection_provider_mixin.rb +67 -0
  55. data/lib/CapicuaGenGaspar/Mixins/cs_namespace_mixin.rb +53 -0
  56. data/lib/CapicuaGenGaspar/Mixins/entity_interface_mixin.rb +57 -0
  57. data/lib/CapicuaGenGaspar/Mixins/entity_mixin.rb +58 -0
  58. data/lib/CapicuaGenGaspar/Mixins/entity_sql_table_mixin.rb +58 -0
  59. data/lib/CapicuaGenGaspar/Mixins/main_form_mixin.rb +55 -0
  60. data/lib/CapicuaGenGaspar/Mixins/splash_mixin.rb +54 -0
  61. data/lib/CapicuaGenGaspar/Proyect/CSProyect/Source/cs_proyect_feature.rb +140 -0
  62. data/lib/CapicuaGenGaspar/Proyect/CSProyectRESTFul/Source/cs_proyect_rest_ful_feature.rb +82 -0
  63. data/lib/CapicuaGenGaspar/Proyect/CSProyectRESTFul/Template/AssemblyInfo.erb +59 -0
  64. data/lib/CapicuaGenGaspar/Proyect/CSProyectRESTFul/Template/ExcepcionControlada.erb +38 -0
  65. data/lib/CapicuaGenGaspar/Proyect/CSProyectRESTFul/Template/Proyect.erb +114 -0
  66. data/lib/CapicuaGenGaspar/Proyect/CSProyectRESTFul/Template/Soluction.erb +54 -0
  67. data/lib/CapicuaGenGaspar/Proyect/CSProyectRESTFul/Template/Web.erb +66 -0
  68. data/lib/CapicuaGenGaspar/Proyect/CSProyectWindowsForm/Source/cs_proyect_windows_form_feature.rb +85 -0
  69. data/lib/CapicuaGenGaspar/Proyect/CSProyectWindowsForm/Template/App.erb +32 -0
  70. data/lib/CapicuaGenGaspar/Proyect/CSProyectWindowsForm/Template/AssemblyInfo.erb +59 -0
  71. data/lib/CapicuaGenGaspar/Proyect/CSProyectWindowsForm/Template/ControlExcepciones.erb +49 -0
  72. data/lib/CapicuaGenGaspar/Proyect/CSProyectWindowsForm/Template/ExcepcionControlada.erb +40 -0
  73. data/lib/CapicuaGenGaspar/Proyect/CSProyectWindowsForm/Template/Program.erb +46 -0
  74. data/lib/CapicuaGenGaspar/Proyect/CSProyectWindowsForm/Template/Proyect.erb +138 -0
  75. data/lib/CapicuaGenGaspar/Proyect/CSProyectWindowsForm/Template/Soluction.erb +55 -0
  76. data/lib/CapicuaGenGaspar/Tools/message_helper.rb +43 -0
  77. data/lib/CapicuaGenGaspar/WCFService/CSRESTFulCatalog/Source/cs_rest_ful_catalog_feature.rb +176 -0
  78. data/lib/CapicuaGenGaspar/WCFService/CSRESTFulCatalog/Template/CatalogState.erb +51 -0
  79. data/lib/CapicuaGenGaspar/WCFService/CSRESTFulCatalog/Template/Catalogs.erb +58 -0
  80. data/lib/CapicuaGenGaspar/WCFService/CSRESTFulCatalog/Template/Catalogs.svc.erb +24 -0
  81. data/lib/CapicuaGenGaspar/WCFService/CSRESTFulCatalog/Template/ICatalogs.erb +58 -0
  82. data/lib/CapicuaGenGaspar/gaspar.rb +44 -0
  83. data/lib/CapicuaGenGaspar/version.rb +3 -0
  84. metadata +216 -0
@@ -0,0 +1,82 @@
1
+ =begin
2
+
3
+ CapicuaGen
4
+
5
+ CapicuaGen es un software que ayuda a la creación automática de
6
+ sistemas empresariales a través de la definición y ensamblado de
7
+ diversos generadores de características.
8
+
9
+ El proyecto fue iniciado por José Luis Bautista Martin, el 6 de enero
10
+ del 2016.
11
+
12
+ Puede modificar y distribuir este software, según le plazca, y usarlo
13
+ para cualquier fin ya sea comercial, personal, educativo, o de cualquier
14
+ índole, siempre y cuando incluya este mensaje, y se permita acceso el
15
+ código fuente.
16
+
17
+ Este software es código libre, y se licencia bajo LGPL.
18
+
19
+ Para más información consultar http://www.gnu.org/licenses/lgpl.html
20
+ =end
21
+
22
+ require 'active_support/core_ext/object/blank'
23
+ require 'uuidtools'
24
+
25
+
26
+ require_relative '../../../Mixins/main_form_mixin'
27
+ require_relative '../../../Mixins/splash_mixin'
28
+ require_relative '../../../Proyect/CSProyect/Source/cs_proyect_feature'
29
+ require_relative '../../../gaspar'
30
+
31
+
32
+ module CapicuaGen::Gaspar
33
+ # Caracteristica generadora para crear un proyecto RestFul
34
+ class CSProyectRESTFulFeature < CapicuaGen::Gaspar::CSProyectFeature
35
+ include CapicuaGen
36
+ include CapicuaGen::Gaspar
37
+
38
+ public
39
+
40
+ # Inicializa la caracteristica
41
+ def initialize(values= {})
42
+ super(values)
43
+
44
+ # Configuro los tipos si estos no han sido configurados previamente
45
+ self.types= [:proyect, :soluction, :app_config] if self.types.blank?
46
+
47
+ # Configuro los templates
48
+ set_template('soluction', Template.new(:file => 'Soluction.erb'))
49
+ set_template('proyect', Template.new(:file => 'Proyect.erb'))
50
+ set_template('web.config', Template.new(:file => 'Web.erb'))
51
+ set_template('assemblyInfo', Template.new(:file => 'AssemblyInfo.erb'))
52
+ set_template('excepcion_controlada', Template.new(:file => 'ExcepcionControlada.erb'))
53
+
54
+ # Configuro los Guid de la solucion
55
+ self.generation_attributes[:soluction_guid]= UUIDTools::UUID.random_create.to_s.upcase
56
+ self.generation_attributes[:project_guid] = UUIDTools::UUID.random_create.to_s.upcase
57
+
58
+
59
+ end
60
+
61
+
62
+ # Configura los objetivos de las platillas (despues de establecer el generador)
63
+ def configure_template_targets
64
+
65
+ # Configuro los templates
66
+ set_template_target('soluction', TemplateTarget.new(:out_file => "../#{@generator.generation_attributes[:namespace]}.sln", :types => :soluction))
67
+ set_template_target('proyect', TemplateTarget.new(:out_file => "#{@generator.generation_attributes[:namespace]}.csproj", :types => :proyect))
68
+ set_template_target('web.config', TemplateTarget.new(:out_file => "Web.Config", :types => :proyect_file))
69
+ set_template_target('assemblyInfo', TemplateTarget.new(:out_file => 'Properties/AssemblyInfo.cs', :types => :proyect_file))
70
+ set_template_target('excepcion_controlada', TemplateTarget.new(:out_file => "ExcepcionControlada.cs", :types => :proyect_file))
71
+
72
+
73
+ end
74
+
75
+ # Devuelve la localizacion del archivo app.config
76
+ def get_app_config_file
77
+ return File.join(generation_attributes[:out_dir], get_template_target_by_name('web.config').out_file)
78
+ end
79
+
80
+
81
+ end
82
+ end
@@ -0,0 +1,59 @@
1
+ <%
2
+ #encoding: UTF-8
3
+
4
+ =begin
5
+
6
+ CapicuaGen
7
+
8
+ CapicuaGen es un software que ayuda a la creación automática de
9
+ sistemas empresariales a través de la definición y ensamblado de
10
+ diversos generadores de características.
11
+
12
+ El proyecto fue iniciado por José Luis Bautista Martin, el 6 de enero
13
+ del 2016.
14
+
15
+ Puede modificar y distribuir este software, según le plazca, y usarlo
16
+ para cualquier fin ya sea comercial, personal, educativo, o de cualquier
17
+ índole, siempre y cuando incluya este mensaje, y se permita acceso el
18
+ código fuente.
19
+
20
+ Este software es código libre, y se licencia bajo LGPL.
21
+
22
+ Para más información consultar http://www.gnu.org/licenses/lgpl.html
23
+ =end
24
+ %>using System.Reflection;
25
+ using System.Runtime.InteropServices;
26
+
27
+ // General Information about an assembly is controlled through the following
28
+ // set of attributes. Change these attribute values to modify the information
29
+ // associated with an assembly.
30
+
31
+ [assembly: AssemblyTitle("<%=generation_attributes[:assembly_title]%>")]
32
+ [assembly: AssemblyDescription("<%=generation_attributes[:assembly_description]%>")]
33
+ [assembly: AssemblyConfiguration("<%=generation_attributes[:assembly_configuration]%>")]
34
+ [assembly: AssemblyCompany("<%=generation_attributes[:assembly_company]%>")]
35
+ [assembly: AssemblyProduct("<%=generation_attributes[:assembly_product]%>")]
36
+ [assembly: AssemblyCopyright("<%=generation_attributes[:assembly_copyright]%>")]
37
+ [assembly: AssemblyTrademark("<%=generation_attributes[:assembly_trademark]%>")]
38
+ [assembly: AssemblyCulture(<%=generation_attributes[:assembly_culture]%>)]
39
+
40
+
41
+ // Setting ComVisible to false makes the types in this assembly not visible
42
+ // to COM components. If you need to access a type in this assembly from
43
+ // COM, set the ComVisible attribute to true on that type.
44
+ [assembly: ComVisible(false)]
45
+
46
+ // Version information for an assembly consists of the following four values:
47
+ //
48
+ // Major Version
49
+ // Minor Version
50
+ // Build Number
51
+ // Revision
52
+ //
53
+ // You can specify all the values or you can default the Build and Revision Numbers
54
+ // by using the '*' as shown below:
55
+ // [assembly: AssemblyVersion("1.0.*")]
56
+
57
+
58
+ [assembly: AssemblyVersion("<%=generation_attributes[:assembly_version]%>")]
59
+ [assembly: AssemblyFileVersion("<%=generation_attributes[:assembly_file_version]%>")]
@@ -0,0 +1,38 @@
1
+ <%
2
+ #encoding: UTF-8
3
+
4
+ =begin
5
+
6
+ CapicuaGen
7
+
8
+ CapicuaGen es un software que ayuda a la creación automática de
9
+ sistemas empresariales a través de la definición y ensamblado de
10
+ diversos generadores de características.
11
+
12
+ El proyecto fue iniciado por José Luis Bautista Martin, el 6 de enero
13
+ del 2016.
14
+
15
+ Puede modificar y distribuir este software, según le plazca, y usarlo
16
+ para cualquier fin ya sea comercial, personal, educativo, o de cualquier
17
+ índole, siempre y cuando incluya este mensaje, y se permita acceso el
18
+ código fuente.
19
+
20
+ Este software es código libre, y se licencia bajo LGPL.
21
+
22
+ Para más información consultar http://www.gnu.org/licenses/lgpl.html
23
+ =end
24
+ %>using System;
25
+
26
+ namespace <%=generation_attributes[:namespace]%>
27
+ {
28
+ /// <summary>
29
+ /// Excepcion controlada
30
+ /// </summary>
31
+ abstract partial class ExcepcionControlada : Exception
32
+ {
33
+ public ExcepcionControlada(string mensaje)
34
+ : base(mensaje)
35
+ {
36
+ }
37
+ }
38
+ }
@@ -0,0 +1,114 @@
1
+ <%
2
+ #encoding: UTF-8
3
+
4
+ =begin
5
+
6
+ CapicuaGen
7
+
8
+ CapicuaGen es un software que ayuda a la creación automática de
9
+ sistemas empresariales a través de la definición y ensamblado de
10
+ diversos generadores de características.
11
+
12
+ El proyecto fue iniciado por José Luis Bautista Martin, el 6 de enero
13
+ del 2016.
14
+
15
+ Puede modificar y distribuir este software, según le plazca, y usarlo
16
+ para cualquier fin ya sea comercial, personal, educativo, o de cualquier
17
+ índole, siempre y cuando incluya este mensaje, y se permita acceso el
18
+ código fuente.
19
+
20
+ Este software es código libre, y se licencia bajo LGPL.
21
+
22
+ Para más información consultar http://www.gnu.org/licenses/lgpl.html
23
+ =end
24
+ %><?xml version="1.0" encoding="utf-8"?>
25
+ <Project ToolsVersion="14.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
26
+ <Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
27
+ <PropertyGroup>
28
+ <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
29
+ <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
30
+ <ProductVersion>
31
+ </ProductVersion>
32
+ <SchemaVersion>2.0</SchemaVersion>
33
+ <ProjectGuid>{<%=self.generation_attributes[:project_guid]%>}</ProjectGuid>
34
+ <ProjectTypeGuids>{349c5851-65df-11da-9384-00065b846f21};{fae04ec0-301f-11d3-bf4b-00c04f79efbc}</ProjectTypeGuids>
35
+ <OutputType>Library</OutputType>
36
+ <AppDesignerFolder>Properties</AppDesignerFolder>
37
+ <RootNamespace><%=generation_attributes[:namespace]%></RootNamespace>
38
+ <AssemblyName><%=generation_attributes[:namespace]%></AssemblyName>
39
+ <TargetFrameworkVersion>v4.0.3</TargetFrameworkVersion>
40
+ <WcfConfigValidationEnabled>True</WcfConfigValidationEnabled>
41
+ <UseIISExpress>false</UseIISExpress>
42
+ <IISExpressSSLPort />
43
+ <IISExpressAnonymousAuthentication />
44
+ <IISExpressWindowsAuthentication />
45
+ <IISExpressUseClassicPipelineMode />
46
+ <UseGlobalApplicationHostFile />
47
+ </PropertyGroup>
48
+ <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
49
+ <PlatformTarget>x86</PlatformTarget>
50
+ <DebugSymbols>true</DebugSymbols>
51
+ <DebugType>full</DebugType>
52
+ <Optimize>false</Optimize>
53
+ <OutputPath>bin\</OutputPath>
54
+ <DefineConstants>DEBUG;TRACE</DefineConstants>
55
+ <ErrorReport>prompt</ErrorReport>
56
+ <WarningLevel>4</WarningLevel>
57
+ <TreatWarningsAsErrors>true</TreatWarningsAsErrors>
58
+ </PropertyGroup>
59
+ <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
60
+ <PlatformTarget>x86</PlatformTarget>
61
+ <DebugType>pdbonly</DebugType>
62
+ <Optimize>true</Optimize>
63
+ <OutputPath>bin\</OutputPath>
64
+ <DefineConstants>TRACE</DefineConstants>
65
+ <ErrorReport>prompt</ErrorReport>
66
+ <WarningLevel>4</WarningLevel>
67
+ <TreatWarningsAsErrors>true</TreatWarningsAsErrors>
68
+ </PropertyGroup>
69
+ <ItemGroup>
70
+ <%=get_proyect_files()
71
+ %></ItemGroup>
72
+ <ItemGroup>
73
+ <Reference Include="System" />
74
+ <Reference Include="System.configuration" />
75
+ <Reference Include="System.ServiceModel" />
76
+ <Reference Include="System.ServiceModel.Web" />
77
+ <Reference Include="System.Data" />
78
+ <Reference Include="System.Data.Common" />
79
+ </ItemGroup>
80
+ <PropertyGroup>
81
+ <VisualStudioVersion Condition="'$(VisualStudioVersion)' == ''">10.0</VisualStudioVersion>
82
+ <VSToolsPath Condition="'$(VSToolsPath)' == ''">$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion)</VSToolsPath>
83
+ </PropertyGroup>
84
+ <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
85
+ <Import Project="$(VSToolsPath)\WebApplications\Microsoft.WebApplication.targets" Condition="'$(VSToolsPath)' != ''" />
86
+ <Import Project="$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v10.0\WebApplications\Microsoft.WebApplication.targets" Condition="false" />
87
+ <ProjectExtensions>
88
+ <VisualStudio>
89
+ <FlavorProperties GUID="{349c5851-65df-11da-9384-00065b846f21}">
90
+ <WebProjectProperties>
91
+ <UseIIS>True</UseIIS>
92
+ <AutoAssignPort>True</AutoAssignPort>
93
+ <DevelopmentServerPort>9208</DevelopmentServerPort>
94
+ <DevelopmentServerVPath>/</DevelopmentServerVPath>
95
+ <IISUrl><%=self.generation_attributes[:local_url]%></IISUrl>
96
+ <OverrideIISAppRootUrl>True</OverrideIISAppRootUrl>
97
+ <IISAppRootUrl><%=self.generation_attributes[:local_url]%></IISAppRootUrl>
98
+ <NTLMAuthentication>False</NTLMAuthentication>
99
+ <UseCustomServer>False</UseCustomServer>
100
+ <CustomServerUrl>
101
+ </CustomServerUrl>
102
+ <SaveServerSettingsInUserFile>False</SaveServerSettingsInUserFile>
103
+ </WebProjectProperties>
104
+ </FlavorProperties>
105
+ </VisualStudio>
106
+ </ProjectExtensions>
107
+ <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
108
+ Other similar extension points exist, see Microsoft.Common.targets.
109
+ <Target Name="BeforeBuild">
110
+ </Target>
111
+ <Target Name="AfterBuild">
112
+ </Target>
113
+ -->
114
+ </Project>
@@ -0,0 +1,54 @@
1
+ <%
2
+ #encoding: UTF-8
3
+
4
+ =begin
5
+
6
+ CapicuaGen
7
+
8
+ CapicuaGen es un software que ayuda a la creación automática de
9
+ sistemas empresariales a través de la definición y ensamblado de
10
+ diversos generadores de características.
11
+
12
+ El proyecto fue iniciado por José Luis Bautista Martin, el 6 de enero
13
+ del 2016.
14
+
15
+ Puede modificar y distribuir este software, según le plazca, y usarlo
16
+ para cualquier fin ya sea comercial, personal, educativo, o de cualquier
17
+ índole, siempre y cuando incluya este mensaje, y se permita acceso el
18
+ código fuente.
19
+
20
+ Este software es código libre, y se licencia bajo LGPL.
21
+
22
+ Para más información consultar http://www.gnu.org/licenses/lgpl.html
23
+ =end
24
+ %>Microsoft Visual Studio Solution File, Format Version 12.00
25
+ # Visual Studio 14
26
+ VisualStudioVersion = 14.0.24720.0
27
+ MinimumVisualStudioVersion = 10.0.40219.1
28
+ <%
29
+ generator.get_features_in_targets_by_type(:proyect).each do |f|
30
+ f.get_relative_out_files(:directory_base => File.dirname(out_file), :types => :proyect).each do |p|
31
+ %>Project("<%=self.generation_attributes[:project_guid]%>") = "<%=self.generation_attributes[:namespace]%>", "<%=p%>", "<%=self.generation_attributes[:project_guid]%>"
32
+ <% end
33
+ end
34
+ %>EndProject
35
+ Global
36
+ GlobalSection(SolutionConfigurationPlatforms) = preSolution
37
+ Debug|Any CPU = Debug|Any CPU
38
+ Debug|x86 = Debug|x86
39
+ Release|Any CPU = Release|Any CPU
40
+ Release|x86 = Release|x86
41
+ EndGlobalSection
42
+ GlobalSection(ProjectConfigurationPlatforms) = postSolution
43
+ {54A7A602-C0C7-4F14-8FA0-3D6B2C0889EE}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
44
+ {54A7A602-C0C7-4F14-8FA0-3D6B2C0889EE}.Debug|Any CPU.Build.0 = Debug|Any CPU
45
+ {54A7A602-C0C7-4F14-8FA0-3D6B2C0889EE}.Debug|x86.ActiveCfg = Debug|x86
46
+ {54A7A602-C0C7-4F14-8FA0-3D6B2C0889EE}.Debug|x86.Build.0 = Debug|x86
47
+ {54A7A602-C0C7-4F14-8FA0-3D6B2C0889EE}.Release|Any CPU.ActiveCfg = Release|x86
48
+ {54A7A602-C0C7-4F14-8FA0-3D6B2C0889EE}.Release|x86.ActiveCfg = Release|x86
49
+ {54A7A602-C0C7-4F14-8FA0-3D6B2C0889EE}.Release|x86.Build.0 = Release|x86
50
+ EndGlobalSection
51
+ GlobalSection(SolutionProperties) = preSolution
52
+ HideSolutionNode = FALSE
53
+ EndGlobalSection
54
+ EndGlobal
@@ -0,0 +1,66 @@
1
+ <%
2
+ #encoding: UTF-8
3
+
4
+ =begin
5
+
6
+ CapicuaGen
7
+
8
+ CapicuaGen es un software que ayuda a la creación automática de
9
+ sistemas empresariales a través de la definición y ensamblado de
10
+ diversos generadores de características.
11
+
12
+ El proyecto fue iniciado por José Luis Bautista Martin, el 6 de enero
13
+ del 2016.
14
+
15
+ Puede modificar y distribuir este software, según le plazca, y usarlo
16
+ para cualquier fin ya sea comercial, personal, educativo, o de cualquier
17
+ índole, siempre y cuando incluya este mensaje, y se permita acceso el
18
+ código fuente.
19
+
20
+ Este software es código libre, y se licencia bajo LGPL.
21
+
22
+ Para más información consultar http://www.gnu.org/licenses/lgpl.html
23
+ =end
24
+ %><?xml version="1.0"?>
25
+ <configuration>
26
+ <system.web>
27
+ <compilation debug="true" targetFramework="4.0.3" />
28
+ </system.web>
29
+
30
+ <system.serviceModel>
31
+
32
+ <services>
33
+
34
+ </services>
35
+
36
+
37
+ <behaviors>
38
+
39
+ <serviceBehaviors>
40
+ <behavior>
41
+ <!-- Para evitar revelar información de los metadatos, establezca el valor siguiente en false antes de la implementación -->
42
+ <serviceMetadata httpGetEnabled="true"/>
43
+ <!-- Para recibir detalles de las excepciones en los fallos, con el fin de poder realizar la depuración, establezca el valor siguiente en true. Para no revelar información sobre las excepciones, establézcalo en false antes de la implementación -->
44
+ <serviceDebug includeExceptionDetailInFaults="false"/>
45
+ </behavior>
46
+ </serviceBehaviors>
47
+
48
+ <endpointBehaviors>
49
+
50
+ </endpointBehaviors>
51
+ </behaviors>
52
+
53
+
54
+
55
+ </system.serviceModel>
56
+
57
+ <system.webServer>
58
+ <modules runAllManagedModulesForAllRequests="true"/>
59
+ <!--
60
+ Para examinar el directorio raíz de la aplicación web durante la depuración, establezca el valor siguiente en true.
61
+ Establézcalo en false antes de la implementación para evitar revelar información sobre la carpeta de aplicación web.
62
+ -->
63
+ <directoryBrowse enabled="true"/>
64
+ </system.webServer>
65
+
66
+ </configuration>
@@ -0,0 +1,85 @@
1
+ =begin
2
+
3
+ CapicuaGen
4
+
5
+ CapicuaGen es un software que ayuda a la creación automática de
6
+ sistemas empresariales a través de la definición y ensamblado de
7
+ diversos generadores de características.
8
+
9
+ El proyecto fue iniciado por José Luis Bautista Martin, el 6 de enero
10
+ del 2016.
11
+
12
+ Puede modificar y distribuir este software, según le plazca, y usarlo
13
+ para cualquier fin ya sea comercial, personal, educativo, o de cualquier
14
+ índole, siempre y cuando incluya este mensaje, y se permita acceso el
15
+ código fuente.
16
+
17
+ Este software es código libre, y se licencia bajo LGPL.
18
+
19
+ Para más información consultar http://www.gnu.org/licenses/lgpl.html
20
+ =end
21
+
22
+ require 'active_support/core_ext/object/blank'
23
+ require 'uuidtools'
24
+
25
+
26
+ require_relative '../../../Mixins/main_form_mixin'
27
+ require_relative '../../../Mixins/splash_mixin'
28
+ require_relative '../../../Proyect/CSProyect/Source/cs_proyect_feature'
29
+ require_relative '../../../gaspar'
30
+
31
+
32
+ module CapicuaGen::Gaspar
33
+ # Caracteristica generador de proyectos de Windows Form.
34
+ class CSProyectWindowsFormFeature < CapicuaGen::Gaspar::CSProyectFeature
35
+ include CapicuaGen
36
+ include CapicuaGen::Gaspar
37
+
38
+
39
+ public
40
+
41
+ # Inicializa la caracteristica
42
+ def initialize(values= {})
43
+ super(values)
44
+
45
+ # Configuro los tipos si estos no han sido configurados previamente
46
+ self.types= [:proyect, :soluction, :app_config] if self.types.blank?
47
+
48
+ # Configuro los templates
49
+ set_template('soluction', Template.new(:file => 'Soluction.erb'))
50
+ set_template('proyect', Template.new(:file => 'Proyect.erb'))
51
+ set_template('app.config', Template.new(:file => 'App.erb'))
52
+ set_template('assemblyInfo', Template.new(:file => 'AssemblyInfo.erb'))
53
+ set_template('program', Template.new(:file => 'Program.erb'))
54
+ set_template('excepcion_controlada', Template.new(:file => 'ExcepcionControlada.erb'))
55
+ set_template('control_excepciones', Template.new(:file => 'ControlExcepciones.erb'))
56
+
57
+ # Configuro los Guid de la solucion
58
+ self.generation_attributes[:soluction_guid]= UUIDTools::UUID.random_create.to_s.upcase
59
+ self.generation_attributes[:project_guid] = UUIDTools::UUID.random_create.to_s.upcase
60
+
61
+
62
+ end
63
+
64
+ # Configura los objetivos de las platillas (despues de establecer el generador)
65
+ def configure_template_targets
66
+
67
+ # Configuro los templates
68
+ set_template_target('soluction', TemplateTarget.new(:out_file => "../#{@generator.generation_attributes[:namespace]}.sln", :types => :soluction))
69
+ set_template_target('proyect', TemplateTarget.new(:out_file => "#{@generator.generation_attributes[:namespace]}.csproj", :types => :proyect))
70
+ set_template_target('app.config', TemplateTarget.new(:out_file => "App.Config", :types => :proyect_file))
71
+ set_template_target('assemblyInfo', TemplateTarget.new(:out_file => 'Properties/AssemblyInfo.cs', :types => :proyect_file))
72
+ set_template_target('program', TemplateTarget.new(:out_file => "Program.cs", :types => :proyect_file))
73
+ set_template_target('excepcion_controlada', TemplateTarget.new(:out_file => "ExcepcionControlada.cs", :types => :proyect_file))
74
+ set_template_target('control_excepciones', TemplateTarget.new(:out_file => "ControlExcepciones.cs", :types => :proyect_file))
75
+
76
+ end
77
+
78
+ # Devuelve la localizacion del archivo app.config
79
+ def get_app_config_file
80
+ return File.join(generation_attributes[:out_dir], get_template_target_by_name('app.config').out_file)
81
+ end
82
+
83
+
84
+ end
85
+ end
@@ -0,0 +1,32 @@
1
+ <%
2
+ #encoding: UTF-8
3
+
4
+ =begin
5
+
6
+ CapicuaGen
7
+
8
+ CapicuaGen es un software que ayuda a la creación automática de
9
+ sistemas empresariales a través de la definición y ensamblado de
10
+ diversos generadores de características.
11
+
12
+ El proyecto fue iniciado por José Luis Bautista Martin, el 6 de enero
13
+ del 2016.
14
+
15
+ Puede modificar y distribuir este software, según le plazca, y usarlo
16
+ para cualquier fin ya sea comercial, personal, educativo, o de cualquier
17
+ índole, siempre y cuando incluya este mensaje, y se permita acceso el
18
+ código fuente.
19
+
20
+ Este software es código libre, y se licencia bajo LGPL.
21
+
22
+ Para más información consultar http://www.gnu.org/licenses/lgpl.html
23
+ =end
24
+ %><?xml version="1.0"?>
25
+ <configuration>
26
+ <configSections>
27
+ </configSections>
28
+ <%#=generador_acceso_datos.obtener_configuracion_conexion%>
29
+ <startup>
30
+ <supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.0" />
31
+ </startup>
32
+ </configuration>
@@ -0,0 +1,59 @@
1
+ <%
2
+ #encoding: UTF-8
3
+
4
+ =begin
5
+
6
+ CapicuaGen
7
+
8
+ CapicuaGen es un software que ayuda a la creación automática de
9
+ sistemas empresariales a través de la definición y ensamblado de
10
+ diversos generadores de características.
11
+
12
+ El proyecto fue iniciado por José Luis Bautista Martin, el 6 de enero
13
+ del 2016.
14
+
15
+ Puede modificar y distribuir este software, según le plazca, y usarlo
16
+ para cualquier fin ya sea comercial, personal, educativo, o de cualquier
17
+ índole, siempre y cuando incluya este mensaje, y se permita acceso el
18
+ código fuente.
19
+
20
+ Este software es código libre, y se licencia bajo LGPL.
21
+
22
+ Para más información consultar http://www.gnu.org/licenses/lgpl.html
23
+ =end
24
+ %>using System.Reflection;
25
+ using System.Runtime.InteropServices;
26
+
27
+ // General Information about an assembly is controlled through the following
28
+ // set of attributes. Change these attribute values to modify the information
29
+ // associated with an assembly.
30
+
31
+ [assembly: AssemblyTitle("<%=generation_attributes[:assembly_title]%>")]
32
+ [assembly: AssemblyDescription("<%=generation_attributes[:assembly_description]%>")]
33
+ [assembly: AssemblyConfiguration("<%=generation_attributes[:assembly_configuration]%>")]
34
+ [assembly: AssemblyCompany("<%=generation_attributes[:assembly_company]%>")]
35
+ [assembly: AssemblyProduct("<%=generation_attributes[:assembly_product]%>")]
36
+ [assembly: AssemblyCopyright("<%=generation_attributes[:assembly_copyright]%>")]
37
+ [assembly: AssemblyTrademark("<%=generation_attributes[:assembly_trademark]%>")]
38
+ [assembly: AssemblyCulture(<%=generation_attributes[:assembly_culture]%>)]
39
+
40
+
41
+ // Setting ComVisible to false makes the types in this assembly not visible
42
+ // to COM components. If you need to access a type in this assembly from
43
+ // COM, set the ComVisible attribute to true on that type.
44
+ [assembly: ComVisible(false)]
45
+
46
+ // Version information for an assembly consists of the following four values:
47
+ //
48
+ // Major Version
49
+ // Minor Version
50
+ // Build Number
51
+ // Revision
52
+ //
53
+ // You can specify all the values or you can default the Build and Revision Numbers
54
+ // by using the '*' as shown below:
55
+ // [assembly: AssemblyVersion("1.0.*")]
56
+
57
+
58
+ [assembly: AssemblyVersion("<%=generation_attributes[:assembly_version]%>")]
59
+ [assembly: AssemblyFileVersion("<%=generation_attributes[:assembly_file_version]%>")]
@@ -0,0 +1,49 @@
1
+ <%
2
+ #encoding: UTF-8
3
+
4
+ =begin
5
+
6
+ CapicuaGen
7
+
8
+ CapicuaGen es un software que ayuda a la creación automática de
9
+ sistemas empresariales a través de la definición y ensamblado de
10
+ diversos generadores de características.
11
+
12
+ El proyecto fue iniciado por José Luis Bautista Martin, el 6 de enero
13
+ del 2016.
14
+
15
+ Puede modificar y distribuir este software, según le plazca, y usarlo
16
+ para cualquier fin ya sea comercial, personal, educativo, o de cualquier
17
+ índole, siempre y cuando incluya este mensaje, y se permita acceso el
18
+ código fuente.
19
+
20
+ Este software es código libre, y se licencia bajo LGPL.
21
+
22
+ Para más información consultar http://www.gnu.org/licenses/lgpl.html
23
+ =end
24
+ %>using System;
25
+ using System.Windows.Forms;
26
+
27
+
28
+ namespace <%=generation_attributes[:namespace]%>
29
+ {
30
+ /// <summary>
31
+ /// Gestiona como se mostraran los errores
32
+ /// </summary>
33
+ internal static class ControlExcepciones
34
+ {
35
+ public static void MostrarExcepcion(Exception ex)
36
+ {
37
+ ExcepcionControlada excepcionControlada = ex as ExcepcionControlada;
38
+
39
+ if (ex != null)
40
+ {
41
+ MessageBox.Show(ex.Message, "Advertencia", MessageBoxButtons.OK, MessageBoxIcon.Exclamation);
42
+ }
43
+ else
44
+ {
45
+ MessageBox.Show(ex.Message, "Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
46
+ }
47
+ }
48
+ }
49
+ }