2016-12-02 07:38:54 +00:00
{{template "header.html" . }}
2017-05-29 14:52:37 +00:00
2017-08-06 15:22:18 +00:00
< form id = "edit_topic_form" action = '/topic/edit/submit/{{.Topic.ID}}' method = "post" > < / form >
2017-08-27 09:33:45 +00:00
{{if gt .Page 1}}< div id = "prevFloat" class = "prev_button" > < a class = "prev_link" aria-label = "Go to the previous page" rel = "prev" 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" >
2017-08-27 09:33:45 +00:00
< a class = "next_link" aria-label = "Go to the next page" rel = "next" href = "/topic/{{.Topic.ID}}?page={{add .Page 1}}" > > < / a >
2017-05-29 14:52:37 +00:00
< / div > {{end}}
2017-08-20 09:39:02 +00:00
< main >
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" >
2017-09-03 04:50:31 +00:00
< div class = "rowitem topic_item{{if .Topic.Sticky}} topic_sticky_head{{else if .Topic.IsClosed}} topic_closed_head{{end}}" >
2017-08-27 09:33:45 +00:00
< h1 class = 'topic_name hide_on_edit' > {{.Topic.Title}}< / h1 >
2017-09-22 02:21:17 +00:00
{{if .Topic.IsClosed}}< span class = 'username hide_on_micro topic_status_e topic_status_closed hide_on_edit' title = 'Status: Closed' > 🔒 & #xFE0E< / span > {{end}}
2017-07-29 10:36:39 +00:00
{{if .CurrentUser.Perms.EditTopic}}
< input form = 'edit_topic_form' class = 'show_on_edit topic_name_input' name = "topic_name" value = '{{.Topic.Title}}' type = "text" / >
< button form = 'edit_topic_form' name = "topic-button" class = "formbutton show_on_edit submit_edit" > Update< / button >
{{end}}
< / div >
2016-12-02 07:38:54 +00:00
< / div >
2017-07-29 10:36:39 +00:00
2017-08-20 09:39:02 +00:00
< article class = "rowblock post_container top_post" >
Added Quick Topic.
Added Attachments.
Added Attachment Media Embeds.
Renamed a load of *Store and *Cache methods to reduce the amount of unneccesary typing.
Added petabytes as a unit and cleaned up a few of the friendly units.
Refactored the username change logic to make it easier to maintain.
Refactored the avatar change logic to make it easier to maintain.
Shadow now uses CSS Variables for most of it's colours. We have plans to transpile this to support older browsers later on!
Snuck some CSS Variables into Tempra Conflux.
Added the GroupCache interface to MemoryGroupStore.
Added the Length method to MemoryGroupStore.
Added support for a site short name.
Added the UploadFiles permission.
Renamed more functions.
Fixed the background for the left gutter on the postbit for Tempra Simple and Shadow.
Added support for if statements operating on int8, int16, int32, int32, int64, uint, uint8, uint16, uint32, uint64, float32, and float64 for the template compiler.
Added support for if statements operating on slices and maps for the template compiler.
Fixed a security exploit in reply editing.
Fixed a bug in the URL detector in the parser where it couldn't find URLs with non-standard ports.
Fixed buttons having blue outlines on focus on Shadow.
Refactored the topic creation logic to make it easier to maintain.
Made a few responsive fixes, but there's still more to do in the following commits!
2017-10-05 10:20:28 +00:00
< div class = "rowitem passive editable_parent post_item {{.Topic.ClassName}}" style = "{{if .Topic.Avatar}}background-image:url({{.Topic.Avatar}}), url(/static/{{.Header.ThemeName}}/post-avatar-bg.jpg);background-position: 0px {{if le .Topic.ContentLines 5}}-1{{end}}0px;background-repeat:no-repeat, repeat-y;{{end}}" >
2017-09-28 22:16:34 +00:00
< p class = "hide_on_edit topic_content user_content" style = "margin:0;padding:0;" > {{.Topic.ContentHTML}}< / 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
2017-07-29 14:04:20 +00:00
< a href = "{{.Topic.UserLink}}" 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;" >
2017-09-23 19:57:13 +00:00
< button class = "username like_label" { { if . Topic . Liked } } style = "background-color:#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-09-22 02:21:17 +00:00
{{if .CurrentUser.Perms.CloseTopic}}{{if .Topic.IsClosed}}< a class = "mod_button" href = '/topic/unlock/submit/{{.Topic.ID}}' style = "font-weight:normal;" title = "Unlock Topic" > < button class = "username unlock_label" > < / button > < / a > {{else}}< a href = '/topic/lock/submit/{{.Topic.ID}}' class = "mod_button" style = "font-weight:normal;" title = "Lock Topic" > < button class = "username lock_label" > < / button > < / a > {{end}}{{end}}
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}}
2017-09-23 19:57:13 +00:00
{{if .CurrentUser.Perms.ViewIPs}}< a class = "mod_button" href = '/users/ips/?ip={{.Topic.IPAddress}}' style = "font-weight:normal;" title = "View IP" > < button class = "username ip_label" > < / button > < / a > {{end}}
2017-08-17 11:13:49 +00:00
< a 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-08-20 09:39:02 +00:00
< / article >
2017-04-02 13:00:40 +00:00
< div class = "rowblock post_container" style = "overflow: hidden;" > {{range .ItemList}}{{if .ActionType}}
2017-08-20 09:39:02 +00:00
< article 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 >
2017-08-20 09:39:02 +00:00
< / article >
2017-04-02 13:00:40 +00:00
{{else}}
Added Quick Topic.
Added Attachments.
Added Attachment Media Embeds.
Renamed a load of *Store and *Cache methods to reduce the amount of unneccesary typing.
Added petabytes as a unit and cleaned up a few of the friendly units.
Refactored the username change logic to make it easier to maintain.
Refactored the avatar change logic to make it easier to maintain.
Shadow now uses CSS Variables for most of it's colours. We have plans to transpile this to support older browsers later on!
Snuck some CSS Variables into Tempra Conflux.
Added the GroupCache interface to MemoryGroupStore.
Added the Length method to MemoryGroupStore.
Added support for a site short name.
Added the UploadFiles permission.
Renamed more functions.
Fixed the background for the left gutter on the postbit for Tempra Simple and Shadow.
Added support for if statements operating on int8, int16, int32, int32, int64, uint, uint8, uint16, uint32, uint64, float32, and float64 for the template compiler.
Added support for if statements operating on slices and maps for the template compiler.
Fixed a security exploit in reply editing.
Fixed a bug in the URL detector in the parser where it couldn't find URLs with non-standard ports.
Fixed buttons having blue outlines on focus on Shadow.
Refactored the topic creation logic to make it easier to maintain.
Made a few responsive fixes, but there's still more to do in the following commits!
2017-10-05 10:20:28 +00:00
< article class = "rowitem passive deletable_block editable_parent post_item {{.ClassName}}" style = "{{if .Avatar}}background-image:url({{.Avatar}}), url(/static/{{$.Header.ThemeName}}/post-avatar-bg.jpg);background-position: 0px {{if le .ContentLines 5}}-1{{end}}0px;background-repeat:no-repeat, repeat-y;{{end}}" >
2017-09-28 22:16:34 +00:00
{{/** TODO: We might end up with < br > s in the inline editor, fix this **/}}
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
2017-07-29 14:04:20 +00:00
< a href = "{{.UserLink}}" class = "username real_username" > {{.CreatedByName}}< / a >
2017-09-23 19:57:13 +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" { { if . Liked } } style = "background-color:#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}}
2017-09-23 19:57:13 +00:00
{{if $.CurrentUser.Perms.ViewIPs}}< a class = "mod_button" href = '/users/ips/?ip={{.IPAddress}}' style = "font-weight:normal;" title = "View IP" > < button class = "username ip_label" > < / button > < / a > {{end}}
2017-08-17 11:13:49 +00:00
< a 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-08-17 11:13:49 +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" > < / a > {{end}}
2017-06-28 12:05:26 +00:00
2017-05-29 14:52:37 +00:00
< / span >
2017-08-20 09:39:02 +00:00
< / article >
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" >
2017-08-20 10:11:49 +00:00
< div class = "formitem" > < textarea name = "reply-content" placeholder = "Insert reply here" required > < / textarea > < / div >
2016-12-02 07:38:54 +00:00
< / 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-08-20 09:39:02 +00:00
< / main >
2017-06-28 12:05:26 +00:00
{{template "footer.html" . }}