summaryrefslogtreecommitdiffstats
path: root/languages/ruby/app_templates/tdeapp/main.rb
diff options
context:
space:
mode:
authorMichele Calgaro <[email protected]>2014-05-25 15:37:31 +0900
committerMichele Calgaro <[email protected]>2014-05-25 15:37:31 +0900
commit6392f5a9dfce2bf83617d49bb7f332181ec6004e (patch)
treeab69e390f7962b7e7dda1a3a64f035c61c751cf4 /languages/ruby/app_templates/tdeapp/main.rb
parentaba2788b428dc53243407902e9ccbb20b97a69fd (diff)
downloadtdevelop-6392f5a9dfce2bf83617d49bb7f332181ec6004e.tar.gz
tdevelop-6392f5a9dfce2bf83617d49bb7f332181ec6004e.zip
Revert "Finish renaming tdevelop components"
This reverts commit 722ce1efbac31c61b1d4b13f7e075c9f311e3e73.
Diffstat (limited to 'languages/ruby/app_templates/tdeapp/main.rb')
-rw-r--r--languages/ruby/app_templates/tdeapp/main.rb40
1 files changed, 0 insertions, 40 deletions
diff --git a/languages/ruby/app_templates/tdeapp/main.rb b/languages/ruby/app_templates/tdeapp/main.rb
deleted file mode 100644
index 47235013..00000000
--- a/languages/ruby/app_templates/tdeapp/main.rb
+++ /dev/null
@@ -1,40 +0,0 @@
-#!/usr/bin/env ruby
-
-require 'Korundum'
-
-require '%{APPNAMELC}iface.rb'
-require '%{APPNAMELC}.rb'
-require '%{APPNAMELC}view.rb'
-require 'pref.rb'
-
-description = I18N_NOOP("A TDE Application")
-version = "%{VERSION}"
-options = [ [ "+[URL]", I18N_NOOP( "Document to open" ), "" ] ]
-
-about = KDE::AboutData.new("%{APPNAMELC}", I18N_NOOP("%{APPNAME}"), version, description,
- KDE::AboutData.License_%{LICENSE}, "(C) %{YEAR} %{AUTHOR}", nil, nil, "%{EMAIL}")
-about.addAuthor( "%{AUTHOR}", nil, "%{EMAIL}" )
-KDE::CmdLineArgs.init(ARGV, about)
-KDE::CmdLineArgs.addCmdLineOptions(options)
-app = KDE::Application.new
-
-# see if we are starting with session management
-if app.restored?
- RESTORE(%{APPNAMESC})
-else
- # no session.. just start up normally
- args = KDE::CmdLineArgs.parsedArgs
- if args.count == 0
- widget = %{APPNAMESC}.new
- widget.show
- else
- for i in 0...args.count do
- widget = %{APPNAMESC}.new
- widget.show
- widget.load(args.url(i))
- end
- end
-end
-
-app.exec
-