59 lines
2.1 KiB
JavaScript
59 lines
2.1 KiB
JavaScript
// ERPNext - web based ERP (http://erpnext.com)
|
|
// Copyright (C) 2012 Web Notes Technologies Pvt Ltd
|
|
//
|
|
// This program is free software: you can redistribute it and/or modify
|
|
// it under the terms of the GNU General Public License as published by
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
// (at your option) any later version.
|
|
//
|
|
// This program is distributed in the hope that it will be useful,
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
// GNU General Public License for more details.
|
|
//
|
|
// You should have received a copy of the GNU General Public License
|
|
// along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
pscript.onload_blog = function(wrapper) {
|
|
wrapper.blog_list = new wn.ui.Listing({
|
|
parent: $(wrapper).find('#blog-list').get(0),
|
|
query: 'select tabBlog.name, title, left(content, 1000) as content, tabBlog.creation, \
|
|
ifnull(first_name, "") as first_name, ifnull(last_name, "") as last_name \
|
|
from tabProfile, tabBlog\
|
|
where ifnull(published,0)=1 and tabBlog.owner = tabProfile.name \
|
|
order by tabBlog.creation desc',
|
|
hide_refresh: true,
|
|
no_toolbar: true,
|
|
render_row: function(parent, data) {
|
|
if(data.content && data.content.length==1000) data.content += '... (read on)';
|
|
data.content = wn.markdown(data.content);
|
|
if(data.last_name) data.last_name = ' ' + data.last_name;
|
|
data.date = prettyDate(data.creation);
|
|
parent.innerHTML = repl('<h2>%(title)s</h2>\
|
|
<p><div class="help">By %(first_name)s%(last_name)s, %(date)s</div></p>\
|
|
<p>%(content)s</p>\
|
|
<a href="%(name)s.html">Read Full Text</a><br>', data);
|
|
},
|
|
page_length: 10
|
|
});
|
|
wrapper.blog_list.run();
|
|
|
|
// subscribe button
|
|
$('#blog-subscribe').click(function() {
|
|
var email = $(wrapper).find('input[name="blog-subscribe"]').val();
|
|
if(!validate_email(email)) {
|
|
msgprint('Please enter a valid email!');
|
|
}
|
|
wn.call({
|
|
module:'website',
|
|
page:'blog',
|
|
method:'subscribe',
|
|
args:email,
|
|
btn: this,
|
|
callback: function() {
|
|
$(wrapper).find('input[name="blog-subscribe"]').val('');
|
|
}
|
|
});
|
|
})
|
|
} |