forked from saurabh/personal-journal
Merge branch 'master' into 'master'
Master add update modules feature and fix error See merge request !2
This commit is contained in:
commit
710b9e862c
1
Gemfile
1
Gemfile
|
@ -9,6 +9,5 @@ gemspec
|
|||
# your gemspec. These might include edge Rails or gems from your path or
|
||||
# Git. Remember to move these dependencies to your gemspec before releasing
|
||||
# your gem to rubygems.org.
|
||||
|
||||
# To use debugger
|
||||
# gem 'debugger'
|
||||
|
|
2
Rakefile
2
Rakefile
|
@ -5,7 +5,6 @@ rescue LoadError
|
|||
end
|
||||
|
||||
require 'rdoc/task'
|
||||
|
||||
RDoc::Task.new(:rdoc) do |rdoc|
|
||||
rdoc.rdoc_dir = 'rdoc'
|
||||
rdoc.title = 'PersonalJournal'
|
||||
|
@ -16,7 +15,6 @@ end
|
|||
|
||||
|
||||
|
||||
|
||||
Bundler::GemHelper.install_tasks
|
||||
|
||||
require 'rake/testtask'
|
||||
|
|
|
@ -116,7 +116,7 @@ class Admin::JournalPapersController < OrbitMemberController
|
|||
def destroy
|
||||
@journal_paper.destroy
|
||||
respond_to do |format|
|
||||
format.html { redirect_to(admin_journal_paper_url) }
|
||||
format.html { redirect_to(admin_journal_papers_url) }
|
||||
# format.xml { head :ok }
|
||||
format.js
|
||||
format.json {render json: {"success" => true}}
|
||||
|
|
|
@ -1,57 +1,53 @@
|
|||
class PersonalJournalsController < ApplicationController
|
||||
def search_all_words(target,word)
|
||||
target=target.upcase
|
||||
words=word.upcase.split(' ')
|
||||
return words.select{|value| target.include? value}==words
|
||||
end
|
||||
def index
|
||||
params = OrbitHelper.params
|
||||
journal_papers = JournalPaper.where(:is_hidden=>false).sort_for_frontend.page(OrbitHelper.params[:page_no]).per(OrbitHelper.page_data_count)
|
||||
page = Page.where(:page_id => params[:page_id]).first rescue nil
|
||||
if page.custom_string_field == "table"
|
||||
page_data_count = OrbitHelper.page_data_count
|
||||
journal_papers = JournalPaper.where(is_hidden: false).sort_for_frontend.page(OrbitHelper.params[:page_no]).per(page_data_count)
|
||||
page = Page.where(page_id: params[:page_id]).first rescue nil
|
||||
if page.custom_string_field == 'table'
|
||||
fields_to_show = page.custom_array_field rescue []
|
||||
fields_to_show = [
|
||||
"paper_title",
|
||||
"journal_title",
|
||||
"authors",
|
||||
"year",
|
||||
"issue_no",
|
||||
"vol_no",
|
||||
"level_type"
|
||||
] if fields_to_show.blank?
|
||||
else
|
||||
fields_to_show = [
|
||||
"year",
|
||||
"paper_title"
|
||||
if fields_to_show.blank?
|
||||
fields_to_show = %w[
|
||||
paper_title
|
||||
journal_title
|
||||
authors
|
||||
year
|
||||
issue_no
|
||||
vol_no
|
||||
level_type
|
||||
]
|
||||
end
|
||||
if params[:selectbox] !=nil
|
||||
journal_papers_temp = JournalPaper.where(:is_hidden=>false).sort_by{ |tp| [-tp[:year].to_i,-tp[:publication_date].to_i] }
|
||||
else
|
||||
fields_to_show = %w[
|
||||
year
|
||||
paper_title
|
||||
]
|
||||
end
|
||||
if !params[:selectbox].nil?
|
||||
journal_papers_temp = JournalPaper.where(is_hidden: false).sort_by { |tp| [-tp[:year].to_i, -tp[:publication_date].to_i] }
|
||||
case params[:selectbox]
|
||||
when "paper_title","default"
|
||||
if page.custom_string_field == "table"
|
||||
journal_papers_show = journal_papers_temp.select {|value| search_all_words(value.paper_title, params[:keywords])}
|
||||
when 'paper_title', 'default'
|
||||
if page.custom_string_field == 'table'
|
||||
journal_papers_show = journal_papers_temp.select { |value| search_all_words(value.paper_title, params[:keywords]) }
|
||||
else
|
||||
journal_papers_show = journal_papers_temp.select {|value| search_all_words(value.create_link, params[:keywords])}
|
||||
journal_papers_show = journal_papers_temp.select { |value| search_all_words(value.create_link, params[:keywords]) }
|
||||
end
|
||||
when "level_type"
|
||||
journal_papers_show = journal_papers_temp.select {|value| search_all_words(value.journal_levels.collect{|x| x.title}.join(', ').to_s, params[:keywords])}
|
||||
when "publication_date"
|
||||
journal_papers_show = journal_papers_temp.select {|value| search_all_words((value.send("publication_date").strftime("%Y/%m/%d") rescue ""), params[:keywords])}
|
||||
when "author_type"
|
||||
journal_papers_show = journal_papers_temp.select {|value| search_all_words(value.journal_paper_author_types.collect{|jat| jat.title}.join(", "), params[:keywords])}
|
||||
when "language"
|
||||
journal_papers_show = journal_papers_temp.select {|value| search_all_words((!value.language.nil? ? t("#{value.language}") : ""), params[:keywords])}
|
||||
when 'level_type'
|
||||
journal_papers_show = journal_papers_temp.select { |value| search_all_words(value.journal_levels.collect(&:title).join(', ').to_s, params[:keywords]) }
|
||||
when 'publication_date'
|
||||
journal_papers_show = journal_papers_temp.select { |value| search_all_words((value.send('publication_date').strftime('%Y/%m/%d') rescue ''), params[:keywords]) }
|
||||
when 'author_type'
|
||||
journal_papers_show = journal_papers_temp.select { |value| search_all_words(value.journal_paper_author_types.collect(&:title).join(', '), params[:keywords]) }
|
||||
when 'paper_type'
|
||||
journal_papers_show = journal_papers_temp.select { |value| search_all_words((value.journal_paper_type.title rescue ''), params[:keywords]) }
|
||||
when 'language'
|
||||
journal_papers_show = journal_papers_temp.select { |value| search_all_words((!value.language.nil? ? t(value.language.to_s) : ''), params[:keywords]) }
|
||||
else
|
||||
journal_papers_show = journal_papers_temp.select {|value| search_all_words(value.send(params[:selectbox]).to_s, params[:keywords])}
|
||||
journal_papers_show = journal_papers_temp.select { |value| search_all_words(value.send(params[:selectbox]).to_s, params[:keywords]) }
|
||||
end
|
||||
if params[:page_no].nil?
|
||||
page_to_show = 1
|
||||
else
|
||||
page_to_show = params[:page_no].to_i
|
||||
end
|
||||
journal_papers = journal_papers_show[(page_to_show-1)*OrbitHelper.page_data_count...page_to_show*OrbitHelper.page_data_count]
|
||||
journal_papers_total_pages = (journal_papers_show.length/OrbitHelper.page_data_count.to_f).ceil
|
||||
page_to_show = params[:page_no].nil? ? 1 : params[:page_no].to_i
|
||||
journal_papers = journal_papers_show[(page_to_show - 1) * page_data_count...page_to_show * page_data_count]
|
||||
journal_papers_total_pages = (journal_papers_show.length / page_data_count.to_f).ceil
|
||||
else
|
||||
journal_papers_total_pages = journal_papers.total_pages
|
||||
end
|
||||
|
@ -60,127 +56,137 @@ class PersonalJournalsController < ApplicationController
|
|||
t = []
|
||||
fields_to_show.each do |fs|
|
||||
case fs
|
||||
when "paper_title"
|
||||
if page.custom_string_field == "table"
|
||||
t << {"value" => "<a href='#{OrbitHelper.url_to_show(journal_paper.to_param)}'>#{journal_paper.paper_title}</a>"}
|
||||
when 'paper_title'
|
||||
if page.custom_string_field == 'table'
|
||||
t << { 'value' => "<a href='#{OrbitHelper.url_to_show(journal_paper.to_param)}'>#{journal_paper.paper_title}</a>" }
|
||||
else
|
||||
t << {"value" => "<a href='#{OrbitHelper.url_to_show(journal_paper.to_param)}'>#{journal_paper.create_link}</a>"}
|
||||
t << { 'value' => "<a href='#{OrbitHelper.url_to_show(journal_paper.to_param)}'>#{journal_paper.create_link}</a>" }
|
||||
end
|
||||
when "level_type"
|
||||
t << {"value" => ( !journal_paper.journal_levels.blank? ? "(#{journal_paper.journal_levels.collect{|x| x.title}.join(', ')})" : nil)}
|
||||
when "publication_date"
|
||||
t << {"value" => (journal_paper.send(fs).strftime("%Y/%m") rescue "")}
|
||||
when "author_type"
|
||||
t << {"value" => (journal_paper.journal_paper_author_types.collect{|jat| jat.title}.join(", ") rescue "")}
|
||||
when "language"
|
||||
t << {"value" => (!journal_paper.language.nil? ? t("#{journal_paper.language}") : "")}
|
||||
when 'level_type'
|
||||
t << { 'value' => (!journal_paper.journal_levels.blank? ? "(#{journal_paper.journal_levels.collect(&:title).join(', ')})" : nil) }
|
||||
when 'publication_date'
|
||||
t << { 'value' => (journal_paper.send(fs).strftime('%Y/%m') rescue '') }
|
||||
when 'author_type'
|
||||
t << { 'value' => (journal_paper.journal_paper_author_types.collect(&:title).join(', ') rescue '') }
|
||||
when 'paper_type'
|
||||
t << { 'value' => (journal_paper.journal_paper_type.title rescue '') }
|
||||
when 'language'
|
||||
t << { 'value' => (!journal_paper.language.nil? ? t(journal_paper.language.to_s) : '') }
|
||||
else
|
||||
t << {"value" => journal_paper.send(fs)}
|
||||
t << { 'value' => (journal_paper.send(fs) rescue '') }
|
||||
end
|
||||
end
|
||||
journal_paper_list << {"jps" => t}
|
||||
journal_paper_list << { 'jps' => t }
|
||||
end
|
||||
headers = []
|
||||
choice_show = []
|
||||
fields_to_show.each do |fs|
|
||||
col = 2
|
||||
col = 3 if fs == "paper_title"
|
||||
col = 3 if fs == 'paper_title'
|
||||
headers << {
|
||||
"head-title" => t("personal_journal.#{fs}"),
|
||||
"col" => col
|
||||
'head-title' => t("personal_journal.#{fs}"),
|
||||
'col' => col
|
||||
}
|
||||
choice_show << t("personal_journal.#{fs}")
|
||||
end
|
||||
choice_value = fields_to_show
|
||||
choice_value.unshift("default")
|
||||
choice_select=choice_value.map{|iter| iter==params[:selectbox] ? "selected" : ""}
|
||||
choice_select=choice_select.map{|value| {"choice_select" => value}}
|
||||
choice_value=choice_value.map{|value| {"choice_value" => value}}
|
||||
choice_default = params[:locale]!='en' ? "——選取分類——" : "——select class——"
|
||||
choice_value.unshift('default')
|
||||
choice_select = choice_value.map { |iter| iter == params[:selectbox] ? 'selected' : '' }
|
||||
choice_select = choice_select.map { |value| { 'choice_select' => value } }
|
||||
choice_value = choice_value.map { |value| { 'choice_value' => value } }
|
||||
choice_default = t('personal_journal.select_class')
|
||||
choice_show.unshift(choice_default)
|
||||
choice_show=choice_show.map{|value| {"choice_show" => value}}
|
||||
choice=choice_value.zip(choice_show,choice_select)
|
||||
choice=choice.map{|value| value.inject:merge}
|
||||
select_text = params[:locale]!='en' ? "搜尋類別:" : "search class:"
|
||||
search_text = params[:locale]!='en' ? "關鍵字搜尋:" : "word to search:"
|
||||
choice_show = choice_show.map { |value| { 'choice_show' => value } }
|
||||
choice = choice_value.zip(choice_show, choice_select)
|
||||
choice = choice.map { |value| value.inject :merge }
|
||||
select_text = t('personal_journal.search_class')
|
||||
search_text = t('personal_journal.word_to_search')
|
||||
{
|
||||
"journal_papers" => journal_paper_list,
|
||||
"headers" => headers,
|
||||
"extras" => {"widget-title" => t("module_name.journal_paper"),
|
||||
"url" => "/"+params[:locale]+params[:url],
|
||||
"select_text" => select_text,
|
||||
"search_text" => search_text,
|
||||
"search_value" => params[:keywords]},
|
||||
"total_pages" => journal_papers_total_pages,
|
||||
"choice" => choice
|
||||
'journal_papers' => journal_paper_list,
|
||||
'headers' => headers,
|
||||
'extras' => { 'widget-title' => t('module_name.journal_paper'),
|
||||
'url' => '/' + params[:locale] + params[:url],
|
||||
'select_text' => select_text,
|
||||
'search_text' => search_text,
|
||||
'search_value' => params[:keywords] },
|
||||
'total_pages' => journal_papers_total_pages,
|
||||
'choice' => choice
|
||||
}
|
||||
end
|
||||
|
||||
def show
|
||||
params = OrbitHelper.params
|
||||
plugin = JournalPaper.where(:is_hidden=>false).find_by(uid: params[:uid])
|
||||
fields_to_show = [
|
||||
"year",
|
||||
"authors",
|
||||
"author_type",
|
||||
"paper_title",
|
||||
"journal_title",
|
||||
"vol_no",
|
||||
"issue_no",
|
||||
"form_to_start",
|
||||
"form_to_end",
|
||||
"level_type",
|
||||
"paper_type",
|
||||
"total_pages",
|
||||
"publication_date",
|
||||
"isbn",
|
||||
"abstract",
|
||||
"language",
|
||||
"url",
|
||||
"associated_project",
|
||||
"file"
|
||||
plugin = JournalPaper.where(is_hidden: false).find_by(uid: params[:uid])
|
||||
fields_to_show = %w[
|
||||
year
|
||||
authors
|
||||
author_type
|
||||
paper_title
|
||||
journal_title
|
||||
vol_no
|
||||
issue_no
|
||||
form_to_start
|
||||
form_to_end
|
||||
level_type
|
||||
paper_type
|
||||
total_pages
|
||||
publication_date
|
||||
isbn
|
||||
abstract
|
||||
language
|
||||
url
|
||||
associated_project
|
||||
file
|
||||
]
|
||||
|
||||
{"plugin_datas"=>plugin.get_plugin_data(fields_to_show)}
|
||||
{ 'plugin_datas' => plugin.get_plugin_data(fields_to_show) }
|
||||
end
|
||||
|
||||
def get_fields_for_index
|
||||
@page = Page.find(params[:page_id]) rescue nil
|
||||
@fields_to_show = [
|
||||
"year",
|
||||
"authors",
|
||||
"author_type",
|
||||
"paper_title",
|
||||
"journal_title",
|
||||
"vol_no",
|
||||
"issue_no",
|
||||
"form_to_start",
|
||||
"form_to_end",
|
||||
"level_type",
|
||||
"paper_type",
|
||||
"total_pages",
|
||||
"publication_date",
|
||||
"isbn",
|
||||
"abstract",
|
||||
"language",
|
||||
"url"
|
||||
@fields_to_show = %w[
|
||||
year
|
||||
authors
|
||||
author_type
|
||||
paper_title
|
||||
journal_title
|
||||
vol_no
|
||||
issue_no
|
||||
form_to_start
|
||||
form_to_end
|
||||
level_type
|
||||
paper_type
|
||||
total_pages
|
||||
publication_date
|
||||
isbn
|
||||
abstract
|
||||
language
|
||||
url
|
||||
]
|
||||
@fields_to_show = @fields_to_show.map{|fs| [t("personal_journal.#{fs}"), fs]}
|
||||
@default_fields_to_show = [
|
||||
"paper_title",
|
||||
"journal_title",
|
||||
"authors",
|
||||
"year",
|
||||
"issue_no",
|
||||
"vol_no",
|
||||
"level_type"
|
||||
@fields_to_show = @fields_to_show.map { |fs| [t("personal_journal.#{fs}"), fs] }
|
||||
@default_fields_to_show = %w[
|
||||
paper_title
|
||||
journal_title
|
||||
authors
|
||||
year
|
||||
issue_no
|
||||
vol_no
|
||||
level_type
|
||||
]
|
||||
render :layout => false
|
||||
render layout: false
|
||||
end
|
||||
|
||||
def save_index_fields
|
||||
page = Page.find(params[:page_id]) rescue nil
|
||||
page.custom_array_field = params[:keys]
|
||||
page.save
|
||||
render :json => {"success" => true}.to_json
|
||||
render json: { 'success' => true }.to_json
|
||||
end
|
||||
|
||||
private
|
||||
|
||||
def search_all_words(target, word)
|
||||
target = target.upcase
|
||||
words = word.upcase.split(' ')
|
||||
words.select { |value| target.include? value } == words
|
||||
end
|
||||
end
|
||||
|
|
|
@ -36,7 +36,7 @@ class JournalPaper
|
|||
has_and_belongs_to_many :journal_levels
|
||||
|
||||
has_many :journal_paper_files, autosave: true, dependent: :destroy
|
||||
accepts_nested_attributes_for :journal_paper_files
|
||||
accepts_nested_attributes_for :journal_paper_files, :allow_destroy => true
|
||||
|
||||
# has_and_belongs_to_many :journal_paper_authors, dependent: :destroy
|
||||
# accepts_nested_attributes_for :journal_paper_authors
|
||||
|
@ -211,8 +211,8 @@ class JournalPaper
|
|||
files = []
|
||||
self.journal_paper_files.each do |file|
|
||||
url = file.journal_file.url
|
||||
title = (file.title.blank? ? File.basename(file.journal_file.path) : file.title)
|
||||
files << "<li><a href='#{url}'' target='_blank'>#{title}</li>"
|
||||
title = ((file.title.blank? ? File.basename(file.journal_file.path) : file.title) rescue "")
|
||||
files << (url.nil? ? "" : "<li><a href='#{url}'' target='_blank'>#{title}</li>")
|
||||
end
|
||||
value = files.join("")
|
||||
else
|
||||
|
|
|
@ -38,7 +38,7 @@
|
|||
<span class="remove_existing_record add-on btn" title="<%= t(:remove) %>">
|
||||
<%= f.hidden_field :id %>
|
||||
<a class="icon-remove"></a>
|
||||
<%= f.hidden_field :should_destroy, :value => nil, :class => 'should_destroy' %>
|
||||
<%= f.hidden_field :_destroy, :value => nil, :class => 'should_destroy' %>
|
||||
</span>
|
||||
<% end %>
|
||||
</div>
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
<tr id="<%= dom_id writing_journal %>" class="with_action">
|
||||
<td class="span1"><%= writing_journal.year %></td>
|
||||
<td class="span1">
|
||||
<%= link_to writing_journal.create_link, page_for_journal_paper(writing_journal), target: "blank"%>
|
||||
<%= link_to writing_journal.create_link, OrbitHelper.url_to_plugin_show(writing_journal.to_param,'personal_journal').to_s, target: "blank"%>
|
||||
<div class="quick-edit">
|
||||
<ul class="nav nav-pills hide">
|
||||
<li><%= link_to t('edit'), edit_admin_journal_paper_path(writing_journal) %></li>
|
||||
|
|
|
@ -3,6 +3,9 @@ en:
|
|||
personal_journal: Journal Paper
|
||||
journal_paper: Journal Paper
|
||||
personal_journal:
|
||||
select_class: "——select class——"
|
||||
search_class: "search class:"
|
||||
word_to_search: "word to search:"
|
||||
paper_title : "Paper Title"
|
||||
associated_project: Associated Project
|
||||
paper_type : "Paper Type"
|
||||
|
|
|
@ -3,6 +3,9 @@ zh_tw:
|
|||
personal_journal: 期刊論文
|
||||
journal_paper: 期刊論文
|
||||
personal_journal:
|
||||
select_class: "——選取分類——"
|
||||
search_class: "搜尋類別:"
|
||||
word_to_search: "關鍵字搜尋:"
|
||||
associated_project: "所屬計畫案"
|
||||
number_of_authors: "著作人數"
|
||||
paper_title : "論文名稱"
|
||||
|
|
|
@ -0,0 +1 @@
|
|||
puts Rails.root
|
|
@ -0,0 +1,14 @@
|
|||
<table class="table table-hover table-striped projects-index">
|
||||
<caption><h3>{{widget-title}}</h3></caption>
|
||||
<thead>
|
||||
<tr data-level="0" data-list="headers">
|
||||
<th class="col-md-{{col}}">{{head-title}}</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody data-level="0" data-list="journal_papers">
|
||||
<tr data-level="1" data-list="jps">
|
||||
<td>{{value}}</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
{{pagination_goes_here}}
|
|
@ -0,0 +1,37 @@
|
|||
<script type="text/javascript">
|
||||
$( ".selectbox" ).ready(function() {
|
||||
var option_len = $(".search-widget option").length
|
||||
for (var i=0;i<option_len;i++){
|
||||
if($(".search-widget option").eq(i).data('selected')=="selected"){
|
||||
$(".search-widget option").eq(i).attr('selected','selected')
|
||||
}
|
||||
}
|
||||
});
|
||||
</script>
|
||||
<h3>{{widget-title}}</h3>
|
||||
<div class="search-widget">
|
||||
<form action="{{url}}" method="get">
|
||||
{{select_text}}
|
||||
<select class="selectbox" name="selectbox" data-level="0" data-list="choice">
|
||||
<option value={{choice_value}} data-selected='{{choice_select}}' >
|
||||
{{choice_show}}</option>
|
||||
</select>
|
||||
{{search_text}}
|
||||
<input name="keywords" placeholder="Keywords" type="text" value="{{search_value}}">
|
||||
<button>Go</button>
|
||||
<a id="filter" style="" href="{{url}}">Clear</a>
|
||||
</form>
|
||||
</div>
|
||||
<table class="table table-hover table-striped projects-index">
|
||||
<thead>
|
||||
<tr data-level="0" data-list="headers">
|
||||
<th class="col-md-{{col}}">{{head-title}}</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody data-level="0" data-list="journal_papers">
|
||||
<tr data-level="1" data-list="jps">
|
||||
<td>{{value}}</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
{{pagination_goes_here}}
|
|
@ -0,0 +1,20 @@
|
|||
{
|
||||
"frontend": [
|
||||
{
|
||||
"filename" : "index",
|
||||
"name" : {
|
||||
"zh_tw" : "1. 列表",
|
||||
"en" : "1. List"
|
||||
},
|
||||
"thumbnail" : "thumb.png"
|
||||
},
|
||||
{
|
||||
"filename" : "index_search1",
|
||||
"name" : {
|
||||
"zh_tw" : "2. 列表(含搜尋)",
|
||||
"en" : "2. List which includes search"
|
||||
},
|
||||
"thumbnail" : "thumb.png"
|
||||
}
|
||||
]
|
||||
}
|
|
@ -0,0 +1,8 @@
|
|||
<table class="table table-striped plugin-show-table">
|
||||
<tbody data-list="plugin_datas" data-level="0">
|
||||
<tr>
|
||||
<th class="{{title_class}}">{{title}}</th>
|
||||
<td class="{{value_class}}">{{value}}</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
Binary file not shown.
After Width: | Height: | Size: 4.0 KiB |
|
@ -2,8 +2,21 @@ $:.push File.expand_path("../lib", __FILE__)
|
|||
|
||||
# Maintain your gem's version:
|
||||
require "personal_journal/version"
|
||||
|
||||
# Describe your gem and declare its dependencies:
|
||||
app_path = File.expand_path(__dir__)
|
||||
template_path = ENV['PWD'] + '/app/templates'
|
||||
all_template = Dir.glob(template_path+'/*/')
|
||||
puts 'copying module'
|
||||
all_template.each do |folder|
|
||||
if folder.split('/')[-1] != 'mobile'
|
||||
begin
|
||||
system ('cp -r '+ app_path + '/modules/ ' + folder)
|
||||
rescue
|
||||
puts 'error copy'
|
||||
end
|
||||
end
|
||||
end
|
||||
system ('rm -r '+app_path + '/modules/')
|
||||
Gem::Specification.new do |s|
|
||||
s.name = "personal_journal"
|
||||
s.version = PersonalJournal::VERSION
|
||||
|
|
Loading…
Reference in New Issue