blog_basic 0.1.6
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.
- data/Gemfile +24 -0
- data/MIT-LICENSE +20 -0
- data/Manifest +0 -0
- data/README.md +186 -0
- data/Rakefile +47 -0
- data/app/admin/blog_basic_blog_posts.rb +9 -0
- data/app/admin/dashboards.rb +38 -0
- data/app/assets/images/rails.png +0 -0
- data/app/assets/javascripts/active_admin.js +1 -0
- data/app/assets/javascripts/application.js +9 -0
- data/app/assets/stylesheets/active_admin.css.scss +6 -0
- data/app/assets/stylesheets/application.css +7 -0
- data/app/controllers/application_controller.rb +3 -0
- data/app/controllers/blog_basic/app_controller.rb +27 -0
- data/app/controllers/blog_basic/application_controller.rb +4 -0
- data/app/controllers/blog_basic/blog_comments_controller.rb +69 -0
- data/app/controllers/blog_basic/blog_posts_controller.rb +149 -0
- data/app/controllers/blog_basic/sessions_controller.rb +32 -0
- data/app/controllers/blog_basic/tags_controller.rb +11 -0
- data/app/helpers/application_helper.rb +2 -0
- data/app/helpers/blog_basic/application_helper.rb +21 -0
- data/app/helpers/blog_basic/blog_posts_helper.rb +17 -0
- data/app/helpers/blog_basic/shared_helper.rb +36 -0
- data/app/helpers/blog_basic/tags_helper.rb +5 -0
- data/app/models/admin_user.rb +9 -0
- data/app/models/blog_basic/blog_comment.rb +78 -0
- data/app/models/blog_basic/blog_content.rb +4 -0
- data/app/models/blog_basic/blog_image.rb +23 -0
- data/app/models/blog_basic/blog_post.rb +104 -0
- data/app/models/blog_basic/session.rb +5 -0
- data/app/models/blog_basic/user.rb +22 -0
- data/app/views/blog_basic/blog_comments/_new_blog_comment.html.erb +43 -0
- data/app/views/blog_basic/blog_posts/_admin_links.html.erb +9 -0
- data/app/views/blog_basic/blog_posts/_blog_post.html.erb +62 -0
- data/app/views/blog_basic/blog_posts/_comment.html.erb +18 -0
- data/app/views/blog_basic/blog_posts/_comments.html.erb +6 -0
- data/app/views/blog_basic/blog_posts/_form.html.erb +133 -0
- data/app/views/blog_basic/blog_posts/_image.html.erb +20 -0
- data/app/views/blog_basic/blog_posts/drafts.html.erb +21 -0
- data/app/views/blog_basic/blog_posts/edit.html.erb +6 -0
- data/app/views/blog_basic/blog_posts/index.atom.builder +12 -0
- data/app/views/blog_basic/blog_posts/index.html.erb +31 -0
- data/app/views/blog_basic/blog_posts/new.html.erb +6 -0
- data/app/views/blog_basic/blog_posts/show.html.erb +8 -0
- data/app/views/blog_basic/shared/_footer.html.erb +15 -0
- data/app/views/blog_basic/shared/_index_top.html.erb +12 -0
- data/app/views/blog_basic/shared/_topbar.html.erb +24 -0
- data/app/views/layouts/application.html.erb +14 -0
- data/blog_basic.gemspec +57 -0
- data/config/routes.rb +21 -0
- data/db/migrate/1_blog_tables.rb +86 -0
- data/init.rb +9 -0
- data/lib/akismetor.rb +77 -0
- data/lib/blog_basic/active_admin.rb +103 -0
- data/lib/blog_basic/blog_basic_model_helper.rb +85 -0
- data/lib/blog_basic/blog_conf.rb +36 -0
- data/lib/blog_basic/engine.rb +13 -0
- data/lib/blog_basic/engine.rb.backup +80 -0
- data/lib/blog_basic.rb +16 -0
- data/lib/generators/blog_basic/create_assets/blog_assets_generator.rb +49 -0
- data/lib/generators/blog_basic/create_assets/templates/blog_comments_migration.rb +23 -0
- data/lib/generators/blog_basic/create_assets/templates/blog_images_migration.rb +19 -0
- data/lib/generators/blog_basic/create_assets/templates/blog_posts_migration.rb +17 -0
- data/lib/generators/blog_basic/create_assets/templates/config/blog_basic.yml +52 -0
- data/lib/generators/blog_basic/create_assets/templates/syntax/active4d.css +114 -0
- data/lib/generators/blog_basic/create_assets/templates/syntax/all_hallows_eve.css +72 -0
- data/lib/generators/blog_basic/create_assets/templates/syntax/amy.css +147 -0
- data/lib/generators/blog_basic/create_assets/templates/syntax/blackboard.css +88 -0
- data/lib/generators/blog_basic/create_assets/templates/syntax/brilliance_black.css +605 -0
- data/lib/generators/blog_basic/create_assets/templates/syntax/brilliance_dull.css +599 -0
- data/lib/generators/blog_basic/create_assets/templates/syntax/cobalt.css +149 -0
- data/lib/generators/blog_basic/create_assets/templates/syntax/dawn.css +121 -0
- data/lib/generators/blog_basic/create_assets/templates/syntax/eiffel.css +121 -0
- data/lib/generators/blog_basic/create_assets/templates/syntax/espresso_libre.css +109 -0
- data/lib/generators/blog_basic/create_assets/templates/syntax/idle.css +62 -0
- data/lib/generators/blog_basic/create_assets/templates/syntax/iplastic.css +80 -0
- data/lib/generators/blog_basic/create_assets/templates/syntax/lazy.css +73 -0
- data/lib/generators/blog_basic/create_assets/templates/syntax/mac_classic.css +123 -0
- data/lib/generators/blog_basic/create_assets/templates/syntax/magicwb_amiga.css +104 -0
- data/lib/generators/blog_basic/create_assets/templates/syntax/pastels_on_dark.css +188 -0
- data/lib/generators/blog_basic/create_assets/templates/syntax/slush_poppies.css +85 -0
- data/lib/generators/blog_basic/create_assets/templates/syntax/spacecadet.css +51 -0
- data/lib/generators/blog_basic/create_assets/templates/syntax/sunburst.css +180 -0
- data/lib/generators/blog_basic/create_assets/templates/syntax/twilight.css +137 -0
- data/lib/generators/blog_basic/create_assets/templates/syntax/zenburnesque.css +91 -0
- data/lib/generators/blog_basic/install/install_generator.rb +53 -0
- data/lib/generators/blog_basic/install/templates/active_admin.rb +103 -0
- data/lib/generators/blog_basic/install/templates/blog_basic.yml +52 -0
- data/lib/generators/blog_basic/install/templates/blog_kit.css +75 -0
- data/lib/generators/blog_basic/install/templates/devise.en.yml +58 -0
- data/lib/generators/blog_basic/install/templates/devise.rb +209 -0
- data/lib/generators/blog_basic/install/templates/migrations/1_blog_tables.rb +86 -0
- data/lib/generators/blog_basic/install/templates/migrations/20111213104240_devise_create_admin_users.rb +28 -0
- data/lib/generators/blog_basic/install/templates/migrations/20111213114257_create_admin_notes.rb +16 -0
- data/lib/generators/blog_basic/install/templates/migrations/20111213114258_move_admin_notes_to_comments.rb +25 -0
- data/lib/generators/blog_basic/install/templates/omniauth.rb.erb +10 -0
- data/lib/tasks/blog_basic_tasks.rake +0 -0
- data/lib/url_validator.rb +24 -0
- data/test/database.yml +4 -0
- data/test/fixtures/admin_users.yml +11 -0
- data/test/functional/blog_assets_generator_test.rb +35 -0
- data/test/functional/blog_comments_controller_test.rb +0 -0
- data/test/functional/blog_posts_controller_test.rb +84 -0
- data/test/performance/browsing_test.rb +12 -0
- data/test/schema.rb +61 -0
- data/test/test_helper.rb +13 -0
- data/test/unit/admin_user_test.rb +7 -0
- data/uninstall.rb +1 -0
- metadata +310 -0
|
@@ -0,0 +1,137 @@
|
|
|
1
|
+
pre.twilight .DiffInserted {
|
|
2
|
+
background-color: #253B22;
|
|
3
|
+
color: #F8F8F8;
|
|
4
|
+
}
|
|
5
|
+
pre.twilight .DiffHeader {
|
|
6
|
+
background-color: #0E2231;
|
|
7
|
+
color: #F8F8F8;
|
|
8
|
+
font-style: italic;
|
|
9
|
+
}
|
|
10
|
+
pre.twilight .CssPropertyValue {
|
|
11
|
+
color: #F9EE98;
|
|
12
|
+
}
|
|
13
|
+
pre.twilight .CCCPreprocessorDirective {
|
|
14
|
+
color: #AFC4DB;
|
|
15
|
+
}
|
|
16
|
+
pre.twilight .Constant {
|
|
17
|
+
color: #CF6A4C;
|
|
18
|
+
}
|
|
19
|
+
pre.twilight .DiffChanged {
|
|
20
|
+
background-color: #4A410D;
|
|
21
|
+
color: #F8F8F8;
|
|
22
|
+
}
|
|
23
|
+
pre.twilight .EmbeddedSource {
|
|
24
|
+
background-color: #A3A6AD;
|
|
25
|
+
}
|
|
26
|
+
pre.twilight .Support {
|
|
27
|
+
color: #9B859D;
|
|
28
|
+
}
|
|
29
|
+
pre.twilight .MarkupList {
|
|
30
|
+
color: #F9EE98;
|
|
31
|
+
}
|
|
32
|
+
pre.twilight .CssConstructorArgument {
|
|
33
|
+
color: #8F9D6A;
|
|
34
|
+
}
|
|
35
|
+
pre.twilight .Storage {
|
|
36
|
+
color: #F9EE98;
|
|
37
|
+
}
|
|
38
|
+
pre.twilight .line-numbers {
|
|
39
|
+
background-color: #DDF0FF;
|
|
40
|
+
color: #000000;
|
|
41
|
+
}
|
|
42
|
+
pre.twilight .CssClass {
|
|
43
|
+
color: #9B703F;
|
|
44
|
+
}
|
|
45
|
+
pre.twilight .StringConstant {
|
|
46
|
+
color: #DDF2A4;
|
|
47
|
+
}
|
|
48
|
+
pre.twilight .CssAtRule {
|
|
49
|
+
color: #8693A5;
|
|
50
|
+
}
|
|
51
|
+
pre.twilight .MetaTagInline {
|
|
52
|
+
color: #E0C589;
|
|
53
|
+
}
|
|
54
|
+
pre.twilight .MarkupHeading {
|
|
55
|
+
color: #CF6A4C;
|
|
56
|
+
}
|
|
57
|
+
pre.twilight .CssTagName {
|
|
58
|
+
color: #CDA869;
|
|
59
|
+
}
|
|
60
|
+
pre.twilight .SupportConstant {
|
|
61
|
+
color: #CF6A4C;
|
|
62
|
+
}
|
|
63
|
+
pre.twilight .DiffDeleted {
|
|
64
|
+
background-color: #420E09;
|
|
65
|
+
color: #F8F8F8;
|
|
66
|
+
}
|
|
67
|
+
pre.twilight .CCCPreprocessorLine {
|
|
68
|
+
color: #8996A8;
|
|
69
|
+
}
|
|
70
|
+
pre.twilight .StringRegexpSpecial {
|
|
71
|
+
color: #CF7D34;
|
|
72
|
+
}
|
|
73
|
+
pre.twilight .EmbeddedSourceBright {
|
|
74
|
+
background-color: #9C9EA4;
|
|
75
|
+
}
|
|
76
|
+
pre.twilight .InvalidIllegal {
|
|
77
|
+
background-color: #241A24;
|
|
78
|
+
color: #F8F8F8;
|
|
79
|
+
}
|
|
80
|
+
pre.twilight .SupportFunction {
|
|
81
|
+
color: #DAD085;
|
|
82
|
+
}
|
|
83
|
+
pre.twilight .CssAdditionalConstants {
|
|
84
|
+
color: #CA7840;
|
|
85
|
+
}
|
|
86
|
+
pre.twilight .MetaTagAll {
|
|
87
|
+
color: #AC885B;
|
|
88
|
+
}
|
|
89
|
+
pre.twilight .StringRegexp {
|
|
90
|
+
color: #E9C062;
|
|
91
|
+
}
|
|
92
|
+
pre.twilight .StringEmbeddedSource {
|
|
93
|
+
color: #DAEFA3;
|
|
94
|
+
}
|
|
95
|
+
pre.twilight .EntityInheritedClass {
|
|
96
|
+
color: #9B5C2E;
|
|
97
|
+
font-style: italic;
|
|
98
|
+
}
|
|
99
|
+
pre.twilight .CssId {
|
|
100
|
+
color: #8B98AB;
|
|
101
|
+
}
|
|
102
|
+
pre.twilight .CssPseudoClass {
|
|
103
|
+
color: #8F9D6A;
|
|
104
|
+
}
|
|
105
|
+
pre.twilight .StringVariable {
|
|
106
|
+
color: #8A9A95;
|
|
107
|
+
}
|
|
108
|
+
pre.twilight .String {
|
|
109
|
+
color: #8F9D6A;
|
|
110
|
+
}
|
|
111
|
+
pre.twilight .Keyword {
|
|
112
|
+
color: #CDA869;
|
|
113
|
+
}
|
|
114
|
+
pre.twilight {
|
|
115
|
+
background-color: #141414;
|
|
116
|
+
color: #F8F8F8;
|
|
117
|
+
}
|
|
118
|
+
pre.twilight .CssPropertyName {
|
|
119
|
+
color: #C5AF75;
|
|
120
|
+
}
|
|
121
|
+
pre.twilight .DoctypeXmlProcessing {
|
|
122
|
+
color: #494949;
|
|
123
|
+
}
|
|
124
|
+
pre.twilight .InvalidDeprecated {
|
|
125
|
+
color: #D2A8A1;
|
|
126
|
+
font-style: italic;
|
|
127
|
+
}
|
|
128
|
+
pre.twilight .Variable {
|
|
129
|
+
color: #7587A6;
|
|
130
|
+
}
|
|
131
|
+
pre.twilight .Entity {
|
|
132
|
+
color: #9B703F;
|
|
133
|
+
}
|
|
134
|
+
pre.twilight .Comment {
|
|
135
|
+
color: #5F5A60;
|
|
136
|
+
font-style: italic;
|
|
137
|
+
}
|
|
@@ -0,0 +1,91 @@
|
|
|
1
|
+
pre.zenburnesque .InheritedClass {
|
|
2
|
+
}
|
|
3
|
+
pre.zenburnesque .TypeName {
|
|
4
|
+
color: #F09040;
|
|
5
|
+
}
|
|
6
|
+
pre.zenburnesque .FloatingPointPrefixOperators {
|
|
7
|
+
text-decoration: underline;
|
|
8
|
+
}
|
|
9
|
+
pre.zenburnesque .Number {
|
|
10
|
+
color: #22C0FF;
|
|
11
|
+
}
|
|
12
|
+
pre.zenburnesque .Directive {
|
|
13
|
+
font-weight: bold;
|
|
14
|
+
}
|
|
15
|
+
pre.zenburnesque .LibraryVariable {
|
|
16
|
+
}
|
|
17
|
+
pre.zenburnesque .Storage {
|
|
18
|
+
}
|
|
19
|
+
pre.zenburnesque .line-numbers {
|
|
20
|
+
background-color: #A0A0C0;
|
|
21
|
+
color: #000000;
|
|
22
|
+
}
|
|
23
|
+
pre.zenburnesque .LineNumberDirectives {
|
|
24
|
+
text-decoration: underline;
|
|
25
|
+
}
|
|
26
|
+
pre.zenburnesque .TagName {
|
|
27
|
+
}
|
|
28
|
+
pre.zenburnesque .StorageTypes {
|
|
29
|
+
color: #6080FF;
|
|
30
|
+
}
|
|
31
|
+
pre.zenburnesque .Operators {
|
|
32
|
+
color: #FFFFA0;
|
|
33
|
+
}
|
|
34
|
+
pre.zenburnesque {
|
|
35
|
+
background-color: #404040;
|
|
36
|
+
color: #DEDEDE;
|
|
37
|
+
}
|
|
38
|
+
pre.zenburnesque .LibraryConstant {
|
|
39
|
+
}
|
|
40
|
+
pre.zenburnesque .VariantTypes {
|
|
41
|
+
color: #4080A0;
|
|
42
|
+
}
|
|
43
|
+
pre.zenburnesque .Characters {
|
|
44
|
+
color: #FF8080;
|
|
45
|
+
}
|
|
46
|
+
pre.zenburnesque .FunctionArgument {
|
|
47
|
+
}
|
|
48
|
+
pre.zenburnesque .LanguageKeyword {
|
|
49
|
+
color: #FFFFA0;
|
|
50
|
+
}
|
|
51
|
+
pre.zenburnesque .BuiltInConstant {
|
|
52
|
+
}
|
|
53
|
+
pre.zenburnesque .FloatingPointNumbers {
|
|
54
|
+
text-decoration: underline;
|
|
55
|
+
}
|
|
56
|
+
pre.zenburnesque .ClassTypeName {
|
|
57
|
+
color: #F4A020;
|
|
58
|
+
}
|
|
59
|
+
pre.zenburnesque .TypeName1 {
|
|
60
|
+
color: #FFE000;
|
|
61
|
+
}
|
|
62
|
+
pre.zenburnesque .ModuleKeyword {
|
|
63
|
+
font-weight: bold;
|
|
64
|
+
color: #FF8000;
|
|
65
|
+
}
|
|
66
|
+
pre.zenburnesque .Invalid {
|
|
67
|
+
}
|
|
68
|
+
pre.zenburnesque .LibraryClassType {
|
|
69
|
+
}
|
|
70
|
+
pre.zenburnesque .LibraryFunction {
|
|
71
|
+
}
|
|
72
|
+
pre.zenburnesque .TagAttribute {
|
|
73
|
+
}
|
|
74
|
+
pre.zenburnesque .FloatingPointInfixOperators {
|
|
75
|
+
text-decoration: underline;
|
|
76
|
+
}
|
|
77
|
+
pre.zenburnesque .UserDefinedConstant {
|
|
78
|
+
}
|
|
79
|
+
pre.zenburnesque .String {
|
|
80
|
+
color: #FF2020;
|
|
81
|
+
}
|
|
82
|
+
pre.zenburnesque .FunctionName {
|
|
83
|
+
font-weight: bold;
|
|
84
|
+
color: #FFCC66;
|
|
85
|
+
}
|
|
86
|
+
pre.zenburnesque .Variable {
|
|
87
|
+
}
|
|
88
|
+
pre.zenburnesque .Comment {
|
|
89
|
+
color: #709070;
|
|
90
|
+
font-style: italic;
|
|
91
|
+
}
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
module BlogBasic
|
|
2
|
+
module Generators
|
|
3
|
+
class InstallGenerator < Rails::Generators::Base
|
|
4
|
+
desc "Installs Blog_Basic and generats the necessary migrations"
|
|
5
|
+
|
|
6
|
+
#hook_for :users, :default => "devise", :desc => "Admin user generator to run. Skip with --skip-users"
|
|
7
|
+
|
|
8
|
+
include Rails::Generators::Migration
|
|
9
|
+
|
|
10
|
+
def self.source_root
|
|
11
|
+
@_active_admin_source_root ||= File.expand_path("../templates", __FILE__)
|
|
12
|
+
end
|
|
13
|
+
|
|
14
|
+
def self.next_migration_number(dirname)
|
|
15
|
+
Time.now.strftime("%Y%m%d%H%M%S")
|
|
16
|
+
end
|
|
17
|
+
|
|
18
|
+
def copy_initializer
|
|
19
|
+
template 'omniauth.rb.erb', 'config/initializers/blog_omniauth.rb'
|
|
20
|
+
end
|
|
21
|
+
|
|
22
|
+
#def setup_directory
|
|
23
|
+
# empty_directory "app/admin"
|
|
24
|
+
# template 'dashboards.rb', 'app/admin/dashboards.rb'
|
|
25
|
+
#end
|
|
26
|
+
|
|
27
|
+
def setup_routes
|
|
28
|
+
route "mount BlogBasic::Engine => \"/blog\""
|
|
29
|
+
end
|
|
30
|
+
|
|
31
|
+
def create_assets
|
|
32
|
+
#generate "active_admin:assets"
|
|
33
|
+
copy_file "blog_kit.css", "public/stylesheets/blog_kit.css"
|
|
34
|
+
end
|
|
35
|
+
|
|
36
|
+
def copy_config
|
|
37
|
+
copy_file "blog_basic.yml", "config/blog_basic.yml"
|
|
38
|
+
end
|
|
39
|
+
|
|
40
|
+
def load_dependencies
|
|
41
|
+
# application "require 'rack/openid'"
|
|
42
|
+
end
|
|
43
|
+
|
|
44
|
+
def create_migrations
|
|
45
|
+
Dir["#{self.class.source_root}/migrations/*.rb"].sort.each do |filepath|
|
|
46
|
+
name = File.basename(filepath)
|
|
47
|
+
migration_template "migrations/#{name}", "db/migrate/#{name.gsub(/^\d+_/,'')}"
|
|
48
|
+
sleep 1
|
|
49
|
+
end
|
|
50
|
+
end
|
|
51
|
+
end
|
|
52
|
+
end
|
|
53
|
+
end
|
|
@@ -0,0 +1,103 @@
|
|
|
1
|
+
ActiveAdmin.setup do |config|
|
|
2
|
+
|
|
3
|
+
# == Site Title
|
|
4
|
+
#
|
|
5
|
+
# Set the title that is displayed on the main layout
|
|
6
|
+
# for each of the active admin pages.
|
|
7
|
+
#
|
|
8
|
+
config.site_title = "Bla"
|
|
9
|
+
|
|
10
|
+
# Set the link url for the title. For example, to take
|
|
11
|
+
# users to your main site. Defaults to no link.
|
|
12
|
+
#
|
|
13
|
+
# config.site_title_link = "/"
|
|
14
|
+
|
|
15
|
+
# == Default Namespace
|
|
16
|
+
#
|
|
17
|
+
# Set the default namespace each administration resource
|
|
18
|
+
# will be added to.
|
|
19
|
+
#
|
|
20
|
+
# eg:
|
|
21
|
+
# config.default_namespace = :hello_world
|
|
22
|
+
#
|
|
23
|
+
# This will create resources in the HelloWorld module and
|
|
24
|
+
# will namespace routes to /hello_world/*
|
|
25
|
+
#
|
|
26
|
+
# To set no namespace by default, use:
|
|
27
|
+
# config.default_namespace = false
|
|
28
|
+
#
|
|
29
|
+
# Default:
|
|
30
|
+
# config.default_namespace = :admin
|
|
31
|
+
|
|
32
|
+
# == User Authentication
|
|
33
|
+
#
|
|
34
|
+
# Active Admin will automatically call an authentication
|
|
35
|
+
# method in a before filter of all controller actions to
|
|
36
|
+
# ensure that there is a currently logged in admin user.
|
|
37
|
+
#
|
|
38
|
+
# This setting changes the method which Active Admin calls
|
|
39
|
+
# within the controller.
|
|
40
|
+
config.authentication_method = :authenticate_admin_user!
|
|
41
|
+
|
|
42
|
+
|
|
43
|
+
# == Current User
|
|
44
|
+
#
|
|
45
|
+
# Active Admin will associate actions with the current
|
|
46
|
+
# user performing them.
|
|
47
|
+
#
|
|
48
|
+
# This setting changes the method which Active Admin calls
|
|
49
|
+
# to return the currently logged in user.
|
|
50
|
+
config.current_user_method = :current_admin_user
|
|
51
|
+
|
|
52
|
+
|
|
53
|
+
# == Logging Out
|
|
54
|
+
#
|
|
55
|
+
# Active Admin displays a logout link on each screen. These
|
|
56
|
+
# settings configure the location and method used for the link.
|
|
57
|
+
#
|
|
58
|
+
# This setting changes the path where the link points to. If it's
|
|
59
|
+
# a string, the strings is used as the path. If it's a Symbol, we
|
|
60
|
+
# will call the method to return the path.
|
|
61
|
+
#
|
|
62
|
+
# Default:
|
|
63
|
+
# config.logout_link_path = :destroy_admin_user_session_path
|
|
64
|
+
|
|
65
|
+
# This setting changes the http method used when rendering the
|
|
66
|
+
# link. For example :get, :delete, :put, etc..
|
|
67
|
+
#
|
|
68
|
+
# Default:
|
|
69
|
+
# config.logout_link_method = :get
|
|
70
|
+
|
|
71
|
+
|
|
72
|
+
# == Admin Comments
|
|
73
|
+
#
|
|
74
|
+
# Admin comments allow you to add comments to any model for admin use
|
|
75
|
+
#
|
|
76
|
+
# Admin comments are enabled by default in the default
|
|
77
|
+
# namespace only. You can turn them on in a namesapce
|
|
78
|
+
# by adding them to the comments array.
|
|
79
|
+
#
|
|
80
|
+
# Default:
|
|
81
|
+
# config.allow_comments_in = [:admin]
|
|
82
|
+
|
|
83
|
+
|
|
84
|
+
# == Controller Filters
|
|
85
|
+
#
|
|
86
|
+
# You can add before, after and around filters to all of your
|
|
87
|
+
# Active Admin resources from here.
|
|
88
|
+
#
|
|
89
|
+
# config.before_filter :do_something_awesome
|
|
90
|
+
|
|
91
|
+
|
|
92
|
+
# == Register Stylesheets & Javascripts
|
|
93
|
+
#
|
|
94
|
+
# We recommend using the built in Active Admin layout and loading
|
|
95
|
+
# up your own stylesheets / javascripts to customize the look
|
|
96
|
+
# and feel.
|
|
97
|
+
#
|
|
98
|
+
# To load a stylesheet:
|
|
99
|
+
# config.register_stylesheet 'my_stylesheet.css'
|
|
100
|
+
#
|
|
101
|
+
# To load a javascript file:
|
|
102
|
+
# config.register_javascript 'my_javascript.js'
|
|
103
|
+
end
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
# BlogKit configuration file
|
|
2
|
+
---
|
|
3
|
+
|
|
4
|
+
# ================ Visual settings ================
|
|
5
|
+
|
|
6
|
+
blog_name: 'Bottiger.org wrote'
|
|
7
|
+
|
|
8
|
+
# Show "Published By ..."
|
|
9
|
+
show_user_who_published: true
|
|
10
|
+
|
|
11
|
+
post_date_format: '%d/%m/%Y at %I:%M%p' # strftime format
|
|
12
|
+
|
|
13
|
+
# Enable gravatar support next to comments and posts
|
|
14
|
+
gravatar: false
|
|
15
|
+
|
|
16
|
+
# Allow people who are not logged in to post anonymous comments
|
|
17
|
+
anonymous_comments: true
|
|
18
|
+
|
|
19
|
+
# User Markdown for parsing posts
|
|
20
|
+
use_markdown: true
|
|
21
|
+
|
|
22
|
+
# Only enabled if you don't use markdown
|
|
23
|
+
# html_editor: true
|
|
24
|
+
|
|
25
|
+
layout: 'application'
|
|
26
|
+
admin_layout: 'application'
|
|
27
|
+
|
|
28
|
+
theme: 'mac_classic'
|
|
29
|
+
|
|
30
|
+
# Link to the default user path (/users/[id])
|
|
31
|
+
link_to_user: false
|
|
32
|
+
|
|
33
|
+
# Show line numbers next to code
|
|
34
|
+
show_link_numbers: false
|
|
35
|
+
|
|
36
|
+
# Akismet settings (spam filtering)
|
|
37
|
+
akismet_key: ''
|
|
38
|
+
|
|
39
|
+
# Blog URL - required for akismet
|
|
40
|
+
blog_url: 'http://bottiger.org/wrote'
|
|
41
|
+
|
|
42
|
+
# Image Uploading options - assume paperclip is installed
|
|
43
|
+
paperclip:
|
|
44
|
+
path: ':rails_root/public/system/:attachment/:id/:style/:filename'
|
|
45
|
+
|
|
46
|
+
# # S3 support
|
|
47
|
+
# :storage: :s3
|
|
48
|
+
# :s3_credentials: "config/s3.yml"
|
|
49
|
+
# :path: ":attachment/:id/:style.:extension"
|
|
50
|
+
|
|
51
|
+
|
|
52
|
+
# You can also override the image sizes for paperclip
|
|
@@ -0,0 +1,75 @@
|
|
|
1
|
+
.blogComment {
|
|
2
|
+
padding: 10px;
|
|
3
|
+
border-top: 1px solid #ccc;
|
|
4
|
+
clear: both;
|
|
5
|
+
}
|
|
6
|
+
|
|
7
|
+
.blogNewComment {
|
|
8
|
+
margin-top: 5px;
|
|
9
|
+
clear: both;
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
.blogNewCommentField {
|
|
13
|
+
width: 100%;
|
|
14
|
+
height: 130px;
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
.blogPoster {
|
|
18
|
+
font-style: italic;
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
.blogCommentAdmin {
|
|
22
|
+
background-color: #EBE0BF;
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
.blogFooter a {
|
|
26
|
+
margin-right: 5px;
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
.blogUserImage {
|
|
30
|
+
float: right;
|
|
31
|
+
margin: 0px 0px 5px 5px;
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
ul.blogList {
|
|
35
|
+
list-style: none;
|
|
36
|
+
padding: 5px 10px;
|
|
37
|
+
margin: 0;
|
|
38
|
+
}
|
|
39
|
+
ul.blogList li {
|
|
40
|
+
display: inline;
|
|
41
|
+
padding: 0px 10px;
|
|
42
|
+
border-left: 1px solid #777;
|
|
43
|
+
margin: 0px 0px;
|
|
44
|
+
}
|
|
45
|
+
ul.blogList li.blogListFirst {
|
|
46
|
+
border-left: none;
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
.blogEditRightPanel {
|
|
50
|
+
float: left;
|
|
51
|
+
margin-left: 20px;
|
|
52
|
+
width: 450px;
|
|
53
|
+
}
|
|
54
|
+
.blogEditLeftPanel {
|
|
55
|
+
float: left;
|
|
56
|
+
width: 350px;
|
|
57
|
+
}
|
|
58
|
+
#blogImages {
|
|
59
|
+
width: 100%;
|
|
60
|
+
}
|
|
61
|
+
.blogImageHeader td {
|
|
62
|
+
font-weight: bold;
|
|
63
|
+
}
|
|
64
|
+
.imageFileName {
|
|
65
|
+
width: 120px;
|
|
66
|
+
overflow-x: hidden;
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
.blogMarkdownHelp {
|
|
70
|
+
margin-top: 20px;
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
.blogKitCode pre {
|
|
74
|
+
overflow-x: auto;
|
|
75
|
+
}
|
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
# Additional translations at https://github.com/plataformatec/devise/wiki/I18n
|
|
2
|
+
|
|
3
|
+
en:
|
|
4
|
+
errors:
|
|
5
|
+
messages:
|
|
6
|
+
expired: "has expired, please request a new one"
|
|
7
|
+
not_found: "not found"
|
|
8
|
+
already_confirmed: "was already confirmed, please try signing in"
|
|
9
|
+
not_locked: "was not locked"
|
|
10
|
+
not_saved:
|
|
11
|
+
one: "1 error prohibited this %{resource} from being saved:"
|
|
12
|
+
other: "%{count} errors prohibited this %{resource} from being saved:"
|
|
13
|
+
|
|
14
|
+
devise:
|
|
15
|
+
failure:
|
|
16
|
+
already_authenticated: 'You are already signed in.'
|
|
17
|
+
unauthenticated: 'You need to sign in or sign up before continuing.'
|
|
18
|
+
unconfirmed: 'You have to confirm your account before continuing.'
|
|
19
|
+
locked: 'Your account is locked.'
|
|
20
|
+
invalid: 'Invalid email or password.'
|
|
21
|
+
invalid_token: 'Invalid authentication token.'
|
|
22
|
+
timeout: 'Your session expired, please sign in again to continue.'
|
|
23
|
+
inactive: 'Your account was not activated yet.'
|
|
24
|
+
sessions:
|
|
25
|
+
signed_in: 'Signed in successfully.'
|
|
26
|
+
signed_out: 'Signed out successfully.'
|
|
27
|
+
passwords:
|
|
28
|
+
send_instructions: 'You will receive an email with instructions about how to reset your password in a few minutes.'
|
|
29
|
+
updated: 'Your password was changed successfully. You are now signed in.'
|
|
30
|
+
updated_not_active: 'Your password was changed successfully.'
|
|
31
|
+
send_paranoid_instructions: "If your e-mail exists on our database, you will receive a password recovery link on your e-mail"
|
|
32
|
+
confirmations:
|
|
33
|
+
send_instructions: 'You will receive an email with instructions about how to confirm your account in a few minutes.'
|
|
34
|
+
send_paranoid_instructions: 'If your e-mail exists on our database, you will receive an email with instructions about how to confirm your account in a few minutes.'
|
|
35
|
+
confirmed: 'Your account was successfully confirmed. You are now signed in.'
|
|
36
|
+
registrations:
|
|
37
|
+
signed_up: 'Welcome! You have signed up successfully.'
|
|
38
|
+
inactive_signed_up: 'You have signed up successfully. However, we could not sign you in because your account is %{reason}.'
|
|
39
|
+
updated: 'You updated your account successfully.'
|
|
40
|
+
destroyed: 'Bye! Your account was successfully cancelled. We hope to see you again soon.'
|
|
41
|
+
reasons:
|
|
42
|
+
inactive: 'inactive'
|
|
43
|
+
unconfirmed: 'unconfirmed'
|
|
44
|
+
locked: 'locked'
|
|
45
|
+
unlocks:
|
|
46
|
+
send_instructions: 'You will receive an email with instructions about how to unlock your account in a few minutes.'
|
|
47
|
+
unlocked: 'Your account was successfully unlocked. You are now signed in.'
|
|
48
|
+
send_paranoid_instructions: 'If your account exists, you will receive an email with instructions about how to unlock it in a few minutes.'
|
|
49
|
+
omniauth_callbacks:
|
|
50
|
+
success: 'Successfully authorized from %{kind} account.'
|
|
51
|
+
failure: 'Could not authorize you from %{kind} because "%{reason}".'
|
|
52
|
+
mailer:
|
|
53
|
+
confirmation_instructions:
|
|
54
|
+
subject: 'Confirmation instructions'
|
|
55
|
+
reset_password_instructions:
|
|
56
|
+
subject: 'Reset password instructions'
|
|
57
|
+
unlock_instructions:
|
|
58
|
+
subject: 'Unlock Instructions'
|