2016-12-02 07:38:54 +00:00
|
|
|
{{template "header.html" . }}
|
2017-05-29 14:52:37 +00:00
|
|
|
|
2017-01-26 13:37:50 +00:00
|
|
|
{{if gt .Page 1}}<div id="prevFloat" class="prev_button"><a class="prev_link" href="/topic/{{.Topic.ID}}?page={{subtract .Page 1}}"><</a></div>{{end}}
|
2017-05-29 14:52:37 +00:00
|
|
|
|
2017-01-26 13:37:50 +00:00
|
|
|
{{if ne .LastPage .Page}}<link rel="prerender" href="/topic/{{.Topic.ID}}?page={{add .Page 1}}" />
|
2017-05-29 14:52:37 +00:00
|
|
|
<div id="nextFloat" class="next_button">
|
|
|
|
<a class="next_link" href="/topic/{{.Topic.ID}}?page={{add .Page 1}}">></a>
|
|
|
|
</div>{{end}}
|
|
|
|
|
Added the Social Groups plugin. This is still under construction.
Made a few improvements to the ForumStore, including bringing it's API closer in line with the other datastores, adding stubs for future subforum functionality, and improving efficiency in a few places.
The auth interface now handles all the authentication stuff.
Renamed the debug config variable to debug_mode.
Added the PluginPerms API.
Internal Errors will now dump the stack trace in the console.
Added support for installable plugins.
Refactored the routing logic so that the router now handles the common PreRoute logic(exc. /static/)
Added the CreateTable method to the query generator. It might need some tweaking to better support other database systems.
Added the same CreateTable method to the query builder.
Began work on PostgreSQL support.
Added the string-string hook type
Added the pre_render hook type.
Added the ParentID and ParentType fields to forums.
Added the get_forum_url_prefix function.
Added a more generic build_slug function.
Added the get_topic_url_prefix function.
Added the override_perms and override_forum_perms functions for bulk setting and unsetting permissions.
Added more ExtData fields in a few structs and removed them on the Perms struct as the PluginPerms API supersedes them there.
Plugins can now see the router instance.
The plugin initialisation handlers can now throw errors.
Plugins are now initialised after all the forum's subsystems are.
Refactored the unit test logic. For instance, we now use the proper .Log method rather than fmt.Println in many cases.
Sorry, we'll have to break Github's generated file detection, as the build instructions aren't working, unless I put them at the top, and they're far, far more important than getting Github to recognise the generated code as generated code.
Fixed an issue with mysql.go's _init_database() overwriting the dbpassword variable. Not a huge issue, but it is a "gotcha" for those not expecting a ':' at the start.
Fixed an issue with forum creation where the forum permissions didn't get cached.
Fixed a bug in plugin_bbcode where negative numbers in rand would crash Gosora.
Made the outputs of plugin_markdown and plugin_bbcode more compliant with the tests.
Revamped the phrase system to make it easier for us to add language pack related features in the future.
Added the WidgetMenu widget type.
Revamped the theme again. I'm experimenting to see which approach I like most.
- Excuse the little W3C rage. Some things about CSS drive me crazy :p
Tests:
Added 22 bbcode_full_parse tests.
Added 19 bbcode_regex_parse tests.
Added 27 markdown_parse tests.
Added four UserStore tests. More to come when the test database functionality is added.
Added 18 name_to_slug tests.
Hooks:
Added the pre_render hook.
Added the pre_render_forum_list hook.
Added the pre_render_view_forum hook.
Added the pre_render_topic_list hook.
Added the pre_render_view_topic hook.
Added the pre_render_profile hook.
Added the pre_render_custom_page hook.
Added the pre_render_overview hook.
Added the pre_render_create_topic hook.
Added the pre_render_account_own_edit_critical hook.
Added the pre_render_account_own_edit_avatar hook.
Added the pre_render_account_own_edit_username hook.
Added the pre_render_account_own_edit_email hook.
Added the pre_render_login hook.
Added the pre_render_register hook.
Added the pre_render_ban hook.
Added the pre_render_panel_dashboard hook.
Added the pre_render_panel_forums hook.
Added the pre_render_panel_delete_forum hook.
Added the pre_render_panel_edit_forum hook.
Added the pre_render_panel_settings hook.
Added the pre_render_panel_setting hook.
Added the pre_render_panel_plugins hook.
Added the pre_render_panel_users hook.
Added the pre_render_panel_edit_user hook.
Added the pre_render_panel_groups hook.
Added the pre_render_panel_edit_group hook.
Added the pre_render_panel_edit_group_perms hook.
Added the pre_render_panel_themes hook.
Added the pre_render_panel_mod_log hook.
Added the pre_render_error hook.
Added the pre_render_security_error hook.
Added the create_group_preappend hook.
Added the intercept_build_widgets hook.
Added the simple_forum_check_pre_perms hook.
Added the forum_check_pre_perms hook.
2017-07-09 12:06:04 +00:00
|
|
|
<div class="rowblock rowhead topic_block">
|
2016-12-21 02:30:32 +00:00
|
|
|
<form action='/topic/edit/submit/{{.Topic.ID}}' method="post">
|
2017-07-17 10:23:42 +00:00
|
|
|
<div class="rowitem topic_item{{if .Topic.Sticky}} topic_sticky_head{{else if .Topic.Is_Closed}} topic_closed_head{{end}}">
|
2017-06-28 12:05:26 +00:00
|
|
|
<a class='topic_name hide_on_edit'>{{.Topic.Title}}</a>
|
2017-01-26 13:37:50 +00:00
|
|
|
{{if .Topic.Is_Closed}}<span class='username hide_on_micro topic_status_e topic_status_closed hide_on_edit' title='Status: Closed' style="font-weight:normal;float: right;position:relative;top:-5px;">🔒︎</span>{{end}}
|
2017-02-15 15:29:05 +00:00
|
|
|
{{if .CurrentUser.Perms.EditTopic}}
|
2016-12-21 02:30:32 +00:00
|
|
|
<input class='show_on_edit topic_name_input' name="topic_name" value='{{.Topic.Title}}' type="text" />
|
2017-02-15 15:29:05 +00:00
|
|
|
{{if .CurrentUser.Perms.CloseTopic}}<select name="topic_status" class='show_on_edit topic_status_input' style='float: right;'>
|
2016-12-02 07:38:54 +00:00
|
|
|
<option>open</option>
|
2017-01-08 16:02:19 +00:00
|
|
|
<option>closed</option>
|
2017-02-15 15:29:05 +00:00
|
|
|
</select>{{end}}
|
2016-12-02 07:38:54 +00:00
|
|
|
<button name="topic-button" class="formbutton show_on_edit submit_edit">Update</button>
|
2016-12-04 06:16:59 +00:00
|
|
|
{{end}}
|
2016-12-02 07:38:54 +00:00
|
|
|
</div>
|
|
|
|
</form>
|
|
|
|
</div>
|
2017-05-12 13:25:12 +00:00
|
|
|
<div class="rowblock post_container top_post">
|
2017-07-17 10:23:42 +00:00
|
|
|
<div class="rowitem passive editable_parent post_item {{.Topic.ClassName}}" style="{{if .Topic.Avatar}}background-image:url({{.Topic.Avatar}}), url(/static/white-dot.jpg);background-position: 0px {{if le .Topic.ContentLines 5}}-1{{end}}0px;background-repeat:no-repeat, repeat-y;{{end}}">
|
2017-02-10 13:39:13 +00:00
|
|
|
<p class="hide_on_edit topic_content user_content" style="margin:0;padding:0;">{{.Topic.Content}}</p>
|
2017-03-07 07:22:29 +00:00
|
|
|
<textarea name="topic_content" class="show_on_edit topic_content_input">{{.Topic.Content}}</textarea>
|
2017-06-28 12:05:26 +00:00
|
|
|
|
2017-05-29 14:52:37 +00:00
|
|
|
<span class="controls">
|
2017-06-28 12:05:26 +00:00
|
|
|
|
|
|
|
<a href="/user/{{.Topic.UserSlug}}.{{.Topic.CreatedBy}}" class="username real_username">{{.Topic.CreatedByName}}</a>
|
2017-05-29 14:52:37 +00:00
|
|
|
{{if .CurrentUser.Perms.LikeItem}}<a href="/topic/like/submit/{{.Topic.ID}}" class="mod_button" title="Love it" style="color:#202020;">
|
|
|
|
<button class="username like_label" style="{{if .Topic.Liked}}background-color:/*#eaffea*/#D6FFD6;{{end}}"></button></a>{{end}}
|
2017-06-28 12:05:26 +00:00
|
|
|
|
2017-05-29 14:52:37 +00:00
|
|
|
{{if .CurrentUser.Perms.EditTopic}}<a href='/topic/edit/{{.Topic.ID}}' class="mod_button open_edit" style="font-weight:normal;" title="Edit Topic"><button class="username edit_label"></button></a>{{end}}
|
2017-06-28 12:05:26 +00:00
|
|
|
|
2017-05-29 14:52:37 +00:00
|
|
|
{{if .CurrentUser.Perms.DeleteTopic}}<a href='/topic/delete/submit/{{.Topic.ID}}' class="mod_button" style="font-weight:normal;" title="Delete Topic"><button class="username trash_label"></button></a>{{end}}
|
2017-06-28 12:05:26 +00:00
|
|
|
|
2017-05-29 14:52:37 +00:00
|
|
|
{{if .CurrentUser.Perms.PinTopic}}{{if .Topic.Sticky}}<a class="mod_button" href='/topic/unstick/submit/{{.Topic.ID}}' style="font-weight:normal;" title="Unpin Topic"><button class="username unpin_label"></button></a>{{else}}<a href='/topic/stick/submit/{{.Topic.ID}}' class="mod_button" style="font-weight:normal;" title="Pin Topic"><button class="username pin_label"></button></a>{{end}}{{end}}
|
|
|
|
<a class="mod_button" href="/report/submit/{{.Topic.ID}}?session={{.CurrentUser.Session}}&type=topic" class="mod_button report_item" style="font-weight:normal;" title="Flag Topic"><button class="username flag_label"></button></a>
|
2017-06-28 12:05:26 +00:00
|
|
|
|
2017-05-29 14:52:37 +00:00
|
|
|
{{if .Topic.LikeCount}}<a class="username hide_on_micro like_count">{{.Topic.LikeCount}}</a><a class="username hide_on_micro like_count_label" title="Like Count"></a>{{end}}
|
2017-06-28 12:05:26 +00:00
|
|
|
|
2017-07-17 10:23:42 +00:00
|
|
|
{{if .Topic.Tag}}<a class="username hide_on_micro user_tag">{{.Topic.Tag}}</a>{{else}}<a class="username hide_on_micro level">{{.Topic.Level}}</a><a class="username hide_on_micro level_label" style="float:right;" title="Level"></a>{{end}}
|
2017-06-28 12:05:26 +00:00
|
|
|
|
2017-05-29 14:52:37 +00:00
|
|
|
</span>
|
2016-12-02 07:38:54 +00:00
|
|
|
</div>
|
2017-05-12 13:25:12 +00:00
|
|
|
</div>
|
2017-04-02 13:00:40 +00:00
|
|
|
<div class="rowblock post_container" style="overflow: hidden;">{{range .ItemList}}{{if .ActionType}}
|
2017-05-13 14:27:42 +00:00
|
|
|
<div class="rowitem passive deletable_block editable_parent post_item action_item">
|
2017-04-02 13:00:40 +00:00
|
|
|
<span class="action_icon" style="font-size: 18px;padding-right: 5px;">{{.ActionIcon}}</span>
|
|
|
|
<span>{{.ActionType}}</span>
|
|
|
|
</div>
|
|
|
|
{{else}}
|
2017-07-17 10:23:42 +00:00
|
|
|
<div class="rowitem passive deletable_block editable_parent post_item {{.ClassName}}" style="{{if .Avatar}}background-image:url({{.Avatar}}), url(/static/white-dot.jpg);background-position: 0px {{if le .ContentLines 5}}-1{{end}}0px;background-repeat:no-repeat, repeat-y;{{end}}">
|
2017-03-14 10:57:40 +00:00
|
|
|
<p class="editable_block user_content" style="margin:0;padding:0;">{{.ContentHtml}}</p>
|
2017-06-28 12:05:26 +00:00
|
|
|
|
2017-05-29 14:52:37 +00:00
|
|
|
<span class="controls">
|
2017-06-28 12:05:26 +00:00
|
|
|
|
|
|
|
<a href="/user/{{.UserSlug}}.{{.CreatedBy}}" class="username real_username">{{.CreatedByName}}</a>
|
2017-05-29 14:52:37 +00:00
|
|
|
{{if $.CurrentUser.Perms.LikeItem}}<a href="/reply/like/submit/{{.ID}}" class="mod_button" title="Love it" style="color:#202020;"><button class="username like_label" style="{{if .Liked}}background-color:/*#eaffea*/#D6FFD6;{{end}}"></button></a>{{end}}
|
2017-06-28 12:05:26 +00:00
|
|
|
|
2017-05-29 14:52:37 +00:00
|
|
|
{{if $.CurrentUser.Perms.EditReply}}<a href="/reply/edit/submit/{{.ID}}" class="mod_button" title="Edit Reply"><button class="username edit_item edit_label"></button></a>{{end}}
|
2017-06-28 12:05:26 +00:00
|
|
|
|
2017-05-29 14:52:37 +00:00
|
|
|
{{if $.CurrentUser.Perms.DeleteReply}}<a href="/reply/delete/submit/{{.ID}}" class="mod_button" title="Delete Reply"><button class="username delete_item trash_label"></button></a>{{end}}
|
|
|
|
<a class="mod_button" href="/report/submit/{{.ID}}?session={{$.CurrentUser.Session}}&type=reply" class="mod_button report_item" title="Flag Reply"><button class="username report_item flag_label"></button></a>
|
2017-06-28 12:05:26 +00:00
|
|
|
|
2017-05-29 14:52:37 +00:00
|
|
|
{{if .LikeCount}}<a class="username hide_on_micro like_count">{{.LikeCount}}</a><a class="username hide_on_micro like_count_label" title="Like Count"></a>{{end}}
|
2017-06-28 12:05:26 +00:00
|
|
|
|
2017-07-17 10:23:42 +00:00
|
|
|
{{if .Tag}}<a class="username hide_on_micro user_tag">{{.Tag}}</a>{{else}}<a class="username hide_on_micro level">{{.Level}}</a><a class="username hide_on_micro level_label" style="float:right;" title="Level">{{end}}</a>
|
2017-06-28 12:05:26 +00:00
|
|
|
|
2017-05-29 14:52:37 +00:00
|
|
|
</span>
|
2016-12-26 04:44:07 +00:00
|
|
|
</div>
|
2017-04-02 13:00:40 +00:00
|
|
|
{{end}}{{end}}</div>
|
2017-05-13 14:27:42 +00:00
|
|
|
|
2016-12-21 02:30:32 +00:00
|
|
|
{{if .CurrentUser.Perms.CreateReply}}
|
2017-07-17 10:23:42 +00:00
|
|
|
<div class="rowblock topic_reply_form">
|
2016-12-02 07:38:54 +00:00
|
|
|
<form action="/reply/create/" method="post">
|
2016-12-21 02:30:32 +00:00
|
|
|
<input name="tid" value='{{.Topic.ID}}' type="hidden" />
|
2017-07-17 10:23:42 +00:00
|
|
|
<div class="formrow real_first_child">
|
2016-12-02 07:38:54 +00:00
|
|
|
<div class="formitem"><textarea name="reply-content" placeholder="Insert reply here"></textarea></div>
|
|
|
|
</div>
|
|
|
|
<div class="formrow">
|
2016-12-08 14:11:18 +00:00
|
|
|
<div class="formitem"><button name="reply-button" class="formbutton">Create Reply</button></div>
|
2016-12-02 07:38:54 +00:00
|
|
|
</div>
|
|
|
|
</form>
|
|
|
|
</div>
|
2016-12-04 10:44:28 +00:00
|
|
|
{{end}}
|
2017-06-28 12:05:26 +00:00
|
|
|
{{template "footer.html" . }}
|