ontomde-core 1.0.6 → 2.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (95) hide show
  1. data/History.txt +3 -0
  2. data/Manifest.txt +95 -21
  3. data/README.txt +19 -1
  4. data/Rakefile +1 -1
  5. data/bin/ontomde-inspector +6 -0
  6. data/lib/ontomde-core/clone.rb +1 -1
  7. data/lib/ontomde-core/completion.rb +47 -0
  8. data/lib/ontomde-core/context.rb +32 -11
  9. data/lib/ontomde-core/converter-ea/XMI2RDFS.xslt +805 -0
  10. data/lib/ontomde-core/converter-ea/msxsl.exe +0 -0
  11. data/lib/ontomde-core/custom_method_missing.rb +24 -1
  12. data/lib/ontomde-core/fileLoader.rb +71 -14
  13. data/lib/ontomde-core/fileTypes.rb +7 -0
  14. data/lib/ontomde-core/helper.rb +141 -15
  15. data/lib/ontomde-core/inspector/loader.rb +69 -0
  16. data/lib/ontomde-core/inspector/rails/README +203 -0
  17. data/lib/ontomde-core/inspector/rails/Rakefile +10 -0
  18. data/lib/ontomde-core/inspector/rails/app/controllers/application.rb +10 -0
  19. data/lib/ontomde-core/inspector/rails/app/controllers/mtk_controller.rb +349 -0
  20. data/lib/ontomde-core/inspector/rails/app/helpers/application_helper.rb +3 -0
  21. data/lib/ontomde-core/inspector/rails/app/helpers/mtk_helper.rb +20 -0
  22. data/lib/ontomde-core/inspector/rails/app/views/layouts/mtk.rhtml +161 -0
  23. data/lib/ontomde-core/inspector/rails/app/views/mtk/clear.rhtml +5 -0
  24. data/lib/ontomde-core/inspector/rails/app/views/mtk/index.rhtml +1 -0
  25. data/lib/ontomde-core/inspector/rails/app/views/mtk/last_generated.rhtml +7 -0
  26. data/lib/ontomde-core/inspector/rails/app/views/mtk/model.html.erb +6 -0
  27. data/lib/ontomde-core/inspector/rails/app/views/mtk/not_found.rhtml +2 -0
  28. data/lib/ontomde-core/inspector/rails/app/views/mtk/search_form.rhtml +30 -0
  29. data/lib/ontomde-core/inspector/rails/app/views/mtk/search_result.rhtml +8 -0
  30. data/lib/ontomde-core/inspector/rails/app/views/mtk/setup_form.rhtml +42 -0
  31. data/lib/ontomde-core/inspector/rails/app/views/mtk/show.rhtml +172 -0
  32. data/lib/ontomde-core/inspector/rails/app/views/mtk/show_many.rhtml +25 -0
  33. data/lib/ontomde-core/inspector/rails/config/boot.rb +109 -0
  34. data/lib/ontomde-core/inspector/rails/config/database.yml +19 -0
  35. data/lib/ontomde-core/inspector/rails/config/environment.rb +60 -0
  36. data/lib/ontomde-core/inspector/rails/config/environments/development.rb +18 -0
  37. data/lib/ontomde-core/inspector/rails/config/environments/production.rb +19 -0
  38. data/lib/ontomde-core/inspector/rails/config/environments/test.rb +22 -0
  39. data/lib/ontomde-core/inspector/rails/config/initializers/inflections.rb +10 -0
  40. data/lib/ontomde-core/inspector/rails/config/initializers/mime_types.rb +5 -0
  41. data/lib/ontomde-core/inspector/rails/config/routes.rb +35 -0
  42. data/lib/ontomde-core/inspector/rails/doc/README_FOR_APP +2 -0
  43. data/lib/ontomde-core/inspector/rails/log/development.log +0 -0
  44. data/lib/ontomde-core/inspector/rails/log/production.log +0 -0
  45. data/lib/ontomde-core/inspector/rails/log/server.log +0 -0
  46. data/lib/ontomde-core/inspector/rails/log/test.log +0 -0
  47. data/lib/ontomde-core/inspector/rails/public/.htaccess +40 -0
  48. data/lib/ontomde-core/inspector/rails/public/404.html +30 -0
  49. data/lib/ontomde-core/inspector/rails/public/422.html +30 -0
  50. data/lib/ontomde-core/inspector/rails/public/500.html +30 -0
  51. data/lib/ontomde-core/inspector/rails/public/dispatch.cgi +10 -0
  52. data/lib/ontomde-core/inspector/rails/public/dispatch.fcgi +24 -0
  53. data/lib/ontomde-core/inspector/rails/public/dispatch.rb +10 -0
  54. data/lib/ontomde-core/inspector/rails/public/favicon.ico +0 -0
  55. data/lib/ontomde-core/inspector/rails/public/images/logoMDE.gif +0 -0
  56. data/lib/ontomde-core/inspector/rails/public/images/rails.png +0 -0
  57. data/lib/ontomde-core/inspector/rails/public/javascripts/application.js +2 -0
  58. data/lib/ontomde-core/inspector/rails/public/javascripts/controls.js +963 -0
  59. data/lib/ontomde-core/inspector/rails/public/javascripts/dragdrop.js +972 -0
  60. data/lib/ontomde-core/inspector/rails/public/javascripts/effects.js +1120 -0
  61. data/lib/ontomde-core/inspector/rails/public/javascripts/prototype.js +4225 -0
  62. data/lib/ontomde-core/inspector/rails/public/robots.txt +5 -0
  63. data/lib/ontomde-core/inspector/rails/script/about +3 -0
  64. data/lib/ontomde-core/inspector/rails/script/console +3 -0
  65. data/lib/ontomde-core/inspector/rails/script/destroy +3 -0
  66. data/lib/ontomde-core/inspector/rails/script/generate +3 -0
  67. data/lib/ontomde-core/inspector/rails/script/performance/benchmarker +3 -0
  68. data/lib/ontomde-core/inspector/rails/script/performance/profiler +3 -0
  69. data/lib/ontomde-core/inspector/rails/script/performance/request +3 -0
  70. data/lib/ontomde-core/inspector/rails/script/plugin +3 -0
  71. data/lib/ontomde-core/inspector/rails/script/process/inspector +3 -0
  72. data/lib/ontomde-core/inspector/rails/script/process/reaper +3 -0
  73. data/lib/ontomde-core/inspector/rails/script/process/spawner +3 -0
  74. data/lib/ontomde-core/inspector/rails/script/runner +3 -0
  75. data/lib/ontomde-core/inspector/rails/script/server +3 -0
  76. data/lib/ontomde-core/inspector/rails/test/test_helper.rb +38 -0
  77. data/lib/ontomde-core/inspector/rails/vendor/plugins/auto_complete/README +23 -0
  78. data/lib/ontomde-core/inspector/rails/vendor/plugins/auto_complete/Rakefile +22 -0
  79. data/lib/ontomde-core/inspector/rails/vendor/plugins/auto_complete/init.rb +2 -0
  80. data/lib/ontomde-core/inspector/rails/vendor/plugins/auto_complete/lib/auto_complete.rb +47 -0
  81. data/lib/ontomde-core/inspector/rails/vendor/plugins/auto_complete/lib/auto_complete_macros_helper.rb +143 -0
  82. data/lib/ontomde-core/inspector/rails/vendor/plugins/auto_complete/test/auto_complete_test.rb +67 -0
  83. data/lib/ontomde-core/inspector/setup_rails.sh +39 -0
  84. data/lib/ontomde-core/inspector.rb +21 -0
  85. data/lib/ontomde-core/meta.rb +6 -5
  86. data/lib/ontomde-core/resource.rb +6 -6
  87. data/lib/ontomde-core/resourceSet.rb +7 -6
  88. data/lib/ontomde-core/triplet.rb +2 -0
  89. data/lib/ontomde-core/version.rb +1 -1
  90. data/test/protege/test_demo.rb +1 -1
  91. data/test/test_context.rb +1 -1
  92. data/test/test_protected.rb +11 -11
  93. data/test/test_uri.rb +1 -1
  94. data/test/unit_test_crash.rb +1 -1
  95. metadata +105 -29
@@ -0,0 +1,203 @@
1
+ == Welcome to Rails
2
+
3
+ Rails is a web-application and persistence framework that includes everything
4
+ needed to create database-backed web-applications according to the
5
+ Model-View-Control pattern of separation. This pattern splits the view (also
6
+ called the presentation) into "dumb" templates that are primarily responsible
7
+ for inserting pre-built data in between HTML tags. The model contains the
8
+ "smart" domain objects (such as Account, Product, Person, Post) that holds all
9
+ the business logic and knows how to persist themselves to a database. The
10
+ controller handles the incoming requests (such as Save New Account, Update
11
+ Product, Show Post) by manipulating the model and directing data to the view.
12
+
13
+ In Rails, the model is handled by what's called an object-relational mapping
14
+ layer entitled Active Record. This layer allows you to present the data from
15
+ database rows as objects and embellish these data objects with business logic
16
+ methods. You can read more about Active Record in
17
+ link:files/vendor/rails/activerecord/README.html.
18
+
19
+ The controller and view are handled by the Action Pack, which handles both
20
+ layers by its two parts: Action View and Action Controller. These two layers
21
+ are bundled in a single package due to their heavy interdependence. This is
22
+ unlike the relationship between the Active Record and Action Pack that is much
23
+ more separate. Each of these packages can be used independently outside of
24
+ Rails. You can read more about Action Pack in
25
+ link:files/vendor/rails/actionpack/README.html.
26
+
27
+
28
+ == Getting Started
29
+
30
+ 1. At the command prompt, start a new Rails application using the <tt>rails</tt> command
31
+ and your application name. Ex: rails myapp
32
+ (If you've downloaded Rails in a complete tgz or zip, this step is already done)
33
+ 2. Change directory into myapp and start the web server: <tt>script/server</tt> (run with --help for options)
34
+ 3. Go to http://localhost:3000/ and get "Welcome aboard: You’re riding the Rails!"
35
+ 4. Follow the guidelines to start developing your application
36
+
37
+
38
+ == Web Servers
39
+
40
+ By default, Rails will try to use Mongrel and lighttpd if they are installed, otherwise
41
+ Rails will use WEBrick, the webserver that ships with Ruby. When you run script/server,
42
+ Rails will check if Mongrel exists, then lighttpd and finally fall back to WEBrick. This ensures
43
+ that you can always get up and running quickly.
44
+
45
+ Mongrel is a Ruby-based webserver with a C component (which requires compilation) that is
46
+ suitable for development and deployment of Rails applications. If you have Ruby Gems installed,
47
+ getting up and running with mongrel is as easy as: <tt>gem install mongrel</tt>.
48
+ More info at: http://mongrel.rubyforge.org
49
+
50
+ If Mongrel is not installed, Rails will look for lighttpd. It's considerably faster than
51
+ Mongrel and WEBrick and also suited for production use, but requires additional
52
+ installation and currently only works well on OS X/Unix (Windows users are encouraged
53
+ to start with Mongrel). We recommend version 1.4.11 and higher. You can download it from
54
+ http://www.lighttpd.net.
55
+
56
+ And finally, if neither Mongrel or lighttpd are installed, Rails will use the built-in Ruby
57
+ web server, WEBrick. WEBrick is a small Ruby web server suitable for development, but not
58
+ for production.
59
+
60
+ But of course its also possible to run Rails on any platform that supports FCGI.
61
+ Apache, LiteSpeed, IIS are just a few. For more information on FCGI,
62
+ please visit: http://wiki.rubyonrails.com/rails/pages/FastCGI
63
+
64
+
65
+ == Debugging Rails
66
+
67
+ Sometimes your application goes wrong. Fortunately there are a lot of tools that
68
+ will help you debug it and get it back on the rails.
69
+
70
+ First area to check is the application log files. Have "tail -f" commands running
71
+ on the server.log and development.log. Rails will automatically display debugging
72
+ and runtime information to these files. Debugging info will also be shown in the
73
+ browser on requests from 127.0.0.1.
74
+
75
+ You can also log your own messages directly into the log file from your code using
76
+ the Ruby logger class from inside your controllers. Example:
77
+
78
+ class WeblogController < ActionController::Base
79
+ def destroy
80
+ @weblog = Weblog.find(params[:id])
81
+ @weblog.destroy
82
+ logger.info("#{Time.now} Destroyed Weblog ID ##{@weblog.id}!")
83
+ end
84
+ end
85
+
86
+ The result will be a message in your log file along the lines of:
87
+
88
+ Mon Oct 08 14:22:29 +1000 2007 Destroyed Weblog ID #1
89
+
90
+ More information on how to use the logger is at http://www.ruby-doc.org/core/
91
+
92
+ Also, Ruby documentation can be found at http://www.ruby-lang.org/ including:
93
+
94
+ * The Learning Ruby (Pickaxe) Book: http://www.ruby-doc.org/docs/ProgrammingRuby/
95
+ * Learn to Program: http://pine.fm/LearnToProgram/ (a beginners guide)
96
+
97
+ These two online (and free) books will bring you up to speed on the Ruby language
98
+ and also on programming in general.
99
+
100
+
101
+ == Debugger
102
+
103
+ Debugger support is available through the debugger command when you start your Mongrel or
104
+ Webrick server with --debugger. This means that you can break out of execution at any point
105
+ in the code, investigate and change the model, AND then resume execution! Example:
106
+
107
+ class WeblogController < ActionController::Base
108
+ def index
109
+ @posts = Post.find(:all)
110
+ debugger
111
+ end
112
+ end
113
+
114
+ So the controller will accept the action, run the first line, then present you
115
+ with a IRB prompt in the server window. Here you can do things like:
116
+
117
+ >> @posts.inspect
118
+ => "[#<Post:0x14a6be8 @attributes={\"title\"=>nil, \"body\"=>nil, \"id\"=>\"1\"}>,
119
+ #<Post:0x14a6620 @attributes={\"title\"=>\"Rails you know!\", \"body\"=>\"Only ten..\", \"id\"=>\"2\"}>]"
120
+ >> @posts.first.title = "hello from a debugger"
121
+ => "hello from a debugger"
122
+
123
+ ...and even better is that you can examine how your runtime objects actually work:
124
+
125
+ >> f = @posts.first
126
+ => #<Post:0x13630c4 @attributes={"title"=>nil, "body"=>nil, "id"=>"1"}>
127
+ >> f.
128
+ Display all 152 possibilities? (y or n)
129
+
130
+ Finally, when you're ready to resume execution, you enter "cont"
131
+
132
+
133
+ == Console
134
+
135
+ You can interact with the domain model by starting the console through <tt>script/console</tt>.
136
+ Here you'll have all parts of the application configured, just like it is when the
137
+ application is running. You can inspect domain models, change values, and save to the
138
+ database. Starting the script without arguments will launch it in the development environment.
139
+ Passing an argument will specify a different environment, like <tt>script/console production</tt>.
140
+
141
+ To reload your controllers and models after launching the console run <tt>reload!</tt>
142
+
143
+
144
+ == Description of Contents
145
+
146
+ app
147
+ Holds all the code that's specific to this particular application.
148
+
149
+ app/controllers
150
+ Holds controllers that should be named like weblogs_controller.rb for
151
+ automated URL mapping. All controllers should descend from ApplicationController
152
+ which itself descends from ActionController::Base.
153
+
154
+ app/models
155
+ Holds models that should be named like post.rb.
156
+ Most models will descend from ActiveRecord::Base.
157
+
158
+ app/views
159
+ Holds the template files for the view that should be named like
160
+ weblogs/index.erb for the WeblogsController#index action. All views use eRuby
161
+ syntax.
162
+
163
+ app/views/layouts
164
+ Holds the template files for layouts to be used with views. This models the common
165
+ header/footer method of wrapping views. In your views, define a layout using the
166
+ <tt>layout :default</tt> and create a file named default.erb. Inside default.erb,
167
+ call <% yield %> to render the view using this layout.
168
+
169
+ app/helpers
170
+ Holds view helpers that should be named like weblogs_helper.rb. These are generated
171
+ for you automatically when using script/generate for controllers. Helpers can be used to
172
+ wrap functionality for your views into methods.
173
+
174
+ config
175
+ Configuration files for the Rails environment, the routing map, the database, and other dependencies.
176
+
177
+ db
178
+ Contains the database schema in schema.rb. db/migrate contains all
179
+ the sequence of Migrations for your schema.
180
+
181
+ doc
182
+ This directory is where your application documentation will be stored when generated
183
+ using <tt>rake doc:app</tt>
184
+
185
+ lib
186
+ Application specific libraries. Basically, any kind of custom code that doesn't
187
+ belong under controllers, models, or helpers. This directory is in the load path.
188
+
189
+ public
190
+ The directory available for the web server. Contains subdirectories for images, stylesheets,
191
+ and javascripts. Also contains the dispatchers and the default HTML files. This should be
192
+ set as the DOCUMENT_ROOT of your web server.
193
+
194
+ script
195
+ Helper scripts for automation and generation.
196
+
197
+ test
198
+ Unit and functional tests along with fixtures. When using the script/generate scripts, template
199
+ test files will be generated for you and placed in this directory.
200
+
201
+ vendor
202
+ External libraries that the application depends on. Also includes the plugins subdirectory.
203
+ This directory is in the load path.
@@ -0,0 +1,10 @@
1
+ # Add your own tasks in files placed in lib/tasks ending in .rake,
2
+ # for example lib/tasks/capistrano.rake, and they will automatically be available to Rake.
3
+
4
+ require(File.join(File.dirname(__FILE__), 'config', 'boot'))
5
+
6
+ require 'rake'
7
+ require 'rake/testtask'
8
+ require 'rake/rdoctask'
9
+
10
+ require 'tasks/rails'
@@ -0,0 +1,10 @@
1
+ # Filters added to this controller apply to all controllers in the application.
2
+ # Likewise, all the methods added will be available for all controllers.
3
+
4
+ class ApplicationController < ActionController::Base
5
+ helper :all # include all helpers, all the time
6
+
7
+ # See ActionController::RequestForgeryProtection for details
8
+ # Uncomment the :secret if you're not using the cookie session store
9
+ protect_from_forgery # :secret => 'e0afe5ec378834f458500eb6bbc66e79'
10
+ end
@@ -0,0 +1,349 @@
1
+ require "ontomde-core"
2
+ require "ontomde-core/inspector/loader.rb"
3
+ #
4
+ #require "ontomde-core/context.rb"
5
+ #require "ontomde-uml2"
6
+ #require "ontomde-uml2/kb"
7
+ #require "ontomde-java"
8
+
9
+
10
+
11
+
12
+ class MtkController < ApplicationController
13
+ def post_init
14
+ puts "initialize!"
15
+
16
+ @loader=Crdf_loader.instance
17
+ #@loader.loadProfile
18
+
19
+ @model=@loader.rdf_Repository
20
+ #MtkWebContext::RModel
21
+ #@model.init
22
+ end
23
+
24
+ def clear
25
+ post_init
26
+ @loader.reset
27
+ post_init
28
+
29
+ #MtkWebContext::RModel=Model.new
30
+ end
31
+ def index
32
+ end
33
+
34
+ def last_generated
35
+ post_init
36
+ @generated=@model.fileGenerated
37
+ end
38
+ def auto_complete_for_add_file_
39
+ p=params[ "add_file[]" ].to_s
40
+ puts "p=#{p}"
41
+ @filter_result=Array.new
42
+ Dir.glob("#{p}*").each { |f|
43
+ puts "f=#{f}"
44
+ h=Hash.new
45
+ h["to_s"]=f
46
+ @filter_result << h
47
+ break if @filter_result.length > 10
48
+ }
49
+ render :inline => "<%= auto_complete_result @filter_result, 'to_s' %>"
50
+ end
51
+ def auto_complete_for_filter_contains
52
+ puts "@@@@@@@@@@@@@@\ncall auto_complete_for_contact_name"
53
+ post_init
54
+ puts "0 params"
55
+ params.each{|p,v|
56
+ puts "auto #{p}-->#{v}"
57
+ }
58
+ puts "1 params"
59
+
60
+ filter=params[ :filter ][:contains].to_s
61
+ filter=/#{filter}/
62
+ #puts "params.raw_post=#{params.raw_post} size=#{@model.size}"
63
+ @filter_result=Array.new
64
+ @model.each_value { |res|
65
+ #puts "filter=#{filter} #{res.to_s} #{res.class.name}"
66
+ if (res.to_s =~ filter)
67
+ h=Hash.new
68
+ h["to_s"]="^#{res.to_s}$"
69
+ @filter_result << h
70
+ break if @filter_result.length > 10
71
+ end
72
+ }
73
+ #puts "filter!, #{filter} #{@filter_result.length}"
74
+ render :inline => "<%= auto_complete_result @filter_result, 'to_s' %>"
75
+ #render :partials => contact
76
+ end
77
+ def search_form
78
+ post_init
79
+ end
80
+ def search
81
+ post_init
82
+
83
+ params.each {|k,v|
84
+ puts("params #{k} --> #{v.class} #{v}")
85
+ }
86
+
87
+ filter=params[:filter][:contains].to_s
88
+ puts "filter=#{filter}"
89
+ filter=/#{filter}/
90
+ search_result=@model.reject { |key,res|
91
+ #puts "filter=#{filter} #{res.to_s} #{res.class.name}"
92
+ !(res.to_s =~ filter)
93
+ }
94
+
95
+ if search_result.size == 1
96
+ search_result.each { |key,res|
97
+ redirect_to :action => "show", :uri => key
98
+ }
99
+ else
100
+ @search_result=search_result
101
+ @filter=filter
102
+ #@model=m
103
+ render :action=> "search_result"
104
+ end
105
+ end
106
+ def search_result
107
+ post_init
108
+ filter=params[ "filter[x]" ].to_s
109
+ filter=/#{filter}/
110
+ @model=m
111
+ @search_result=@model.reject { |key,res|
112
+ #puts "filter=#{filter} #{res.to_s} #{res.class.name}"
113
+ !(res.to_s =~ filter)
114
+ }
115
+ render :action=> "search_result"
116
+ end
117
+
118
+ def show
119
+ post_init
120
+ #m=session[:rdfModel]
121
+ #model=MtkWebContext::RModel
122
+ #model.init
123
+ uri=params["uri"]
124
+
125
+
126
+ obj=@model[uri]
127
+
128
+ if obj==nil
129
+ puts "object not found (uri=#{uri})!!!!"
130
+ #@model=model.reject { false }
131
+ @uri=uri
132
+ render :action=> "not_found"
133
+ puts "object not found!!!!"
134
+ return
135
+ end
136
+ puts "object found (uri=#{uri})!!!!"
137
+ onglet_actif=params["onglet"]
138
+ onglet_actif="" if onglet_actif.nil?
139
+
140
+ show_obj(obj,onglet_actif)
141
+ end
142
+ def show_obj(obj,onglet_actif)
143
+
144
+
145
+ #out="
146
+ # uri=#{uri}<br>
147
+ # model=#{@model==nil ? 'nil' : 'model loaded'}<br>
148
+ # obj=#{obj==nil ? 'nil' : 'objet loaded'}<br>
149
+ #"
150
+
151
+ puts "obj.class.name=#{obj.class.name}"
152
+
153
+ methods=Hash.new
154
+ vides=Array.new
155
+ erreurs=Array.new
156
+ onglets=Set.new
157
+ onglets << ""
158
+
159
+ on_demand=%w{ rdfx_clone }
160
+ black_list=%w{to_enum enum_for extended_by instance_values instance_variables object_id private_methods public_methods rdf_Repository to_a to_yaml to_yaml_style to_yaml_properties instance_eval instance_values private_methods object_id decode_b require_gem protected_methods silence_stderr enable_warnings ext_ instance_exec method_missing silence_stream silence_warnings singleton_methods subclasses_of to_json with_options stringify_keys symbolize_keys to_hash to_options to_set to_xml with_indifferent_access init_notUsed require_gem_with_options require_library_or_gem }
161
+
162
+ on_demand.reject!{ |elt| params["on_demand"]==elt }
163
+
164
+ obj.methods.find_all { |a|
165
+ #puts "operation:#{a} one=#{(a.to_s=~/^.*_one[0]$/)and true}"
166
+ a =~/^[a-zA-Z]+_[_a-zA-Z0-9]*\??$/ and !black_list.include?(a) and !on_demand.include?(a) and !(a=~/^.*_xxxone[0]$/) #and ! a=~ "_dot"
167
+ }.sort{|a,b| a<=>b}.each {|m|
168
+
169
+
170
+ #puts "operation=#{m} !!!!!!!!!!!!!!!!!!!!!!!!!!!!"
171
+ #if(on_demand.include?(a)
172
+ r=nil
173
+
174
+ sos=@model.mtk_stringWriteSession() {
175
+ begin
176
+ obj.mtk_context(:contextReturnKeyIfEmpty => true) {
177
+ r=eval("obj.#{m}")
178
+ }
179
+ #puts " post eval"
180
+ rescue Warning =>warn
181
+ if m=~/.*_one$/
182
+ erreurs.push(m)
183
+ next
184
+ end
185
+ puts"warn=#{warn.message}"
186
+ r="Warning:"+warn.message.split(/:/,4)[3]
187
+ puts " rescue"
188
+ rescue StandardError =>boom
189
+ puts " rescue eval (!!)"
190
+ puts "boom #{boom.to_s}"
191
+ erreurs.push(m)
192
+ next
193
+ end
194
+ }
195
+ puts "sos=#{sos}/#{sos.to_s} #{sos.class.name}"
196
+
197
+ r=sos.to_s if sos!=nil
198
+ if(r==nil)
199
+ vides.push(m)
200
+ next
201
+ end
202
+
203
+ r=[r] if !r.respond_to?(:each)
204
+ if(r.length<=0)
205
+ vides.push(m)
206
+ else
207
+ #on ajoute m
208
+ prefix=m.split(/_/,3)[0]
209
+ onglets << prefix
210
+ methods[m]=r
211
+ end
212
+ }
213
+
214
+ @obj=obj
215
+ @methods=methods
216
+ @vides=vides
217
+ #@model=@model
218
+ @erreurs=erreurs
219
+ @on_demand=on_demand
220
+ @onglets=onglets
221
+ @onglet_actif=onglet_actif
222
+
223
+
224
+ end
225
+
226
+
227
+
228
+
229
+ def loadLocalRDFUpdateFile
230
+ post_init
231
+ fn=params["file"]
232
+ puts "\"File\"=\"#{fn}\""
233
+ @loader.addModelFile(fn)
234
+ #@model.loadModelFromFile(fn)
235
+ @model.mtk_context(:build => '../build/') {
236
+ @model.java_generate
237
+ }
238
+ render_text <<END
239
+ XMDA SERVER WAS SUCCESSFULLY CONTACTED
240
+ File loaded : #{fn}
241
+ updateCount : #{@model.updateCount}
242
+ Nbr Resources: #{@model.length}
243
+ Generation : disabled
244
+ END
245
+ end
246
+ def model_stat
247
+ post_init
248
+ render_text "#{@model.length} ressources"
249
+ end
250
+ def loadLocalRDFUpdateFileWithCookie
251
+ p=session[:count]
252
+ p=1 if !p
253
+ p=p+1
254
+ session[:count]=p
255
+ render_text "Yes ! call count:#{p} "
256
+
257
+ m=session[:rdfModel]
258
+ if m==nil
259
+ m=Crdf_Repository.new
260
+ m.loadUml2
261
+ end
262
+ m.loadModelFromFile("../../fr.ft.emf2rdf.generator/tests-data/simple1.uml2.tests.output.nt")
263
+
264
+ m.generate
265
+
266
+ session[:rdfModel]=m
267
+ end
268
+ def echo
269
+ end
270
+
271
+ def setup
272
+ redirect_to :action => "setup_form"
273
+ end
274
+ def setup_form
275
+ post_init
276
+ @activeProfiles=@loader.activeProfiles
277
+ @availableProfiles=@loader.availableProfiles
278
+ @sourceFiles=@loader.sourceFiles
279
+ end
280
+ def setup_change
281
+ post_init
282
+
283
+ add_file=params["add_file[]"]
284
+ if !add_file.nil? && add_file.length>0
285
+ puts "add_file=#{add_file}"
286
+ @loader.addModelFile(add_file)
287
+ end
288
+
289
+ key=1000
290
+ @loader.availableProfiles.each { |prof|
291
+ key=key+1
292
+ puts "!!!!!!!!"
293
+ puts params["check_#{key}"]
294
+ puts params["check_#{key}"]=="1"
295
+ if params["check_#{key}"]=="1"
296
+ puts "add #{prof}"
297
+ @loader.activeProfiles.add(prof)
298
+ else
299
+ puts "delete #{prof}"
300
+ @loader.activeProfiles.delete(prof)
301
+ end
302
+
303
+ }
304
+ redirect_to :action => "setup_form"
305
+ end
306
+
307
+ # essai pdf
308
+ def pdf
309
+ require "pdf/writer"
310
+ _pdf = PDF::Writer.new
311
+ _pdf.select_font "Times-Roman"
312
+ _pdf.text "Hello, Ruby.", :font_size => 72, :justification => :center
313
+
314
+ send_data _pdf.render, :filename => "hello.pdf",
315
+ :type => "application/pdf"
316
+ end
317
+
318
+
319
+ def model
320
+ post_init
321
+ show_obj(@model,"")
322
+ #render :action=> "show"
323
+ end
324
+
325
+ def dot
326
+ uri=params["uri"]
327
+ method=params["method"]
328
+
329
+ post_init
330
+ obj=@model[uri]
331
+
332
+ fn="#{Dir.tmpdir}/#{method}-#{obj.object_id}"
333
+
334
+ obj.mtk_writeSession("#{fn}.dot") {
335
+ obj.instance_eval(method)
336
+ }
337
+
338
+ cmd="dot -Tgif -o#{fn}.gif #{fn}.dot"
339
+ system(cmd)
340
+ send_file "#{fn}.gif", :type => 'image/gif', :disposition => 'inline'
341
+
342
+ end
343
+ def exitServer
344
+ puts "Exiting server"
345
+ Process.exit!(0)
346
+ end
347
+
348
+
349
+ end
@@ -0,0 +1,3 @@
1
+ # Methods added to this helper will be available to all templates in the application.
2
+ module ApplicationHelper
3
+ end
@@ -0,0 +1,20 @@
1
+ module MtkHelper
2
+
3
+ def more_begin_if(str,t)
4
+ #return ""
5
+ return "" if !t
6
+ return <<ENDHTML
7
+ <a class="hid" href="#more" onclick="this.hideFocus=true" onblur="this.hideFocus=false"><span>#{str} &#187;</span><em>
8
+ ENDHTML
9
+ end
10
+
11
+ def more_end_if(t)
12
+ #return ""
13
+ return "" if !t
14
+ return <<ENDHTML
15
+ </em></a>
16
+ ENDHTML
17
+ end
18
+
19
+
20
+ end