keepyourhead 0.2.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (47) hide show
  1. data/COPYING.txt +674 -0
  2. data/LICENSE.rdoc +20 -0
  3. data/README.rdoc +3 -0
  4. data/bin/keepyourhead +6 -0
  5. data/data/glade/DialogEditLatex.glade +180 -0
  6. data/data/glade/DialogEditText.glade +66 -0
  7. data/data/glade/DialogTrainStart.glade +101 -0
  8. data/data/glade/WindowEdit.glade +1419 -0
  9. data/data/glade/WindowTrain.glade +271 -0
  10. data/data/images/error_back.png +0 -0
  11. data/data/images/error_front.png +0 -0
  12. data/data/images/loading_back.png +0 -0
  13. data/data/images/loading_front.png +0 -0
  14. data/lib/Keepyourhead.rb +62 -0
  15. data/lib/Keepyourhead/Application.rb +94 -0
  16. data/lib/Keepyourhead/Cache.rb +233 -0
  17. data/lib/Keepyourhead/Compilation.rb +38 -0
  18. data/lib/Keepyourhead/Images.rb +62 -0
  19. data/lib/Keepyourhead/Preferences.rb +52 -0
  20. data/lib/Keepyourhead/Requirements.rb +72 -0
  21. data/lib/Keepyourhead/Resources.rb +45 -0
  22. data/lib/Keepyourhead/Training.rb +132 -0
  23. data/lib/Keepyourhead/Utils.rb +97 -0
  24. data/lib/Keepyourhead/Version.rb +43 -0
  25. data/lib/Keepyourhead/database/Base.rb +77 -0
  26. data/lib/Keepyourhead/database/BaseStatistic.rb +63 -0
  27. data/lib/Keepyourhead/database/BaseTopicFlashcardContainer.rb +43 -0
  28. data/lib/Keepyourhead/database/Collection.rb +43 -0
  29. data/lib/Keepyourhead/database/Database.rb +139 -0
  30. data/lib/Keepyourhead/database/File.rb +224 -0
  31. data/lib/Keepyourhead/database/FileRoot.rb +44 -0
  32. data/lib/Keepyourhead/database/Flashcard.rb +116 -0
  33. data/lib/Keepyourhead/database/Topic.rb +40 -0
  34. data/lib/Keepyourhead/database/Visitor.rb +33 -0
  35. data/lib/Keepyourhead/database/XmlAccessor.rb +315 -0
  36. data/lib/Keepyourhead/gui/Action.rb +91 -0
  37. data/lib/Keepyourhead/gui/DialogEditLatex.rb +132 -0
  38. data/lib/Keepyourhead/gui/DialogEditText.rb +104 -0
  39. data/lib/Keepyourhead/gui/DialogTrainStart.rb +63 -0
  40. data/lib/Keepyourhead/gui/FlashcardViewController.rb +112 -0
  41. data/lib/Keepyourhead/gui/WindowEdit.rb +469 -0
  42. data/lib/Keepyourhead/gui/WindowEditActions.rb +440 -0
  43. data/lib/Keepyourhead/gui/WindowEditAdapters.rb +329 -0
  44. data/lib/Keepyourhead/gui/WindowTrain.rb +167 -0
  45. data/lib/Keepyourhead/style/Style.rb +48 -0
  46. data/lib/Keepyourhead/style/StyleLatex.rb +235 -0
  47. metadata +100 -0
metadata ADDED
@@ -0,0 +1,100 @@
1
+ --- !ruby/object:Gem::Specification
2
+ rubygems_version: 0.9.4
3
+ specification_version: 1
4
+ name: keepyourhead
5
+ version: !ruby/object:Gem::Version
6
+ version: 0.2.0
7
+ date: 2008-10-01 00:00:00 +03:00
8
+ summary: KeepYourHead is a latex based flashcard trainer under GPL3
9
+ require_paths:
10
+ - lib
11
+ email: OliverBurghard@web.de
12
+ homepage: http://keepyourhead.rubyforge.org
13
+ rubyforge_project: keepyourhead
14
+ description: KeepYourHead is a latex based flashcard trainer under GPL3. It includes an editor as well as an trainer. Flashcards are build in latex. Latex is a powerful tool for descriping documents. The Flashcards are checked by letting the user judge if he knew the answer well enough.
15
+ autorequire: keepyourhead
16
+ default_executable:
17
+ bindir: bin
18
+ has_rdoc: true
19
+ required_ruby_version: !ruby/object:Gem::Version::Requirement
20
+ requirements:
21
+ - - ">"
22
+ - !ruby/object:Gem::Version
23
+ version: 0.0.0
24
+ version:
25
+ platform: ruby
26
+ signing_key:
27
+ cert_chain:
28
+ post_install_message:
29
+ authors:
30
+ - Oliver Burghard
31
+ files:
32
+ - COPYING.txt
33
+ - LICENSE.rdoc
34
+ - README.rdoc
35
+ - lib/Keepyourhead
36
+ - lib/Keepyourhead/gui
37
+ - lib/Keepyourhead/gui/WindowEditAdapters.rb
38
+ - lib/Keepyourhead/gui/WindowEditActions.rb
39
+ - lib/Keepyourhead/gui/WindowTrain.rb
40
+ - lib/Keepyourhead/gui/DialogEditText.rb
41
+ - lib/Keepyourhead/gui/WindowEdit.rb
42
+ - lib/Keepyourhead/gui/Action.rb
43
+ - lib/Keepyourhead/gui/DialogEditLatex.rb
44
+ - lib/Keepyourhead/gui/DialogTrainStart.rb
45
+ - lib/Keepyourhead/gui/FlashcardViewController.rb
46
+ - lib/Keepyourhead/Compilation.rb
47
+ - lib/Keepyourhead/database
48
+ - lib/Keepyourhead/database/Database.rb
49
+ - lib/Keepyourhead/database/Base.rb
50
+ - lib/Keepyourhead/database/FileRoot.rb
51
+ - lib/Keepyourhead/database/XmlAccessor.rb
52
+ - lib/Keepyourhead/database/Visitor.rb
53
+ - lib/Keepyourhead/database/Topic.rb
54
+ - lib/Keepyourhead/database/Flashcard.rb
55
+ - lib/Keepyourhead/database/BaseTopicFlashcardContainer.rb
56
+ - lib/Keepyourhead/database/File.rb
57
+ - lib/Keepyourhead/database/Collection.rb
58
+ - lib/Keepyourhead/database/BaseStatistic.rb
59
+ - lib/Keepyourhead/style
60
+ - lib/Keepyourhead/style/StyleLatex.rb
61
+ - lib/Keepyourhead/style/Style.rb
62
+ - lib/Keepyourhead/Images.rb
63
+ - lib/Keepyourhead/Application.rb
64
+ - lib/Keepyourhead/Resources.rb
65
+ - lib/Keepyourhead/Utils.rb
66
+ - lib/Keepyourhead/Training.rb
67
+ - lib/Keepyourhead/Version.rb
68
+ - lib/Keepyourhead/Requirements.rb
69
+ - lib/Keepyourhead/Preferences.rb
70
+ - lib/Keepyourhead/Cache.rb
71
+ - lib/Keepyourhead.rb
72
+ - data/glade
73
+ - data/glade/DialogTrainStart.glade
74
+ - data/glade/WindowEdit.glade
75
+ - data/glade/DialogEditLatex.glade
76
+ - data/glade/WindowTrain.glade
77
+ - data/glade/DialogEditText.glade
78
+ - data/images
79
+ - data/images/loading_front.png
80
+ - data/images/loading_back.png
81
+ - data/images/error_back.png
82
+ - data/images/error_front.png
83
+ test_files: []
84
+
85
+ rdoc_options: []
86
+
87
+ extra_rdoc_files:
88
+ - LICENSE.rdoc
89
+ - README.rdoc
90
+ executables:
91
+ - keepyourhead
92
+ extensions: []
93
+
94
+ requirements:
95
+ - ghostscript (http://www.ghostscript.com/awki)
96
+ - latex (http://www.tug.org/texlive)
97
+ - ruby-gnome2 (http://ruby-gnome2.sourceforge.jp)
98
+ - ruby-gnome2 (http://ruby-gnome2.sourceforge.jp)
99
+ dependencies: []
100
+