Highlight similarly-named accounts
Index
src/account_highlighter.js
src/action.js
Manage actions that could be taken while e.g. resolving a report
Most actions are represented by a tree of Promise objects - the root set of promises fires first, followed by branch promises, towards leaf promises.
We occasionally need branches to join up again, so in the general case it's not a tree but a directed acyclic graph.
See action-explanation.js for an overview of how to use Actions
src/available_users.js
Keep track of which users are currently "available", and share jobs fairly between them
src/bulletin_board_api.js
Bulletin Board API
src/cacheable.js
Manage storage to and retrieval from an arbitrary cache
src/dashboard.js
Display continuously-updated information about a bulletin board
src/form_keys.js
Manage a form that builds a set of keys
src/ip_address_report.js
IP Address Report builder
src/main.js
Main section for Frontier Forums Moderation Tools
src/misc_cache.js
Various Frontier Forums-specific cached values
src/policies/duplicate_account_policy.js
handle a set of duplicate accounts
src/policies/inappropriate_username_policy.js
handle users with inappropriate names
src/policies/policy.js
base class for policies
src/policies/thread_management_policy.js
manage policy for common thread management actions
src/recent_list.js
Manage a list of recent values
src/report.js
Handle a report
src/shared_store.js
We use a third party to synchronise storage between users
src/variables.js
Configuration, localisation and policy loaded from the user's site
src/violations.js
List of known violations
src/widgets/action_widget.js
Base class for widgets that create Action objects
src/widgets/collapse.js
(Un-)collapse a box
src/widgets/deadline.js
Optionally make a reminder to perform some action before a deadline
src/widgets/duplicate_account_list.js
Duplicate username list
src/widgets/extra_post.js
Optionally post a in a thread
src/widgets/help.js
Help icon
src/widgets/notification_selector.js
Notification Selector
src/widgets/severity_slider.js
Severity Slider
src/widgets/thread_title_selector.js
Thread Title Selector
src/widgets/vbulletin_popup_menu.js
Popup Menu
src/widgets/widget.js
Base class for all widgets