Showing preview only (930K chars total). Download the full file or copy to clipboard to get everything.
Repository: CyberShadow/DFeed
Branch: master
Commit: 0639bf986002
Files: 137
Total size: 881.0 KB
Directory structure:
gitextract_4yp5s7nn/
├── .github/
│ └── workflows/
│ └── build.yml
├── .gitignore
├── .gitmodules
├── README.md
├── agpl-3.0.txt
├── dub.sdl
├── dub.selections.json
├── flake.nix
├── makejson
├── schema_v1.sql
├── site-defaults/
│ ├── config/
│ │ ├── apis/
│ │ │ ├── akismet.ini.sample
│ │ │ ├── bitly.ini.sample
│ │ │ ├── mailhide.ini.sample
│ │ │ ├── openai.ini.sample
│ │ │ ├── projecthoneypot.ini.sample
│ │ │ ├── recaptcha.ini.sample
│ │ │ └── stopforumspam.ini
│ │ ├── backup.ini.sample
│ │ ├── groups.ini
│ │ ├── groups.ini.sample
│ │ ├── sinks/
│ │ │ ├── irc/
│ │ │ │ └── irc.ini.sample
│ │ │ └── twitter/
│ │ │ └── twitter.ini.sample
│ │ ├── site.ini.sample
│ │ ├── sources/
│ │ │ ├── feeds/
│ │ │ │ └── example.ini.sample
│ │ │ ├── github/
│ │ │ │ └── github.ini.sample
│ │ │ ├── mailman/
│ │ │ │ └── example.ini.sample
│ │ │ ├── mailrelay/
│ │ │ │ └── example.ini.sample
│ │ │ ├── nntp/
│ │ │ │ └── example.ini.sample
│ │ │ ├── smtp/
│ │ │ │ └── example.ini.sample
│ │ │ ├── socket/
│ │ │ │ └── socket.ini.sample
│ │ │ └── stackoverflow/
│ │ │ └── so.ini.sample
│ │ ├── user.ini.sample
│ │ └── web.ini.sample
│ └── web/
│ ├── help-english.htt
│ ├── help-turkish.htt
│ ├── highlight-js/
│ │ ├── LICENSE
│ │ ├── highlight.pack.js
│ │ └── styles/
│ │ └── vs.css
│ ├── skel.htt
│ └── static/
│ ├── css/
│ │ ├── dfeed.css
│ │ └── style.css
│ ├── js/
│ │ └── dfeed.js
│ ├── robots_private.txt
│ └── robots_public.txt
├── src/
│ └── dfeed/
│ ├── backup.d
│ ├── bayes.d
│ ├── bitly.d
│ ├── common.d
│ ├── database.d
│ ├── debugging.d
│ ├── groups.d
│ ├── loc/
│ │ ├── english.d
│ │ ├── package.d
│ │ └── turkish.d
│ ├── mail.d
│ ├── message.d
│ ├── paths.d
│ ├── progs/
│ │ ├── dfeed.d
│ │ ├── nntpdownload.d
│ │ ├── sendspamfeedback.d
│ │ └── unban.d
│ ├── sinks/
│ │ ├── cache.d
│ │ ├── irc.d
│ │ ├── messagedb.d
│ │ ├── subscriptions.d
│ │ └── twitter.d
│ ├── site.d
│ ├── sources/
│ │ ├── github.d
│ │ ├── mailman.d
│ │ ├── mailrelay.d
│ │ ├── newsgroups.d
│ │ ├── socket.d
│ │ └── web/
│ │ ├── feed.d
│ │ ├── reddit.d
│ │ ├── stackoverflow.d
│ │ └── webpoller.d
│ └── web/
│ ├── captcha/
│ │ ├── common.d
│ │ ├── dcaptcha.d
│ │ ├── dummy.d
│ │ ├── package.d
│ │ └── recaptcha.d
│ ├── lint.d
│ ├── list.d
│ ├── mailhide.d
│ ├── markdown.d
│ ├── moderation.d
│ ├── posting.d
│ ├── spam/
│ │ ├── akismet.d
│ │ ├── bayes.d
│ │ ├── blogspam.d
│ │ ├── openai.d
│ │ ├── package.d
│ │ ├── projecthoneypot.d
│ │ ├── simple.d
│ │ └── stopforumspam.d
│ ├── user.d
│ └── web/
│ ├── cache.d
│ ├── config.d
│ ├── draft.d
│ ├── moderation.d
│ ├── page.d
│ ├── part/
│ │ ├── gravatar.d
│ │ ├── pager.d
│ │ ├── post.d
│ │ ├── postbody.d
│ │ ├── profile.d
│ │ ├── strings.d
│ │ └── thread.d
│ ├── perf.d
│ ├── postinfo.d
│ ├── posting.d
│ ├── postmod.d
│ ├── request.d
│ ├── server.d
│ ├── site.d
│ ├── statics.d
│ ├── user.d
│ └── view/
│ ├── feed.d
│ ├── group.d
│ ├── index.d
│ ├── login.d
│ ├── moderation.d
│ ├── post.d
│ ├── search.d
│ ├── settings.d
│ ├── subscription.d
│ ├── thread.d
│ ├── userprofile.d
│ └── widgets.d
└── tests/
├── captcha-screenshot.spec.ts
├── deleted-post-moderation.spec.ts
├── deleted-post-screenshot.spec.ts
├── index.spec.ts
├── package.json
├── playwright.config.ts
├── posting.spec.ts
└── user-journey.spec.ts
================================================
FILE CONTENTS
================================================
================================================
FILE: .github/workflows/build.yml
================================================
name: build
on: [ push, pull_request ]
jobs:
build-dub:
strategy:
fail-fast: false
matrix:
os: [ ubuntu-22.04 ]
dc: [ dmd-2.110.0 ]
runs-on: ${{ matrix.os }}
steps:
- name: Install dependencies
run: sudo apt-get update && sudo apt-get install -y libcurl4-openssl-dev
- name: Prepare compiler
uses: dlang-community/setup-dlang@v1
with:
compiler: ${{ matrix.dc }}
- uses: actions/checkout@v2
- name: Build
run: |
dub build
build-nix:
timeout-minutes: 60
runs-on: ubuntu-24.04
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Install Nix
uses: DeterminateSystems/nix-installer-action@v18
with:
extra-conf: |
extra-experimental-features = nix-command flakes
- name: Setup Nix cache
uses: DeterminateSystems/magic-nix-cache-action@v11
- name: Build DFeed with Nix
run: nix build --show-trace --print-build-logs
- name: Run flake checks
run: nix flake check --show-trace --print-build-logs
================================================
FILE: .gitignore
================================================
# Temporary files
*.exe
*.o
*.obj
*.def
!ws2_32x.def
*.ksp
*.pdb
*.rsp
*.map
*.mem
*.suo
*.ilk
*.min.*
*.jar
/dfeed.json
/core
/bad-zlib.z
/bad-base64.txt
/feed-error.xml
/so-error.txt
# Data, logs and configuration
/data/
/logs/
/build.local
/site/
# Binaries
/dfeed
/dfeed_web
/mldownload
/nntpdownload
/rebuilddb
/rebuildthreads
/sanitizedb
/sendspamfeedback
/unban
/bayes-checkall
/bayes-checkdatum
/bayes-prepdata
/bayes-train
/*-test-application
/src/dfeed/progs/*
!/src/dfeed/progs/*.d
result
# Deimos
/deimos/openssl/
================================================
FILE: .gitmodules
================================================
[submodule "ae"]
path = lib/ae
url = https://github.com/CyberShadow/ae
[submodule "dcaptcha"]
path = lib/dcaptcha
url = https://github.com/CyberShadow/dcaptcha
[submodule "deimos-openssl"]
path = lib/deimos-openssl
url = https://github.com/D-Programming-Deimos/openssl
================================================
FILE: README.md
================================================
DFeed
=====
DFeed is a multi-protocol news aggregator and forum system:
- NNTP client
- Mailing list archive
- Web-based forum interface
- ATOM feed aggregator
- IRC bot
## Demo Instance
A demo instance is available here: https://dfeed-demo.cy.md/
## Directory Structure
- `src/` - Application source code
- `site-defaults/` - Default configuration and web templates (tracked in repo)
- `site/` - Site-specific overrides (gitignored, your customizations go here)
Files in `site/` override files in `site-defaults/`. This allows you to customize
your installation without modifying tracked files.
## Quick Start
```bash
git clone --recursive https://github.com/CyberShadow/DFeed.git
cd DFeed
```
### Building with Dub (executable only)
```bash
dub build
```
### Building with Nix (executable and minified resources)
```bash
nix build .
```
### Configuration
Create your site-specific configuration in `site/`:
```bash
mkdir -p site/config/sources/nntp
cp site-defaults/config/site.ini.sample site/config/site.ini
# Edit site/config/site.ini with your settings
# Add an NNTP source:
echo "host = your.nntp.server" > site/config/sources/nntp/myserver.ini
# Configure web interface:
echo "listen.port = 80" > site/config/web.ini
```
### Running
```bash
./dfeed
```
On first start, DFeed downloads messages from configured NNTP servers.
Access the web interface at http://localhost:8080/.
## Site-Specific Deployments
For an example of a complete site-specific setup, see the
[dlang.org forum configuration](https://github.com/CyberShadow/d-programming-language.org/tree/dfeed/dfeed).
================================================
FILE: agpl-3.0.txt
================================================
GNU AFFERO GENERAL PUBLIC LICENSE
Version 3, 19 November 2007
Copyright (C) 2007 Free Software Foundation, Inc. <http://fsf.org/>
Everyone is permitted to copy and distribute verbatim copies
of this license document, but changing it is not allowed.
Preamble
The GNU Affero General Public License is a free, copyleft license for
software and other kinds of works, specifically designed to ensure
cooperation with the community in the case of network server software.
The licenses for most software and other practical works are designed
to take away your freedom to share and change the works. By contrast,
our General Public Licenses are intended to guarantee your freedom to
share and change all versions of a program--to make sure it remains free
software for all its users.
When we speak of free software, we are referring to freedom, not
price. Our General Public Licenses are designed to make sure that you
have the freedom to distribute copies of free software (and charge for
them if you wish), that you receive source code or can get it if you
want it, that you can change the software or use pieces of it in new
free programs, and that you know you can do these things.
Developers that use our General Public Licenses protect your rights
with two steps: (1) assert copyright on the software, and (2) offer
you this License which gives you legal permission to copy, distribute
and/or modify the software.
A secondary benefit of defending all users' freedom is that
improvements made in alternate versions of the program, if they
receive widespread use, become available for other developers to
incorporate. Many developers of free software are heartened and
encouraged by the resulting cooperation. However, in the case of
software used on network servers, this result may fail to come about.
The GNU General Public License permits making a modified version and
letting the public access it on a server without ever releasing its
source code to the public.
The GNU Affero General Public License is designed specifically to
ensure that, in such cases, the modified source code becomes available
to the community. It requires the operator of a network server to
provide the source code of the modified version running there to the
users of that server. Therefore, public use of a modified version, on
a publicly accessible server, gives the public access to the source
code of the modified version.
An older license, called the Affero General Public License and
published by Affero, was designed to accomplish similar goals. This is
a different license, not a version of the Affero GPL, but Affero has
released a new version of the Affero GPL which permits relicensing under
this license.
The precise terms and conditions for copying, distribution and
modification follow.
TERMS AND CONDITIONS
0. Definitions.
"This License" refers to version 3 of the GNU Affero General Public License.
"Copyright" also means copyright-like laws that apply to other kinds of
works, such as semiconductor masks.
"The Program" refers to any copyrightable work licensed under this
License. Each licensee is addressed as "you". "Licensees" and
"recipients" may be individuals or organizations.
To "modify" a work means to copy from or adapt all or part of the work
in a fashion requiring copyright permission, other than the making of an
exact copy. The resulting work is called a "modified version" of the
earlier work or a work "based on" the earlier work.
A "covered work" means either the unmodified Program or a work based
on the Program.
To "propagate" a work means to do anything with it that, without
permission, would make you directly or secondarily liable for
infringement under applicable copyright law, except executing it on a
computer or modifying a private copy. Propagation includes copying,
distribution (with or without modification), making available to the
public, and in some countries other activities as well.
To "convey" a work means any kind of propagation that enables other
parties to make or receive copies. Mere interaction with a user through
a computer network, with no transfer of a copy, is not conveying.
An interactive user interface displays "Appropriate Legal Notices"
to the extent that it includes a convenient and prominently visible
feature that (1) displays an appropriate copyright notice, and (2)
tells the user that there is no warranty for the work (except to the
extent that warranties are provided), that licensees may convey the
work under this License, and how to view a copy of this License. If
the interface presents a list of user commands or options, such as a
menu, a prominent item in the list meets this criterion.
1. Source Code.
The "source code" for a work means the preferred form of the work
for making modifications to it. "Object code" means any non-source
form of a work.
A "Standard Interface" means an interface that either is an official
standard defined by a recognized standards body, or, in the case of
interfaces specified for a particular programming language, one that
is widely used among developers working in that language.
The "System Libraries" of an executable work include anything, other
than the work as a whole, that (a) is included in the normal form of
packaging a Major Component, but which is not part of that Major
Component, and (b) serves only to enable use of the work with that
Major Component, or to implement a Standard Interface for which an
implementation is available to the public in source code form. A
"Major Component", in this context, means a major essential component
(kernel, window system, and so on) of the specific operating system
(if any) on which the executable work runs, or a compiler used to
produce the work, or an object code interpreter used to run it.
The "Corresponding Source" for a work in object code form means all
the source code needed to generate, install, and (for an executable
work) run the object code and to modify the work, including scripts to
control those activities. However, it does not include the work's
System Libraries, or general-purpose tools or generally available free
programs which are used unmodified in performing those activities but
which are not part of the work. For example, Corresponding Source
includes interface definition files associated with source files for
the work, and the source code for shared libraries and dynamically
linked subprograms that the work is specifically designed to require,
such as by intimate data communication or control flow between those
subprograms and other parts of the work.
The Corresponding Source need not include anything that users
can regenerate automatically from other parts of the Corresponding
Source.
The Corresponding Source for a work in source code form is that
same work.
2. Basic Permissions.
All rights granted under this License are granted for the term of
copyright on the Program, and are irrevocable provided the stated
conditions are met. This License explicitly affirms your unlimited
permission to run the unmodified Program. The output from running a
covered work is covered by this License only if the output, given its
content, constitutes a covered work. This License acknowledges your
rights of fair use or other equivalent, as provided by copyright law.
You may make, run and propagate covered works that you do not
convey, without conditions so long as your license otherwise remains
in force. You may convey covered works to others for the sole purpose
of having them make modifications exclusively for you, or provide you
with facilities for running those works, provided that you comply with
the terms of this License in conveying all material for which you do
not control copyright. Those thus making or running the covered works
for you must do so exclusively on your behalf, under your direction
and control, on terms that prohibit them from making any copies of
your copyrighted material outside their relationship with you.
Conveying under any other circumstances is permitted solely under
the conditions stated below. Sublicensing is not allowed; section 10
makes it unnecessary.
3. Protecting Users' Legal Rights From Anti-Circumvention Law.
No covered work shall be deemed part of an effective technological
measure under any applicable law fulfilling obligations under article
11 of the WIPO copyright treaty adopted on 20 December 1996, or
similar laws prohibiting or restricting circumvention of such
measures.
When you convey a covered work, you waive any legal power to forbid
circumvention of technological measures to the extent such circumvention
is effected by exercising rights under this License with respect to
the covered work, and you disclaim any intention to limit operation or
modification of the work as a means of enforcing, against the work's
users, your or third parties' legal rights to forbid circumvention of
technological measures.
4. Conveying Verbatim Copies.
You may convey verbatim copies of the Program's source code as you
receive it, in any medium, provided that you conspicuously and
appropriately publish on each copy an appropriate copyright notice;
keep intact all notices stating that this License and any
non-permissive terms added in accord with section 7 apply to the code;
keep intact all notices of the absence of any warranty; and give all
recipients a copy of this License along with the Program.
You may charge any price or no price for each copy that you convey,
and you may offer support or warranty protection for a fee.
5. Conveying Modified Source Versions.
You may convey a work based on the Program, or the modifications to
produce it from the Program, in the form of source code under the
terms of section 4, provided that you also meet all of these conditions:
a) The work must carry prominent notices stating that you modified
it, and giving a relevant date.
b) The work must carry prominent notices stating that it is
released under this License and any conditions added under section
7. This requirement modifies the requirement in section 4 to
"keep intact all notices".
c) You must license the entire work, as a whole, under this
License to anyone who comes into possession of a copy. This
License will therefore apply, along with any applicable section 7
additional terms, to the whole of the work, and all its parts,
regardless of how they are packaged. This License gives no
permission to license the work in any other way, but it does not
invalidate such permission if you have separately received it.
d) If the work has interactive user interfaces, each must display
Appropriate Legal Notices; however, if the Program has interactive
interfaces that do not display Appropriate Legal Notices, your
work need not make them do so.
A compilation of a covered work with other separate and independent
works, which are not by their nature extensions of the covered work,
and which are not combined with it such as to form a larger program,
in or on a volume of a storage or distribution medium, is called an
"aggregate" if the compilation and its resulting copyright are not
used to limit the access or legal rights of the compilation's users
beyond what the individual works permit. Inclusion of a covered work
in an aggregate does not cause this License to apply to the other
parts of the aggregate.
6. Conveying Non-Source Forms.
You may convey a covered work in object code form under the terms
of sections 4 and 5, provided that you also convey the
machine-readable Corresponding Source under the terms of this License,
in one of these ways:
a) Convey the object code in, or embodied in, a physical product
(including a physical distribution medium), accompanied by the
Corresponding Source fixed on a durable physical medium
customarily used for software interchange.
b) Convey the object code in, or embodied in, a physical product
(including a physical distribution medium), accompanied by a
written offer, valid for at least three years and valid for as
long as you offer spare parts or customer support for that product
model, to give anyone who possesses the object code either (1) a
copy of the Corresponding Source for all the software in the
product that is covered by this License, on a durable physical
medium customarily used for software interchange, for a price no
more than your reasonable cost of physically performing this
conveying of source, or (2) access to copy the
Corresponding Source from a network server at no charge.
c) Convey individual copies of the object code with a copy of the
written offer to provide the Corresponding Source. This
alternative is allowed only occasionally and noncommercially, and
only if you received the object code with such an offer, in accord
with subsection 6b.
d) Convey the object code by offering access from a designated
place (gratis or for a charge), and offer equivalent access to the
Corresponding Source in the same way through the same place at no
further charge. You need not require recipients to copy the
Corresponding Source along with the object code. If the place to
copy the object code is a network server, the Corresponding Source
may be on a different server (operated by you or a third party)
that supports equivalent copying facilities, provided you maintain
clear directions next to the object code saying where to find the
Corresponding Source. Regardless of what server hosts the
Corresponding Source, you remain obligated to ensure that it is
available for as long as needed to satisfy these requirements.
e) Convey the object code using peer-to-peer transmission, provided
you inform other peers where the object code and Corresponding
Source of the work are being offered to the general public at no
charge under subsection 6d.
A separable portion of the object code, whose source code is excluded
from the Corresponding Source as a System Library, need not be
included in conveying the object code work.
A "User Product" is either (1) a "consumer product", which means any
tangible personal property which is normally used for personal, family,
or household purposes, or (2) anything designed or sold for incorporation
into a dwelling. In determining whether a product is a consumer product,
doubtful cases shall be resolved in favor of coverage. For a particular
product received by a particular user, "normally used" refers to a
typical or common use of that class of product, regardless of the status
of the particular user or of the way in which the particular user
actually uses, or expects or is expected to use, the product. A product
is a consumer product regardless of whether the product has substantial
commercial, industrial or non-consumer uses, unless such uses represent
the only significant mode of use of the product.
"Installation Information" for a User Product means any methods,
procedures, authorization keys, or other information required to install
and execute modified versions of a covered work in that User Product from
a modified version of its Corresponding Source. The information must
suffice to ensure that the continued functioning of the modified object
code is in no case prevented or interfered with solely because
modification has been made.
If you convey an object code work under this section in, or with, or
specifically for use in, a User Product, and the conveying occurs as
part of a transaction in which the right of possession and use of the
User Product is transferred to the recipient in perpetuity or for a
fixed term (regardless of how the transaction is characterized), the
Corresponding Source conveyed under this section must be accompanied
by the Installation Information. But this requirement does not apply
if neither you nor any third party retains the ability to install
modified object code on the User Product (for example, the work has
been installed in ROM).
The requirement to provide Installation Information does not include a
requirement to continue to provide support service, warranty, or updates
for a work that has been modified or installed by the recipient, or for
the User Product in which it has been modified or installed. Access to a
network may be denied when the modification itself materially and
adversely affects the operation of the network or violates the rules and
protocols for communication across the network.
Corresponding Source conveyed, and Installation Information provided,
in accord with this section must be in a format that is publicly
documented (and with an implementation available to the public in
source code form), and must require no special password or key for
unpacking, reading or copying.
7. Additional Terms.
"Additional permissions" are terms that supplement the terms of this
License by making exceptions from one or more of its conditions.
Additional permissions that are applicable to the entire Program shall
be treated as though they were included in this License, to the extent
that they are valid under applicable law. If additional permissions
apply only to part of the Program, that part may be used separately
under those permissions, but the entire Program remains governed by
this License without regard to the additional permissions.
When you convey a copy of a covered work, you may at your option
remove any additional permissions from that copy, or from any part of
it. (Additional permissions may be written to require their own
removal in certain cases when you modify the work.) You may place
additional permissions on material, added by you to a covered work,
for which you have or can give appropriate copyright permission.
Notwithstanding any other provision of this License, for material you
add to a covered work, you may (if authorized by the copyright holders of
that material) supplement the terms of this License with terms:
a) Disclaiming warranty or limiting liability differently from the
terms of sections 15 and 16 of this License; or
b) Requiring preservation of specified reasonable legal notices or
author attributions in that material or in the Appropriate Legal
Notices displayed by works containing it; or
c) Prohibiting misrepresentation of the origin of that material, or
requiring that modified versions of such material be marked in
reasonable ways as different from the original version; or
d) Limiting the use for publicity purposes of names of licensors or
authors of the material; or
e) Declining to grant rights under trademark law for use of some
trade names, trademarks, or service marks; or
f) Requiring indemnification of licensors and authors of that
material by anyone who conveys the material (or modified versions of
it) with contractual assumptions of liability to the recipient, for
any liability that these contractual assumptions directly impose on
those licensors and authors.
All other non-permissive additional terms are considered "further
restrictions" within the meaning of section 10. If the Program as you
received it, or any part of it, contains a notice stating that it is
governed by this License along with a term that is a further
restriction, you may remove that term. If a license document contains
a further restriction but permits relicensing or conveying under this
License, you may add to a covered work material governed by the terms
of that license document, provided that the further restriction does
not survive such relicensing or conveying.
If you add terms to a covered work in accord with this section, you
must place, in the relevant source files, a statement of the
additional terms that apply to those files, or a notice indicating
where to find the applicable terms.
Additional terms, permissive or non-permissive, may be stated in the
form of a separately written license, or stated as exceptions;
the above requirements apply either way.
8. Termination.
You may not propagate or modify a covered work except as expressly
provided under this License. Any attempt otherwise to propagate or
modify it is void, and will automatically terminate your rights under
this License (including any patent licenses granted under the third
paragraph of section 11).
However, if you cease all violation of this License, then your
license from a particular copyright holder is reinstated (a)
provisionally, unless and until the copyright holder explicitly and
finally terminates your license, and (b) permanently, if the copyright
holder fails to notify you of the violation by some reasonable means
prior to 60 days after the cessation.
Moreover, your license from a particular copyright holder is
reinstated permanently if the copyright holder notifies you of the
violation by some reasonable means, this is the first time you have
received notice of violation of this License (for any work) from that
copyright holder, and you cure the violation prior to 30 days after
your receipt of the notice.
Termination of your rights under this section does not terminate the
licenses of parties who have received copies or rights from you under
this License. If your rights have been terminated and not permanently
reinstated, you do not qualify to receive new licenses for the same
material under section 10.
9. Acceptance Not Required for Having Copies.
You are not required to accept this License in order to receive or
run a copy of the Program. Ancillary propagation of a covered work
occurring solely as a consequence of using peer-to-peer transmission
to receive a copy likewise does not require acceptance. However,
nothing other than this License grants you permission to propagate or
modify any covered work. These actions infringe copyright if you do
not accept this License. Therefore, by modifying or propagating a
covered work, you indicate your acceptance of this License to do so.
10. Automatic Licensing of Downstream Recipients.
Each time you convey a covered work, the recipient automatically
receives a license from the original licensors, to run, modify and
propagate that work, subject to this License. You are not responsible
for enforcing compliance by third parties with this License.
An "entity transaction" is a transaction transferring control of an
organization, or substantially all assets of one, or subdividing an
organization, or merging organizations. If propagation of a covered
work results from an entity transaction, each party to that
transaction who receives a copy of the work also receives whatever
licenses to the work the party's predecessor in interest had or could
give under the previous paragraph, plus a right to possession of the
Corresponding Source of the work from the predecessor in interest, if
the predecessor has it or can get it with reasonable efforts.
You may not impose any further restrictions on the exercise of the
rights granted or affirmed under this License. For example, you may
not impose a license fee, royalty, or other charge for exercise of
rights granted under this License, and you may not initiate litigation
(including a cross-claim or counterclaim in a lawsuit) alleging that
any patent claim is infringed by making, using, selling, offering for
sale, or importing the Program or any portion of it.
11. Patents.
A "contributor" is a copyright holder who authorizes use under this
License of the Program or a work on which the Program is based. The
work thus licensed is called the contributor's "contributor version".
A contributor's "essential patent claims" are all patent claims
owned or controlled by the contributor, whether already acquired or
hereafter acquired, that would be infringed by some manner, permitted
by this License, of making, using, or selling its contributor version,
but do not include claims that would be infringed only as a
consequence of further modification of the contributor version. For
purposes of this definition, "control" includes the right to grant
patent sublicenses in a manner consistent with the requirements of
this License.
Each contributor grants you a non-exclusive, worldwide, royalty-free
patent license under the contributor's essential patent claims, to
make, use, sell, offer for sale, import and otherwise run, modify and
propagate the contents of its contributor version.
In the following three paragraphs, a "patent license" is any express
agreement or commitment, however denominated, not to enforce a patent
(such as an express permission to practice a patent or covenant not to
sue for patent infringement). To "grant" such a patent license to a
party means to make such an agreement or commitment not to enforce a
patent against the party.
If you convey a covered work, knowingly relying on a patent license,
and the Corresponding Source of the work is not available for anyone
to copy, free of charge and under the terms of this License, through a
publicly available network server or other readily accessible means,
then you must either (1) cause the Corresponding Source to be so
available, or (2) arrange to deprive yourself of the benefit of the
patent license for this particular work, or (3) arrange, in a manner
consistent with the requirements of this License, to extend the patent
license to downstream recipients. "Knowingly relying" means you have
actual knowledge that, but for the patent license, your conveying the
covered work in a country, or your recipient's use of the covered work
in a country, would infringe one or more identifiable patents in that
country that you have reason to believe are valid.
If, pursuant to or in connection with a single transaction or
arrangement, you convey, or propagate by procuring conveyance of, a
covered work, and grant a patent license to some of the parties
receiving the covered work authorizing them to use, propagate, modify
or convey a specific copy of the covered work, then the patent license
you grant is automatically extended to all recipients of the covered
work and works based on it.
A patent license is "discriminatory" if it does not include within
the scope of its coverage, prohibits the exercise of, or is
conditioned on the non-exercise of one or more of the rights that are
specifically granted under this License. You may not convey a covered
work if you are a party to an arrangement with a third party that is
in the business of distributing software, under which you make payment
to the third party based on the extent of your activity of conveying
the work, and under which the third party grants, to any of the
parties who would receive the covered work from you, a discriminatory
patent license (a) in connection with copies of the covered work
conveyed by you (or copies made from those copies), or (b) primarily
for and in connection with specific products or compilations that
contain the covered work, unless you entered into that arrangement,
or that patent license was granted, prior to 28 March 2007.
Nothing in this License shall be construed as excluding or limiting
any implied license or other defenses to infringement that may
otherwise be available to you under applicable patent law.
12. No Surrender of Others' Freedom.
If conditions are imposed on you (whether by court order, agreement or
otherwise) that contradict the conditions of this License, they do not
excuse you from the conditions of this License. If you cannot convey a
covered work so as to satisfy simultaneously your obligations under this
License and any other pertinent obligations, then as a consequence you may
not convey it at all. For example, if you agree to terms that obligate you
to collect a royalty for further conveying from those to whom you convey
the Program, the only way you could satisfy both those terms and this
License would be to refrain entirely from conveying the Program.
13. Remote Network Interaction; Use with the GNU General Public License.
Notwithstanding any other provision of this License, if you modify the
Program, your modified version must prominently offer all users
interacting with it remotely through a computer network (if your version
supports such interaction) an opportunity to receive the Corresponding
Source of your version by providing access to the Corresponding Source
from a network server at no charge, through some standard or customary
means of facilitating copying of software. This Corresponding Source
shall include the Corresponding Source for any work covered by version 3
of the GNU General Public License that is incorporated pursuant to the
following paragraph.
Notwithstanding any other provision of this License, you have
permission to link or combine any covered work with a work licensed
under version 3 of the GNU General Public License into a single
combined work, and to convey the resulting work. The terms of this
License will continue to apply to the part which is the covered work,
but the work with which it is combined will remain governed by version
3 of the GNU General Public License.
14. Revised Versions of this License.
The Free Software Foundation may publish revised and/or new versions of
the GNU Affero General Public License from time to time. Such new versions
will be similar in spirit to the present version, but may differ in detail to
address new problems or concerns.
Each version is given a distinguishing version number. If the
Program specifies that a certain numbered version of the GNU Affero General
Public License "or any later version" applies to it, you have the
option of following the terms and conditions either of that numbered
version or of any later version published by the Free Software
Foundation. If the Program does not specify a version number of the
GNU Affero General Public License, you may choose any version ever published
by the Free Software Foundation.
If the Program specifies that a proxy can decide which future
versions of the GNU Affero General Public License can be used, that proxy's
public statement of acceptance of a version permanently authorizes you
to choose that version for the Program.
Later license versions may give you additional or different
permissions. However, no additional obligations are imposed on any
author or copyright holder as a result of your choosing to follow a
later version.
15. Disclaimer of Warranty.
THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY
OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM
IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF
ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
16. Limitation of Liability.
IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS
THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE
USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF
DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD
PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),
EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF
SUCH DAMAGES.
17. Interpretation of Sections 15 and 16.
If the disclaimer of warranty and limitation of liability provided
above cannot be given local legal effect according to their terms,
reviewing courts shall apply local law that most closely approximates
an absolute waiver of all civil liability in connection with the
Program, unless a warranty or assumption of liability accompanies a
copy of the Program in return for a fee.
END OF TERMS AND CONDITIONS
How to Apply These Terms to Your New Programs
If you develop a new program, and you want it to be of the greatest
possible use to the public, the best way to achieve this is to make it
free software which everyone can redistribute and change under these terms.
To do so, attach the following notices to the program. It is safest
to attach them to the start of each source file to most effectively
state the exclusion of warranty; and each file should have at least
the "copyright" line and a pointer to where the full notice is found.
<one line to give the program's name and a brief idea of what it does.>
Copyright (C) <year> <name of author>
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero 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 Affero General Public License for more details.
You should have received a copy of the GNU Affero General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
Also add information on how to contact you by electronic and paper mail.
If your software can interact with users remotely through a computer
network, you should also make sure that it provides a way for users to
get its source. For example, if your program is a web application, its
interface could display a "Source" link that leads users to an archive
of the code. There are many ways you could offer source, and different
solutions will be better for different programs; see section 13 for the
specific requirements.
You should also get your employer (if you work as a programmer) or school,
if any, to sign a "copyright disclaimer" for the program, if necessary.
For more information on this, and how to apply and follow the GNU AGPL, see
<http://www.gnu.org/licenses/>.
================================================
FILE: dub.sdl
================================================
name "dfeed"
description "D news aggregator, newsgroup client, web newsreader and IRC bot"
authors "Vladimir Panteleev <vladimir@thecybershadow.net>"
homepage "https://github.com/CyberShadow/DFeed"
license "Affero GPL v3"
---------------------------
# Main package is the DFeed program itself.
sourcePaths
sourceFiles "src/dfeed/progs/dfeed.d"
mainSourceFile "src/dfeed/progs/dfeed.d"
dependency "dfeed:lib" version="*" path="."
targetType "executable"
---------------------------
# All modules.
subPackage {
name "lib"
excludedSourceFiles "src/dfeed/progs/*.d"
targetType "sourceLibrary"
dependency "ae" version="==0.0.3666"
dependency "ae:zlib" version="==0.0.3666"
dependency "ae:sqlite" version="==0.0.3666"
dependency "ae:openssl" version="==0.0.3666"
dependency "dcaptcha" version="==1.0.1"
}
---------------------------
# NNTP downloader program.
subPackage {
name "nntpdownload"
sourcePaths
sourceFiles "src/dfeed/progs/nntpdownload.d"
dependency "dfeed:lib" version="*" path="."
targetType "executable"
}
---------------------------
# Spam feedback program
subPackage {
name "sendspamfeedback"
sourcePaths
sourceFiles "src/dfeed/progs/sendspamfeedback.d"
dependency "dfeed:lib" version="*" path="."
targetType "executable"
}
================================================
FILE: dub.selections.json
================================================
{
"fileVersion": 1,
"versions": {
"ae": "0.0.3666",
"dcaptcha": "1.0.1",
"openssl": "3.3.0"
}
}
================================================
FILE: flake.nix
================================================
{
description = "DFeed - D news aggregator, newsgroup client, web newsreader and IRC bot";
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
flake-utils.url = "github:numtide/flake-utils";
self.submodules = true;
};
outputs = { self, nixpkgs, flake-utils }:
flake-utils.lib.eachDefaultSystem (system:
let
pkgs = nixpkgs.legacyPackages.${system};
# Helper to download compressors (for minification)
htmlcompressor = pkgs.fetchurl {
url = "https://storage.googleapis.com/google-code-archive-downloads/v2/code.google.com/htmlcompressor/htmlcompressor-1.5.3.jar";
sha256 = "1ydh1hqndnvw0d8kws5339mj6qn2yhjd8djih27423nv1hrlx2c8";
};
yuicompressor = pkgs.fetchurl {
url = "https://github.com/yui/yuicompressor/releases/download/v2.4.8/yuicompressor-2.4.8.jar";
sha256 = "1qjxlak9hbl9zd3dl5ks0w4zx5z64wjsbk7ic73r1r45fasisdrh";
};
# Filter source to only include files needed for D build
dfeedSrc = pkgs.lib.cleanSourceWith {
src = self;
filter = path: type:
let
baseName = baseNameOf path;
relPath = pkgs.lib.removePrefix (toString self + "/") (toString path);
in
# Include D source directories
pkgs.lib.hasPrefix "src/" relPath ||
pkgs.lib.hasPrefix "lib/" relPath ||
# Include root-level build files
baseName == "dub.sdl" ||
baseName == "dub.selections.json" ||
# Allow traversing directories
type == "directory";
};
# Shared test configuration generation
generateTestConfig = ''
# Create test environment
mkdir -p site/config/apis data/db
# Create minimal site.ini
cat > site/config/site.ini << 'SITEINI'
name = DFeed Test Instance
host = localhost
proto = http
SITEINI
# Create web.ini with test port
cat > site/config/web.ini << 'WEBINI'
[listen]
port = 8080
WEBINI
# Disable StopForumSpam in sandbox (no network access)
cat > site/config/apis/stopforumspam.ini << 'SPAMINI'
enabled = false
SPAMINI
# Configure user authentication with a test salt
cat > site/config/user.ini << 'USERINI'
salt = test-salt-for-playwright-tests-only
USERINI
# Configure test group with dummy captcha and disabled rate limiting for testing
cat > site/config/groups.ini << 'GROUPSINI'
[sets.test]
name=Test
shortName=Test
visible=true
[groups.test]
internalName=test
publicName=Test Forum
navName=Test
urlName=test
groupSet=test
description=A test forum for trying out posting
sinkType=local
announce=false
captcha=dummy
postThrottleRejectCount=0
postThrottleCaptchaCount=0
GROUPSINI
# Database is automatically created and migrated by dfeed
'';
# Shared server startup/shutdown logic
startServer = ''
# Start dfeed server in background
${self.packages.${system}.default}/bin/dfeed --no-sources &
DFEED_PID=$!
# Wait for server to be ready (up to 30 seconds)
echo "Waiting for DFeed server to start..."
for i in $(seq 1 30); do
if curl -s http://localhost:8080/ > /dev/null 2>&1; then
echo "Server is ready!"
break
fi
if ! kill -0 $DFEED_PID 2>/dev/null; then
echo "Server process died unexpectedly"
exit 1
fi
sleep 1
done
# Verify server is actually responding
if ! curl -s http://localhost:8080/ > /dev/null 2>&1; then
echo "Server failed to start within 30 seconds"
kill $DFEED_PID 2>/dev/null || true
exit 1
fi
'';
stopServer = ''
# Stop server
kill $DFEED_PID 2>/dev/null || true
wait $DFEED_PID 2>/dev/null || true
'';
# Reference site-defaults separately (not part of D source)
siteDefaultsSrc = "${self}/site-defaults";
in
{
packages.default = pkgs.stdenv.mkDerivation {
pname = "dfeed";
version = "unstable";
src = dfeedSrc;
# Don't strip debug symbols (we build with -g)
dontStrip = true;
nativeBuildInputs = with pkgs; [
dmd
dtools # Provides rdmd
jre_minimal # For htmlcompressor and yuicompressor
git
which
];
buildInputs = with pkgs; [
curl
sqlite
openssl
];
# Setup build environment
preConfigure = ''
# Make compressors available
cp ${htmlcompressor} htmlcompressor-1.5.3.jar
cp ${yuicompressor} yuicompressor-2.4.8.jar
# Copy site-defaults for minification (not part of D source)
cp -r ${siteDefaultsSrc} site-defaults
chmod -R u+w site-defaults
'';
buildPhase = ''
runHook preBuild
# Set rdmd to use dmd by default
export DCOMPILER=dmd
# Detect OpenSSL version
if [ -f lib/deimos-openssl/scripts/generate_version.d ]; then
echo "Generating OpenSSL version detection..."
rdmd --compiler=dmd lib/deimos-openssl/scripts/generate_version.d
fi
# Set up D compiler flags
flags=(
-m64
-g
-Isrc
-Ilib
-L-lcurl
-L-lsqlite3
-L-lssl
-L-lcrypto
)
# Add version flag for OpenSSL auto-detection
if [ -f lib/deimos-openssl/scripts/generate_version.d ]; then
flags+=(-version=DeimosOpenSSLAutoDetect)
fi
# Build all programs
for fn in src/dfeed/progs/*.d; do
name=$(basename "$fn" .d)
echo "Building $name..."
rdmd --compiler=dmd --build-only -of"$name" "''${flags[@]}" "$fn"
done
# Minify site-defaults resources (if not already minified)
HTMLTOOL="java -jar htmlcompressor-1.5.3.jar --compress-css"
JSTOOL="java -jar yuicompressor-2.4.8.jar --type js"
CSSTOOL="java -jar yuicompressor-2.4.8.jar --type css"
for htt in site-defaults/web/*.htt; do
min="''${htt%.htt}.min.htt"
if [ ! -f "$min" ] || [ "$htt" -nt "$min" ]; then
echo "Minifying $htt..."
$HTMLTOOL < "$htt" > "$min" || cp "$htt" "$min"
fi
done
for css in site-defaults/web/static/css/*.css; do
[[ "$css" == *.min.css ]] && continue
min="''${css%.css}.min.css"
if [ ! -f "$min" ] || [ "$css" -nt "$min" ]; then
echo "Minifying $css..."
$CSSTOOL < "$css" > "$min" || cp "$css" "$min"
fi
done
for js in site-defaults/web/static/js/*.js; do
[[ "$js" == *.min.js ]] && continue
min="''${js%.js}.min.js"
if [ ! -f "$min" ] || [ "$js" -nt "$min" ]; then
echo "Minifying $js..."
$JSTOOL < "$js" > "$min" || cp "$js" "$min"
fi
done
runHook postBuild
'';
installPhase = ''
runHook preInstall
mkdir -p $out/bin
mkdir -p $out/share/dfeed
# Install binaries
for prog in dfeed nntpdownload sendspamfeedback unban; do
if [ -f "$prog" ]; then
install -Dm755 "$prog" $out/bin/"$prog"
fi
done
# Install site-defaults (generic resources)
cp -r site-defaults $out/share/dfeed/
runHook postInstall
'';
meta = with pkgs.lib; {
description = "D news aggregator, newsgroup client, web newsreader and IRC bot";
homepage = "https://github.com/CyberShadow/DFeed";
license = licenses.agpl3Plus;
platforms = platforms.linux;
maintainers = [ ];
};
};
# Generate screenshots from Playwright tests
packages.screenshots = pkgs.stdenv.mkDerivation {
pname = "dfeed-screenshots";
version = "unstable";
src = self;
nativeBuildInputs = with pkgs; [
playwright-test
curl
sqlite
# Fonts for proper rendering in screenshots
liberation_ttf
dejavu_fonts
freefont_ttf
];
HOME = "/tmp/playwright-home";
FONTCONFIG_FILE = pkgs.makeFontsConf {
fontDirectories = with pkgs; [
liberation_ttf
dejavu_fonts
freefont_ttf
];
};
buildPhase = ''
runHook preBuild
${generateTestConfig}
${startServer}
cd tests
playwright test --project=screenshots --reporter=list || true
cd ..
${stopServer}
runHook postBuild
'';
installPhase = ''
mkdir -p $out
cp tests/screenshot-*.png $out/ 2>/dev/null || echo "No screenshots found"
ls -la $out/
'';
};
# Development shell for working on the project
devShells.default = pkgs.mkShell {
buildInputs = with pkgs; [
dmd
dtools
dub
curl
sqlite
openssl
jre_minimal
gnumake
git
];
shellHook = ''
echo "DFeed development environment"
echo "DMD version: $(dmd --version | head -1)"
'';
};
# Checks to run with 'nix flake check'
checks = {
# Verify that the package builds successfully
build = self.packages.${system}.default;
# Run Playwright end-to-end tests
playwright = pkgs.stdenv.mkDerivation {
pname = "dfeed-playwright-tests";
version = "unstable";
src = self;
nativeBuildInputs = with pkgs; [
playwright-test
curl
sqlite
];
# Playwright needs writable home for cache
HOME = "/tmp/playwright-home";
buildPhase = ''
runHook preBuild
${generateTestConfig}
${startServer}
# Run Playwright tests
cd tests
playwright test --project=default --reporter=list || TEST_RESULT=$?
cd ..
${stopServer}
# Check test result
if [ "''${TEST_RESULT:-0}" != "0" ]; then
echo "Playwright tests failed"
exit 1
fi
runHook postBuild
'';
installPhase = ''
mkdir -p $out
echo "Playwright tests passed" > $out/result
'';
};
# Run D unittests
unittests = pkgs.stdenv.mkDerivation {
pname = "dfeed-unittests";
version = "unstable";
src = self;
nativeBuildInputs = with pkgs; [
dmd
dtools
];
buildInputs = with pkgs; [
curl
sqlite
openssl
];
buildPhase = ''
runHook preBuild
export DCOMPILER=dmd
# Detect OpenSSL version
if [ -f lib/deimos-openssl/scripts/generate_version.d ]; then
echo "Generating OpenSSL version detection..."
rdmd --compiler=dmd lib/deimos-openssl/scripts/generate_version.d
fi
# Compile library with unittests
echo "Compiling and running unittests..."
dmd -unittest -main -i -Isrc -Ilib -L-lcurl -L-lsqlite3 -L-lssl -L-lcrypto \
$(find src -name "*.d" | grep -v "src/dfeed/progs/") \
-version=DeimosOpenSSLAutoDetect \
-od=unittest-obj -of=unittest-runner
runHook postBuild
'';
checkPhase = ''
echo "Running unittests..."
./unittest-runner
'';
installPhase = ''
mkdir -p $out
echo "Unittests passed" > $out/result
'';
doCheck = true;
};
};
}
);
}
================================================
FILE: makejson
================================================
#!/bin/bash
set -eu
git ls-files | grep '^src/.*\.d$' | xargs dmd -Xfdfeed.json -o-
================================================
FILE: schema_v1.sql
================================================
-- Initial version of the database schema.
-- See src/dfeed/database.d for updates since this initial revision.
-- Table `Groups`
CREATE TABLE [Groups] (
[Group] VARCHAR(50) NULL,
[ArtNum] INTEGER NULL,
[ID] VARCHAR(50) NULL
, Time INTEGER);
-- Table `Posts`
CREATE TABLE [Posts] (
[ID] VARCHAR(50) NULL,
[Message] TEXT NULL,
[Author] VARCHAR(255) NULL,
[Subject] VARCHAR(255) NULL,
[Time] INTEGER NULL,
[ParentID] VARCHAR(50) NULL,
[ThreadID] VARCHAR(50) NULL
, [AuthorEmail] VARCHAR(50));
-- Table `Threads`
CREATE TABLE [Threads] (
[Group] VARCHAR(50) NULL,
[ID] VARCHAR(50) NULL,
[LastUpdated] INTEGER NULL
, LastPost VARCHAR(50), [Created] INTEGER NULL);
-- Index `PostThreadID` on table `Posts`
CREATE INDEX [PostThreadID] ON [Posts](
[ThreadID] ASC
);
-- Index `ThreadGroup` on table `Threads`
CREATE INDEX [ThreadGroup] ON [Threads] ( [Group] );
-- Index `GroupTime` on table `Groups`
CREATE INDEX GroupTime ON Groups (`Group`, Time DESC);
-- Index `ThreadOrder` on table `Threads`
CREATE INDEX ThreadOrder ON Threads ([Group], [LastUpdated] DESC);
-- Index `GroupID` on table `Groups`
CREATE UNIQUE INDEX [GroupID] ON [Groups](
[Group] ASC,
[ID] ASC
);
-- Index `PostID` on table `Posts`
CREATE UNIQUE INDEX [PostID] ON "Posts"(
[ID] ASC
);
-- Index `ThreadID` on table `Threads`
CREATE INDEX "ThreadID" ON "Threads" ( ID );
-- Index `PostParentID` on table `Posts`
CREATE INDEX PostParentID ON Posts ( ParentID );
-- Table `Users`
CREATE TABLE [Users] ( [Username] VARCHAR(50), [Password] VARCHAR(50), [Session] VARCHAR(50) , [Level] INTEGER NOT NULL DEFAULT 0, [Created] INTEGER);
-- Index `UserName` on table `Users`
CREATE UNIQUE INDEX [UserName] ON [Users] ( [Username] );
-- Table `UserSettings`
CREATE TABLE [UserSettings] ( [User] VARCHAR(50), [Name] VARCHAR(50), [Value] TEXT );
-- Index `UserSetting` on table `UserSettings`
CREATE UNIQUE INDEX [UserSetting] on [UserSettings] ( [User], [Name] );
-- Index `GroupArtNum` on table `Groups`
CREATE INDEX [GroupArtNum] ON [Groups] ( [Group], [ArtNum] );
-- Index `PostTime` on table `Posts`
CREATE INDEX [PostTime] ON [Posts] ( [Time] DESC );
-- Table `Drafts`
CREATE TABLE [Drafts] ([UserID] VARCHAR(20) NOT NULL, [ID] VARCHAR(20) NOT NULL, [PostID] VARCHAR(20) NULL, [Status] INTEGER NOT NULL, [ClientVars] TEXT NOT NULL, [ServerVars] TEXT NULL, [Time] INTEGER NOT NULL);
-- Index `DraftID` on table `Drafts`
CREATE UNIQUE INDEX [DraftID] ON [Drafts] ([ID]);
-- Index `DraftUserID` on table `Drafts`
CREATE INDEX [DraftUserID] ON [Drafts] ([UserID], [Status]);
-- Index `DraftPostID` on table `Drafts`
CREATE UNIQUE INDEX [DraftPostID] ON [Drafts] ([PostID]);
-- Table `Subscriptions`
CREATE TABLE [Subscriptions] (
[ID] VARCHAR(20) NOT NULL PRIMARY KEY,
[Username] VARCHAR(50) NOT NULL,
[Data] TEXT NULL
);
-- Table `ReplyTriggers`
CREATE TABLE [ReplyTriggers] ([Email] VARCHAR(50) NOT NULL, [SubscriptionID] VARCHAR(20) NOT NULL);
-- Index `ReplyTriggerSubscripion` on table `ReplyTriggers`
CREATE UNIQUE INDEX [ReplyTriggerSubscripion] ON [ReplyTriggers] ([SubscriptionID]);
-- Index `ReplyTriggerEmail` on table `ReplyTriggers`
CREATE INDEX [ReplyTriggerEmail] ON [ReplyTriggers] ([Email]);
-- Table `ThreadTriggers`
CREATE TABLE [ThreadTriggers] ([ThreadID] VARCHAR(50) NOT NULL, [SubscriptionID] VARCHAR(20) NOT NULL);
-- Index `ThreadTriggerSubscription` on table `ThreadTriggers`
CREATE UNIQUE INDEX [ThreadTriggerSubscription] ON [ThreadTriggers] ([SubscriptionID]);
-- Index `ThreadTriggerThreadID` on table `ThreadTriggers`
CREATE INDEX [ThreadTriggerThreadID] ON [ThreadTriggers] ([ThreadID]);
-- Table `ContentTriggers`
CREATE TABLE [ContentTriggers] ([SubscriptionID] VARCHAR(20) NOT NULL PRIMARY KEY);
-- Table `SubscriptionPosts`
CREATE TABLE [SubscriptionPosts] (
[SubscriptionID] VARCHAR(20) NOT NULL,
[MessageID] VARCHAR(50) NOT NULL,
[MessageRowID] INTEGER NOT NULL,
[Time] INTEGER NOT NULL
);
-- Index `SubscriptionPostID` on table `SubscriptionPosts`
CREATE INDEX [SubscriptionPostID] ON [SubscriptionPosts] ([SubscriptionID], [Time] DESC);
-- Table `PostSearch`
CREATE VIRTUAL TABLE [PostSearch] USING fts4([Time], [ThreadMD5], [Group], [Author], [AuthorEmail], [Subject], [Content], [NewThread], order=desc);
-- Index `ThreadCreated` on table `Threads`
CREATE INDEX [ThreadCreated] ON [Threads] ([Created] DESC);
-- Index `PostAuthorEmail` on table `Posts`
CREATE INDEX [PostAuthorEmail] ON [Posts] ([AuthorEmail]);
-- Table `Flags`
CREATE TABLE [Flags] ([PostID] VARCHAR(50), [Username] VARCHAR(50), [Date] INTEGER);
-- Index `UserFlags` on table `Flags`
CREATE INDEX [UserFlags] ON [Flags] ([Username], [PostID]);
================================================
FILE: site-defaults/config/apis/akismet.ini.sample
================================================
# Akismet (http://akismet.com/) key for spam checks.
#key = abcdefghijkl
================================================
FILE: site-defaults/config/apis/bitly.ini.sample
================================================
# bitly.com API credentials. Used for shortening links for IRC.
#login = your_username
#apiKey = R_0123456789abcdef0123456789abcdef
================================================
FILE: site-defaults/config/apis/mailhide.ini.sample
================================================
# Google MailHide API. Not currently used.
#publicKey = ABCDEFGHIJKLMNOPQRSTUVWX==
#privateKey = 0123456789abcdef0123456789abcdef
================================================
FILE: site-defaults/config/apis/openai.ini.sample
================================================
# OpenAI API configuration for spam detection
# Sign up at https://platform.openai.com/ to get an API key
# API key (required)
#apiKey = sk-proj-...
# Model to use (default: gpt-4o-mini)
# Supported models: gpt-4o-mini, gpt-4o, gpt-4-turbo, gpt-3.5-turbo
# Note: We use logprobs for confidence assessment, so reasoning models (o1/o3) are not supported
#model = gpt-4o-mini
================================================
FILE: site-defaults/config/apis/projecthoneypot.ini.sample
================================================
# Project Honey Pot (https://www.projecthoneypot.org/) API key for spam checks.
#key=abcdefghijkl
================================================
FILE: site-defaults/config/apis/recaptcha.ini.sample
================================================
# reCAPTCHA API
publicKey = ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmn
privateKey = ABCDEFGHIJKMLMOPQRSTUVWXYZabcdefghijklmn
================================================
FILE: site-defaults/config/apis/stopforumspam.ini
================================================
# StopForumSpam spam checker configuration.
# This service checks poster IP addresses against a database of known spammers.
# See: https://www.stopforumspam.com/
# Whether to enable StopForumSpam checking.
# Set to false to disable (e.g., in environments without network access).
enabled = true
================================================
FILE: site-defaults/config/backup.ini.sample
================================================
# Incremental daily backups using xdelta3
# Copy this file to backup.ini to enable.
# Time of day to run the backup.
# Hour (0-23):
hour = 7
# Minute (0-59):
minute = 0
================================================
FILE: site-defaults/config/groups.ini
================================================
# Default DFeed groups configuration
# For testing and as an example. Site deployments should create their own.
[sets.general]
name=General
shortName=General
visible=true
[groups.general]
internalName=general
publicName=General Discussion
navName=General
urlName=general
groupSet=general
description=General discussion forum
sinkType=local
announce=false
captcha=none
[sets.test]
name=Test
shortName=Test
visible=true
[groups.test]
internalName=test
publicName=Test Forum
navName=Test
urlName=test
groupSet=test
description=A test forum for trying out posting
sinkType=local
announce=false
captcha=none
================================================
FILE: site-defaults/config/groups.ini.sample
================================================
# The groups, as displayed on the web interface's index page.
# Groups are arranged in sets.
[sets.example-set]
# Long name (shown on index page)
name=Example set
# Short name (shown in navigation)
shortName=Example set
# Example group.
[groups.example]
# Name used by the mailing lists, NNTP servers, etc.
internalName=example
# Name visible on web pages.
publicName=Example
# urlName is what appears in URLs.
urlName=example
# description is displayed on the index page.
description=Example group
# ID (section name) of the set this group appears in.
groupSet=example-set
# alsoVia is an optional set of links for other ways to access this group.
alsoVia.nntp.name=NNTP
alsoVia.nntp.url=news://news.example.com/example
# How posted messages are propagated.
# sinkType can be smtp or nntp.
#
# The corresponding configuration file from
# config/sinks/<sinkType>/<sinkName>.ini
# will be consulted.
sinkType=smtp
sinkName=example
# Whether to show a warning that a subscription is required
# when attempting to post to a mailing list (sinkType==smtp).
# Enabled by default.
subscriptionRequired=true
# Whether new threads in the post are considered very important, and
# will be announced to e.g. Twitter (if configured).
announce=false
# CAPTCHA mechanism to use for challenging users who post
# messages which triggered a spam filter.
# Valid values are:
# - none - no CAPTCHA, messages go directly to the moderation queue
# - recaptcha - Google's reCAPTCHA service, requires configuring keys
# - dcaptcha - randomly generated D Programming Language questions
captcha=none
================================================
FILE: site-defaults/config/sinks/irc/irc.ini.sample
================================================
# IRC sink parameters.
# IRC server to connect to.
#server = irc.libera.chat
# Port. Defaults to 6667.
#port = 6667
# Nickname to use.
#nick = DFeed\My\Test
# Primary channel - only "important" announcements will be posted here.
#channel = dfeed.test
# Secondary (feed) channel, for all announcements.
#channel2 = dfeed.test2
================================================
FILE: site-defaults/config/sinks/twitter/twitter.ini.sample
================================================
# Twitter sink parameters.
# OAuth parameters.
oauth.consumerKey = abcdefghijklmnopqrstuvwxy
oauth.consumerSecret = abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWX
oauthAccessToken = 123456789012345678-abcdefghijklmnopqrstuvwxyzABCDE
oauthAccessTokenSecret = abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRS
# How to format the tweet, as std.string.format arguments.
# Arguments passed are, in order: subject, author name, URL
formatString = %s by %s: %s #dlang
================================================
FILE: site-defaults/config/site.ini.sample
================================================
# The name of the website. Used in emails.
name = Example Forum
# The canonical domain name for your instance.
# This is used in a number of places:
# - Requests coming to other domain names will be redirected to the canonical one.
# - Message IDs for new messages will use this setting for the hostname part.
# - External URLs to web resources (e.g. in IRC announcements) will use this setting for the host part.
# Default is "localhost".
host = forum.example.com
# Default HTTP URI protocol (http or https).
# Used as above. When set to https, will redirect detected http requests to https.
proto = http
# A description of this DFeed instance to be shown on the help page (in the About section).
about = <p>This is an example DFeed instance.</p>
# OpenGraph image URL for social media previews.
# If not set, no image will be used in OpenGraph metadata.
ogImage =
# List of email addresses of site moderators.
# These will be used for notifications when a post is flagged.
# E.g.: moderators=["John Doe <johndoe@example.tld>", "Jane Doe <janedoe@example.tld>"]
moderators=[]
================================================
FILE: site-defaults/config/sources/feeds/example.ini.sample
================================================
# Atom feed example configuration.
# Feed title - used in IRC announcements.
#name = Example
# Direct URL to the ATOM XML file.
#url = http://www.example.com/feeds/atom.xml
# Action (verb used in IRC announcements).
# The announcements is formatted like "<author> <verb> <title>".
# If left empty, as a special case, the author and verb is not included.
# Defaults to "posted".
#action = posted
================================================
FILE: site-defaults/config/sources/github/github.ini.sample
================================================
# GitHub hook secret value
#secret =
================================================
FILE: site-defaults/config/sources/mailman/example.ini.sample
================================================
# Mailman HTTP archives.
baseURL = http://lists.example.com/pipermail/
lists = general,announcements
================================================
FILE: site-defaults/config/sources/mailrelay/example.ini.sample
================================================
# Messages coming from other sources (e.g. email, for mailing lists)
# can be piped to the address/port configured here.
# DFeed will accept one message per connection, and process it as usual.
#addr = 127.0.0.1
#port = 12345
# Exim configuration:
# Create an alias file with the content:
# | nc -q 0 127.0.0.1 12345
# qmail/vpopmail configuration:
# For address foo@bar.com, create the file
# ~vpopmail/domains/bar.com/.qmail-foo
# with the content:
# | nc -q 0 127.0.0.1 12345
================================================
FILE: site-defaults/config/sources/nntp/example.ini.sample
================================================
# NNTP source.
host = news.example.com
# Whether posting is allowed.
# This SHOULD be configured in groups.ini, but it can be disabled here as well.
# Note that currently this will work only as a last-minute check,
# i.e. the user will be notified only as they attempt to send the
# message.
postingAllowed = true
# Command to delete messages from the source NNTP server.
# If specified, an option will appear to delete messages from the
# source in the post moderation UI.
# The command is invoked with the first argument being the message ID,
# and the following arguments being the group:article-number tuples
# (as they appear in the Xref header).
#deleteCommand = /path/to/script.sh
================================================
FILE: site-defaults/config/sources/smtp/example.ini.sample
================================================
# Mailing list "source" for sent messages.
# Mailing list domain name (part after @ for email addresses).
domain = example.com
# MX server (telnet to this host and port 25 should succeed).
server = mail.example.com
# Port (default = 25).
port = 25
# URL base for list info
listInfo = http://lists.example.com/cgi-bin/mailman/
================================================
FILE: site-defaults/config/sources/socket/socket.ini.sample
================================================
# This is a special source, currently used for
# instant MediaWiki edit notifications,
# but can be further expanded as needed.
# See socket.d for details.
#port = 12345
#password = abcdefghij
================================================
FILE: site-defaults/config/sources/stackoverflow/so.ini.sample
================================================
# StackOverflow questions feed.
# Comma-separated list of tags to watch.
tags = d
# Optional - API key.
# Requests will be rate-limited without one.
#key = abcdefghijklmnopqrstuvwx
================================================
FILE: site-defaults/config/user.ini.sample
================================================
# A unique string used in hashing user passwords.
# salt = insert random string here
================================================
FILE: site-defaults/config/web.ini.sample
================================================
# HTTP header to use for the client's real IP address when behind a reverse proxy.
# Common values: "X-Forwarded-For", "X-Real-IP"
# If not set, the direct connection IP is used.
#remoteIPHeader = X-Forwarded-For
# Optional additional cookie-less domain used for static resources.
# Should not be a subdomain of the main domain.
#staticDomain = example-static.com
# Whether this instance should be indexed by search engines
# (or crawled by other web spiders).
# This affects what is served in robots.txt.
# The default is false.
#indexable = true
# API secret for programmatic access (e.g., for moderation APIs).
# If not set, API endpoints will be disabled.
#apiSecret = your-secret-here
# Widget configuration for the home page.
# Group to use for the "Latest announcements" widget.
# If not set, the widget will not be displayed.
#announceGroup = announce
# Groups to exclude from the "Active discussions" widget.
# Use an array format: ["group1", "group2"]
#activeDiscussionExclude = ["announce"]
# HTTP socket parameters.
[listen]
# Network address to bind to. By default, binds on all interfaces.
# addr = 127.0.0.1
# Port to listen on.
port = 8080
================================================
FILE: site-defaults/web/help-english.htt
================================================
<!-- HTML -->
<h2 id="view-modes">View modes</h2>
<p>
You can browse the forum using one of several view modes:
<ul>
<li><b>Basic</b> - A forum-like view with paged linear threads.</li>
<li><b>Threaded</b> - Threaded group overview with single post display, similar to mailing list archives.</li>
<li><b>Horizontal-split</b> - JavaScript-powered interface with a split view, similar to a usenet client.</li>
<li><b>Vertical-split</b> - A view with a list pane at the top and a message pane at the bottom, resembling a desktop mail client.</li>
</ul>
The view mode can be changed on the <a href="/settings">settings page</a>.
</p>
<h2 id="keynav">Keyboard navigation</h2>
<p>
Keyboard shortcuts are available for all view modes (in thread and post listing pages, as well as the forum index).
If JavaScript is enabled, press <kbd>?</kbd> to view a list of shortcuts.
</p>
<p>
If you wish, you can disable keyboard shortcuts on the <a href="/settings">settings page</a>.
</p>
<h2 id="read-post-history">Read post history</h2>
<p>
The posts you've viewed are saved to a compressed cookie, or on the server if you're logged in.
Viewing a thread in basic view will mark all displayed posts as "read".
Posts can be marked as "unread" using the <kbd>u</kbd> keyboard shortcut.
</p>
<p>
To avoid losing read post history, consider registering an account to avoid cookie limitations / expiration / accidental deletion.
</p>
<h2 id="accounts">Accounts</h2>
<p>
You do not need an account to browse or post to this forum.
Preferences and read post history are stored in browser cookies for unregistered users.
</p>
<p>
You can register an account to keep them on the server instead.
Registering an account will transfer all variables from cookies to the server database.
</p>
<p>
Creating an account will also allow you to create subscriptions, and be notified by IRC or email of replies to your posts, or other events.
</p>
<h2 id="email">Email address</h2>
<p>
When posting, you need to indicate an email address.
It doesn't need to be a valid one; this software will not send anything to the specified address.
The email address will be made public to other users of the news server / mailing list you are posting to.
Therefore, please be aware that malicious robots may be able to collect your address and send spam to it.
</p>
<p>
The email address is also used to display an avatar (see below).
</p>
<h2 id="markdown">Markdown formatting</h2>
<p>
You may optionally use Markdown formatting when authoring posts.
The specific variant of Markdown used is <a href="https://github.github.com/gfm/#what-is-github-flavored-markdown-">GitHub Flavored Markdown</a>.
</p>
<p>
The following is a quick guide for some available syntax:
</p>
<style>
#forum-content table.help-table {
border-spacing: initial;
margin: 16px 0;
width: auto;
}
#forum-content table.help-table th {
background-color: #F5F5F5;
}
#forum-content table.help-table th,
#forum-content table.help-table td {
border: 1px solid #E6E6E6;
padding: 0.1em 0.3em;
}
</style>
<table class="help-table">
<tr><th>Formatting</th><th>What you type</th><th>What you get</th></tr>
<tr><td>Bold text</td><td><code>**sample text**</code></td><td> <b>sample text</b> </td></tr>
<tr><td>Italic text</td><td><code>*sample text*</code></td><td> <i>sample text</i> </td></tr>
<tr><td>Links</td><td><code>[GitHub](https://github.com/)</code></td><td> <a href="https://github.com/">GitHub</a> </td></tr>
<tr><td>Lists</td><td><code>- First item<br>- Second item</code></td><td> <ul><li>First item</li><li>Second item</li></ul></td></tr>
<tr><td>Syntax<br>highlighting</td><td><code>```python<br>print("Hello world")<br>```</code></td><td> <pre>print(<span style="color: red">"Hello world"</span>)</pre> </td></tr>
<tr><td>Tables</td><td><code>| A | B |<br>|---|---|<br>| 1 | 2 |<br>| 3 | 4 | </code></td><td> <table><tr><th>A</th><th>B</th></tr><tr><td>1</td><td>2</td></tr><tr><td>3</td><td>4</td></tr> </table> </td></tr>
</table>
<p>
For more information, consult <a href="https://guides.github.com/features/mastering-markdown/">GitHub's documentation</a>
or <a href="https://github.github.com/gfm/">the full specification</a>,
though please note that not all GitHub extensions are enabled on this forum.
</p>
<p>
Markdown rendering may be completely disabled from the <a href="/settings">settings page</a>.
</p>
<h2 id="avatars">Avatars</h2>
<p>
The forum will display avatars associated with users' email addresses.
If the email address is registered with <a href="http://en.gravatar.com/">Gravatar</a>, the associated avatar is shown.
Otherwise, an <a href="https://en.wikipedia.org/wiki/Identicon">Identicon</a> generated from a hash of the email address is displayed as a fallback.
</p>
<p>
To use a custom avatar on this forum,
<a href="http://en.gravatar.com/site/signup/">register an account at Gravatar</a>,
associate an email address with an image,
and use that email address when posting to this forum.
Additionally, you can create a Gravatar profile, which will be accessible by clicking on your avatar.
</p>
<h2 id="profiles">User profiles and signatures</h2>
<p>
Since messages can come from a variety of sources, this forum does not have customizable user profiles.
Instead, you can create a <a href="http://en.gravatar.com/">Gravatar</a> profile, as described in the <a href="#avatars">Avatars</a> section above.
Click a user's avatar to go to their Gravatar profile page, assuming they have created one.
</p>
<p id="signatures">
For similar reasons, this forum does not allow configuring a signature.
Signatures are not as useful in messages on the web today, and often devolve to a low signal-to-noise ratio.
Instead, you can put relevant information on your Gravatar profile, or on your website (and link to it from your Gravatar profile).
</p>
<h2 id="canonical">Canonical links</h2>
<p>
If you use the default (basic) view and would like to get a link to a particular post, please use the "Permalink" item located in the left sidebar
(by right-clicking it and selecting "Copy link location", or your browser's equivalent).
If you copy the contents of your browser's address bar, the resulting link may be excessively long, and may not work as well for users who have selected a different view mode.
A canonical link has the form <tt>https://<i>domain</i>/post/<i>message-id@goes-here</i></tt>, and does not contain <tt>/thread/</tt> or an URL fragment (<tt>#</tt> or any text following it).
</p>
<p>
To get the canonical link to a thread, just use the first post's canonical link.
If you use the "threaded" or "horizontal-split" view mode, you can simply copy the URL from your address bar.
Each post's title is also a canonical link to the post in question in any view mode.
</p>
<h2 id="drafts">Drafts</h2>
<p>
When you click "Save and preview", a draft of your message will be saved on the server.
If JavaScript is enabled, this will also occur periodically as you are typing the message.
</p>
<p>
If you accidentally close the browser tab with the message, you can restore it by opening a posting form
(by clicking "Create thread" or replying to a post).
A notice will appear before the form if there are any unsent drafts.
To discard a draft, click the "Discard draft" button at the bottom of the posting form.
</p>
<h2 id="about">About</h2>
<p>
This website is powered by DFeed, an NNTP / mailing list web frontend / forum software, news aggregator and IRC bot.
DFeed was written mostly by <a href="https://thecybershadow.net/">Vladimir Panteleev</a>.
The source code is available under the <a href="http://www.gnu.org/licenses/agpl-3.0.html">GNU Affero General Public License</a>
on GitHub: <a href="https://github.com/CyberShadow/DFeed">https://github.com/CyberShadow/DFeed</a>
</p>
<?about?>
<h2 id="contributing">Contributing</h2>
<p>
This forum software is open-source, and written in the D programming language.
Contributions are welcome. You can help improve this software by reporting bugs, giving feedback, and submitting pull requests.
Patches for fixes, improvements, documentation, unit tests, refactoring, etc. are all welcome.
</p>
<p>
To start working on DFeed, clone <a href="https://github.com/CyberShadow/DFeed">the GitHub project</a>, and check the instructions in <a href="https://github.com/CyberShadow/DFeed/blob/master/README.md">README.md</a> to get started.
</p>
================================================
FILE: site-defaults/web/help-turkish.htt
================================================
<!-- HTML -->
<h2 id="view-modes">Görünüm seçenekleri</h2>
<p>
Bu forumu farklı biçimlerde görüntüleyebilirsiniz:
<ul>
<li><b>Temel</b> - Konuların art arda sayfalar halinde listelendiği forum benzeri görünüm.</li>
<li><b>Gönderi listesi</b> - Konu gönderilerinin tek satırda gösterildiği genel görünüm.</li>
<li><b>Yatay bölünmüş</b> - Usenet programlarına benzer biçimde bölünmüş JavaScript destekli arayüz.</li>
<li><b>Dikey bölünmüş</b> - E-posta programlarına benzer biçimde üstte liste, altta ileti olan görünüm.</li>
</ul>
Görünüm, <a href="/settings">ayarlar sayfasında</a> değiştirilebilir.
</p>
<h2 id="keynav">Klavye kısayolları</h2>
<p>
Tüm görünüm seçenekleri için klavye kısayolları mevcuttur (konu ve gönderi listelerinde ve forum dizininde).
Kısayolların listesini görüntülemek için <kbd>?</kbd> tuşuna basın. (JavaScript gerektirir.)
</p>
<p>
Klavye kısayollarını <a href="/settings">ayarlar sayfasında</a> devre dışı bırakabilirsiniz.
</p>
<h2 id="read-post-history">Okuma geçmişi</h2>
<p>
Daha önce görüntülemiş olduğunuz gönderiler oturum açmışsanız sunucuya, açmamışsanız bir tarayıcı çerezine kaydedilir.
Bir konu temel görünümde görüntülendiğinde, görüntülenen tüm gönderiler "okundu" olarak işaretlenir.
Gönderiler <kbd>u</kbd> klavye kısayolu kullanılarak tekrar "okunmamış" olarak işaretlenebilir.
</p>
<p>
Bir hesap açmanız, okuma geçmişinizin çerezlerin uzunluk ve süre sınırlamaları veya yanlışlıkla silinmeleri nedeniyle kaybedilmesini önleyecektir.
</p>
<h2 id="accounts">Kullanıcı hesapları</h2>
<p>
Bu forumu okumak veya mesaj göndermek için hesap açmanıza gerek yok.
O durumda ayarlarınız ve okuma geçmişiniz bir tarayıcı çerezinde saklanır.
</p>
<p>
Bir hesap açtığınızda ise ayarlarınız ve okuma geçmişiniz sunucu tarafında saklanır.
Yeni bir hesabın açılması, tüm değişkenleri çerezlerden sunucu veritabanına aktaracaktır.
</p>
<p>
Bir hesabınızın olması, abonelikler oluşturabilmenize ve gönderilerinize verilen yanıtlar hakkında IRC veya e-posta yoluyla bilgilendirilmenize de olanak tanır.
</p>
<h2 id="email">E-posta</h2>
<p>
Mesaj gönderirken bir e-posta adresi belirtmeniz gerekmektedir. Ancak, bu adresin geçerli olması şart değildir çünkü bu forum sitesi belirtilen adrese hiçbir şey göndermez.
Belirttiğiniz e-posta adresi, mesaj gönderdiğiniz haber grubu veya e-posta listesi sunucusunun diğer kullanıcıları tarafından görülecektir.
Bu nedenle, verdiğiniz adresi kötü niyetli robotların da görebileceklerini ve bu adrese spam gönderebileceklerini unutmayın.
</p>
<p>
Belirttiğiniz e-posta adresi avatar görüntülemek için de kullanılır.
</p>
<h2 id="avatars">Avatarlar</h2>
<p>
Forum, kullanıcıların e-posta adresleriyle ilişkili avatarlar gösterir.
Kullanılan e-posta adresi <a href="http://tr.gravatar.com/">Gravatar'da</a> kayıtlıysa oradaki avatar gösterilir.
Değilse, avatar yerine e-posta adresinden otomatik olarak oluşturulmuş bir <a href="https://en.wikipedia.org/wiki/Identicon">Identicon</a> gösterilir.
</p>
<p>
Bu forumda avatar kullanmak için
<a href="http://tr.gravatar.com/site/signup/">Gravatar'da bir hesap açın,</a>
orada bir e-posta adresini bir resimle ilişkilendirin,
ve bu foruma mesaj gönderirken o e-posta adresini kullanın.
Ek olarak, avatarınıza tıklandığında erişilen bir Gravatar profili de oluşturabilirsiniz.
</p>
<h2 id="profiles">Kullanıcı profilleri ve bilgileri</h2>
<p>
Mesajlar farklı kaynaklardan gelebildiğinden bu forum kullanıcı profili içermez.
Bunun yerine, yukarıdaki <a href="http://tr.gravatar.com/">Avatarlar</a> bölümünde açıklandığı gibi bir <a href="#avatars">Gravatar</a> profili oluşturabilirsiniz.
Gravatar profili olan kullanıcıların profillerine avatarlarına tıklayarak erişebilirsiniz.
</p>
<p id="signatures">
Bu forum kullanıcı bilgilerini de benzer nedenlerden dolayı içermez.
Bunun yerine, ilgili bilgileri Gravatar profilinize veya kendi sitenize koyabilirsiniz ve Gravatar profilinizden sitenize bağlantı verebilirsiniz.
</p>
<h2 id="canonical">Kalıcı bağlantılar</h2>
<p>
Belirli bir gönderiye bağlantı almak istiyorsanız temel görünümü kullanırken sol kenar çubuğunda bulunan "Kalıcı Bağlantı"yı kullanın
(sağ tıklayıp tarayıcınızın bağlantı kopyalama olanağından yararlanarak).
Bunun yerine tarayıcınızın adres çubuğundaki bağlantıyı kopyalamak uygun olmayabilir çünkü o bağlantı aşırı derecede uzun olabildiği gibi, sizin seçmiş olduğunuzdan farklı görünüm kullanan kullanıcılar için de doğru çalışmayabilir.
Kalıcı bağlantılar <tt>https://<i>site.adresi</i>/post/<i>gönderi@kimliği</i></tt> biçimindedir ve <tt>/thread/</tt> veya URL parçası (<tt>#</tt> veya onu izleyen herhangi bir metin) içermez.
</p>
<p>
Bir konunun kalıcı bağlantısı için ilk gönderinin bağlantısını kullanmanız yeterlidir.
"Gönderi listesi" veya "Yatay bölünmüş" görünümü kullanıyorsanız adres çubuğundaki bağlantıyı kopyalayabilirsiniz.
Her gönderinin başlığı da görünüm seçeneğinden bağımsız olarak o gönderinin kalıcı bağlantısıdır.
</p>
<h2 id="drafts">Taslaklar</h2>
<p>
"Kaydet ve önizle"yi tıkladığınızda mesajınızın bir taslağı sunucuya kaydedilir.
JavaScript etkinse, bu, siz mesajı yazarken de kendiliğinden gerçekleşecektir.
</p>
<p>
Tarayıcı sekmesini henüz mesajı göndermeden yanlışlıkla kapatırsanız, mesajınızın taslağını yeni bir gönderme formu açarak
("Yeni konu aç"ı tıklayarak veya bir gönderiyi yanıtlayarak) geri yükleyebilirsiniz.
Gönderilmemiş taslak varsa, gönderme formunun üstünde bir uyarı görünecektir.
Bir taslağı silmek için kayıt formunun altındaki "Taslağı sil" düğmesini tıklayın.
</p>
<h2 id="about">About</h2>
<p>
This website is powered by DFeed, an NNTP / mailing list web frontend / forum software, news aggregator and IRC bot.
DFeed was written mostly by <a href="https://thecybershadow.net/">Vladimir Panteleev</a>.
The source code is available under the <a href="http://www.gnu.org/licenses/agpl-3.0.html">GNU Affero General Public License</a>
on GitHub: <a href="https://github.com/CyberShadow/DFeed">https://github.com/CyberShadow/DFeed</a>
</p>
<?about?>
<h2 id="contributing">Sizin katkılarınız</h2>
<p>
D programlama dilinde yazılmış olan bu forum açık kaynaklıdır.
Katkılara açığız. Bu yazılımın gelişmesine yardımcı olmak için hatalarını bildirebilir, öneri getirebilir, ve "pull request" açabilirsiniz.
Düzeltme, iyileştirme, belgeleme, birim testleri, kodun yeniden düzenlenmesi vb. her türlü yardımı kabul etmekteyiz.
</p>
<p>
DFeed üzerinde çalışmaya başlamak için <a href="https://github.com/CyberShadow/DFeed">GitHub projesini</a> klonlayın ve programı <a href="https://github.com/CyberShadow/DFeed/blob/master/README.md">README.md</a> dosyasında açıklandığı gibi kendi ortamınızda başlatın.
</p>
================================================
FILE: site-defaults/web/highlight-js/LICENSE
================================================
BSD 3-Clause License
Copyright (c) 2006, Ivan Sagalaev.
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
* Redistributions of source code must retain the above copyright notice, this
list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright notice,
this list of conditions and the following disclaimer in the documentation
and/or other materials provided with the distribution.
* Neither the name of the copyright holder nor the names of its
contributors may be used to endorse or promote products derived from
this software without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
================================================
FILE: site-defaults/web/highlight-js/highlight.pack.js
================================================
/*
Highlight.js 10.7.1 (421b23b0)
License: BSD-3-Clause
Copyright (c) 2006-2021, Ivan Sagalaev
*/
var hljs=function(){"use strict";function e(t){
return t instanceof Map?t.clear=t.delete=t.set=()=>{
throw Error("map is read-only")}:t instanceof Set&&(t.add=t.clear=t.delete=()=>{
throw Error("set is read-only")
}),Object.freeze(t),Object.getOwnPropertyNames(t).forEach((n=>{var i=t[n]
;"object"!=typeof i||Object.isFrozen(i)||e(i)})),t}var t=e,n=e;t.default=n
;class i{constructor(e){
void 0===e.data&&(e.data={}),this.data=e.data,this.isMatchIgnored=!1}
ignoreMatch(){this.isMatchIgnored=!0}}function s(e){
return e.replace(/&/g,"&").replace(/</g,"<").replace(/>/g,">").replace(/"/g,""").replace(/'/g,"'")
}function a(e,...t){const n=Object.create(null);for(const t in e)n[t]=e[t]
;return t.forEach((e=>{for(const t in e)n[t]=e[t]})),n}const r=e=>!!e.kind
;class l{constructor(e,t){
this.buffer="",this.classPrefix=t.classPrefix,e.walk(this)}addText(e){
this.buffer+=s(e)}openNode(e){if(!r(e))return;let t=e.kind
;e.sublanguage||(t=`${this.classPrefix}${t}`),this.span(t)}closeNode(e){
r(e)&&(this.buffer+="</span>")}value(){return this.buffer}span(e){
this.buffer+=`<span class="${e}">`}}class o{constructor(){this.rootNode={
children:[]},this.stack=[this.rootNode]}get top(){
return this.stack[this.stack.length-1]}get root(){return this.rootNode}add(e){
this.top.children.push(e)}openNode(e){const t={kind:e,children:[]}
;this.add(t),this.stack.push(t)}closeNode(){
if(this.stack.length>1)return this.stack.pop()}closeAllNodes(){
for(;this.closeNode(););}toJSON(){return JSON.stringify(this.rootNode,null,4)}
walk(e){return this.constructor._walk(e,this.rootNode)}static _walk(e,t){
return"string"==typeof t?e.addText(t):t.children&&(e.openNode(t),
t.children.forEach((t=>this._walk(e,t))),e.closeNode(t)),e}static _collapse(e){
"string"!=typeof e&&e.children&&(e.children.every((e=>"string"==typeof e))?e.children=[e.children.join("")]:e.children.forEach((e=>{
o._collapse(e)})))}}class c extends o{constructor(e){super(),this.options=e}
addKeyword(e,t){""!==e&&(this.openNode(t),this.addText(e),this.closeNode())}
addText(e){""!==e&&this.add(e)}addSublanguage(e,t){const n=e.root
;n.kind=t,n.sublanguage=!0,this.add(n)}toHTML(){
return new l(this,this.options).value()}finalize(){return!0}}function g(e){
return e?"string"==typeof e?e:e.source:null}
const u=/\[(?:[^\\\]]|\\.)*\]|\(\??|\\([1-9][0-9]*)|\\./,h="[a-zA-Z]\\w*",d="[a-zA-Z_]\\w*",f="\\b\\d+(\\.\\d+)?",p="(-?)(\\b0[xX][a-fA-F0-9]+|(\\b\\d+(\\.\\d*)?|\\.\\d+)([eE][-+]?\\d+)?)",m="\\b(0b[01]+)",b={
begin:"\\\\[\\s\\S]",relevance:0},E={className:"string",begin:"'",end:"'",
illegal:"\\n",contains:[b]},x={className:"string",begin:'"',end:'"',
illegal:"\\n",contains:[b]},v={
begin:/\b(a|an|the|are|I'm|isn't|don't|doesn't|won't|but|just|should|pretty|simply|enough|gonna|going|wtf|so|such|will|you|your|they|like|more)\b/
},w=(e,t,n={})=>{const i=a({className:"comment",begin:e,end:t,contains:[]},n)
;return i.contains.push(v),i.contains.push({className:"doctag",
begin:"(?:TODO|FIXME|NOTE|BUG|OPTIMIZE|HACK|XXX):",relevance:0}),i
},y=w("//","$"),N=w("/\\*","\\*/"),R=w("#","$");var _=Object.freeze({
__proto__:null,MATCH_NOTHING_RE:/\b\B/,IDENT_RE:h,UNDERSCORE_IDENT_RE:d,
NUMBER_RE:f,C_NUMBER_RE:p,BINARY_NUMBER_RE:m,
RE_STARTERS_RE:"!|!=|!==|%|%=|&|&&|&=|\\*|\\*=|\\+|\\+=|,|-|-=|/=|/|:|;|<<|<<=|<=|<|===|==|=|>>>=|>>=|>=|>>>|>>|>|\\?|\\[|\\{|\\(|\\^|\\^=|\\||\\|=|\\|\\||~",
SHEBANG:(e={})=>{const t=/^#![ ]*\//
;return e.binary&&(e.begin=((...e)=>e.map((e=>g(e))).join(""))(t,/.*\b/,e.binary,/\b.*/)),
a({className:"meta",begin:t,end:/$/,relevance:0,"on:begin":(e,t)=>{
0!==e.index&&t.ignoreMatch()}},e)},BACKSLASH_ESCAPE:b,APOS_STRING_MODE:E,
QUOTE_STRING_MODE:x,PHRASAL_WORDS_MODE:v,COMMENT:w,C_LINE_COMMENT_MODE:y,
C_BLOCK_COMMENT_MODE:N,HASH_COMMENT_MODE:R,NUMBER_MODE:{className:"number",
begin:f,relevance:0},C_NUMBER_MODE:{className:"number",begin:p,relevance:0},
BINARY_NUMBER_MODE:{className:"number",begin:m,relevance:0},CSS_NUMBER_MODE:{
className:"number",
begin:f+"(%|em|ex|ch|rem|vw|vh|vmin|vmax|cm|mm|in|pt|pc|px|deg|grad|rad|turn|s|ms|Hz|kHz|dpi|dpcm|dppx)?",
relevance:0},REGEXP_MODE:{begin:/(?=\/[^/\n]*\/)/,contains:[{className:"regexp",
begin:/\//,end:/\/[gimuy]*/,illegal:/\n/,contains:[b,{begin:/\[/,end:/\]/,
relevance:0,contains:[b]}]}]},TITLE_MODE:{className:"title",begin:h,relevance:0
},UNDERSCORE_TITLE_MODE:{className:"title",begin:d,relevance:0},METHOD_GUARD:{
begin:"\\.\\s*[a-zA-Z_]\\w*",relevance:0},END_SAME_AS_BEGIN:e=>Object.assign(e,{
"on:begin":(e,t)=>{t.data._beginMatch=e[1]},"on:end":(e,t)=>{
t.data._beginMatch!==e[1]&&t.ignoreMatch()}})});function k(e,t){
"."===e.input[e.index-1]&&t.ignoreMatch()}function M(e,t){
t&&e.beginKeywords&&(e.begin="\\b("+e.beginKeywords.split(" ").join("|")+")(?!\\.)(?=\\b|\\s)",
e.__beforeBegin=k,e.keywords=e.keywords||e.beginKeywords,delete e.beginKeywords,
void 0===e.relevance&&(e.relevance=0))}function O(e,t){
Array.isArray(e.illegal)&&(e.illegal=((...e)=>"("+e.map((e=>g(e))).join("|")+")")(...e.illegal))
}function A(e,t){if(e.match){
if(e.begin||e.end)throw Error("begin & end are not supported with match")
;e.begin=e.match,delete e.match}}function L(e,t){
void 0===e.relevance&&(e.relevance=1)}
const I=["of","and","for","in","not","or","if","then","parent","list","value"]
;function j(e,t,n="keyword"){const i={}
;return"string"==typeof e?s(n,e.split(" ")):Array.isArray(e)?s(n,e):Object.keys(e).forEach((n=>{
Object.assign(i,j(e[n],t,n))})),i;function s(e,n){
t&&(n=n.map((e=>e.toLowerCase()))),n.forEach((t=>{const n=t.split("|")
;i[n[0]]=[e,B(n[0],n[1])]}))}}function B(e,t){
return t?Number(t):(e=>I.includes(e.toLowerCase()))(e)?0:1}
function T(e,{plugins:t}){function n(t,n){
return RegExp(g(t),"m"+(e.case_insensitive?"i":"")+(n?"g":""))}class i{
constructor(){
this.matchIndexes={},this.regexes=[],this.matchAt=1,this.position=0}
addRule(e,t){
t.position=this.position++,this.matchIndexes[this.matchAt]=t,this.regexes.push([t,e]),
this.matchAt+=(e=>RegExp(e.toString()+"|").exec("").length-1)(e)+1}compile(){
0===this.regexes.length&&(this.exec=()=>null)
;const e=this.regexes.map((e=>e[1]));this.matcherRe=n(((e,t="|")=>{let n=0
;return e.map((e=>{n+=1;const t=n;let i=g(e),s="";for(;i.length>0;){
const e=u.exec(i);if(!e){s+=i;break}
s+=i.substring(0,e.index),i=i.substring(e.index+e[0].length),
"\\"===e[0][0]&&e[1]?s+="\\"+(Number(e[1])+t):(s+=e[0],"("===e[0]&&n++)}return s
})).map((e=>`(${e})`)).join(t)})(e),!0),this.lastIndex=0}exec(e){
this.matcherRe.lastIndex=this.lastIndex;const t=this.matcherRe.exec(e)
;if(!t)return null
;const n=t.findIndex(((e,t)=>t>0&&void 0!==e)),i=this.matchIndexes[n]
;return t.splice(0,n),Object.assign(t,i)}}class s{constructor(){
this.rules=[],this.multiRegexes=[],
this.count=0,this.lastIndex=0,this.regexIndex=0}getMatcher(e){
if(this.multiRegexes[e])return this.multiRegexes[e];const t=new i
;return this.rules.slice(e).forEach((([e,n])=>t.addRule(e,n))),
t.compile(),this.multiRegexes[e]=t,t}resumingScanAtSamePosition(){
return 0!==this.regexIndex}considerAll(){this.regexIndex=0}addRule(e,t){
this.rules.push([e,t]),"begin"===t.type&&this.count++}exec(e){
const t=this.getMatcher(this.regexIndex);t.lastIndex=this.lastIndex
;let n=t.exec(e)
;if(this.resumingScanAtSamePosition())if(n&&n.index===this.lastIndex);else{
const t=this.getMatcher(0);t.lastIndex=this.lastIndex+1,n=t.exec(e)}
return n&&(this.regexIndex+=n.position+1,
this.regexIndex===this.count&&this.considerAll()),n}}
if(e.compilerExtensions||(e.compilerExtensions=[]),
e.contains&&e.contains.includes("self"))throw Error("ERR: contains `self` is not supported at the top-level of a language. See documentation.")
;return e.classNameAliases=a(e.classNameAliases||{}),function t(i,r){const l=i
;if(i.isCompiled)return l
;[A].forEach((e=>e(i,r))),e.compilerExtensions.forEach((e=>e(i,r))),
i.__beforeBegin=null,[M,O,L].forEach((e=>e(i,r))),i.isCompiled=!0;let o=null
;if("object"==typeof i.keywords&&(o=i.keywords.$pattern,
delete i.keywords.$pattern),
i.keywords&&(i.keywords=j(i.keywords,e.case_insensitive)),
i.lexemes&&o)throw Error("ERR: Prefer `keywords.$pattern` to `mode.lexemes`, BOTH are not allowed. (see mode reference) ")
;return o=o||i.lexemes||/\w+/,
l.keywordPatternRe=n(o,!0),r&&(i.begin||(i.begin=/\B|\b/),
l.beginRe=n(i.begin),i.endSameAsBegin&&(i.end=i.begin),
i.end||i.endsWithParent||(i.end=/\B|\b/),
i.end&&(l.endRe=n(i.end)),l.terminatorEnd=g(i.end)||"",
i.endsWithParent&&r.terminatorEnd&&(l.terminatorEnd+=(i.end?"|":"")+r.terminatorEnd)),
i.illegal&&(l.illegalRe=n(i.illegal)),
i.contains||(i.contains=[]),i.contains=[].concat(...i.contains.map((e=>(e=>(e.variants&&!e.cachedVariants&&(e.cachedVariants=e.variants.map((t=>a(e,{
variants:null},t)))),e.cachedVariants?e.cachedVariants:S(e)?a(e,{
starts:e.starts?a(e.starts):null
}):Object.isFrozen(e)?a(e):e))("self"===e?i:e)))),i.contains.forEach((e=>{t(e,l)
})),i.starts&&t(i.starts,r),l.matcher=(e=>{const t=new s
;return e.contains.forEach((e=>t.addRule(e.begin,{rule:e,type:"begin"
}))),e.terminatorEnd&&t.addRule(e.terminatorEnd,{type:"end"
}),e.illegal&&t.addRule(e.illegal,{type:"illegal"}),t})(l),l}(e)}function S(e){
return!!e&&(e.endsWithParent||S(e.starts))}function P(e){const t={
props:["language","code","autodetect"],data:()=>({detectedLanguage:"",
unknownLanguage:!1}),computed:{className(){
return this.unknownLanguage?"":"hljs "+this.detectedLanguage},highlighted(){
if(!this.autoDetect&&!e.getLanguage(this.language))return console.warn(`The language "${this.language}" you specified could not be found.`),
this.unknownLanguage=!0,s(this.code);let t={}
;return this.autoDetect?(t=e.highlightAuto(this.code),
this.detectedLanguage=t.language):(t=e.highlight(this.language,this.code,this.ignoreIllegals),
this.detectedLanguage=this.language),t.value},autoDetect(){
return!(this.language&&(e=this.autodetect,!e&&""!==e));var e},
ignoreIllegals:()=>!0},render(e){return e("pre",{},[e("code",{
class:this.className,domProps:{innerHTML:this.highlighted}})])}};return{
Component:t,VuePlugin:{install(e){e.component("highlightjs",t)}}}}const D={
"after:highlightElement":({el:e,result:t,text:n})=>{const i=H(e)
;if(!i.length)return;const a=document.createElement("div")
;a.innerHTML=t.value,t.value=((e,t,n)=>{let i=0,a="";const r=[];function l(){
return e.length&&t.length?e[0].offset!==t[0].offset?e[0].offset<t[0].offset?e:t:"start"===t[0].event?e:t:e.length?e:t
}function o(e){a+="<"+C(e)+[].map.call(e.attributes,(function(e){
return" "+e.nodeName+'="'+s(e.value)+'"'})).join("")+">"}function c(e){
a+="</"+C(e)+">"}function g(e){("start"===e.event?o:c)(e.node)}
for(;e.length||t.length;){let t=l()
;if(a+=s(n.substring(i,t[0].offset)),i=t[0].offset,t===e){r.reverse().forEach(c)
;do{g(t.splice(0,1)[0]),t=l()}while(t===e&&t.length&&t[0].offset===i)
;r.reverse().forEach(o)
}else"start"===t[0].event?r.push(t[0].node):r.pop(),g(t.splice(0,1)[0])}
return a+s(n.substr(i))})(i,H(a),n)}};function C(e){
return e.nodeName.toLowerCase()}function H(e){const t=[];return function e(n,i){
for(let s=n.firstChild;s;s=s.nextSibling)3===s.nodeType?i+=s.nodeValue.length:1===s.nodeType&&(t.push({
event:"start",offset:i,node:s}),i=e(s,i),C(s).match(/br|hr|img|input/)||t.push({
event:"stop",offset:i,node:s}));return i}(e,0),t}const $=e=>{console.error(e)
},U=(e,...t)=>{console.log("WARN: "+e,...t)},z=(e,t)=>{
console.log(`Deprecated as of ${e}. ${t}`)},K=s,G=a,V=Symbol("nomatch")
;return(e=>{const n=Object.create(null),s=Object.create(null),a=[];let r=!0
;const l=/(^(<[^>]+>|\t|)+|\n)/gm,o="Could not find the language '{}', did you forget to load/include a language module?",g={
disableAutodetect:!0,name:"Plain text",contains:[]};let u={
noHighlightRe:/^(no-?highlight)$/i,
languageDetectRe:/\blang(?:uage)?-([\w-]+)\b/i,classPrefix:"hljs-",
tabReplace:null,useBR:!1,languages:null,__emitter:c};function h(e){
return u.noHighlightRe.test(e)}function d(e,t,n,i){let s="",a=""
;"object"==typeof t?(s=e,
n=t.ignoreIllegals,a=t.language,i=void 0):(z("10.7.0","highlight(lang, code, ...args) has been deprecated."),
z("10.7.0","Please use highlight(code, options) instead.\nhttps://github.com/highlightjs/highlight.js/issues/2277"),
a=e,s=t);const r={code:s,language:a};M("before:highlight",r)
;const l=r.result?r.result:f(r.language,r.code,n,i)
;return l.code=r.code,M("after:highlight",l),l}function f(e,t,s,l){
function c(e,t){const n=v.case_insensitive?t[0].toLowerCase():t[0]
;return Object.prototype.hasOwnProperty.call(e.keywords,n)&&e.keywords[n]}
function g(){null!=R.subLanguage?(()=>{if(""===M)return;let e=null
;if("string"==typeof R.subLanguage){
if(!n[R.subLanguage])return void k.addText(M)
;e=f(R.subLanguage,M,!0,_[R.subLanguage]),_[R.subLanguage]=e.top
}else e=p(M,R.subLanguage.length?R.subLanguage:null)
;R.relevance>0&&(O+=e.relevance),k.addSublanguage(e.emitter,e.language)
})():(()=>{if(!R.keywords)return void k.addText(M);let e=0
;R.keywordPatternRe.lastIndex=0;let t=R.keywordPatternRe.exec(M),n="";for(;t;){
n+=M.substring(e,t.index);const i=c(R,t);if(i){const[e,s]=i
;if(k.addText(n),n="",O+=s,e.startsWith("_"))n+=t[0];else{
const n=v.classNameAliases[e]||e;k.addKeyword(t[0],n)}}else n+=t[0]
;e=R.keywordPatternRe.lastIndex,t=R.keywordPatternRe.exec(M)}
n+=M.substr(e),k.addText(n)})(),M=""}function h(e){
return e.className&&k.openNode(v.classNameAliases[e.className]||e.className),
R=Object.create(e,{parent:{value:R}}),R}function d(e,t,n){let s=((e,t)=>{
const n=e&&e.exec(t);return n&&0===n.index})(e.endRe,n);if(s){if(e["on:end"]){
const n=new i(e);e["on:end"](t,n),n.isMatchIgnored&&(s=!1)}if(s){
for(;e.endsParent&&e.parent;)e=e.parent;return e}}
if(e.endsWithParent)return d(e.parent,t,n)}function m(e){
return 0===R.matcher.regexIndex?(M+=e[0],1):(I=!0,0)}function b(e){
const n=e[0],i=t.substr(e.index),s=d(R,e,i);if(!s)return V;const a=R
;a.skip?M+=n:(a.returnEnd||a.excludeEnd||(M+=n),g(),a.excludeEnd&&(M=n));do{
R.className&&k.closeNode(),R.skip||R.subLanguage||(O+=R.relevance),R=R.parent
}while(R!==s.parent)
;return s.starts&&(s.endSameAsBegin&&(s.starts.endRe=s.endRe),
h(s.starts)),a.returnEnd?0:n.length}let E={};function x(n,a){const l=a&&a[0]
;if(M+=n,null==l)return g(),0
;if("begin"===E.type&&"end"===a.type&&E.index===a.index&&""===l){
if(M+=t.slice(a.index,a.index+1),!r){const t=Error("0 width match regex")
;throw t.languageName=e,t.badRule=E.rule,t}return 1}
if(E=a,"begin"===a.type)return function(e){
const t=e[0],n=e.rule,s=new i(n),a=[n.__beforeBegin,n["on:begin"]]
;for(const n of a)if(n&&(n(e,s),s.isMatchIgnored))return m(t)
;return n&&n.endSameAsBegin&&(n.endRe=RegExp(t.replace(/[-/\\^$*+?.()|[\]{}]/g,"\\$&"),"m")),
n.skip?M+=t:(n.excludeBegin&&(M+=t),
g(),n.returnBegin||n.excludeBegin||(M=t)),h(n),n.returnBegin?0:t.length}(a)
;if("illegal"===a.type&&!s){
const e=Error('Illegal lexeme "'+l+'" for mode "'+(R.className||"<unnamed>")+'"')
;throw e.mode=R,e}if("end"===a.type){const e=b(a);if(e!==V)return e}
if("illegal"===a.type&&""===l)return 1
;if(L>1e5&&L>3*a.index)throw Error("potential infinite loop, way more iterations than matches")
;return M+=l,l.length}const v=N(e)
;if(!v)throw $(o.replace("{}",e)),Error('Unknown language: "'+e+'"')
;const w=T(v,{plugins:a});let y="",R=l||w;const _={},k=new u.__emitter(u);(()=>{
const e=[];for(let t=R;t!==v;t=t.parent)t.className&&e.unshift(t.className)
;e.forEach((e=>k.openNode(e)))})();let M="",O=0,A=0,L=0,I=!1;try{
for(R.matcher.considerAll();;){
L++,I?I=!1:R.matcher.considerAll(),R.matcher.lastIndex=A
;const e=R.matcher.exec(t);if(!e)break;const n=x(t.substring(A,e.index),e)
;A=e.index+n}return x(t.substr(A)),k.closeAllNodes(),k.finalize(),y=k.toHTML(),{
relevance:Math.floor(O),value:y,language:e,illegal:!1,emitter:k,top:R}}catch(n){
if(n.message&&n.message.includes("Illegal"))return{illegal:!0,illegalBy:{
msg:n.message,context:t.slice(A-100,A+100),mode:n.mode},sofar:y,relevance:0,
value:K(t),emitter:k};if(r)return{illegal:!1,relevance:0,value:K(t),emitter:k,
language:e,top:R,errorRaised:n};throw n}}function p(e,t){
t=t||u.languages||Object.keys(n);const i=(e=>{const t={relevance:0,
emitter:new u.__emitter(u),value:K(e),illegal:!1,top:g}
;return t.emitter.addText(e),t})(e),s=t.filter(N).filter(k).map((t=>f(t,e,!1)))
;s.unshift(i);const a=s.sort(((e,t)=>{
if(e.relevance!==t.relevance)return t.relevance-e.relevance
;if(e.language&&t.language){if(N(e.language).supersetOf===t.language)return 1
;if(N(t.language).supersetOf===e.language)return-1}return 0})),[r,l]=a,o=r
;return o.second_best=l,o}const m={"before:highlightElement":({el:e})=>{
u.useBR&&(e.innerHTML=e.innerHTML.replace(/\n/g,"").replace(/<br[ /]*>/g,"\n"))
},"after:highlightElement":({result:e})=>{
u.useBR&&(e.value=e.value.replace(/\n/g,"<br>"))}},b=/^(<[^>]+>|\t)+/gm,E={
"after:highlightElement":({result:e})=>{
u.tabReplace&&(e.value=e.value.replace(b,(e=>e.replace(/\t/g,u.tabReplace))))}}
;function x(e){let t=null;const n=(e=>{let t=e.className+" "
;t+=e.parentNode?e.parentNode.className:"";const n=u.languageDetectRe.exec(t)
;if(n){const t=N(n[1])
;return t||(U(o.replace("{}",n[1])),U("Falling back to no-highlight mode for this block.",e)),
t?n[1]:"no-highlight"}return t.split(/\s+/).find((e=>h(e)||N(e)))})(e)
;if(h(n))return;M("before:highlightElement",{el:e,language:n}),t=e
;const i=t.textContent,a=n?d(i,{language:n,ignoreIllegals:!0}):p(i)
;M("after:highlightElement",{el:e,result:a,text:i
}),e.innerHTML=a.value,((e,t,n)=>{const i=t?s[t]:n
;e.classList.add("hljs"),i&&e.classList.add(i)})(e,n,a.language),e.result={
language:a.language,re:a.relevance,relavance:a.relevance
},a.second_best&&(e.second_best={language:a.second_best.language,
re:a.second_best.relevance,relavance:a.second_best.relevance})}const v=()=>{
v.called||(v.called=!0,
z("10.6.0","initHighlighting() is deprecated. Use highlightAll() instead."),
document.querySelectorAll("pre code").forEach(x))};let w=!1;function y(){
"loading"!==document.readyState?document.querySelectorAll("pre code").forEach(x):w=!0
}function N(e){return e=(e||"").toLowerCase(),n[e]||n[s[e]]}
function R(e,{languageName:t}){"string"==typeof e&&(e=[e]),e.forEach((e=>{
s[e.toLowerCase()]=t}))}function k(e){const t=N(e)
;return t&&!t.disableAutodetect}function M(e,t){const n=e;a.forEach((e=>{
e[n]&&e[n](t)}))}
"undefined"!=typeof window&&window.addEventListener&&window.addEventListener("DOMContentLoaded",(()=>{
w&&y()}),!1),Object.assign(e,{highlight:d,highlightAuto:p,highlightAll:y,
fixMarkup:e=>{
return z("10.2.0","fixMarkup will be removed entirely in v11.0"),z("10.2.0","Please see https://github.com/highlightjs/highlight.js/issues/2534"),
t=e,
u.tabReplace||u.useBR?t.replace(l,(e=>"\n"===e?u.useBR?"<br>":e:u.tabReplace?e.replace(/\t/g,u.tabReplace):e)):t
;var t},highlightElement:x,
highlightBlock:e=>(z("10.7.0","highlightBlock will be removed entirely in v12.0"),
z("10.7.0","Please use highlightElement now."),x(e)),configure:e=>{
e.useBR&&(z("10.3.0","'useBR' will be removed entirely in v11.0"),
z("10.3.0","Please see https://github.com/highlightjs/highlight.js/issues/2559")),
u=G(u,e)},initHighlighting:v,initHighlightingOnLoad:()=>{
z("10.6.0","initHighlightingOnLoad() is deprecated. Use highlightAll() instead."),
w=!0},registerLanguage:(t,i)=>{let s=null;try{s=i(e)}catch(e){
if($("Language definition for '{}' could not be registered.".replace("{}",t)),
!r)throw e;$(e),s=g}
s.name||(s.name=t),n[t]=s,s.rawDefinition=i.bind(null,e),s.aliases&&R(s.aliases,{
languageName:t})},unregisterLanguage:e=>{delete n[e]
;for(const t of Object.keys(s))s[t]===e&&delete s[t]},
listLanguages:()=>Object.keys(n),getLanguage:N,registerAliases:R,
requireLanguage:e=>{
z("10.4.0","requireLanguage will be removed entirely in v11."),
z("10.4.0","Please see https://github.com/highlightjs/highlight.js/pull/2844")
;const t=N(e);if(t)return t
;throw Error("The '{}' language is required, but not loaded.".replace("{}",e))},
autoDetection:k,inherit:G,addPlugin:e=>{(e=>{
e["before:highlightBlock"]&&!e["before:highlightElement"]&&(e["before:highlightElement"]=t=>{
e["before:highlightBlock"](Object.assign({block:t.el},t))
}),e["after:highlightBlock"]&&!e["after:highlightElement"]&&(e["after:highlightElement"]=t=>{
e["after:highlightBlock"](Object.assign({block:t.el},t))})})(e),a.push(e)},
vuePlugin:P(e).VuePlugin}),e.debugMode=()=>{r=!1},e.safeMode=()=>{r=!0
},e.versionString="10.7.1";for(const e in _)"object"==typeof _[e]&&t(_[e])
;return Object.assign(e,_),e.addPlugin(m),e.addPlugin(D),e.addPlugin(E),e})({})
}();"object"==typeof exports&&"undefined"!=typeof module&&(module.exports=hljs);hljs.registerLanguage("java",(()=>{"use strict"
;var e="\\.([0-9](_*[0-9])*)",n="[0-9a-fA-F](_*[0-9a-fA-F])*",a={
className:"number",variants:[{
begin:`(\\b([0-9](_*[0-9])*)((${e})|\\.)?|(${e}))[eE][+-]?([0-9](_*[0-9])*)[fFdD]?\\b`
},{begin:`\\b([0-9](_*[0-9])*)((${e})[fFdD]?\\b|\\.([fFdD]\\b)?)`},{
begin:`(${e})[fFdD]?\\b`},{begin:"\\b([0-9](_*[0-9])*)[fFdD]\\b"},{
begin:`\\b0[xX]((${n})\\.?|(${n})?\\.(${n}))[pP][+-]?([0-9](_*[0-9])*)[fFdD]?\\b`
},{begin:"\\b(0|[1-9](_*[0-9])*)[lL]?\\b"},{begin:`\\b0[xX](${n})[lL]?\\b`},{
begin:"\\b0(_*[0-7])*[lL]?\\b"},{begin:"\\b0[bB][01](_*[01])*[lL]?\\b"}],
relevance:0};return e=>{
var n="false synchronized int abstract float private char boolean var static null if const for true while long strictfp finally protected import native final void enum else break transient catch instanceof byte super volatile case assert short package default double public try this switch continue throws protected public private module requires exports do",s={
className:"meta",begin:"@[\xc0-\u02b8a-zA-Z_$][\xc0-\u02b8a-zA-Z_$0-9]*",
contains:[{begin:/\(/,end:/\)/,contains:["self"]}]};const r=a;return{
name:"Java",aliases:["jsp"],keywords:n,illegal:/<\/|#/,
contains:[e.COMMENT("/\\*\\*","\\*/",{relevance:0,contains:[{begin:/\w+@/,
relevance:0},{className:"doctag",begin:"@[A-Za-z]+"}]}),{
begin:/import java\.[a-z]+\./,keywords:"import",relevance:2
},e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE,e.APOS_STRING_MODE,e.QUOTE_STRING_MODE,{
className:"class",beginKeywords:"class interface enum",end:/[{;=]/,
excludeEnd:!0,relevance:1,keywords:"class interface enum",illegal:/[:"\[\]]/,
contains:[{beginKeywords:"extends implements"},e.UNDERSCORE_TITLE_MODE]},{
beginKeywords:"new throw return else",relevance:0},{className:"class",
begin:"record\\s+"+e.UNDERSCORE_IDENT_RE+"\\s*\\(",returnBegin:!0,excludeEnd:!0,
end:/[{;=]/,keywords:n,contains:[{beginKeywords:"record"},{
begin:e.UNDERSCORE_IDENT_RE+"\\s*\\(",returnBegin:!0,relevance:0,
contains:[e.UNDERSCORE_TITLE_MODE]},{className:"params",begin:/\(/,end:/\)/,
keywords:n,relevance:0,contains:[e.C_BLOCK_COMMENT_MODE]
},e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE]},{className:"function",
begin:"([\xc0-\u02b8a-zA-Z_$][\xc0-\u02b8a-zA-Z_$0-9]*(<[\xc0-\u02b8a-zA-Z_$][\xc0-\u02b8a-zA-Z_$0-9]*(\\s*,\\s*[\xc0-\u02b8a-zA-Z_$][\xc0-\u02b8a-zA-Z_$0-9]*)*>)?\\s+)+"+e.UNDERSCORE_IDENT_RE+"\\s*\\(",
returnBegin:!0,end:/[{;=]/,excludeEnd:!0,keywords:n,contains:[{
begin:e.UNDERSCORE_IDENT_RE+"\\s*\\(",returnBegin:!0,relevance:0,
contains:[e.UNDERSCORE_TITLE_MODE]},{className:"params",begin:/\(/,end:/\)/,
keywords:n,relevance:0,
contains:[s,e.APOS_STRING_MODE,e.QUOTE_STRING_MODE,r,e.C_BLOCK_COMMENT_MODE]
},e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE]},r,s]}}})());hljs.registerLanguage("plaintext",(()=>{"use strict";return t=>({
name:"Plain text",aliases:["text","txt"],disableAutodetect:!0})})());hljs.registerLanguage("bash",(()=>{"use strict";function e(...e){
return e.map((e=>{return(s=e)?"string"==typeof s?s:s.source:null;var s
})).join("")}return s=>{const n={},t={begin:/\$\{/,end:/\}/,contains:["self",{
begin:/:-/,contains:[n]}]};Object.assign(n,{className:"variable",variants:[{
begin:e(/\$[\w\d#@][\w\d_]*/,"(?![\\w\\d])(?![$])")},t]});const a={
className:"subst",begin:/\$\(/,end:/\)/,contains:[s.BACKSLASH_ESCAPE]},i={
begin:/<<-?\s*(?=\w+)/,starts:{contains:[s.END_SAME_AS_BEGIN({begin:/(\w+)/,
end:/(\w+)/,className:"string"})]}},c={className:"string",begin:/"/,end:/"/,
contains:[s.BACKSLASH_ESCAPE,n,a]};a.contains.push(c);const o={begin:/\$\(\(/,
end:/\)\)/,contains:[{begin:/\d+#[0-9a-f]+/,className:"number"},s.NUMBER_MODE,n]
},r=s.SHEBANG({binary:"(fish|bash|zsh|sh|csh|ksh|tcsh|dash|scsh)",relevance:10
}),l={className:"function",begin:/\w[\w\d_]*\s*\(\s*\)\s*\{/,returnBegin:!0,
contains:[s.inherit(s.TITLE_MODE,{begin:/\w[\w\d_]*/})],relevance:0};return{
name:"Bash",aliases:["sh","zsh"],keywords:{$pattern:/\b[a-z._-]+\b/,
keyword:"if then else elif fi for while in do done case esac function",
literal:"true false",
built_in:"break cd continue eval exec exit export getopts hash pwd readonly return shift test times trap umask unset alias bind builtin caller command declare echo enable help let local logout mapfile printf read readarray source type typeset ulimit unalias set shopt autoload bg bindkey bye cap chdir clone comparguments compcall compctl compdescribe compfiles compgroups compquote comptags comptry compvalues dirs disable disown echotc echoti emulate fc fg float functions getcap getln history integer jobs kill limit log noglob popd print pushd pushln rehash sched setcap setopt stat suspend ttyctl unfunction unhash unlimit unsetopt vared wait whence where which zcompile zformat zftp zle zmodload zparseopts zprof zpty zregexparse zsocket zstyle ztcp"
},contains:[r,s.SHEBANG(),l,o,s.HASH_COMMENT_MODE,i,c,{className:"",begin:/\\"/
},{className:"string",begin:/'/,end:/'/},n]}}})());hljs.registerLanguage("shell",(()=>{"use strict";return s=>({
name:"Shell Session",aliases:["console"],contains:[{className:"meta",
begin:/^\s{0,3}[/~\w\d[\]()@-]*[>%$#]/,starts:{end:/[^\\](?=\s*$)/,
subLanguage:"bash"}}]})})());hljs.registerLanguage("properties",(()=>{"use strict";return e=>{
var n="[ \\t\\f]*",a=n+"[:=]"+n,t="("+a+"|[ \\t\\f]+)",r="([^\\\\\\W:= \\t\\f\\n]|\\\\.)+",s="([^\\\\:= \\t\\f\\n]|\\\\.)+",i={
end:t,relevance:0,starts:{className:"string",end:/$/,relevance:0,contains:[{
begin:"\\\\\\\\"},{begin:"\\\\\\n"}]}};return{name:".properties",
case_insensitive:!0,illegal:/\S/,contains:[e.COMMENT("^\\s*[!#]","$"),{
returnBegin:!0,variants:[{begin:r+a,relevance:1},{begin:r+"[ \\t\\f]+",
relevance:0}],contains:[{className:"attr",begin:r,endsParent:!0,relevance:0}],
starts:i},{begin:s+t,returnBegin:!0,relevance:0,contains:[{className:"meta",
begin:s,endsParent:!0,relevance:0}],starts:i},{className:"attr",relevance:0,
begin:s+n+"$"}]}}})());hljs.registerLanguage("sql",(()=>{"use strict";function e(e){
return e?"string"==typeof e?e:e.source:null}function r(...r){
return r.map((r=>e(r))).join("")}function t(...r){
return"("+r.map((r=>e(r))).join("|")+")"}return e=>{
const n=e.COMMENT("--","$"),a=["true","false","unknown"],i=["bigint","binary","blob","boolean","char","character","clob","date","dec","decfloat","decimal","float","int","integer","interval","nchar","nclob","national","numeric","real","row","smallint","time","timestamp","varchar","varying","varbinary"],s=["abs","acos","array_agg","asin","atan","avg","cast","ceil","ceiling","coalesce","corr","cos","cosh","count","covar_pop","covar_samp","cume_dist","dense_rank","deref","element","exp","extract","first_value","floor","json_array","json_arrayagg","json_exists","json_object","json_objectagg","json_query","json_table","json_table_primitive","json_value","lag","last_value","lead","listagg","ln","log","log10","lower","max","min","mod","nth_value","ntile","nullif","percent_rank","percentile_cont","percentile_disc","position","position_regex","power","rank","regr_avgx","regr_avgy","regr_count","regr_intercept","regr_r2","regr_slope","regr_sxx","regr_sxy","regr_syy","row_number","sin","sinh","sqrt","stddev_pop","stddev_samp","substring","substring_regex","sum","tan","tanh","translate","translate_regex","treat","trim","trim_array","unnest","upper","value_of","var_pop","var_samp","width_bucket"],o=["create table","insert into","primary key","foreign key","not null","alter table","add constraint","grouping sets","on overflow","character set","respect nulls","ignore nulls","nulls first","nulls last","depth first","breadth first"],c=s,l=["abs","acos","all","allocate","alter","and","any","are","array","array_agg","array_max_cardinality","as","asensitive","asin","asymmetric","at","atan","atomic","authorization","avg","begin","begin_frame","begin_partition","between","bigint","binary","blob","boolean","both","by","call","called","cardinality","cascaded","case","cast","ceil","ceiling","char","char_length","character","character_length","check","classifier","clob","close","coalesce","collate","collect","column","commit","condition","connect","constraint","contains","convert","copy","corr","corresponding","cos","cosh","count","covar_pop","covar_samp","create","cross","cube","cume_dist","current","current_catalog","current_date","current_default_transform_group","current_path","current_role","current_row","current_schema","current_time","current_timestamp","current_path","current_role","current_transform_group_for_type","current_user","cursor","cycle","date","day","deallocate","dec","decimal","decfloat","declare","default","define","delete","dense_rank","deref","describe","deterministic","disconnect","distinct","double","drop","dynamic","each","element","else","empty","end","end_frame","end_partition","end-exec","equals","escape","every","except","exec","execute","exists","exp","external","extract","false","fetch","filter","first_value","float","floor","for","foreign","frame_row","free","from","full","function","fusion","get","global","grant","group","grouping","groups","having","hold","hour","identity","in","indicator","initial","inner","inout","insensitive","insert","int","integer","intersect","intersection","interval","into","is","join","json_array","json_arrayagg","json_exists","json_object","json_objectagg","json_query","json_table","json_table_primitive","json_value","lag","language","large","last_value","lateral","lead","leading","left","like","like_regex","listagg","ln","local","localtime","localtimestamp","log","log10","lower","match","match_number","match_recognize","matches","max","member","merge","method","min","minute","mod","modifies","module","month","multiset","national","natural","nchar","nclob","new","no","none","normalize","not","nth_value","ntile","null","nullif","numeric","octet_length","occurrences_regex","of","offset","old","omit","on","one","only","open","or","order","out","outer","over","overlaps","overlay","parameter","partition","pattern","per","percent","percent_rank","percentile_cont","percentile_disc","period","portion","position","position_regex","power","precedes","precision","prepare","primary","procedure","ptf","range","rank","reads","real","recursive","ref","references","referencing","regr_avgx","regr_avgy","regr_count","regr_intercept","regr_r2","regr_slope","regr_sxx","regr_sxy","regr_syy","release","result","return","returns","revoke","right","rollback","rollup","row","row_number","rows","running","savepoint","scope","scroll","search","second","seek","select","sensitive","session_user","set","show","similar","sin","sinh","skip","smallint","some","specific","specifictype","sql","sqlexception","sqlstate","sqlwarning","sqrt","start","static","stddev_pop","stddev_samp","submultiset","subset","substring","substring_regex","succeeds","sum","symmetric","system","system_time","system_user","table","tablesample","tan","tanh","then","time","timestamp","timezone_hour","timezone_minute","to","trailing","translate","translate_regex","translation","treat","trigger","trim","trim_array","true","truncate","uescape","union","unique","unknown","unnest","update ","upper","user","using","value","values","value_of","var_pop","var_samp","varbinary","varchar","varying","versioning","when","whenever","where","width_bucket","window","with","within","without","year","add","asc","collation","desc","final","first","last","view"].filter((e=>!s.includes(e))),u={
begin:r(/\b/,t(...c),/\s*\(/),keywords:{built_in:c}};return{name:"SQL",
case_insensitive:!0,illegal:/[{}]|<\//,keywords:{$pattern:/\b[\w\.]+/,
keyword:((e,{exceptions:r,when:t}={})=>{const n=t
;return r=r||[],e.map((e=>e.match(/\|\d+$/)||r.includes(e)?e:n(e)?e+"|0":e))
})(l,{when:e=>e.length<3}),literal:a,type:i,
built_in:["current_catalog","current_date","current_default_transform_group","current_path","current_role","current_schema","current_transform_group_for_type","current_user","session_user","system_time","system_user","current_time","localtime","current_timestamp","localtimestamp"]
},contains:[{begin:t(...o),keywords:{$pattern:/[\w\.]+/,keyword:l.concat(o),
literal:a,type:i}},{className:"type",
begin:t("double precision","large object","with timezone","without timezone")
},u,{className:"variable",begin:/@[a-z0-9]+/},{className:"string",variants:[{
begin:/'/,end:/'/,contains:[{begin:/''/}]}]},{begin:/"/,end:/"/,contains:[{
begin:/""/}]},e.C_NUMBER_MODE,e.C_BLOCK_COMMENT_MODE,n,{className:"operator",
begin:/[-+*/=%^~]|&&?|\|\|?|!=?|<(?:=>?|<|>)?|>[>=]?/,relevance:0}]}}})());hljs.registerLanguage("perl",(()=>{"use strict";function e(e){
return e?"string"==typeof e?e:e.source:null}function n(...n){
return n.map((n=>e(n))).join("")}function t(...n){
return"("+n.map((n=>e(n))).join("|")+")"}return e=>{
const r=/[dualxmsipngr]{0,12}/,s={$pattern:/[\w.]+/,
keyword:"abs accept alarm and atan2 bind binmode bless break caller chdir chmod chomp chop chown chr chroot close closedir connect continue cos crypt dbmclose dbmopen defined delete die do dump each else elsif endgrent endhostent endnetent endprotoent endpwent endservent eof eval exec exists exit exp fcntl fileno flock for foreach fork format formline getc getgrent getgrgid getgrnam gethostbyaddr gethostbyname gethostent getlogin getnetbyaddr getnetbyname getnetent getpeername getpgrp getpriority getprotobyname getprotobynumber getprotoent getpwent getpwnam getpwuid getservbyname getservbyport getservent getsockname getsockopt given glob gmtime goto grep gt hex if index int ioctl join keys kill last lc lcfirst length link listen local localtime log lstat lt ma map mkdir msgctl msgget msgrcv msgsnd my ne next no not oct open opendir or ord our pack package pipe pop pos print printf prototype push q|0 qq quotemeta qw qx rand read readdir readline readlink readpipe recv redo ref rename require reset return reverse rewinddir rindex rmdir say scalar seek seekdir select semctl semget semop send setgrent sethostent setnetent setpgrp setpriority setprotoent setpwent setservent setsockopt shift shmctl shmget shmread shmwrite shutdown sin sleep socket socketpair sort splice split sprintf sqrt srand stat state study sub substr symlink syscall sysopen sysread sysseek system syswrite tell telldir tie tied time times tr truncate uc ucfirst umask undef unless unlink unpack unshift untie until use utime values vec wait waitpid wantarray warn when while write x|0 xor y|0"
},i={className:"subst",begin:"[$@]\\{",end:"\\}",keywords:s},a={begin:/->\{/,
end:/\}/},o={variants:[{begin:/\$\d/},{
begin:n(/[$%@](\^\w\b|#\w+(::\w+)*|\{\w+\}|\w+(::\w*)*)/,"(?![A-Za-z])(?![@$%])")
},{begin:/[$%@][^\s\w{]/,relevance:0}]
},c=[e.BACKSLASH_ESCAPE,i,o],g=[/!/,/\//,/\|/,/\?/,/'/,/"/,/#/],l=(e,t,s="\\1")=>{
const i="\\1"===s?s:n(s,t)
;return n(n("(?:",e,")"),t,/(?:\\.|[^\\\/])*?/,i,/(?:\\.|[^\\\/])*?/,s,r)
},d=(e,t,s)=>n(n("(?:",e,")"),t,/(?:\\.|[^\\\/])*?/,s,r),p=[o,e.HASH_COMMENT_MODE,e.COMMENT(/^=\w/,/=cut/,{
endsWithParent:!0}),a,{className:"string",contains:c,variants:[{
begin:"q[qwxr]?\\s*\\(",end:"\\)",relevance:5},{begin:"q[qwxr]?\\s*\\[",
end:"\\]",relevance:5},{begin:"q[qwxr]?\\s*\\{",end:"\\}",relevance:5},{
begin:"q[qwxr]?\\s*\\|",end:"\\|",relevance:5},{begin:"q[qwxr]?\\s*<",end:">",
relevance:5},{begin:"qw\\s+q",end:"q",relevance:5},{begin:"'",end:"'",
contains:[e.BACKSLASH_ESCAPE]},{begin:'"',end:'"'},{begin:"`",end:"`",
contains:[e.BACKSLASH_ESCAPE]},{begin:/\{\w+\}/,relevance:0},{
begin:"-?\\w+\\s*=>",relevance:0}]},{className:"number",
begin:"(\\b0[0-7_]+)|(\\b0x[0-9a-fA-F_]+)|(\\b[1-9][0-9_]*(\\.[0-9_]+)?)|[0_]\\b",
relevance:0},{
begin:"(\\/\\/|"+e.RE_STARTERS_RE+"|\\b(split|return|print|reverse|grep)\\b)\\s*",
keywords:"split return print reverse grep",relevance:0,
contains:[e.HASH_COMMENT_MODE,{className:"regexp",variants:[{
begin:l("s|tr|y",t(...g))},{begin:l("s|tr|y","\\(","\\)")},{
begin:l("s|tr|y","\\[","\\]")},{begin:l("s|tr|y","\\{","\\}")}],relevance:2},{
className:"regexp",variants:[{begin:/(m|qr)\/\//,relevance:0},{
begin:d("(?:m|qr)?",/\//,/\//)},{begin:d("m|qr",t(...g),/\1/)},{
begin:d("m|qr",/\(/,/\)/)},{begin:d("m|qr",/\[/,/\]/)},{
begin:d("m|qr",/\{/,/\}/)}]}]},{className:"function",beginKeywords:"sub",
end:"(\\s*\\(.*?\\))?[;{]",excludeEnd:!0,relevance:5,contains:[e.TITLE_MODE]},{
begin:"-\\w\\b",relevance:0},{begin:"^__DATA__$",end:"^__END__$",
subLanguage:"mojolicious",contains:[{begin:"^@@.*",end:"$",className:"comment"}]
}];return i.contains=p,a.contains=p,{name:"Perl",aliases:["pl","pm"],keywords:s,
contains:p}}})());hljs.registerLanguage("csharp",(()=>{"use strict";return e=>{const n={
keyword:["abstract","as","base","break","case","class","const","continue","do","else","event","explicit","extern","finally","fixed","for","foreach","goto","if","implicit","in","interface","internal","is","lock","namespace","new","operator","out","override","params","private","protected","public","readonly","record","ref","return","sealed","sizeof","stackalloc","static","struct","switch","this","throw","try","typeof","unchecked","unsafe","using","virtual","void","volatile","while"].concat(["add","alias","and","ascending","async","await","by","descending","equals","from","get","global","group","init","into","join","let","nameof","not","notnull","on","or","orderby","partial","remove","select","set","unmanaged","value|0","var","when","where","with","yield"]),
built_in:["bool","byte","char","decimal","delegate","double","dynamic","enum","float","int","long","nint","nuint","object","sbyte","short","string","ulong","uint","ushort"],
literal:["default","false","null","true"]},a=e.inherit(e.TITLE_MODE,{
begin:"[a-zA-Z](\\.?\\w)*"}),i={className:"number",variants:[{
begin:"\\b(0b[01']+)"},{
begin:"(-?)\\b([\\d']+(\\.[\\d']*)?|\\.[\\d']+)(u|U|l|L|ul|UL|f|F|b|B)"},{
begin:"(-?)(\\b0[xX][a-fA-F0-9']+|(\\b[\\d']+(\\.[\\d']*)?|\\.[\\d']+)([eE][-+]?[\\d']+)?)"
}],relevance:0},s={className:"string",begin:'@"',end:'"',contains:[{begin:'""'}]
},t=e.inherit(s,{illegal:/\n/}),r={className:"subst",begin:/\{/,end:/\}/,
keywords:n},l=e.inherit(r,{illegal:/\n/}),c={className:"string",begin:/\$"/,
end:'"',illegal:/\n/,contains:[{begin:/\{\{/},{begin:/\}\}/
},e.BACKSLASH_ESCAPE,l]},o={className:"string",begin:/\$@"/,end:'"',contains:[{
begin:/\{\{/},{begin:/\}\}/},{begin:'""'},r]},d=e.inherit(o,{illegal:/\n/,
contains:[{begin:/\{\{/},{begin:/\}\}/},{begin:'""'},l]})
;r.contains=[o,c,s,e.APOS_STRING_MODE,e.QUOTE_STRING_MODE,i,e.C_BLOCK_COMMENT_MODE],
l.contains=[d,c,t,e.APOS_STRING_MODE,e.QUOTE_STRING_MODE,i,e.inherit(e.C_BLOCK_COMMENT_MODE,{
illegal:/\n/})];const g={variants:[o,c,s,e.APOS_STRING_MODE,e.QUOTE_STRING_MODE]
},E={begin:"<",end:">",contains:[{beginKeywords:"in out"},a]
},_=e.IDENT_RE+"(<"+e.IDENT_RE+"(\\s*,\\s*"+e.IDENT_RE+")*>)?(\\[\\])?",b={
begin:"@"+e.IDENT_RE,relevance:0};return{name:"C#",aliases:["cs","c#"],
keywords:n,illegal:/::/,contains:[e.COMMENT("///","$",{returnBegin:!0,
contains:[{className:"doctag",variants:[{begin:"///",relevance:0},{
begin:"\x3c!--|--\x3e"},{begin:"</?",end:">"}]}]
}),e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE,{className:"meta",begin:"#",
end:"$",keywords:{
"meta-keyword":"if else elif endif define undef warning error line region endregion pragma checksum"
}},g,i,{beginKeywords:"class interface",relevance:0,end:/[{;=]/,
illegal:/[^\s:,]/,contains:[{beginKeywords:"where class"
},a,E,e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE]},{beginKeywords:"namespace",
relevance:0,end:/[{;=]/,illegal:/[^\s:]/,
contains:[a,e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE]},{
beginKeywords:"record",relevance:0,end:/[{;=]/,illegal:/[^\s:]/,
contains:[a,E,e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE]},{className:"meta",
begin:"^\\s*\\[",excludeBegin:!0,end:"\\]",excludeEnd:!0,contains:[{
className:"meta-string",begin:/"/,end:/"/}]},{
beginKeywords:"new return throw await else",relevance:0},{className:"function",
begin:"("+_+"\\s+)+"+e.IDENT_RE+"\\s*(<.+>\\s*)?\\(",returnBegin:!0,
end:/\s*[{;=]/,excludeEnd:!0,keywords:n,contains:[{
beginKeywords:"public private protected static internal protected abstract async extern override unsafe virtual new sealed partial",
relevance:0},{begin:e.IDENT_RE+"\\s*(<.+>\\s*)?\\(",returnBegin:!0,
contains:[e.TITLE_MODE,E],relevance:0},{className:"params",begin:/\(/,end:/\)/,
excludeBegin:!0,excludeEnd:!0,keywords:n,relevance:0,
contains:[g,i,e.C_BLOCK_COMMENT_MODE]
},e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE]},b]}}})());hljs.registerLanguage("nginx",(()=>{"use strict";return e=>{const n={
className:"variable",variants:[{begin:/\$\d+/},{begin:/\$\{/,end:/\}/},{
begin:/[$@]/+e.UNDERSCORE_IDENT_RE}]},a={endsWithParent:!0,keywords:{
$pattern:"[a-z/_]+",
literal:"on off yes no true false none blocked debug info notice warn error crit select break last permanent redirect kqueue rtsig epoll poll /dev/poll"
},relevance:0,illegal:"=>",contains:[e.HASH_COMMENT_MODE,{className:"string",
contains:[e.BACKSLASH_ESCAPE,n],variants:[{begin:/"/,end:/"/},{begin:/'/,end:/'/
}]},{begin:"([a-z]+):/",end:"\\s",endsWithParent:!0,excludeEnd:!0,contains:[n]
},{className:"regexp",contains:[e.BACKSLASH_ESCAPE,n],variants:[{begin:"\\s\\^",
end:"\\s|\\{|;",returnEnd:!0},{begin:"~\\*?\\s+",end:"\\s|\\{|;",returnEnd:!0},{
begin:"\\*(\\.[a-z\\-]+)+"},{begin:"([a-z\\-]+\\.)+\\*"}]},{className:"number",
begin:"\\b\\d{1,3}\\.\\d{1,3}\\.\\d{1,3}\\.\\d{1,3}(:\\d{1,5})?\\b"},{
className:"number",begin:"\\b\\d+[kKmMgGdshdwy]*\\b",relevance:0},n]};return{
name:"Nginx config",aliases:["nginxconf"],contains:[e.HASH_COMMENT_MODE,{
begin:e.UNDERSCORE_IDENT_RE+"\\s+\\{",returnBegin:!0,end:/\{/,contains:[{
className:"section",begin:e.UNDERSCORE_IDENT_RE}],relevance:0},{
begin:e.UNDERSCORE_IDENT_RE+"\\s",end:";|\\{",returnBegin:!0,contains:[{
className:"attribute",begin:e.UNDERSCORE_IDENT_RE,starts:a}],relevance:0}],
illegal:"[^\\s\\}]"}}})());hljs.registerLanguage("ruby",(()=>{"use strict";function e(...e){
return e.map((e=>{return(n=e)?"string"==typeof n?n:n.source:null;var n
})).join("")}return n=>{
const a="([a-zA-Z_]\\w*[!?=]?|[-+~]@|<<|>>|=~|===?|<=>|[<>]=?|\\*\\*|[-/+%^&*~`|]|\\[\\]=?)",i={
keyword:"and then defined module in return redo if BEGIN retry end for self when next until do begin unless END rescue else break undef not super class case require yield alias while ensure elsif or include attr_reader attr_writer attr_accessor __FILE__",
built_in:"proc lambda",literal:"true false nil"},s={className:"doctag",
begin:"@[A-Za-z]+"},r={begin:"#<",end:">"},b=[n.COMMENT("#","$",{contains:[s]
}),n.COMMENT("^=begin","^=end",{contains:[s],relevance:10
}),n.COMMENT("^__END__","\\n$")],c={className:"subst",begin:/#\{/,end:/\}/,
keywords:i},t={className:"string",contains:[n.BACKSLASH_ESCAPE,c],variants:[{
begin:/'/,end:/'/},{begin:/"/,end:/"/},{begin:/`/,end:/`/},{begin:/%[qQwWx]?\(/,
end:/\)/},{begin:/%[qQwWx]?\[/,end:/\]/},{begin:/%[qQwWx]?\{/,end:/\}/},{
begin:/%[qQwWx]?</,end:/>/},{begin:/%[qQwWx]?\//,end:/\//},{begin:/%[qQwWx]?%/,
end:/%/},{begin:/%[qQwWx]?-/,end:/-/},{begin:/%[qQwWx]?\|/,end:/\|/},{
begin:/\B\?(\\\d{1,3})/},{begin:/\B\?(\\x[A-Fa-f0-9]{1,2})/},{
begin:/\B\?(\\u\{?[A-Fa-f0-9]{1,6}\}?)/},{
begin:/\B\?(\\M-\\C-|\\M-\\c|\\c\\M-|\\M-|\\C-\\M-)[\x20-\x7e]/},{
begin:/\B\?\\(c|C-)[\x20-\x7e]/},{begin:/\B\?\\?\S/},{
begin:/<<[-~]?'?(\w+)\n(?:[^\n]*\n)*?\s*\1\b/,returnBegin:!0,contains:[{
begin:/<<[-~]?'?/},n.END_SAME_AS_BEGIN({begin:/(\w+)/,end:/(\w+)/,
contains:[n.BACKSLASH_ESCAPE,c]})]}]},g="[0-9](_?[0-9])*",d={className:"number",
relevance:0,variants:[{
begin:`\\b([1-9](_?[0-9])*|0)(\\.(${g}))?([eE][+-]?(${g})|r)?i?\\b`},{
begin:"\\b0[dD][0-9](_?[0-9])*r?i?\\b"},{begin:"\\b0[bB][0-1](_?[0-1])*r?i?\\b"
},{begin:"\\b0[oO][0-7](_?[0-7])*r?i?\\b"},{
begin:"\\b0[xX][0-9a-fA-F](_?[0-9a-fA-F])*r?i?\\b"},{
begin:"\\b0(_?[0-7])+r?i?\\b"}]},l={className:"params",begin:"\\(",end:"\\)",
endsParent:!0,keywords:i},o=[t,{className:"class",beginKeywords:"class module",
end:"$|;",illegal:/=/,contains:[n.inherit(n.TITLE_MODE,{
begin:"[A-Za-z_]\\w*(::\\w+)*(\\?|!)?"}),{begin:"<\\s*",contains:[{
begin:"("+n.IDENT_RE+"::)?"+n.IDENT_RE,relevance:0}]}].concat(b)},{
className:"function",begin:e(/def\s+/,(_=a+"\\s*(\\(|;|$)",e("(?=",_,")"))),
relevance:0,keywords:"def",end:"$|;",contains:[n.inherit(n.TITLE_MODE,{begin:a
}),l].concat(b)},{begin:n.IDENT_RE+"::"},{className:"symbol",
begin:n.UNDERSCORE_IDENT_RE+"(!|\\?)?:",relevance:0},{className:"symbol",
begin:":(?!\\s)",contains:[t,{begin:a}],relevance:0},d,{className:"variable",
begin:"(\\$\\W)|((\\$|@@?)(\\w+))(?=[^@$?])(?![A-Za-z])(?![@$?'])"},{
className:"params",begin:/\|/,end:/\|/,relevance:0,keywords:i},{
begin:"("+n.RE_STARTERS_RE+"|unless)\\s*",keywords:"unless",contains:[{
className:"regexp",contains:[n.BACKSLASH_ESCAPE,c],illegal:/\n/,variants:[{
begin:"/",end:"/[a-z]*"},{begin:/%r\{/,end:/\}[a-z]*/},{begin:"%r\\(",
end:"\\)[a-z]*"},{begin:"%r!",end:"![a-z]*"},{begin:"%r\\[",end:"\\][a-z]*"}]
}].concat(r,b),relevance:0}].concat(r,b);var _;c.contains=o,l.contains=o
;const E=[{begin:/^\s*=>/,starts:{end:"$",contains:o}},{className:"meta",
begin:"^([>?]>|[\\w#]+\\(\\w+\\):\\d+:\\d+>|(\\w+-)?\\d+\\.\\d+\\.\\d+(p\\d+)?[^\\d][^>]+>)(?=[ ])",
starts:{end:"$",contains:o}}];return b.unshift(r),{name:"Ruby",
aliases:["rb","gemspec","podspec","thor","irb"],keywords:i,illegal:/\/\*/,
contains:[n.SHEBANG({binary:"ruby"})].concat(E).concat(b).concat(o)}}})());hljs.registerLanguage("swift",(()=>{"use strict";function e(e){
return e?"string"==typeof e?e:e.source:null}function n(e){return a("(?=",e,")")}
function a(...n){return n.map((n=>e(n))).join("")}function t(...n){
return"("+n.map((n=>e(n))).join("|")+")"}
const i=e=>a(/\b/,e,/\w$/.test(e)?/\b/:/\B/),s=["Protocol","Type"].map(i),u=["init","self"].map(i),c=["Any","Self"],r=["associatedtype","async","await",/as\?/,/as!/,"as","break","case","catch","class","continue","convenience","default","defer","deinit","didSet","do","dynamic","else","enum","extension","fallthrough",/fileprivate\(set\)/,"fileprivate","final","for","func","get","guard","if","import","indirect","infix",/init\?/,/init!/,"inout",/internal\(set\)/,"internal","in","is","lazy","let","mutating","nonmutating",/open\(set\)/,"open","operator","optional","override","postfix","precedencegroup","prefix",/private\(set\)/,"private","protocol",/public\(set\)/,"public","repeat","required","rethrows","return","set","some","static","struct","subscript","super","switch","throws","throw",/try\?/,/try!/,"try","typealias",/unowned\(safe\)/,/unowned\(unsafe\)/,"unowned","var","weak","where","while","willSet"],o=["false","nil","true"],l=["assignment","associativity","higherThan","left","lowerThan","none","right"],m=["#colorLiteral","#column","#dsohandle","#else","#elseif","#endif","#error","#file","#fileID","#fileLiteral","#filePath","#function","#if","#imageLiteral","#keyPath","#line","#selector","#sourceLocation","#warn_unqualified_access","#warning"],d=["abs","all","any","assert","assertionFailure","debugPrint","dump","fatalError","getVaList","isKnownUniquelyReferenced","max","min","numericCast","pointwiseMax","pointwiseMin","precondition","preconditionFailure","print","readLine","repeatElement","sequence","stride","swap","swift_unboxFromSwiftValueWithType","transcode","type","unsafeBitCast","unsafeDowncast","withExtendedLifetime","withUnsafeMutablePointer","withUnsafePointer","withVaList","withoutActuallyEscaping","zip"],p=t(/[/=\-+!*%<>&|^~?]/,/[\u00A1-\u00A7]/,/[\u00A9\u00AB]/,/[\u00AC\u00AE]/,/[\u00B0\u00B1]/,/[\u00B6\u00BB\u00BF\u00D7\u00F7]/,/[\u2016-\u2017]/,/[\u2020-\u2027]/,/[\u2030-\u203E]/,/[\u2041-\u2053]/,/[\u2055-\u205E]/,/[\u2190-\u23FF]/,/[\u2500-\u2775]/,/[\u2794-\u2BFF]/,/[\u2E00-\u2E7F]/,/[\u3001-\u3003]/,/[\u3008-\u3020]/,/[\u3030]/),F=t(p,/[\u0300-\u036F]/,/[\u1DC0-\u1DFF]/,/[\u20D0-\u20FF]/,/[\uFE00-\uFE0F]/,/[\uFE20-\uFE2F]/),b=a(p,F,"*"),h=t(/[a-zA-Z_]/,/[\u00A8\u00AA\u00AD\u00AF\u00B2-\u00B5\u00B7-\u00BA]/,/[\u00BC-\u00BE\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u00FF]/,/[\u0100-\u02FF\u0370-\u167F\u1681-\u180D\u180F-\u1DBF]/,/[\u1E00-\u1FFF]/,/[\u200B-\u200D\u202A-\u202E\u203F-\u2040\u2054\u2060-\u206F]/,/[\u2070-\u20CF\u2100-\u218F\u2460-\u24FF\u2776-\u2793]/,/[\u2C00-\u2DFF\u2E80-\u2FFF]/,/[\u3004-\u3007\u3021-\u302F\u3031-\u303F\u3040-\uD7FF]/,/[\uF900-\uFD3D\uFD40-\uFDCF\uFDF0-\uFE1F\uFE30-\uFE44]/,/[\uFE47-\uFEFE\uFF00-\uFFFD]/),f=t(h,/\d/,/[\u0300-\u036F\u1DC0-\u1DFF\u20D0-\u20FF\uFE20-\uFE2F]/),w=a(h,f,"*"),y=a(/[A-Z]/,f,"*"),g=["autoclosure",a(/convention\(/,t("swift","block","c"),/\)/),"discardableResult","dynamicCallable","dynamicMemberLookup","escaping","frozen","GKInspectable","IBAction","IBDesignable","IBInspectable","IBOutlet","IBSegueAction","inlinable","main","nonobjc","NSApplicationMain","NSCopying","NSManaged",a(/objc\(/,w,/\)/),"objc","objcMembers","propertyWrapper","requires_stored_property_inits","testable","UIApplicationMain","unknown","usableFromInline"],E=["iOS","iOSApplicationExtension","macOS","macOSApplicationExtension","macCatalyst","macCatalystApplicationExtension","watchOS","watchOSApplicationExtension","tvOS","tvOSApplicationExtension","swift"]
;return e=>{const p={match:/\s+/,relevance:0},h=e.COMMENT("/\\*","\\*/",{
contains:["self"]}),v=[e.C_LINE_COMMENT_MODE,h],N={className:"keyword",
begin:a(/\./,n(t(...s,...u))),end:t(...s,...u),excludeBegin:!0},A={
match:a(/\./,t(...r)),relevance:0
},C=r.filter((e=>"string"==typeof e)).concat(["_|0"]),_={variants:[{
className:"keyword",
match:t(...r.filter((e=>"string"!=typeof e)).concat(c).map(i),...u)}]},D={
$pattern:t(/\b\w+/,/#\w+/),keyword:C.concat(m),literal:o},B=[N,A,_],k=[{
match:a(/\./,t(...d)),relevance:0},{className:"built_in",
match:a(/\b/,t(...d),/(?=\()/)}],M={match:/->/,relevance:0},S=[M,{
className:"operator",relevance:0,variants:[{match:b},{match:`\\.(\\.|${F})+`}]
}],x="([0-9a-fA-F]_*)+",I={className:"number",relevance:0,variants:[{
match:"\\b(([0-9]_*)+)(\\.(([0-9]_*)+))?([eE][+-]?(([0-9]_*)+))?\\b"},{
match:`\\b0x(${x})(\\.(${x}))?([pP][+-]?(([0-9]_*)+))?\\b`},{
match:/\b0o([0-7]_*)+\b/},{match:/\b0b([01]_*)+\b/}]},O=(e="")=>({
className:"subst",variants:[{match:a(/\\/,e,/[0\\tnr"']/)},{
match:a(/\\/,e,/u\{[0-9a-fA-F]{1,8}\}/)}]}),T=(e="")=>({className:"subst",
match:a(/\\/,e,/[\t ]*(?:[\r\n]|\r\n)/)}),L=(e="")=>({className:"subst",
label:"interpol",begin:a(/\\/,e,/\(/),end:/\)/}),P=(e="")=>({begin:a(e,/"""/),
end:a(/"""/,e),contains:[O(e),T(e),L(e)]}),$=(e="")=>({begin:a(e,/"/),
end:a(/"/,e),contains:[O(e),L(e)]}),K={className:"string",
variants:[P(),P("#"),P("##"),P("###"),$(),$("#"),$("##"),$("###")]},j={
match:a(/`/,w,/`/)},z=[j,{className:"variable",match:/\$\d+/},{
className:"variable",match:`\\$${f}+`}],q=[{match:/(@|#)available/,
className:"keyword",starts:{contains:[{begin:/\(/,end:/\)/,keywords:E,
contains:[...S,I,K]}]}},{className:"keyword",match:a(/@/,t(...g))},{
className:"meta",match:a(/@/,w)}],U={match:n(/\b[A-Z]/),relevance:0,contains:[{
className:"type",
match:a(/(AV|CA|CF|CG|CI|CL|CM|CN|CT|MK|MP|MTK|MTL|NS|SCN|SK|UI|WK|XC)/,f,"+")
},{className:"type",match:y,relevance:0},{match:/[?!]+/,relevance:0},{
match:/\.\.\./,relevance:0},{match:a(/\s+&\s+/,n(y)),relevance:0}]},Z={
begin:/</,end:/>/,keywords:D,contains:[...v,...B,...q,M,U]};U.contains.push(Z)
;const G={begin:/\(/,end:/\)/,relevance:0,keywords:D,contains:["self",{
match:a(w,/\s*:/),keywords:"_|0",relevance:0
},...v,...B,...k,...S,I,K,...z,...q,U]},H={beginKeywords:"func",contains:[{
className:"title",match:t(j.match,w,b),endsParent:!0,relevance:0},p]},R={
begin:/</,end:/>/,contains:[...v,U]},V={begin:/\(/,end:/\)/,keywords:D,
contains:[{begin:t(n(a(w,/\s*:/)),n(a(w,/\s+/,w,/\s*:/))),end:/:/,relevance:0,
contains:[{className:"keyword",match:/\b_\b/},{className:"params",match:w}]
},...v,...B,...S,I,K,...q,U,G],endsParent:!0,illegal:/["']/},W={
className:"function",match:n(/\bfunc\b/),contains:[H,R,V,p],illegal:[/\[/,/%/]
},X={className:"function",match:/\b(subscript|init[?!]?)\s*(?=[<(])/,keywords:{
keyword:"subscript init init? init!",$pattern:/\w+[?!]?/},contains:[R,V,p],
illegal:/\[|%/},J={beginKeywords:"operator",end:e.MATCH_NOTHING_RE,contains:[{
className:"title",match:b,endsParent:!0,relevance:0}]},Q={
beginKeywords:"precedencegroup",end:e.MATCH_NOTHING_RE,contains:[{
className:"title",match:y,relevance:0},{begin:/{/,end:/}/,relevance:0,
endsParent:!0,keywords:[...l,...o],contains:[U]}]};for(const e of K.variants){
const n=e.contains.find((e=>"interpol"===e.label));n.keywords=D
;const a=[...B,...k,...S,I,K,...z];n.contains=[...a,{begin:/\(/,end:/\)/,
contains:["self",...a]}]}return{name:"Swift",keywords:D,contains:[...v,W,X,{
className:"class",beginKeywords:"struct protocol class extension enum",
end:"\\{",excludeEnd:!0,keywords:D,contains:[e.inherit(e.TITLE_MODE,{
begin:/[A-Za-z$_][\u00C0-\u02B80-9A-Za-z$_]*/}),...B]},J,Q,{
beginKeywords:"import",end:/$/,contains:[...v],relevance:0
},...B,...k,...S,I,K,...z,...q,U,G]}}})());hljs.registerLanguage("ini",(()=>{"use strict";function e(e){
return e?"string"==typeof e?e:e.source:null}function n(...n){
return n.map((n=>e(n))).join("")}return s=>{const a={className:"number",
relevance:0,variants:[{begin:/([+-]+)?[\d]+_[\d_]+/},{begin:s.NUMBER_RE}]
},i=s.COMMENT();i.variants=[{begin:/;/,end:/$/},{begin:/#/,end:/$/}];const t={
className:"variable",variants:[{begin:/\$[\w\d"][\w\d_]*/},{begin:/\$\{(.*?)\}/
}]},r={className:"literal",begin:/\bon|off|true|false|yes|no\b/},l={
className:"string",contains:[s.BACKSLASH_ESCAPE],variants:[{begin:"'''",
end:"'''",relevance:10},{begin:'"""',end:'"""',relevance:10},{begin:'"',end:'"'
},{begin:"'",end:"'"}]},c={begin:/\[/,end:/\]/,contains:[i,r,t,l,a,"self"],
relevance:0
},g="("+[/[A-Za-z0-9_-]+/,/"(\\"|[^"])*"/,/'[^']*'/].map((n=>e(n))).join("|")+")"
;return{name:"TOML, also INI",aliases:["toml"],case_insensitive:!0,illegal:/\S/,
contains:[i,{className:"section",begin:/\[+/,end:/\]+/},{
begin:n(g,"(\\s*\\.\\s*",g,")*",n("(?=",/\s*=\s*[^#\s]/,")")),className:"attr",
starts:{end:/$/,contains:[i,c,r,t,l,a]}}]}}})());hljs.registerLanguage("coffeescript",(()=>{"use strict"
;const e=["as","in","of","if","for","while","finally","var","new","function","do","return","void","else","break","catch","instanceof","with","throw","case","default","try","switch","continue","typeof","delete","let","yield","const","class","debugger","async","await","static","import","from","export","extends"],n=["true","false","null","undefined","NaN","Infinity"],a=[].concat(["setInterval","setTimeout","clearInterval","clearTimeout","require","exports","eval","isFinite","isNaN","parseFloat","parseInt","decodeURI","decodeURIComponent","encodeURI","encodeURIComponent","escape","unescape"],["arguments","this","super","console","window","document","localStorage","module","global"],["Intl","DataView","Number","Math","Date","String","RegExp","Object","Function","Boolean","Error","Symbol","Set","Map","WeakSet","WeakMap","Proxy","Reflect","JSON","Promise","Float64Array","Int16Array","Int32Array","Int8Array","Uint16Array","Uint32Array","Float32Array","Array","Uint8Array","Uint8ClampedArray","ArrayBuffer","BigInt64Array","BigUint64Array","BigInt"],["EvalError","InternalError","RangeError","ReferenceError","SyntaxError","TypeError","URIError"])
;return r=>{const t={
keyword:e.concat(["then","unless","until","loop","by","when","and","or","is","isnt","not"]).filter((i=["var","const","let","function","static"],
e=>!i.includes(e))),literal:n.concat(["yes","no","on","off"]),
built_in:a.concat(["npm","print"])};var i;const s="[A-Za-z$_][0-9A-Za-z$_]*",o={
className:"subst",begin:/#\{/,end:/\}/,keywords:t
},c=[r.BINARY_NUMBER_MODE,r.inherit(r.C_NUMBER_MODE,{starts:{end:"(\\s*/)?",
relevance:0}}),{className:"string",variants:[{begin:/'''/,end:/'''/,
contains:[r.BACKSLASH_ESCAPE]},{begin:/'/,end:/'/,contains:[r.BACKSLASH_ESCAPE]
},{begin:/"""/,end:/"""/,contains:[r.BACKSLASH_ESCAPE,o]},{begin:/"/,end:/"/,
contains:[r.BACKSLASH_ESCAPE,o]}]},{className:"regexp",variants:[{begin:"///",
end:"///",contains:[o,r.HASH_COMMENT_MODE]},{begin:"//[gim]{0,3}(?=\\W)",
relevance:0},{begin:/\/(?![ *]).*?(?![\\]).\/[gim]{0,3}(?=\W)/}]},{begin:"@"+s
},{subLanguage:"javascript",excludeBegin:!0,excludeEnd:!0,variants:[{
begin:"```",end:"```"},{begin:"`",end:"`"}]}];o.contains=c
;const l=r.inherit(r.TITLE_MODE,{begin:s}),d="(\\(.*\\)\\s*)?\\B[-=]>",g={
className:"params",begin:"\\([^\\(]",returnBegin:!0,contains:[{begin:/\(/,
end:/\)/,keywords:t,contains:["self"].concat(c)}]};return{name:"CoffeeScript",
aliases:["coffee","cson","iced"],keywords:t,illegal:/\/\*/,
contains:c.concat([r.COMMENT("###","###"),r.HASH_COMMENT_MODE,{
className:"function",begin:"^\\s*"+s+"\\s*=\\s*"+d,end:"[-=]>",returnBegin:!0,
contains:[l,g]},{begin:/[:\(,=]\s*/,relevance:0,contains:[{className:"function",
begin:d,end:"[-=]>",returnBegin:!0,contains:[g]}]},{className:"class",
beginKeywords:"class",end:"$",illegal:/[:="\[\]]/,contains:[{
beginKeywords:"extends",endsWithParent:!0,illegal:/[:="\[\]]/,contains:[l]},l]
},{begin:s+":",end:":",returnBegin:!0,returnEnd:!0,relevance:0}])}}})());hljs.registerLanguage("xml",(()=>{"use strict";function e(e){
return e?"string"==typeof e?e:e.source:null}function n(e){return a("(?=",e,")")}
function a(...n){return n.map((n=>e(n))).join("")}function s(...n){
return"("+n.map((n=>e(n))).join("|")+")"}return e=>{
const t=a(/[A-Z_]/,a("(",/[A-Z0-9_.-]*:/,")?"),/[A-Z0-9_.-]*/),i={
className:"symbol",begin:/&[a-z]+;|&#[0-9]+;|&#x[a-f0-9]+;/},r={begin:/\s/,
contains:[{className:"meta-keyword",begin:/#?[a-z_][a-z1-9_-]+/,illegal:/\n/}]
},c=e.inherit(r,{begin:/\(/,end:/\)/}),l=e.inherit(e.APOS_STRING_MODE,{
className:"meta-string"}),g=e.inherit(e.QUOTE_STRING_MODE,{
className:"meta-string"}),m={endsWithParent:!0,illegal:/</,relevance:0,
contains:[{className:"attr",begin:/[A-Za-z0-9._:-]+/,relevance:0},{begin:/=\s*/,
relevance:0,contains:[{className:"string",endsParent:!0,variants:[{begin:/"/,
end:/"/,contains:[i]},{begin:/'/,end:/'/,contains:[i]},{begin:/[^\s"'=<>`]+/}]}]
}]};return{name:"HTML, XML",
aliases:["html","xhtml","rss","atom","xjb","xsd","xsl","plist","wsf","svg"],
case_insensitive:!0,contains:[{className:"meta",begin:/<![a-z]/,end:/>/,
relevance:10,contains:[r,g,l,c,{begin:/\[/,end:/\]/,contains:[{className:"meta",
begin:/<![a-z]/,end:/>/,contains:[r,c,g,l]}]}]},e.COMMENT(/<!--/,/-->/,{
relevance:10}),{begin:/<!\[CDATA\[/,end:/\]\]>/,relevance:10},i,{
className:"meta",begin:/<\?xml/,end:/\?>/,relevance:10},{className:"tag",
begin:/<style(?=\s|>)/,end:/>/,keywords:{name:"style"},contains:[m],starts:{
end:/<\/style>/,returnEnd:!0,subLanguage:["css","xml"]}},{className:"tag",
begin:/<script(?=\s|>)/,end:/>/,keywords:{name:"script"},contains:[m],starts:{
end:/<\/script>/,returnEnd:!0,subLanguage:["javascript","handlebars","xml"]}},{
className:"tag",begin:/<>|<\/>/},{className:"tag",
begin:a(/</,n(a(t,s(/\/>/,/>/,/\s/)))),end:/\/?>/,contains:[{className:"name",
begin:t,relevance:0,starts:m}]},{className:"tag",begin:a(/<\//,n(a(t,/>/))),
contains:[{className:"name",begin:t,relevance:0},{begin:/>/,relevance:0,
endsParent:!0}]}]}}})());hljs.registerLanguage("scss",(()=>{"use strict"
;const e=["a","abbr","address","article","aside","audio","b","blockquote","body","button","canvas","caption","cite","code","dd","del","details","dfn","div","dl","dt","em","fieldset","figcaption","figure","footer","form","h1","h2","h3","h4","h5","h6","header","hgroup","html","i","iframe","img","input","ins","kbd","label","legend","li","main","mark","menu","nav","object","ol","p","q","quote","samp","section","span","strong","summary","sup","table","tbody","td","textarea","tfoot","th","thead","time","tr","ul","var","video"],t=["any-hover","any-pointer","aspect-ratio","color","color-gamut","color-index","device-aspect-ratio","device-height","device-width","display-mode","forced-colors","grid","height","hover","inverted-colors","monochrome","orientation","overflow-block","overflow-inline","pointer","prefers-color-scheme","prefers-contrast","prefers-reduced-motion","prefers-reduced-transparency","resolution","scan","scripting","update","width","min-width","max-width","min-height","max-height"],i=["active","any-link","blank","checked","current","default","defined","dir","disabled","drop","empty","enabled","first","first-child","first-of-type","fullscreen","future","focus","focus-visible","focus-within","has","host","host-context","hover","indeterminate","in-range","invalid","is","lang","last-child","last-of-type","left","link","local-link","not","nth-child","nth-col","nth-last-child","nth-last-col","nth-last-of-type","nth-of-type","only-child","only-of-type","optional","out-of-range","past","placeholder-shown","read-only","read-write","required","right","root","scope","target","target-within","user-invalid","valid","visited","where"],o=["after","backdrop","before","cue","cue-region","first-letter","first-line","grammar-error","marker","part","placeholder","selection","slotted","spelling-error"],r=["align-content","align-items","align-self","animation","animation-delay","animation-direction","animation-duration","animation-fill-mode","animation-iteration-count","animation-name","animation-play-state","animation-timing-function","auto","backface-visibility","background","background-attachment","background-clip","background-color","background-image","background-origin","background-position","background-repeat","background-size","border","border-bottom","border-bottom-color","border-bottom-left-radius","border-bottom-right-radius","border-bottom-style","border-bottom-width","border-collapse","border-color","border-image","border-image-outset","border-image-repeat","border-image-slice","border-image-source","border-image-width","border-left","border-left-color","border-left-style","border-left-width","border-radius","border-right","border-right-color","border-right-style","border-right-width","border-spacing","border-style","border-top","border-top-color","border-top-left-radius","border-top-right-radius","border-top-style","border-top-width","border-width","bottom","box-decoration-break","box-shadow","box-sizing","break-after","break-before","break-inside","caption-side","clear","clip","clip-path","color","column-count","column-fill","column-gap","column-rule","column-rule-color","column-rule-style","column-rule-width","column-span","column-width","columns","content","counter-increment","counter-reset","cursor","direction","display","empty-cells","filter","flex","flex-basis","flex-direction","flex-flow","flex-grow","flex-shrink","flex-wrap","float","font","font-display","font-family","font-feature-settings","font-kerning","font-language-override","font-size","font-size-adjust","font-smoothing","font-stretch","font-style","font-variant","font-variant-ligatures","font-variation-settings","font-weight","height","hyphens","icon","image-orientation","image-rendering","image-resolution","ime-mode","inherit","initial","justify-content","left","letter-spacing","line-height","list-style","list-style-image","list-style-position","list-style-type","margin","margin-bottom","margin-left","margin-right","margin-top","marks","mask","max-height","max-width","min-height","min-width","nav-down","nav-index","nav-left","nav-right","nav-up","none","normal","object-fit","object-position","opacity","order","orphans","outline","outline-color","outline-offset","outline-style","outline-width","overflow","overflow-wrap","overflow-x","overflow-y","padding","padding-bottom","padding-left","padding-right","padding-top","page-break-after","page-break-before","page-break-inside","perspective","perspective-origin","pointer-events","position","quotes","resize","right","src","tab-size","table-layout","text-align","text-align-last","text-decoration","text-decoration-color","text-decoration-line","text-decoration-style","text-indent","text-overflow","text-rendering","text-shadow","text-transform","text-underline-position","top","transform","transform-origin","transform-style","transition","transition-delay","transition-duration","transition-property","transition-timing-function","unicode-bidi","vertical-align","visibility","white-space","widows","width","word-break","word-spacing","word-wrap","z-index"].reverse()
;return a=>{const n=(e=>({IMPORTANT:{className:"meta",begin:"!important"},
HEXCOLOR:{className:"number",begin:"#([a-fA-F0-9]{6}|[a-fA-F0-9]{3})"},
ATTRIBUTE_SELECTOR_MODE:{className:"selector-attr",begin:/\[/,end:/\]/,
illegal:"$",contains:[e.APOS_STRING_MODE,e.QUOTE_STRING_MODE]}
}))(a),l=o,s=i,d="@[a-z-]+",c={className:"variable",
begin:"(\\$[a-zA-Z-][a-zA-Z0-9_-]*)\\b"};return{name:"SCSS",case_insensitive:!0,
illegal:"[=/|']",contains:[a.C_LINE_COMMENT_MODE,a.C_BLOCK_COMMENT_MODE,{
className:"selector-id",begin:"#[A-Za-z0-9_-]+",relevance:0},{
className:"selector-class",begin:"\\.[A-Za-z0-9_-]+",relevance:0
},n.ATTRIBUTE_SELECTOR_MODE,{className:"selector-tag",
begin:"\\b("+e.join("|")+")\\b",relevance:0},{className:"selector-pseudo",
begin:":("+s.join("|")+")"},{className:"selector-pseudo",
begin:"::("+l.join("|")+")"},c,{begin:/\(/,end:/\)/,contains:[a.CSS_NUMBER_MODE]
},{className:"attribute",begin:"\\b("+r.join("|")+")\\b"},{
begin:"\\b(whitespace|wait|w-resize|visible|vertical-text|vertical-ideographic|uppercase|upper-roman|upper-alpha|underline|transparent|top|thin|thick|text|text-top|text-bottom|tb-rl|table-header-group|table-footer-group|sw-resize|super|strict|static|square|solid|small-caps|separate|se-resize|scroll|s-resize|rtl|row-resize|ridge|right|repeat|repeat-y|repeat-x|relative|progress|pointer|overline|outside|outset|oblique|nowrap|not-allowed|normal|none|nw-resize|no-repeat|no-drop|newspaper|ne-resize|n-resize|move|middle|medium|ltr|lr-tb|lowercase|lower-roman|lower-alpha|loose|list-item|line|line-through|line-edge|lighter|left|keep-all|justify|italic|inter-word|inter-ideograph|inside|inset|inline|inline-block|inherit|inactive|ideograph-space|ideograph-parenthesis|ideograph-numeric|ideograph-alpha|horizontal|hidden|help|hand|groove|fixed|ellipsis|e-resize|double|dotted|distribute|distribute-space|distribute-letter|distribute-all-lines|disc|disabled|default|decimal|dashed|crosshair|collapse|col-resize|circle|char|center|capitalize|break-word|break-all|bottom|both|bolder|bold|block|bidi-override|below|baseline|auto|always|all-scroll|absolute|table|table-cell)\\b"
},{begin:":",end:";",
contains:[c,n.HEXCOLOR,a.CSS_NUMBER_MODE,a.QUOTE_STRING_MODE,a.APOS_STRING_MODE,n.IMPORTANT]
},{begin:"@(page|font-face)",lexemes:d,keywords:"@page @font-face"},{begin:"@",
end:"[{;]",returnBegin:!0,keywords:{$pattern:/[a-z-]+/,
keyword:"and or not only",attribute:t.join(" ")},contains:[{begin:d,
className:"keyword"},{begin:/[a-z-]+(?=:)/,className:"attribute"
},c,a.QUOTE_STRING_MODE,a.APOS_STRING_MODE,n.HEXCOLOR,a.CSS_NUMBER_MODE]}]}}
})());hljs.registerLanguage("kotlin",(()=>{"use strict"
;var e="\\.([0-9](_*[0-9])*)",n="[0-9a-fA-F](_*[0-9a-fA-F])*",a={
className:"number",variants:[{
begin:`(\\b([0-9](_*[0-9])*)((${e})|\\.)?|(${e}))[eE][+-]?([0-9](_*[0-9])*)[fFdD]?\\b`
},{begin:`\\b([0-9](_*[0-9])*)((${e})[fFdD]?\\b|\\.([fFdD]\\b)?)`},{
begin:`(${e})[fFdD]?\\b`},{begin:"\\b([0-9](_*[0-9])*)[fFdD]\\b"},{
begin:`\\b0[xX]((${n})\\.?|(${n})?\\.(${n}))[pP][+-]?([0-9](_*[0-9])*)[fFdD]?\\b`
},{begin:"\\b(0|[1-9](_*[0-9])*)[lL]?\\b"},{begin:`\\b0[xX](${n})[lL]?\\b`},{
begin:"\\b0(_*[0-7])*[lL]?\\b"},{begin:"\\b0[bB][01](_*[01])*[lL]?\\b"}],
relevance:0};return e=>{const n={
keyword:"abstract as val var vararg get set class object open private protected public noinline crossinline dynamic final enum if else do while for when throw try catch finally import package is in fun override companion reified inline lateinit init interface annotation data sealed internal infix operator out by constructor super tailrec where const inner suspend typealias external expect actual",
built_in:"Byte Short Char Int Long Boolean Float Double Void Unit Nothing",
literal:"true false null"},i={className:"symbol",begin:e.UNDERSCORE_IDENT_RE+"@"
},s={className:"subst",begin:/\$\{/,end:/\}/,contains:[e.C_NUMBER_MODE]},t={
className:"variable",begin:"\\$"+e.UNDERSCORE_IDENT_RE},r={className:"string",
variants:[{begin:'"""',end:'"""(?=[^"])',contains:[t,s]},{begin:"'",end:"'",
illegal:/\n/,contains:[e.BACKSLASH_ESCAPE]},{begin:'"',end:'"',illegal:/\n/,
contains:[e.BACKSLASH_ESCAPE,t,s]}]};s.contains.push(r);const l={
className:"meta",
begin:"@(?:file|property|field|get|set|receiver|param|setparam|delegate)\\s*:(?:\\s*"+e.UNDERSCORE_IDENT_RE+")?"
},c={className:"meta",begin:"@"+e.UNDERSCORE_IDENT_RE,contains:[{begin:/\(/,
end:/\)/,contains:[e.inherit(r,{className:"meta-string"})]}]
},o=a,b=e.COMMENT("/\\*","\\*/",{contains:[e.C_BLOCK_COMMENT_MODE]}),E={
variants:[{className:"type",begin:e.UNDERSCORE_IDENT_RE},{begin:/\(/,end:/\)/,
contains:[]}]},d=E;return d.variants[1].contains=[E],E.variants[1].contains=[d],
{name:"Kotlin",aliases:["kt","kts"],keywords:n,
contains:[e.COMMENT("/\\*\\*","\\*/",{relevance:0,contains:[{className:"doctag",
begin:"@[A-Za-z]+"}]}),e.C_LINE_COMMENT_MODE,b,{className:"keyword",
begin:/\b(break|continue|return|this)\b/,starts:{contains:[{className:"symbol",
begin:/@\w+/}]}},i,l,c,{className:"function",beginKeywords:"fun",end:"[(]|$",
returnBegin:!0,excludeEnd:!0,keywords:n,relevance:5,contains:[{
begin:e.UNDERSCORE_IDENT_RE+"\\s*\\(",returnBegin:!0,relevance:0,
contains:[e.UNDERSCORE_TITLE_MODE]},{className:"type",begin:/</,end:/>/,
keywords:"reified",relevance:0},{className:"params",begin:/\(/,end:/\)/,
endsParent:!0,keywords:n,relevance:0,contains:[{begin:/:/,end:/[=,\/]/,
endsWithParent:!0,contains:[E,e.C_LINE_COMMENT_MODE,b],relevance:0
},e.C_LINE_COMMENT_MODE,b,l,c,r,e.C_NUMBER_MODE]},b]},{className:"class",
beginKeywords:"class interface trait",end:/[:\{(]|$/,excludeEnd:!0,
illegal:"extends implements",contains:[{
beginKeywords:"public protected internal private constructor"
},e.UNDERSCORE_TITLE_MODE,{className:"type",begin:/</,end:/>/,excludeBegin:!0,
excludeEnd:!0,relevance:0},{className:"type",begin:/[,:]\s*/,end:/[<\(,]|$/,
excludeBegin:!0,returnEnd:!0},l,c]},r,{className:"meta",begin:"^#!/usr/bin/env",
end:"$",illegal:"\n"},o]}}})());hljs.registerLanguage("makefile",(()=>{"use strict";return e=>{const i={
className:"variable",variants:[{begin:"\\$\\("+e.UNDERSCORE_IDENT_RE+"\\)",
contains:[e.BACKSLASH_ESCAPE]},{begin:/\$[@%<?\^\+\*]/}]},a={className:"string",
begin:/"/,end:/"/,contains:[e.BACKSLASH_ESCAPE,i]},n={className:"variable",
begin:/\$\([\w-]+\s/,end:/\)/,keywords:{
built_in:"subst patsubst strip findstring filter filter-out sort word wordlist firstword lastword dir notdir suffix basename addsuffix addprefix join wildcard realpath abspath error warning shell origin flavor foreach if or and call eval file value"
},contains:[i]},s={begin:"^"+e.UNDERSCORE_IDENT_RE+"\\s*(?=[:+?]?=)"},r={
className:"section",begin:/^[^\s]+:/,end:/$/,contains:[i]};return{
name:"Makefile",aliases:["mk","mak","make"],keywords:{$pattern:/[\w-]+/,
keyword:"define endef undefine ifdef ifndef ifeq ifneq else endif include -include sinclude override export unexport private vpath"
},contains:[e.HASH_COMMENT_MODE,i,a,n,s,{className:"meta",begin:/^\.PHONY:/,
end:/$/,keywords:{$pattern:/[\.\w]+/,"meta-keyword":".PHONY"}},r]}}})());hljs.registerLanguage("c",(()=>{"use strict";function e(e){
return((...e)=>e.map((e=>(e=>e?"string"==typeof e?e:e.source:null)(e))).join(""))("(",e,")?")
}return t=>{const n=t.COMMENT("//","$",{contains:[{begin:/\\\n/}]
}),r="[a-zA-Z_]\\w*::",a="(decltype\\(auto\\)|"+e(r)+"[a-zA-Z_]\\w*"+e("<[^<>]+>")+")",i={
className:"keyword",begin:"\\b[a-z\\d_]*_t\\b"},s={className:"string",
variants:[{begin:'(u8?|U|L)?"',end:'"',illegal:"\\n",
contains:[t.BACKSLASH_ESCAPE]},{
begin:"(u8?|U|L)?'(\\\\(x[0-9A-Fa-f]{2}|u[0-9A-Fa-f]{4,8}|[0-7]{3}|\\S)|.)",
end:"'",illegal:"."},t.END_SAME_AS_BEGIN({
begin:/(?:u8?|U|L)?R"([^()\\ ]{0,16})\(/,end:/\)([^()\\ ]{0,16})"/})]},o={
className:"number",variants:[{begin:"\\b(0b[01']+)"},{
begin:"(-?)\\b([\\d']+(\\.[\\d']*)?|\\.[\\d']+)((ll|LL|l|L)(u|U)?|(u|U)(ll|LL|l|L)?|f|F|b|B)"
},{
begin:"(-?)(\\b0[xX][a-fA-F0-9']+|(\\b[\\d']+(\\.[\\d']*)?|\\.[\\d']+)([eE][-+]?[\\d']+)?)"
}],relevance:0},c={className:"meta",begin:/#\s*[a-z]+\b/,end:/$/,keywords:{
"meta-keyword":"if else elif endif define undef warning error line pragma _Pragma ifdef ifndef include"
},contains:[{begin:/\\\n/,relevance:0},t.inherit(s,{className:"meta-string"}),{
className:"meta-string",begin:/<.*?>/},n,t.C_BLOCK_COMMENT_MODE]},l={
className:"title",begin:e(r)+t.IDENT_RE,relevance:0
},d=e(r)+t.IDENT_RE+"\\s*\\(",u={
keyword:"int float while private char char8_t char16_t char32_t catch import module export virtual operator sizeof dynamic_cast|10 typedef const_cast|10 const for static_cast|10 union namespace unsigned long volatile static protected bool template mutable if public friend do goto auto void enum else break extern using asm case typeid wchar_t short reinterpret_cast|10 default double register explicit signed typename try this switch continue inline delete alignas alignof constexpr consteval constinit decltype concept co_await co_return co_yield requires noexcept static_assert thread_local restrict final override atomic_bool atomic_char atomic_schar atomic_uchar atomic_short atomic_ushort atomic_int atomic_uint atomic_long atomic_ulong atomic_llong atomic_ullong new throw return and and_eq bitand bitor compl not not_eq or or_eq xor xor_eq",
built_in:"std string wstring cin cout cerr clog stdin stdout stderr stringstream istringstream ostringstream auto_ptr deque list queue stack vector map set pair bitset multiset multimap unordered_set unordered_map unordered_multiset unordered_multimap priority_queue make_pair array shared_ptr abort terminate abs acos asin atan2 atan calloc ceil cosh cos exit exp fabs floor fmod fprintf fputs free frexp fscanf future isalnum isalpha iscntrl isdigit isgraph islower isprint ispunct isspace isupper isxdigit tolower toupper labs ldexp log10 log malloc realloc memchr memcmp memcpy memset modf pow printf putchar puts scanf sinh sin snprintf sprintf sqrt sscanf strcat strchr strcmp strcpy strcspn strlen strncat strncmp strncpy strpbrk strrchr strspn strstr tanh tan vfprintf vprintf vsprintf endl initializer_list unique_ptr _Bool complex _Complex imaginary _Imaginary",
literal:"true false nullptr NULL"},m=[c,i,n,t.C_BLOCK_COMMENT_MODE,o,s],p={
variants:[{begin:/=/,end:/;/},{begin:/\(/,end:/\)/},{
beginKeywords:"new throw return else",end:/;/}],keywords:u,contains:m.concat([{
begin:/\(/,end:/\)/,keywords:u,contains:m.concat(["self"]),relevance:0}]),
relevance:0},_={className:"function",begin:"("+a+"[\\*&\\s]+)+"+d,
returnBegin:!0,end:/[{;=]/,excludeEnd:!0,keywords:u,illegal:/[^\w\s\*&:<>.]/,
contains:[{begin:"decltype\\(auto\\)",keywords:u,relevance:0},{begin:d,
returnBegin:!0,contains:[l],relevance:0},{className:"params",begin:/\(/,
end:/\)/,keywords:u,relevance:0,contains:[n,t.C_BLOCK_COMMENT_MODE,s,o,i,{
begin:/\(/,end:/\)/,keywords:u,relevance:0,
contains:["self",n,t.C_BLOCK_COMMENT_MODE,s,o,i]}]
},i,n,t.C_BLOCK_COMMENT_MODE,c]};return{name:"C",aliases:["h"],keywords:u,
disableAutodetect:!0,illegal:"</",contains:[].concat(p,_,m,[c,{
begin:"\\b(deque|list|queue|priority_queue|pair|stack|vector|map|set|bitset|multiset|multimap|unordered_map|unordered_set|unordered_multiset|unordered_multimap|array)\\s*<",
end:">",keywords:u,contains:["self",i]},{begin:t.IDENT_RE+"::",keywords:u},{
className:"class",beginKeywords:"enum class struct union",end:/[{;:<>=]/,
contains:[{beginKeywords:"final class struct"},t.TITLE_MODE]}]),exports:{
preprocessor:c,strings:s,keywords:u}}}})());hljs.registerLanguage("http",(()=>{"use strict";function e(...e){
return e.map((e=>{return(n=e)?"string"==typeof n?n:n.source:null;var n
})).join("")}return n=>{const a="HTTP/(2|1\\.[01])",s={className:"attribute",
begin:e("^",/[A-Za-z][A-Za-z0-9-]*/,"(?=\\:\\s)"),starts:{contains:[{
className:"punctuation",begin:/: /,relevance:0,starts:{end:"$",relevance:0}}]}
},t=[s,{begin:"\\n\\n",starts:{subLanguage:[],endsWithParent:!0}}];return{
name:"HTTP",aliases:["https"],illegal:/\S/,contains:[{begin:"^(?="+a+" \\d{3})",
end:/$/,contains:[{className:"meta",begin:a},{className:"number",
begin:"\\b\\d{3}\\b"}],starts:{end:/\b\B/,illegal:/\S/,contains:t}},{
begin:"(?=^[A-Z]+ (.*?) "+a+"$)",end:/$/,contains:[{className:"string",
begin:" ",end:" ",excludeBegin:!0,excludeEnd:!0},{className:"meta",begin:a},{
className:"keyword",begin:"[A-Z]+"}],starts:{end:/\b\B/,illegal:/\S/,contains:t}
},n.inherit(s,{relevance:0})]}}})());hljs.registerLanguage("markdown",(()=>{"use strict";function n(...n){
return n.map((n=>{return(e=n)?"string"==typeof e?e:e.source:null;var e
})).join("")}return e=>{const a={begin:/<\/?[A-Za-z_]/,end:">",
subLanguage:"xml",relevance:0},i={variants:[{begin:/\[.+?\]\[.*?\]/,relevance:0
},{begin:/\[.+?\]\(((data|javascript|mailto):|(?:http|ftp)s?:\/\/).*?\)/,
relevance:2},{begin:n(/\[.+?\]\(/,/[A-Za-z][A-Za-z0-9+.-]*/,/:\/\/.*?\)/),
relevance:2},{begin:/\[.+?\]\([./?&#].*?\)/,relevance:1},{
begin:/\[.+?\]\(.*?\)/,relevance:0}],returnBegin:!0,contains:[{
className:"string",relevance:0,begin:"\\[",end:"\\]",excludeBegin:!0,
returnEnd:!0},{className:"link",relevance:0,begin:"\\]\\(",end:"\\)",
excludeBegin:!0,excludeEnd:!0},{className:"symbol",relevance:0,begin:"\\]\\[",
end:"\\]",excludeBegin:!0,excludeEnd:!0}]},s={className:"strong",contains:[],
variants:[{begin:/_{2}/,end:/_{2}/},{begin:/\*{2}/,end:/\*{2}/}]},c={
className:"emphasis",contains:[],variants:[{begin:/\*(?!\*)/,end:/\*/},{
begin:/_(?!_)/,end:/_/,relevance:0}]};s.contains.push(c),c.contains.push(s)
;let t=[a,i]
;return s.contains=s.contains.concat(t),c.contains=c.contains.concat(t),
t=t.concat(s,c),{name:"Markdown",aliases:["md","mkdown","mkd"],contains:[{
className:"section",variants:[{begin:"^#{1,6}",end:"$",contains:t},{
begin:"(?=^.+?\\n[=-]{2,}$)",contains:[{begin:"^[=-]*$"},{begin:"^",end:"\\n",
contains:t}]}]},a,{className:"bullet",begin:"^[ \t]*([*+-]|(\\d+\\.))(?=\\s+)",
end:"\\s+",excludeEnd:!0},s,c,{className:"quote",begin:"^>\\s+",contains:t,
end:"$"},{className:"code",variants:[{begin:"(`{3,})[^`](.|\\n)*?\\1`*[ ]*"},{
begin:"(~{3,})[^~](.|\\n)*?\\1~*[ ]*"},{begin:"```",end:"```+[ ]*$"},{
begin:"~~~",end:"~~~+[ ]*$"},{begin:"`.+?`"},{begin:"(?=^( {4}|\\t))",
contains:[{begin:"^( {4}|\\t)",end:"(\\n)$"}],relevance:0}]},{
begin:"^[-\\*]{3,}",end:"$"},i,{begin:/^\[[^\n]+\]:/,returnBegin:!0,contains:[{
className:"symbol",begin:/\[/,end:/\]/,excludeBegin:!0,excludeEnd:!0},{
className:"link",begin:/:\s*/,end:/$/,excludeBegin:!0}]}]}}})());hljs.registerLanguage("apache",(()=>{"use strict";return e=>{const n={
className:"number",begin:/\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}(:\d{1,5})?/}
;return{name:"Apache config",aliases:["apacheconf"],case_insensitive:!0,
contains:[e.HASH_COMMENT_MODE,{className:"section",begin:/<\/?/,end:/>/,
contains:[n,{className:"number",begin:/:\d{1,5}/
},e.inherit(e.QUOTE_STRING_MODE,{relevance:0})]},{className:"attribute",
begin:/\w+/,relevance:0,keywords:{
nomarkup:"order deny allow setenv rewriterule rewriteengine rewritecond documentroot sethandler errordocument loadmodule options header listen serverroot servername"
},starts:{end:/$/,relevance:0,keywords:{literal:"on off all deny allow"},
contains:[{className:"meta",begin:/\s\[/,end:/\]$/},{className:"variable",
begin:/[\$%]\{/,end:/\}/,contains:["self",{className:"number",begin:/[$%]\d+/}]
},n,{className:"number",begin:/\d+/},e.QUOTE_STRING_MODE]}}],illegal:/\S/}}
})());hljs.registerLanguage("rust",(()=>{"use strict";return e=>{
const n="([ui](8|16|32|64|128|size)|f(32|64))?",t="drop i8 i16 i32 i64 i128 isize u8 u16 u32 u64 u128 usize f32 f64 str char bool Box Option Result String Vec Copy Send Sized Sync Drop Fn FnMut FnOnce ToOwned Clone Debug PartialEq PartialOrd Eq Ord AsRef AsMut Into From Default Iterator Extend IntoIterator DoubleEndedIterator ExactSizeIterator SliceConcatExt ToString assert! assert_eq! bitflags! bytes! cfg! col! concat! concat_idents! debug_assert! debug_assert_eq! env! panic! file! format! format_args! include_bin! include_str! line! local_data_key! module_path! option_env! print! println! select! stringify! try! unimplemented! unreachable! vec! write! writeln! macro_rules! assert_ne! debug_assert_ne!"
;return{name:"Rust",aliases:["rs"],keywords:{$pattern:e.IDENT_RE+"!?",
keyword:"abstract as async await become box break const continue crate do dyn else enum extern false final fn for if impl in let loop macro match mod move mut override priv pub ref return self Self static struct super trait true try type typeof unsafe unsized use virtual where while yield",
literal:"true false Some None Ok Err",built_in:t},illegal:"</",
contains:[e.C_LINE_COMMENT_MODE,e.COMMENT("/\\*","\\*/",{contains:["self"]
}),e.inherit(e.QUOTE_STRING_MODE,{begin:/b?"/,illegal:null}),{
className:"string",variants:[{begin:/r(#*)"(.|\n)*?"\1(?!#)/},{
begin:/b?'\\?(x\w{2}|u\w{4}|U\w{8}|.)'/}]},{className:"symbol",
begin:/'[a-zA-Z_][a-zA-Z0-9_]*/},{className:"number",variants:[{
begin:"\\b0b([01_]+)"+n},{begin:"\\b0o([0-7_]+)"+n},{
begin:"\\b0x([A-Fa-f0-9_]+)"+n},{
begin:"\\b(\\d[\\d_]*(\\.[0-9_]+)?([eE][+-]?[0-9_]+)?)"+n}],relevance:0},{
className:"function",beginKeywords:"fn",end:"(\\(|<)",excludeEnd:!0,
contains:[e.UNDERSCORE_TITLE_MODE]},{className:"meta",begin:"#!?\\[",end:"\\]",
contains:[{className:"meta-string",begin:/"/,end:/"/}]},{className:"class",
beginKeywords:"type",end:";",contains:[e.inherit(e.UNDERSCORE_TITLE_MODE,{
endsParent:!0})],illegal:"\\S"},{className:"class",
beginKeywords:"trait enum struct union",end:/\{/,
contains:[e.inherit(e.UNDERSCORE_TITLE_MODE,{endsParent:!0})],illegal:"[\\w\\d]"
},{begin:e.IDENT_RE+"::",keywords:{built_in:t}},{begin:"->"}]}}})());hljs.registerLanguage("php",(()=>{"use strict";return e=>{const r={
className:"variable",
begin:"\\$+[a-zA-Z_\x7f-\xff][a-zA-Z0-9_\x7f-\xff]*(?![A-Za-z0-9])(?![$])"},t={
className:"meta",variants:[{begin:/<\?php/,relevance:10},{begin:/<\?[=]?/},{
begin:/\?>/}]},a={className:"subst",variants:[{begin:/\$\w+/},{begin:/\{\$/,
end:/\}/}]},n=e.inherit(e.APOS_STRING_MODE,{illegal:null
}),i=e.inherit(e.QUOTE_STRING_MODE,{illegal:null,
contains:e.QUOTE_STRING_MODE.contains.concat(a)}),o=e.END_SAME_AS_BEGIN({
begin:/<<<[ \t]*(\w+)\n/,end:/[ \t]*(\w+)\b/,
contains:e.QUOTE_STRING_MODE.contains.concat(a)}),l={className:"string",
contains:[e.BACKSLASH_ESCAPE,t],variants:[e.inherit(n,{begin:"b'",end:"'"
}),e.inherit(i,{begin:'b"',end:'"'}),i,n,o]},s={className:"number",variants:[{
begin:"\\b0b[01]+(?:_[01]+)*\\b"},{begin:"\\b0o[0-7]+(?:_[0-7]+)*\\b"},{
begin:"\\b0x[\\da-f]+(?:_[\\da-f]+)*\\b"},{
begin:"(?:\\b\\d+(?:_\\d+)*(\\.(?:\\d+(?:_\\d+)*))?|\\B\\.\\d+)(?:e[+-]?\\d+)?"
}],relevance:0},c={
keyword:"__CLASS__ __DIR__ __FILE__ __FUNCTION__ __LINE__ __METHOD__ __NAMESPACE__ __TRAIT__ die echo exit include include_once print require require_once array abstract and as binary bool boolean break callable case catch class clone const continue declare default do double else elseif empty enddeclare endfor endforeach endif endswitch endwhile enum eval extends final finally float for foreach from global goto if implements instanceof insteadof int integer interface isset iterable list match|0 mixed new object or private protected public real return string switch throw trait try unset use var void while xor yield",
literal:"false null true",
built_in:"Error|0 AppendIterator ArgumentCountError ArithmeticError ArrayIterator ArrayObject AssertionError BadFunctionCallException BadMethodCallException CachingIterator CallbackFilterIterator CompileError Countable DirectoryIterator DivisionByZeroError DomainException EmptyIterator ErrorException Exception FilesystemIterator FilterIterator GlobIterator InfiniteIterator InvalidArgumentException IteratorIterator LengthException LimitIterator LogicException MultipleIterator NoRewindIterator OutOfBoundsException OutOfRangeException OuterIterator OverflowException ParentIterator ParseError RangeException RecursiveArrayIterator RecursiveCachingIterator RecursiveCallbackFilterIterator RecursiveDirectoryIterator RecursiveFilterIterator RecursiveIterator RecursiveIteratorIterator RecursiveRegexIterator RecursiveTreeIterator RegexIterator RuntimeException SeekableIterator SplDoublyLinkedList SplFileInfo SplFileObject SplFixedArray SplHeap SplMaxHeap SplMinHeap SplObjectStorage SplObserver SplObserver SplPriorityQueue SplQueue SplStack SplSubject SplSubject SplTempFileObject TypeError UnderflowException UnexpectedValueException UnhandledMatchError ArrayAccess Closure Generator Iterator IteratorAggregate Serializable Stringable Throwable Traversable WeakReference WeakMap Directory __PHP_Incomplete_Class parent php_user_filter self static stdClass"
};return{aliases:["php3","php4","php5","php6","php7","php8"],
case_insensitive:!0,keywords:c,
contains:[e.HASH_COMMENT_MODE,e.COMMENT("//","$",{contains:[t]
}),e.COMMENT("/\\*","\\*/",{contains:[{className:"doctag",begin:"@[A-Za-z]+"}]
}),e.COMMENT("__halt_compiler.+?;",!1,{endsWithParent:!0,
keywords:"__halt_compiler"}),t,{className:"keyword",begin:/\$this\b/},r,{
begin:/(::|->)+[a-zA-Z_\x7f-\xff][a-zA-Z0-9_\x7f-\xff]*/},{className:"function",
relevance:0,beginKeywords:"fn function",end:/[;{]/,excludeEnd:!0,
illegal:"[$%\\[]",contains:[{beginKeywords:"use"},e.UNDERSCORE_TITLE_MODE,{
begin:"=>",endsParent:!0},{className:"params",begin:"\\(",end:"\\)",
excludeBegin:!0,excludeEnd:!0,keywords:c,
contains:["self",r,e.C_BLOCK_COMMENT_MODE,l,s]}]},{className:"class",variants:[{
beginKeywords:"enum",illegal:/[($"]/},{beginKeywords:"class interface trait",
illegal:/[:($"]/}],relevance:0,end:/\{/,excludeEnd:!0,contains:[{
beginKeywords:"extends implements"},e.UNDERSCORE_TITLE_MODE]},{
beginKeywords:"namespace",relevance:0,end:";",illegal:/[.']/,
contains:[e.UNDERSCORE_TITLE_MODE]},{beginKeywords:"use",relevance:0,end:";",
contains:[e.UNDERSCORE_TITLE_MODE]},l,s]}}})());hljs.registerLanguage("php-template",(()=>{"use strict";return n=>({
name:"PHP template",subLanguage:"xml",contains:[{begin:/<\?(php|=)?/,end:/\?>/,
subLanguage:"php",contains:[{begin:"/\\*",end:"\\*/",skip:!0},{begin:'b"',
end:'"',skip:!0},{begin:"b'",end:"'",skip:!0},n.inherit(n.APOS_STRING_MODE,{
illegal:null,className:null,contains:null,skip:!0
}),n.inherit(n.QUOTE_STRING_MODE,{illegal:null,className:null,contains:null,
skip:!0})]}]})})());hljs.registerLanguage("cpp",(()=>{"use strict";function e(e){
return t("(",e,")?")}function t(...e){return e.map((e=>{
return(t=e)?"string"==typeof t?t:t.source:null;var t})).join("")}return n=>{
const r=n.COMMENT("//","$",{contains:[{begin:/\\\n/}]
}),a="[a-zA-Z_]\\w*::",i="(decltype\\(auto\\)|"+e(a)+"[a-zA-Z_]\\w*"+e("<[^<>]+>")+")",s={
className:"keyword",begin:"\\b[a-z\\d_]*_t\\b"},c={className:"string",
variants:[{begin:'(u8?|U|L)?"',end:'"',illegal:"\\n",
contains:[n.BACKSLASH_ESCAPE]},{
begin:"(u8?|U|L)?'(\\\\(x[0-9A-Fa-f]{2}|u[0-9A-Fa-f]{4,8}|[0-7]{3}|\\S)|.)",
end:"'",illegal:"."},n.END_SAME_AS_BEGIN({
begin:/(?:u8?|U|L)?R"([^()\\ ]{0,16})\(/,end:/\)([^()\\ ]{0,16})"/})]},o={
className:"number",variants:[{begin:"\\b(0b[01']+)"},{
begin:"(-?)\\b([\\d']+(\\.[\\d']*)?|\\.[\\d']+)((ll|LL|l|L)(u|U)?|(u|U)(ll|LL|l|L)?|f|F|b|B)"
},{
begin:"(-?)(\\b0[xX][a-fA-F0-9']+|(\\b[\\d']+(\\.[\\d']*)?|\\.[\\d']+)([eE][-+]?[\\d']+)?)"
}],relevance:0},l={className:"meta",begin:/#\s*[a-z]+\b/,end:/$/,keywords:{
"meta-keyword":"if else elif endif define undef warning error line pragma _Pragma ifdef ifndef include"
},contains:[{begin:/\\\n/,relevance:0},n.inherit(c,{className:"meta-string"}),{
className:"meta-string",begin:/<.*?>/},r,n.C_BLOCK_COMMENT_MODE]},d={
className:"title",begin:e(a)+n.IDENT_RE,relevance:0
},u=e(a)+n.IDENT_RE+"\\s*\\(",m={
keyword:"int float while private char char8_t char16_t char32_t catch import module export virtual operator sizeof dynamic_cast|10 typedef const_cast|10 const for static_cast|10 union namespace unsigned long volatile static protected bool template mutable if public friend do goto auto void enum else break extern using asm case typeid wchar_t short reinterpret_cast|10 default double register explicit signed typename try this switch continue inline delete alignas alignof constexpr consteval constinit decltype concept co_await co_return co_yield requires noexcept static_assert thread_local restrict final override atomic_bool atomic_char atomic_schar atomic_uchar atomic_short atomic_ushort atomic_int atomic_uint atomic_long atomic_ulong atomic_llong atomic_ullong new throw return and and_eq bitand bitor compl not not_eq or or_eq xor xor_eq",
built_in:"_Bool _Complex _Imaginary",
_relevance_hints:["asin","atan2","atan","calloc","ceil","cosh","cos","exit","exp","fabs","floor","fmod","fprintf","fputs","free","frexp","auto_ptr","deque","list","queue","stack","vector","map","set","pair","bitset","multiset","multimap","unordered_set","fscanf","future","isalnum","isalpha","iscntrl","isdigit","isgraph","islower","isprint","ispunct","isspace","isupper","isxdigit","tolower","toupper","labs","ldexp","log10","log","malloc","realloc","memchr","memcmp","memcpy","memset","modf","pow","printf","putchar","puts","scanf","sinh","sin","snprintf","sprintf","sqrt","sscanf","strcat","strchr","strcmp","strcpy","strcspn","strlen","strncat","strncmp","strncpy","strpbrk","strrchr","strspn","strstr","tanh","tan","unordered_map","unordered_multiset","unordered_multimap","priority_queue","make_pair","array","shared_ptr","abort","terminate","abs","acos","vfprintf","vprintf","vsprintf","endl","initializer_list","unique_ptr","complex","imaginary","std","string","wstring","cin","cout","cerr","clog","stdin","stdout","stderr","stringstream","istringstream","ostringstream"],
literal:"true false nullptr NULL"},p={className:"function.dispatch",relevance:0,
keywords:m,
begin:t(/\b/,/(?!decltype)/,/(?!if)/,/(?!for)/,/(?!while)/,n.IDENT_RE,(_=/\s*\(/,
t("(?=",_,")")))};var _;const g=[p,l,s,r,n.C_BLOCK_COMMENT_MODE,o,c],b={
variants:[{begin:/=/,end:/;/},{begin:/\(/,end:/\)/},{
beginKeywords:"new throw return else",end:/;/}],keywords:m,contains:g.concat([{
begin:/\(/,end:/\)/,keywords:m,contains:g.concat(["self"]),relevance:0}]),
relevance:0},f={className:"function",begin:"("+i+"[\\*&\\s]+)+"+u,
returnBegin:!0,end:/[{;=]/,excludeEnd:!0,keywords:m,illegal:/[^\w\s\*&:<>.]/,
contains:[{begin:"decltype\\(auto\\)",keywords:m,relevance:0},{begin:u,
returnBegin:!0,contains:[d],relevance:0},{begin:/::/,relevance:0},{begin:/:/,
endsWithParent:!0,contains:[c,o]},{className:"params",begin:/\(/,end:/\)/,
keywords:m,relevance:0,contains:[r,n.C_BLOCK_COMMENT_MODE,c,o,s,{begin:/\(/,
end:/\)/,keywords:m,relevance:0,contains:["self",r,n.C_BLOCK_COMMENT_MODE,c,o,s]
}]},s,r,n.C_BLOCK_COMMENT_MODE,l]};return{name:"C++",
aliases:["cc","c++","h++","hpp","hh","hxx","cxx"],keywords:m,illegal:"</",
classNameAliases:{"function.dispatch":"built_in"},
contains:[].concat(b,f,p,g,[l,{
begin:"\\b(deque|list|queue|priority_queue|pair|stack|vector|map|set|bitset|multiset|multimap|unordered_map|unordered_set|unordered_multiset|unordered_multimap|array)\\s*<",
end:">",keywords:m,contains:["self",s]},{begin:n.IDENT_RE+"::",keywords:m},{
className:"class",beginKeywords:"enum class struct union",end:/[{;:<>=]/,
contains:[{beginKeywords:"final class struct"},n.TITLE_MODE]}]),exports:{
preprocessor:l,strings:c,keywords:m}}}})());hljs.registerLanguage("json",(()=>{"use strict";return n=>{const e={
literal:"true false null"
},i=[n.C_LINE_COMMENT_MODE,n.C_BLOCK_COMMENT_MODE],a=[n.QUOTE_STRING_MODE,n.C_NUMBER_MODE],l={
end:",",endsWithParent:!0,excludeEnd:!0,contains:a,keywords:e},t={begin:/\{/,
end:/\}/,contains:[{className:"attr",begin:/"/,end:/"/,
contains:[n.BACKSLASH_ESCAPE],illegal:"\\n"},n.inherit(l,{begin:/:/
})].concat(i),illegal:"\\S"},s={begin:"\\[",end:"\\]",contains:[n.inherit(l)],
illegal:"\\S"};return a.push(t,s),i.forEach((n=>{a.push(n)})),{name:"JSON",
contains:a,keywords:e,illegal:"\\S"}}})());hljs.registerLanguage("objectivec",(()=>{"use strict";return e=>{
const n=/[a-zA-Z@][a-zA-Z0-9_]*/,_={$pattern:n,
keyword:"@interface @class @protocol @implementation"};return{
name:"Objective-C",aliases:["mm","objc","obj-c","obj-c++","objective-c++"],
keywords:{$pattern:n,
keyword:"int float while char export sizeof typedef const struct for union unsigned long volatile static bool mutable if do return goto void enum else break extern asm case short default double register explicit signed typename this switch continue wchar_t inline readonly assign readwrite self @synchronized id typeof nonatomic super unichar IBOutlet IBAction strong weak copy in out inout bycopy byref oneway __strong __weak __block __autoreleasing @private @protected @public @try @property @end @throw @catch @finally @autoreleasepool @synthesize @dynamic @selector @optional @required @encode @package @import @defs @compatibility_alias __bridge __bridge_transfer __bridge_retained __bridge_retain __covariant __contravariant __kindof _Nonnull _Nullable _Null_unspecified __FUNCTION__ __PRETTY_FUNCTION__ __attribute__ getter setter retain unsafe_unretained nonnull nullable null_unspecified null_resettable class instancetype NS_DESIGNATED_INITIALIZER NS_UNAVAILABLE NS_REQUIRES_SUPER NS_RETURNS_INNER_POINTER NS_INLINE NS_AVAILABLE NS_DEPRECATED NS_ENUM NS_OPTIONS NS_SWIFT_UNAVAILABLE NS_ASSUME_NONNULL_BEGIN NS_ASSUME_NONNULL_END NS_REFINED_FOR_SWIFT NS_SWIFT_NAME NS_SWIFT_NOTHROW NS_DURING NS_HANDLER NS_ENDHANDLER NS_VALUERETURN NS_VOIDRETURN",
literal:"false true FALSE TRUE nil YES NO NULL",
built_in:"BOOL dispatch_once_t dispatch_queue_t dispatch_sync dispatch_async dispatch_once"
},illegal:"</",contains:[{className:"built_in",
begin:"\\b(AV|CA|CF|CG|CI|CL|CM|CN|CT|MK|MP|MTK|MTL|NS|SCN|SK|UI|WK|XC)\\w+"
},e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE,e.C_NUMBER_MODE,e.QUOTE_STRING_MODE,e.APOS_STRING_MODE,{
className:"string",variants:[{begin:'@"',end:'"',illegal:"\\n",
contains:[e.BACKSLASH_ESCAPE]}]},{className:"meta",begin:/#\s*[a-z]+\b/,end:/$/,
keywords:{
"meta-keyword":"if else elif endif define undef warning error line pragma ifdef ifndef include"
},contains:[{begin:/\\\n/,relevance:0},e.inherit(e.QUOTE_STRING_MODE,{
className:"meta-string"}),{className:"meta-string",begin:/<.*?>/,end:/$/,
illegal:"\\n"},e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE]},{
className:"class",begin:"("+_.keyword.split(" ").join("|")+")\\b",end:/(\{|$)/,
excludeEnd:!0,keywords:_,contains:[e.UNDERSCORE_TITLE_MODE]},{
begin:"\\."+e.UNDERSCORE_IDENT_RE,relevance:0}]}}})());hljs.registerLanguage("less",(()=>{"use strict"
;const e=["a","abbr","address","article","aside","audio","b","blockquote","body","button","canvas","caption","cite","code","dd","del","details","dfn","div","dl","dt","em","fieldset","figcaption","figure","footer","form","h1","h2","h3","h4","h5","h6","header","hgroup","html","i","iframe","img","input","ins","kbd","label","legend","li","main","mark","menu","nav","object","ol","p","q","quote","samp","section","span","strong","summary","sup","table","tbody","td","textarea","tfoot","th","thead","time","tr","ul","var","video"],t=["any-hover","any-pointer","aspect-ratio","color","color-gamut","color-index","device-aspect-ratio","device-height","device-width","display-mode","forced-colors","grid","height","hover","inverted-colors","monochrome","orientation","overflow-block","overflow-inline","pointer","prefers-color-scheme","prefers-contrast","prefers-reduced-motion","prefers-reduced-transparency","resolution","scan","scripting","update","width","min-width","max-width","min-height","max-height"],i=["active","any-link","blank","checked","current","default","defined","dir","disabled","drop","empty","enabled","first","first-child","first-of-type","fullscreen","future","focus","focus-visible","focus-within","has","host","host-context","hover","indeterminate","in-range","invalid","is","lang","last-child","last-of-type","left","link","local-link","not","nth-child","nth-col","nth-last-child","nth-last-col","nth-last-of-type","nth-of-type","only-child","only-of-type","optional","out-of-range","past","placeholder-shown","read-only","read-write","required","right","root","scope","target","target-within","user-invalid","valid","visited","where"],o=["after","backdrop","before","cue","cue-region","first-letter","first-line","grammar-error","marker","part","placeholder","selection","slotted","spelling-error"],n=["align-content","align-items","align-self","animation","animation-delay","animation-direction","animation-duration","animation-fill-mode","animation-iteration-count","animation-name","animation-play-state","animation-timing-function","auto","backface-visibility","background","background-attachment","background-clip","background-color","background-image","background-origin","background-position","background-repeat","background-size","border","border-bottom","border-bottom-color","border-bottom-left-radius","border-bottom-right-radius","border-bottom-style","border-bottom-width","border-collapse","border-color","border-image","border-image-outset","border-image-repeat","border-image-slice","border-image-source","border-image-width","border-left","border-left-color","border-left-style","border-left-width","border-radius","border-right","border-right-color","border-right-style","border-right-width","border-spacing","border-style","border-top","border-top-color","border-top-left-radius","border-top-right-radius","border-top-style","border-top-width","border-width","bottom","box-decoration-break","box-shadow","box-sizing","break-after","break-before","break-inside","caption-side","clear","clip","clip-path","color","column-count","column-fill","column-gap","column-rule","column-rule-color","column-rule-style","column-rule-width","column-span","column-width","columns","content","counter-increment","counter-reset","cursor","direction","display","empty-cells","filter","flex","flex-basis","flex-direction","flex-flow","flex-grow","flex-shrink","flex-wrap","float","font","font-display","font-family","font-feature-settings","font-kerning","font-language-override","font-size","font-size-adjust","font-smoothing","font-stretch","font-style","font-variant","font-variant-ligatures","font-variation-settings","font-weight","height","hyphens","icon","image-orientation","image-rendering","image-resolution","ime-mode","inherit","initial","justify-content","left","letter-spacing","line-height","list-style","list-style-image","list-style-position","list-style-type","margin","margin-bottom","margin-left","margin-right","margin-top","marks","mask","max-height","max-width","min-height","min-width","nav-down","nav-index","nav-left","nav-right","nav-up","none","normal","object-fit","object-position","opacity","order","orphans","outline","outline-color","outline-offset","outline-style","outline-width","overflow","overflow-wrap","overflow-x","overflow-y","padding","padding-bottom","padding-left","padding-right","padding-top","page-break-after","page-break-before","page-break-inside","perspective","perspective-origin","pointer-events","position","quotes","resize","right","src","tab-size","table-layout","text-align","text-align-last","text-decoration","text-decoration-color","text-decoration-line","text-decoration-style","text-indent","text-overflow","text-rendering","text-shadow","text-transform","text-underline-position","top","transform","transform-origin","transform-style","transition","transition-delay","transition-duration","transition-property","transition-timing-function","unicode-bidi","vertical-align","visibility","white-space","widows","width","word-break","word-spacing","word-wrap","z-index"].reverse(),r=i.concat(o)
;return a=>{const s=(e=>({IMPORTANT:{className:"meta",begin:"!important"},
HEXCOLOR:{className:"number",begin:"#([a-fA-F0-9]{6}|[a-fA-F0-9]{3})"},
ATTRIBUTE_SELECTOR_MODE:{className:"selector-attr",begin:/\[/,end:/\]/,
illegal:"$",contains:[e.APOS_STRING_MODE,e.QUOTE_STRING_MODE]}
}))(a),l=r,d="([\\w-]+|@\\{[\\w-]+\\})",c=[],g=[],b=e=>({className:"string",
begin:"~?"+e+".*?"+e}),m=(e,t,i)=>({className:e,begin:t,relevance:i}),u={
$pattern:/[a-z-]+/,keyword:"and or not only",attribute:t.join(" ")},p={
begin:"\\(",end:"\\)",contains:g,keywords:u,relevance:0}
;g.push(a.C_LINE_COMMENT_MODE,a.C_BLOCK_COMMENT_MODE,b("'"),b('"'),a.CSS_NUMBER_MODE,{
begin:"(url|data-uri)\\(",starts:{className:"string",end:"[\\)\\n]",
excludeEnd:!0}
},s.HEXCOLOR,p,m("variable","@@?[\\w-]+",10),m("variable","@\\{[\\w-]+\\}"),m("built_in","~?`[^`]*?`"),{
className:"attribute",begin:"[\\w-]+\\s*:",end:":",returnBegin:!0,excludeEnd:!0
},s.IMPORTANT);const f=g.concat({begin:/\{/,end:/\}/,contains:c}),h={
beginKeywords:"when",endsWithParent:!0,contains:[{beginKeywords:"and not"
}].concat(g)},w={begin:d+"\\s*:",returnBegin:!0,end:/[;}]/,relevance:0,
contains:[{begin:/-(webkit|moz|ms|o)-/},{className:"attribute",
begin:"\\b("+n.join("|")+")\\b",end:/(?=:)/,starts:{endsWithParent:!0,
illegal:"[<=$]",relevance:0,contains:g}}]},v={className:"keyword",
begin:"@(import|media|charset|font-face|(-[a-z]+-)?keyframes|supports|document|namespace|page|viewport|host)\\b",
starts:{end:"[;{}]",keywords:u,returnEnd:!0,contains:g,relevance:0}},y={
className:"variable",variants:[{begin:"@[\\w-]+\\s*:",relevance:15},{
begin:"@[\\w-]+"}],starts:{end:"[;}]",returnEnd:!0,contains:f}},k={variants:[{
begin:"[\\.#:&\\[>]",end:"[;{}]"},{begin:d,end:/\{/}],returnBegin:!0,
returnEnd:!0,illegal:"[<='$\"]",relevance:0,
contains:[a.C_LINE_COMMENT_MODE,a.C_BLOCK_COMMENT_MODE,h,m("keyword","all\\b"),m("variable","@\\{[\\w-]+\\}"),{
begin:"\\b("+e.join("|")+")\\b",className:"selector-tag"
},m("selector-tag",d+"%?",0),m("selector-id","#"+d),m("selector-class","\\."+d,0),m("selector-tag","&",0),s.ATTRIBUTE_SELECTOR_MODE,{
className:"selector-pseudo",begin:":("+i.join("|")+")"},{
className:"selector-pseudo",begin:"::("+o.join("|")+")"},{begin:"\\(",end:"\\)",
contains:f},{begin:"!important"}]},E={begin:`[\\w-]+:(:)?(${l.join("|")})`,
returnBegin:!0,contains:[k]}
;return c.push(a.C_LINE_COMMENT_MODE,a.C_BLOCK_COMMENT_MODE,v,y,E,w,k),{
name:"Less",case_insensitive:!0,illegal:"[=>'/<($\"]",contains:c}}})());hljs.registerLanguage("go",(()=>{"use strict";return e=>{const n={
keyword:"break default func interface select case map struct chan else goto package switch const fallthrough if range type continue for import return var go defer bool byte complex64 complex128 float32 float64 int8 int16 int32 int64 string uint8 uint16 uint32 uint64 int uint uintptr rune",
literal:"true false iota nil",
built_in:"append cap close complex copy imag len make new panic print println real recover delete"
};return{name:"Go",aliases:["golang"],keywords:n,illegal:"</",
contains:[e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE,{className:"string",
variants:[e.QUOTE_STRING_MODE,e.APOS_STRING_MODE,{begin:"`",end:"`"}]},{
className:"number",variants:[{begin:e.C_NUMBER_RE+"[i]",relevance:1
},e.C_NUMBER_MODE]},{begin:/:=/},{className:"function",beginKeywords:"func",
end:"\\s*(\\{|$)",excludeEnd:!0,contains:[e.TITLE_MODE,{className:"params",
begin:/\(/,end:/\)/,keywords:n,illegal:/["']/}]}]}}})());hljs.registerLanguage("diff",(()=>{"use strict";return e=>({name:"Diff",
aliases:["patch"],contains:[{className:"meta",relevance:10,variants:[{
begin:/^@@ +-\d+,\d+ +\+\d+,\d+ +@@/},{begin:/^\*\*\* +\d+,\d+ +\*\*\*\*$/},{
begin:/^--- +\d+,\d+ +----$/}]},{className:"comment",variants:[{begin:/Index: /,
end:/$/},{begin:/^index/,end:/$/},{begin:/={3,}/,end:/$/},{begin:/^-{3}/,end:/$/
},{begin:/^\*{3} /,end:/$/},{begin:/^\+{3}/,end:/$/},{begin:/^\*{15}$/},{
begin:/^diff --git/,end:/$/}]},{className:"addition",begin:/^\+/,end:/$/},{
className:"deletion",begin:/^-/,end:/$/},{className:"addition",begin:/^!/,
end:/$/}]})})());hljs.registerLanguage("python",(()=>{"use strict";return e=>{const n={
$pattern:/[A-Za-z]\w+|__\w+__/,
keyword:["and","as","assert","async","await","break","class","continue","def","del","elif","else","except","finally","for","from","global","if","import","in","is","lambda","nonlocal|10","not","or","pass","raise","return","try","while","with","yield"],
built_in:["__import__","abs","all","any","ascii","bin","bool","breakpoint","bytearray","bytes","callable","chr","classmethod","compile","complex","delattr","dict","dir","divmod","enumerate","eval","exec","filter","float","format","frozenset","getattr","globals","hasattr","hash","help","hex","id","input","int","isinstance","issubclass","iter","len","list","locals","map","max","memoryview","min","next","object","oct","open","ord","pow","print","property","range","repr","reversed","round","set","setattr","slice","sorted","staticmethod","str","sum","super","tuple","type","vars","zip"],
literal:["__debug__","Ellipsis","False","None","NotImplemented","True"],
type:["Any","Callable","Coroutine","Dict","List","Literal","Generic","Optional","Sequence","Set","Tuple","Type","Union"]
},a={className:"meta",begin:/^(>>>|\.\.\.) /},i={className:"subst",begin:/\{/,
end:/\}/,keywords:n,illegal:/#/},s={begin:/\{\{/,relevance:0},t={
className:"string",contains:[e.BACKSLASH_ESCAPE],variants:[{
begin:/([uU]|[bB]|[rR]|[bB][rR]|[rR][bB])?'''/,end:/'''/,
contains:[e.BACKSLASH_ESCAPE,a],relevance:10},{
begin:/([uU]|[bB]|[rR]|[bB][rR]|[rR][bB])?"""/,end:/"""/,
contains:[e.BACKSLASH_ESCAPE,a],relevance:10},{
begin:/([fF][rR]|[rR][fF]|[fF])'''/,end:/'''/,
contains:[e.BACKSLASH_ESCAPE,a,s,i]},{begin:/([fF][rR]|[rR][fF]|[fF])"""/,
end:/"""/,contains:[e.BACKSLASH_ESCAPE,a,s,i]},{begin:/([uU]|[rR])'/,end:/'/,
relevance:10},{begin:/([uU]|[rR])"/,end:/"/,relevance:10},{
begin:/([bB]|[bB][rR]|[rR][bB])'/,end:/'/},{begin:/([bB]|[bB][rR]|[rR][bB])"/,
end:/"/},{begin:/([fF][rR]|[rR][fF]|[fF])'/,end:/'/,
contains:[e.BACKSLASH_ESCAPE,s,i]},{begin:/([fF][rR]|[rR][fF]|[fF])"/,end:/"/,
contains:[e.BACKSLASH_ESCAPE,s,i]},e.APOS_STRING_MODE,e.QUOTE_STRING_MODE]
},r="[0-9](_?[0-9])*",l=`(\\b(${r}))?\\.(${r})|\\b(${r})\\.`,b={
className:"number",relevance:0,variants:[{
begin:`(\\b(${r})|(${l}))[eE][+-]?(${r})[jJ]?\\b`},{begin:`(${l})[jJ]?`},{
begin:"\\b([1-9](_?[0-9])*|0+(_?0)*)[lLjJ]?\\b"},{
begin:"\\b0[bB](_?[01])+[lL]?\\b"},{begin:"\\b0[oO](_?[0-7])+[lL]?\\b"},{
begin:"\\b0[xX](_?[0-9a-fA-F])+[lL]?\\b"},{begin:`\\b(${r})[jJ]\\b`}]},o={
className:"comment",
begin:(d=/# type:/,((...e)=>e.map((e=>(e=>e?"string"==typeof e?e:e.source:null)(e))).join(""))("(?=",d,")")),
end:/$/,keywords:n,contains:[{begin:/# type:/},{begin:/#/,end:/\b\B/,
endsWithParent:!0}]},c={className:"params",variants:[{className:"",
begin:/\(\s*\)/,skip:!0},{begin:/\(/,end:/\)/,excludeBegin:!0,excludeEnd:!0,
keywords:n,contains:["self",a,b,t,e.HASH_COMMENT_MODE]}]};var d
;return i.contains=[t,b,a],{name:"Python",aliases:["py","gyp","ipython"],
keywords:n,illegal:/(<\/|->|\?)|=>/,contains:[a,b,{begin:/\bself\b/},{
beginKeywords:"if",relevance:0},t,o,e.HASH_COMMENT_MODE,{variants:[{
className:"function",beginKeywords:"def"},{className:"class",
beginKeywords:"class"}],end:/:/,illegal:/[${=;\n,]/,
contains:[e.UNDERSCORE_TITLE_MODE,c,{begin:/->/,endsWithParent:!0,keywords:n}]
},{className:"meta",begin:/^[\t ]*@/,end:/(?=#)|$/,contains:[b,c,t]}]}}})());hljs.registerLanguage("python-repl",(()=>{"use strict";return s=>({
aliases:["pycon"],contains:[{className:"meta",starts:{end:/ |$/,starts:{end:"$",
subLanguage:"python"}},variants:[{begin:/^>>>(?=[ ]|$)/},{
begin:/^\.\.\.(?=[ ]|$)/}]}]})})());hljs.registerLanguage("css",(()=>{"use strict"
;const e=["a","abbr","address","article","aside","audio","b","blockquote","body","button","canvas","caption","cite","code","dd","del","details","dfn","div","dl","dt","em","fieldset","figcaption","figure","footer","form","h1","h2","h3","h4","h5","h6","header","hgroup","html","i","iframe","img","input","ins","kbd","label","legend","li","main","mark","menu","nav","object","ol","p","q","quote","samp","section","span","strong","summary","sup","table","tbody","td","textarea","tfoot","th","thead","time","tr","ul","var","video"],t=["any-hover","any-pointer","aspect-ratio","color","color-gamut","color-index","device-aspect-ratio","device-height","device-width","display-mode","forced-colors","grid","height","hover","inverted-colors","monochrome","orientation","overflow-block","overflow-inline","pointer","prefers-color-scheme","prefers-contrast","prefers-reduced-motion","prefers-reduced-transparency","resolution","scan","scripting","update","width","min-width","max-width","min-height","max-height"],i=["active","any-link","blank","checked","current","default","defined","dir","disabled","drop","empty","enabled","first","first-child","first-of-type","fullscreen","future","focus","focus-visible","focus-within","has","host","host-context","hover","indeterminate","in-range","invalid","is","lang","last-child","last-of-type","left","link","local-link","not","nth-child","nth-col","nth-last-child","nth-last-col","nth-last-of-type","nth-of-type","only-child","only-of-type","optional","out-of-range","past","placeholder-shown","read-only","read-write","required","right","root","scope","target","target-within","user-invalid","valid","visited","where"],o=["after","backdrop","before","cue","cue-region","first-letter","first-line","grammar-error","marker","part","placeholder","selection","slotted","spelling-error"],r=["align-content","align-items","align-self","animation","animation-delay","animation-direction","animation-duration","animation-fill-mode","animation-iteration-count","animation-name","animation-play-state","animation-timing-function","auto","backface-visibility","background","background-attachment","background-clip","background-color","background-image","background-origin","background-position","background-repeat","background-size","border","border-bottom","border-bottom-color","border-bottom-left-radius","border-bottom-right-radius","border-bottom-style","border-bottom-width","border-collapse","border-color","border-image","border-image-outset","border-image-repeat","border-image-slice","border-image-source","border-image-width","border-left","border-left-color","border-left-style","border-left-width","border-radius","border-right","border-right-color","border-right-style","border-right-width","border-spacing","border-style","border-top","border-top-color","border-top-left-radius","border-top-right-radius","border-top-style","border-top-width","border-width","bottom","box-decoration-break","box-shadow","box-sizing","break-after","break-before","break-inside","caption-side","clear","clip","clip-path","color","column-count","column-fill","column-gap","column-rule","column-rule-color","column-rule-style","column-rule-width","column-span","column-width","columns","content","counter-increment","counter-reset","cursor","direction","display","empty-cells","filter","flex","flex-basis","flex-direction","flex-flow","flex-grow","flex-shrink","flex-wrap","float","font","font-display","font-family","font-feature-settings","font-kerning","font-language-override","font-size","font-size-adjust","font-smoothing","font-stretch","font-style","font-variant","font-variant-ligatures","font-variation-setting
gitextract_4yp5s7nn/
├── .github/
│ └── workflows/
│ └── build.yml
├── .gitignore
├── .gitmodules
├── README.md
├── agpl-3.0.txt
├── dub.sdl
├── dub.selections.json
├── flake.nix
├── makejson
├── schema_v1.sql
├── site-defaults/
│ ├── config/
│ │ ├── apis/
│ │ │ ├── akismet.ini.sample
│ │ │ ├── bitly.ini.sample
│ │ │ ├── mailhide.ini.sample
│ │ │ ├── openai.ini.sample
│ │ │ ├── projecthoneypot.ini.sample
│ │ │ ├── recaptcha.ini.sample
│ │ │ └── stopforumspam.ini
│ │ ├── backup.ini.sample
│ │ ├── groups.ini
│ │ ├── groups.ini.sample
│ │ ├── sinks/
│ │ │ ├── irc/
│ │ │ │ └── irc.ini.sample
│ │ │ └── twitter/
│ │ │ └── twitter.ini.sample
│ │ ├── site.ini.sample
│ │ ├── sources/
│ │ │ ├── feeds/
│ │ │ │ └── example.ini.sample
│ │ │ ├── github/
│ │ │ │ └── github.ini.sample
│ │ │ ├── mailman/
│ │ │ │ └── example.ini.sample
│ │ │ ├── mailrelay/
│ │ │ │ └── example.ini.sample
│ │ │ ├── nntp/
│ │ │ │ └── example.ini.sample
│ │ │ ├── smtp/
│ │ │ │ └── example.ini.sample
│ │ │ ├── socket/
│ │ │ │ └── socket.ini.sample
│ │ │ └── stackoverflow/
│ │ │ └── so.ini.sample
│ │ ├── user.ini.sample
│ │ └── web.ini.sample
│ └── web/
│ ├── help-english.htt
│ ├── help-turkish.htt
│ ├── highlight-js/
│ │ ├── LICENSE
│ │ ├── highlight.pack.js
│ │ └── styles/
│ │ └── vs.css
│ ├── skel.htt
│ └── static/
│ ├── css/
│ │ ├── dfeed.css
│ │ └── style.css
│ ├── js/
│ │ └── dfeed.js
│ ├── robots_private.txt
│ └── robots_public.txt
├── src/
│ └── dfeed/
│ ├── backup.d
│ ├── bayes.d
│ ├── bitly.d
│ ├── common.d
│ ├── database.d
│ ├── debugging.d
│ ├── groups.d
│ ├── loc/
│ │ ├── english.d
│ │ ├── package.d
│ │ └── turkish.d
│ ├── mail.d
│ ├── message.d
│ ├── paths.d
│ ├── progs/
│ │ ├── dfeed.d
│ │ ├── nntpdownload.d
│ │ ├── sendspamfeedback.d
│ │ └── unban.d
│ ├── sinks/
│ │ ├── cache.d
│ │ ├── irc.d
│ │ ├── messagedb.d
│ │ ├── subscriptions.d
│ │ └── twitter.d
│ ├── site.d
│ ├── sources/
│ │ ├── github.d
│ │ ├── mailman.d
│ │ ├── mailrelay.d
│ │ ├── newsgroups.d
│ │ ├── socket.d
│ │ └── web/
│ │ ├── feed.d
│ │ ├── reddit.d
│ │ ├── stackoverflow.d
│ │ └── webpoller.d
│ └── web/
│ ├── captcha/
│ │ ├── common.d
│ │ ├── dcaptcha.d
│ │ ├── dummy.d
│ │ ├── package.d
│ │ └── recaptcha.d
│ ├── lint.d
│ ├── list.d
│ ├── mailhide.d
│ ├── markdown.d
│ ├── moderation.d
│ ├── posting.d
│ ├── spam/
│ │ ├── akismet.d
│ │ ├── bayes.d
│ │ ├── blogspam.d
│ │ ├── openai.d
│ │ ├── package.d
│ │ ├── projecthoneypot.d
│ │ ├── simple.d
│ │ └── stopforumspam.d
│ ├── user.d
│ └── web/
│ ├── cache.d
│ ├── config.d
│ ├── draft.d
│ ├── moderation.d
│ ├── page.d
│ ├── part/
│ │ ├── gravatar.d
│ │ ├── pager.d
│ │ ├── post.d
│ │ ├── postbody.d
│ │ ├── profile.d
│ │ ├── strings.d
│ │ └── thread.d
│ ├── perf.d
│ ├── postinfo.d
│ ├── posting.d
│ ├── postmod.d
│ ├── request.d
│ ├── server.d
│ ├── site.d
│ ├── statics.d
│ ├── user.d
│ └── view/
│ ├── feed.d
│ ├── group.d
│ ├── index.d
│ ├── login.d
│ ├── moderation.d
│ ├── post.d
│ ├── search.d
│ ├── settings.d
│ ├── subscription.d
│ ├── thread.d
│ ├── userprofile.d
│ └── widgets.d
└── tests/
├── captcha-screenshot.spec.ts
├── deleted-post-moderation.spec.ts
├── deleted-post-screenshot.spec.ts
├── index.spec.ts
├── package.json
├── playwright.config.ts
├── posting.spec.ts
└── user-journey.spec.ts
SYMBOL INDEX (173 symbols across 7 files)
FILE: schema_v1.sql
type ArtNum (line 5) | CREATE TABLE [Groups] (
type Threads (line 23) | CREATE TABLE [Threads] (
type PostThreadID (line 30) | CREATE INDEX [PostThreadID] ON [Posts](
type ThreadGroup (line 35) | CREATE INDEX [ThreadGroup] ON [Threads] ( [Group] );
type ThreadOrder (line 41) | CREATE INDEX ThreadOrder ON Threads ([Group], [LastUpdated] DESC)
type GroupID (line 44) | CREATE UNIQUE INDEX [GroupID] ON [Groups](
type "Threads" (line 55) | CREATE INDEX "ThreadID" ON "Threads" ( ID )
type PostParentID (line 58) | CREATE INDEX PostParentID ON Posts ( ParentID )
type Users (line 61) | CREATE TABLE [Users] ( [Username] VARCHAR(50), [Password] VARCHAR(50), [...
type GroupArtNum (line 73) | CREATE INDEX [GroupArtNum] ON [Groups] ( [Group], [ArtNum] );
type DraftID (line 82) | CREATE UNIQUE INDEX [DraftID] ON [Drafts] ([ID])
type DraftUserID (line 85) | CREATE INDEX [DraftUserID] ON [Drafts] ([UserID], [Status])
type DraftPostID (line 88) | CREATE UNIQUE INDEX [DraftPostID] ON [Drafts] ([PostID])
type Subscriptions (line 91) | CREATE TABLE [Subscriptions] (
type ReplyTriggers (line 98) | CREATE TABLE [ReplyTriggers] ([Email] VARCHAR(50) NOT NULL, [Subscriptio...
type ReplyTriggerSubscripion (line 101) | CREATE UNIQUE INDEX [ReplyTriggerSubscripion] ON [ReplyTriggers] ([Subsc...
type ReplyTriggerEmail (line 104) | CREATE INDEX [ReplyTriggerEmail] ON [ReplyTriggers] ([Email])
type ThreadTriggers (line 107) | CREATE TABLE [ThreadTriggers] ([ThreadID] VARCHAR(50) NOT NULL, [Subscri...
type ThreadTriggerSubscription (line 110) | CREATE UNIQUE INDEX [ThreadTriggerSubscription] ON [ThreadTriggers] ([Su...
type ThreadTriggerThreadID (line 113) | CREATE INDEX [ThreadTriggerThreadID] ON [ThreadTriggers] ([ThreadID])
type ContentTriggers (line 116) | CREATE TABLE [ContentTriggers] ([SubscriptionID] VARCHAR(20) NOT NULL PR...
type SubscriptionPosts (line 119) | CREATE TABLE [SubscriptionPosts] (
type SubscriptionPostID (line 127) | CREATE INDEX [SubscriptionPostID] ON [SubscriptionPosts] ([SubscriptionI...
type ThreadCreated (line 133) | CREATE INDEX [ThreadCreated] ON [Threads] ([Created] DESC)
type PostAuthorEmail (line 136) | CREATE INDEX [PostAuthorEmail] ON [Posts] ([AuthorEmail])
type Flags (line 139) | CREATE TABLE [Flags] ([PostID] VARCHAR(50), [Username] VARCHAR(50), [Dat...
type UserFlags (line 142) | CREATE INDEX [UserFlags] ON [Flags] ([Username], [PostID])
FILE: site-defaults/web/highlight-js/highlight.pack.js
function e (line 6) | function e(t){
class i (line 12) | class i{constructor(e){
method constructor (line 12) | constructor(e){
method ignoreMatch (line 14) | ignoreMatch(){this.isMatchIgnored=!0}
function s (line 14) | function s(e){
function a (line 16) | function a(e,...t){const n=Object.create(null);for(const t in e)n[t]=e[t]
class l (line 18) | class l{constructor(e,t){
method constructor (line 18) | constructor(e,t){
method addText (line 19) | addText(e){
method openNode (line 20) | openNode(e){if(!r(e))return;let t=e.kind
method closeNode (line 21) | closeNode(e){
method value (line 22) | value(){return this.buffer}
method span (line 22) | span(e){
class o (line 23) | class o{constructor(){this.rootNode={
method constructor (line 23) | constructor(){this.rootNode={
method top (line 24) | get top(){
method root (line 25) | get root(){return this.rootNode}
method add (line 25) | add(e){
method openNode (line 26) | openNode(e){const t={kind:e,children:[]}
method closeNode (line 27) | closeNode(){
method closeAllNodes (line 28) | closeAllNodes(){
method toJSON (line 29) | toJSON(){return JSON.stringify(this.rootNode,null,4)}
method walk (line 30) | walk(e){return this.constructor._walk(e,this.rootNode)}
method _walk (line 30) | static _walk(e,t){
method _collapse (line 32) | static _collapse(e){
class c (line 34) | class c extends o{constructor(e){super(),this.options=e}
method constructor (line 34) | constructor(e){super(),this.options=e}
method addKeyword (line 35) | addKeyword(e,t){""!==e&&(this.openNode(t),this.addText(e),this.closeNo...
method addText (line 36) | addText(e){""!==e&&this.add(e)}
method addSublanguage (line 36) | addSublanguage(e,t){const n=e.root
method toHTML (line 37) | toHTML(){
method finalize (line 38) | finalize(){return!0}
function g (line 38) | function g(e){
function k (line 68) | function k(e,t){
function M (line 69) | function M(e,t){
function O (line 72) | function O(e,t){
function A (line 74) | function A(e,t){if(e.match){
function L (line 76) | function L(e,t){
function j (line 79) | function j(e,t,n="keyword"){const i={}
function B (line 83) | function B(e,t){
function T (line 85) | function T(e,{plugins:t}){function n(t,n){
function S (line 140) | function S(e){
function P (line 141) | function P(e){const t={
function l (line 156) | function l(){
method constructor (line 18) | constructor(e,t){
method addText (line 19) | addText(e){
method openNode (line 20) | openNode(e){if(!r(e))return;let t=e.kind
method closeNode (line 21) | closeNode(e){
method value (line 22) | value(){return this.buffer}
method span (line 22) | span(e){
function o (line 158) | function o(e){a+="<"+C(e)+[].map.call(e.attributes,(function(e){
method constructor (line 23) | constructor(){this.rootNode={
method top (line 24) | get top(){
method root (line 25) | get root(){return this.rootNode}
method add (line 25) | add(e){
method openNode (line 26) | openNode(e){const t={kind:e,children:[]}
method closeNode (line 27) | closeNode(){
method closeAllNodes (line 28) | closeAllNodes(){
method toJSON (line 29) | toJSON(){return JSON.stringify(this.rootNode,null,4)}
method walk (line 30) | walk(e){return this.constructor._walk(e,this.rootNode)}
method _walk (line 30) | static _walk(e,t){
method _collapse (line 32) | static _collapse(e){
function c (line 159) | function c(e){
method constructor (line 34) | constructor(e){super(),this.options=e}
method addKeyword (line 35) | addKeyword(e,t){""!==e&&(this.openNode(t),this.addText(e),this.closeNo...
method addText (line 36) | addText(e){""!==e&&this.add(e)}
method addSublanguage (line 36) | addSublanguage(e,t){const n=e.root
method toHTML (line 37) | toHTML(){
method finalize (line 38) | finalize(){return!0}
function g (line 160) | function g(e){("start"===e.event?o:c)(e.node)}
function C (line 166) | function C(e){
function H (line 167) | function H(e){const t=[];return function e(n,i){
function h (line 178) | function h(e){
function d (line 179) | function d(e,t,n,i){let s="",a=""
function f (line 185) | function f(e,t,s,l){
function p (line 242) | function p(e,t){
function x (line 256) | function x(e){let t=null;const n=(e=>{let t=e.className+" "
function y (line 271) | function y(){
function N (line 273) | function N(e){return e=(e||"").toLowerCase(),n[e]||n[s[e]]}
function R (line 274) | function R(e,{languageName:t}){"string"==typeof e&&(e=[e]),e.forEach((e=>{
function k (line 275) | function k(e){const t=N(e)
function M (line 276) | function M(e,t){const n=e;a.forEach((e=>{
function e (line 346) | function e(...e){
function e (line 376) | function e(e){
function r (line 377) | function r(...r){
function t (line 378) | function t(...r){
function e (line 393) | function e(e){
function n (line 394) | function n(...n){
function t (line 395) | function t(...n){
function e (line 492) | function e(...e){
function e (line 539) | function e(e){
function n (line 540) | function n(e){return a("(?=",e,")")}
function a (line 541) | function a(...n){return n.map((n=>e(n))).join("")}
function t (line 541) | function t(...n){
function e (line 599) | function e(e){
function n (line 600) | function n(...n){
function e (line 640) | function e(e){
function n (line 641) | function n(e){return a("(?=",e,")")}
function a (line 642) | function a(...n){return n.map((n=>e(n))).join("")}
function s (line 642) | function s(...n){
function e (line 746) | function e(e){
function e (line 785) | function e(...e){
function n (line 797) | function n(...n){
function e (line 899) | function e(e){
function t (line 900) | function t(...e){return e.map((e=>{
function t (line 1125) | function t(e){return r("(?=",e,")")}
function r (line 1125) | function r(...e){return e.map((e=>{
function r (line 1199) | function r(e){return t("(?=",e,")")}
function t (line 1199) | function t(...e){return e.map((e=>{
function e (line 1257) | function e(...e){return e.map((e=>{
function e (line 1311) | function e(e){
function n (line 1312) | function n(...n){
function t (line 1313) | function t(...n){
FILE: site-defaults/web/static/js/dfeed.js
function _ (line 1) | function _(s) {
function initThreadUrlFixer (line 45) | function initThreadUrlFixer() {
function initSplitView (line 72) | function initSplitView() {
function selectMessage (line 102) | function selectMessage(path) {
function idFromPath (line 112) | function idFromPath(path) {
function findInTree (line 118) | function findInTree(path) {
function getPath (line 126) | function getPath() {
function onPopState (line 139) | function onPopState() {
function updateTools (line 182) | function updateTools() {
function showPost (line 186) | function showPost(postHtml) {
function showText (line 196) | function showText(text) {
function showHtml (line 206) | function showHtml(text) {
function toggleNav (line 215) | function toggleNav() {
function showNav (line 222) | function showNav(hidden) {
function updateSize (line 234) | function updateSize(resized) {
function onResize (line 337) | function onResize() {
function nestedOffset (line 346) | function nestedOffset(element, container) {
function isInView (line 357) | function isInView($element, $container) {
function scrollIntoView (line 368) | function scrollIntoView($element, $container, withMargin) {
function syntaxHighlight (line 385) | function syntaxHighlight($root) {
function isRowInView (line 409) | function isRowInView($row) {
function focusRow (line 415) | function focusRow($row, focusScroll, byKeyboard) {
function selectRow (line 428) | function selectRow(row) {
function getSelectables (line 432) | function getSelectables() {
function getSelectedPost (line 450) | function getSelectedPost() {
function getSelectablesContainer (line 460) | function getSelectablesContainer() {
function getSelectableLink (line 468) | function getSelectableLink(row) {
function getReplyLink (line 478) | function getReplyLink() {
function getPostScrollable (line 486) | function getPostScrollable() {
function isAutoOpenApplicable (line 493) | function isAutoOpenApplicable() {
function focusNext (line 499) | function focusNext(offset, onlyUnread) {
function selectFocused (line 540) | function selectFocused() {
function markUnread (line 552) | function markUnread() {
function initKeyNav (line 566) | function initKeyNav() {
function addLinkNavigation (line 572) | function addLinkNavigation() {
function followLink (line 592) | function followLink(n) {
function showHelp (line 616) | function showHelp() {
function closeHelp (line 626) | function closeHelp() {
function onKeyDown (line 630) | function onKeyDown(e) {
function onKeyPress (line 637) | function onKeyPress(e) {
function onKey (line 643) | function onKey(e, keyDown) {
function navPrev (line 748) | function navPrev() { focusNext(-1) && selectFocused(); }
function navNext (line 749) | function navNext() { focusNext(+1) && selectFocused(); }
function pagePrev (line 751) | function pagePrev() {
function pageNext (line 760) | function pageNext() {
function moveCaretToEnd (line 773) | function moveCaretToEnd(el) {
function initPosting (line 784) | function initPosting() {
function initAutoSave (line 793) | function initAutoSave() {
FILE: tests/captcha-screenshot.spec.ts
constant PROJECT_ROOT (line 5) | const PROJECT_ROOT = path.resolve(__dirname, "..");
constant DB_PATH (line 6) | const DB_PATH = process.env.DFEED_DB || path.join(PROJECT_ROOT, "data/db...
FILE: tests/deleted-post-moderation.spec.ts
constant PROJECT_ROOT (line 5) | const PROJECT_ROOT = path.resolve(__dirname, "..");
constant DB_PATH (line 6) | const DB_PATH = process.env.DFEED_DB || path.join(PROJECT_ROOT, "data/db...
FILE: tests/deleted-post-screenshot.spec.ts
constant PROJECT_ROOT (line 5) | const PROJECT_ROOT = path.resolve(__dirname, "..");
constant DB_PATH (line 6) | const DB_PATH = process.env.DFEED_DB || path.join(PROJECT_ROOT, "data/db...
FILE: tests/user-journey.spec.ts
constant PROJECT_ROOT (line 5) | const PROJECT_ROOT = path.resolve(__dirname, "..");
constant DB_PATH (line 6) | const DB_PATH = process.env.DFEED_DB || path.join(PROJECT_ROOT, "data/db...
Condensed preview — 137 files, each showing path, character count, and a content snippet. Download the .json file or copy for the full structured content (991K chars).
[
{
"path": ".github/workflows/build.yml",
"chars": 1147,
"preview": "name: build\non: [ push, pull_request ]\n\njobs:\n build-dub:\n strategy:\n fail-fast: false\n matrix:\n os"
},
{
"path": ".gitignore",
"chars": 530,
"preview": "# Temporary files\n*.exe\n*.o\n*.obj\n*.def\n!ws2_32x.def\n*.ksp\n*.pdb\n*.rsp\n*.map\n*.mem\n*.suo\n*.ilk\n*.min.*\n*.jar\n/dfeed.json"
},
{
"path": ".gitmodules",
"chars": 275,
"preview": "[submodule \"ae\"]\n\tpath = lib/ae\n\turl = https://github.com/CyberShadow/ae\n[submodule \"dcaptcha\"]\n\tpath = lib/dcaptcha\n\tur"
},
{
"path": "README.md",
"chars": 1603,
"preview": "DFeed\n=====\n\nDFeed is a multi-protocol news aggregator and forum system:\n\n- NNTP client\n- Mailing list archive\n- Web-bas"
},
{
"path": "agpl-3.0.txt",
"chars": 34520,
"preview": " GNU AFFERO GENERAL PUBLIC LICENSE\n Version 3, 19 November 2007\n\n Copyright (C)"
},
{
"path": "dub.sdl",
"chars": 1260,
"preview": "name \"dfeed\"\ndescription \"D news aggregator, newsgroup client, web newsreader and IRC bot\"\nauthors \"Vladimir Panteleev <"
},
{
"path": "dub.selections.json",
"chars": 105,
"preview": "{\n\t\"fileVersion\": 1,\n\t\"versions\": {\n\t\t\"ae\": \"0.0.3666\",\n\t\t\"dcaptcha\": \"1.0.1\",\n\t\t\"openssl\": \"3.3.0\"\n\t}\n}\n"
},
{
"path": "flake.nix",
"chars": 13141,
"preview": "{\n description = \"DFeed - D news aggregator, newsgroup client, web newsreader and IRC bot\";\n\n inputs = {\n nixpkgs.u"
},
{
"path": "makejson",
"chars": 85,
"preview": "#!/bin/bash\nset -eu\n\ngit ls-files | grep '^src/.*\\.d$' | xargs dmd -Xfdfeed.json -o-\n"
},
{
"path": "schema_v1.sql",
"chars": 4661,
"preview": "-- Initial version of the database schema.\n-- See src/dfeed/database.d for updates since this initial revision.\n\n-- Tabl"
},
{
"path": "site-defaults/config/apis/akismet.ini.sample",
"chars": 73,
"preview": "# Akismet (http://akismet.com/) key for spam checks.\n#key = abcdefghijkl\n"
},
{
"path": "site-defaults/config/apis/bitly.ini.sample",
"chars": 132,
"preview": "# bitly.com API credentials. Used for shortening links for IRC.\n#login = your_username\n#apiKey = R_0123456789abcdef01234"
},
{
"path": "site-defaults/config/apis/mailhide.ini.sample",
"chars": 131,
"preview": "# Google MailHide API. Not currently used.\n#publicKey = ABCDEFGHIJKLMNOPQRSTUVWX==\n#privateKey = 0123456789abcdef012345"
},
{
"path": "site-defaults/config/apis/openai.ini.sample",
"chars": 375,
"preview": "# OpenAI API configuration for spam detection\n# Sign up at https://platform.openai.com/ to get an API key\n\n# API key (re"
},
{
"path": "site-defaults/config/apis/projecthoneypot.ini.sample",
"chars": 98,
"preview": "# Project Honey Pot (https://www.projecthoneypot.org/) API key for spam checks.\n#key=abcdefghijkl\n"
},
{
"path": "site-defaults/config/apis/recaptcha.ini.sample",
"chars": 126,
"preview": "# reCAPTCHA API \t\npublicKey = ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmn\nprivateKey = ABCDEFGHIJKMLMOPQRSTUVWXYZabcdefghi"
},
{
"path": "site-defaults/config/apis/stopforumspam.ini",
"chars": 296,
"preview": "# StopForumSpam spam checker configuration.\n# This service checks poster IP addresses against a database of known spamme"
},
{
"path": "site-defaults/config/backup.ini.sample",
"chars": 170,
"preview": "# Incremental daily backups using xdelta3\n# Copy this file to backup.ini to enable.\n\n# Time of day to run the backup.\n# "
},
{
"path": "site-defaults/config/groups.ini",
"chars": 607,
"preview": "# Default DFeed groups configuration\n# For testing and as an example. Site deployments should create their own.\n\n[sets.g"
},
{
"path": "site-defaults/config/groups.ini.sample",
"chars": 1589,
"preview": "# The groups, as displayed on the web interface's index page.\n\n# Groups are arranged in sets.\n[sets.example-set]\n\n# Long"
},
{
"path": "site-defaults/config/sinks/irc/irc.ini.sample",
"chars": 332,
"preview": "# IRC sink parameters.\n\n# IRC server to connect to.\n#server = irc.libera.chat\n\n# Port. Defaults to 6667.\n#port = 6667\n\n#"
},
{
"path": "site-defaults/config/sinks/twitter/twitter.ini.sample",
"chars": 464,
"preview": "# Twitter sink parameters.\n\n# OAuth parameters.\noauth.consumerKey = abcdefghijklmnopqrstuvwxy\noauth.consumerSecret = abc"
},
{
"path": "site-defaults/config/site.ini.sample",
"chars": 1088,
"preview": "# The name of the website. Used in emails.\n\nname = Example Forum\n\n# The canonical domain name for your instance.\n# This "
},
{
"path": "site-defaults/config/sources/feeds/example.ini.sample",
"chars": 398,
"preview": "# Atom feed example configuration.\n\n# Feed title - used in IRC announcements.\n#name = Example\n\n# Direct URL to the ATOM "
},
{
"path": "site-defaults/config/sources/github/github.ini.sample",
"chars": 38,
"preview": "# GitHub hook secret value\n#secret = \n"
},
{
"path": "site-defaults/config/sources/mailman/example.ini.sample",
"chars": 101,
"preview": "# Mailman HTTP archives.\nbaseURL = http://lists.example.com/pipermail/\nlists = general,announcements\n"
},
{
"path": "site-defaults/config/sources/mailrelay/example.ini.sample",
"chars": 482,
"preview": "# Messages coming from other sources (e.g. email, for mailing lists)\n# can be piped to the address/port configured here."
},
{
"path": "site-defaults/config/sources/nntp/example.ini.sample",
"chars": 690,
"preview": "# NNTP source.\nhost = news.example.com\n\n# Whether posting is allowed.\n# This SHOULD be configured in groups.ini, but it "
},
{
"path": "site-defaults/config/sources/smtp/example.ini.sample",
"chars": 330,
"preview": "# Mailing list \"source\" for sent messages.\n\n# Mailing list domain name (part after @ for email addresses).\ndomain = exam"
},
{
"path": "site-defaults/config/sources/socket/socket.ini.sample",
"chars": 193,
"preview": "# This is a special source, currently used for\n# instant MediaWiki edit notifications,\n# but can be further expanded as "
},
{
"path": "site-defaults/config/sources/stackoverflow/so.ini.sample",
"chars": 183,
"preview": "# StackOverflow questions feed.\n\n# Comma-separated list of tags to watch.\ntags = d\n\n# Optional - API key.\n# Requests wil"
},
{
"path": "site-defaults/config/user.ini.sample",
"chars": 85,
"preview": "# A unique string used in hashing user passwords.\n# salt = insert random string here\n"
},
{
"path": "site-defaults/config/web.ini.sample",
"chars": 1165,
"preview": "# HTTP header to use for the client's real IP address when behind a reverse proxy.\n# Common values: \"X-Forwarded-For\", \""
},
{
"path": "site-defaults/web/help-english.htt",
"chars": 8546,
"preview": "<!-- HTML -->\n<h2 id=\"view-modes\">View modes</h2>\n\n<p>\n You can browse the forum using one of several view modes:\n <ul"
},
{
"path": "site-defaults/web/help-turkish.htt",
"chars": 6800,
"preview": "<!-- HTML -->\n<h2 id=\"view-modes\">Görünüm seçenekleri</h2>\n\n<p>\n Bu forumu farklı biçimlerde görüntüleyebilirsiniz:\n <"
},
{
"path": "site-defaults/web/highlight-js/LICENSE",
"chars": 1514,
"preview": "BSD 3-Clause License\n\nCopyright (c) 2006, Ivan Sagalaev.\nAll rights reserved.\n\nRedistribution and use in source and bina"
},
{
"path": "site-defaults/web/highlight-js/highlight.pack.js",
"chars": 137918,
"preview": "/*\n Highlight.js 10.7.1 (421b23b0)\n License: BSD-3-Clause\n Copyright (c) 2006-2021, Ivan Sagalaev\n*/\nvar hljs=functio"
},
{
"path": "site-defaults/web/highlight-js/styles/vs.css",
"chars": 837,
"preview": "/*\n\nVisual Studio-like style based on original C# coloring by Jason Diamond <jason@diamond.name>\n\n*/\n.hljs {\n display: "
},
{
"path": "site-defaults/web/skel.htt",
"chars": 2281,
"preview": "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n<meta charset=\"utf-8\">\n<meta name=\"viewport\" content=\"width=device-width, initia"
},
{
"path": "site-defaults/web/static/css/dfeed.css",
"chars": 32109,
"preview": "/*\n * DFeed Forum Stylesheet\n *\n * Forum-specific styles that work alongside style.css (base styles).\n * The first secti"
},
{
"path": "site-defaults/web/static/css/style.css",
"chars": 5476,
"preview": "/*\n * DFeed Default Stylesheet\n *\n * Provides basic styling for a default DFeed installation.\n * Site-specific deploymen"
},
{
"path": "site-defaults/web/static/js/dfeed.js",
"chars": 21718,
"preview": "function _(s) {\n\tif (s in localization)\n\t\treturn localization[s];\n\tconsole.log('Unlocalized string: ' + JSON.stringify(s"
},
{
"path": "site-defaults/web/static/robots_private.txt",
"chars": 26,
"preview": "User-agent: *\nDisallow: /\n"
},
{
"path": "site-defaults/web/static/robots_public.txt",
"chars": 186,
"preview": "User-agent: *\nDisallow: /discussion/set\nDisallow: /discussion/newpost\nDisallow: /discussion/reply\nDisallow: /set\nDisallo"
},
{
"path": "src/dfeed/backup.d",
"chars": 2795,
"preview": "/* Copyright (C) 2011, 2015, 2016, 2017, 2018, 2020 Vladimir Panteleev <vladimir@thecybershadow.net>\n *\n * This progr"
},
{
"path": "src/dfeed/bayes.d",
"chars": 2652,
"preview": "/* Copyright (C) 2015, 2018 Vladimir Panteleev <vladimir@thecybershadow.net>\n *\n * This program is free software: you"
},
{
"path": "src/dfeed/bitly.d",
"chars": 2133,
"preview": "/* Copyright (C) 2011, 2012, 2014, 2015, 2018 Vladimir Panteleev <vladimir@thecybershadow.net>\n *\n * This program is "
},
{
"path": "src/dfeed/common.d",
"chars": 4925,
"preview": "/* Copyright (C) 2011, 2012, 2014, 2015, 2018, 2020, 2025 Vladimir Panteleev <vladimir@thecybershadow.net>\n *\n * Thi"
},
{
"path": "src/dfeed/database.d",
"chars": 3283,
"preview": "/* Copyright (C) 2011, 2015, 2016, 2017, 2018, 2020, 2025 Vladimir Panteleev <vladimir@thecybershadow.net>\n *\n * This"
},
{
"path": "src/dfeed/debugging.d",
"chars": 1314,
"preview": "/* Copyright (C) 2023 Vladimir Panteleev <vladimir@thecybershadow.net>\n *\n * This program is free software: you can r"
},
{
"path": "src/dfeed/groups.d",
"chars": 2854,
"preview": "/* Copyright (C) 2015, 2017, 2018, 2021, 2024 Vladimir Panteleev <vladimir@thecybershadow.net>\n *\n * This program is "
},
{
"path": "src/dfeed/loc/english.d",
"chars": 1506,
"preview": "/* Copyright (C) 2020 Vladimir Panteleev <vladimir@thecybershadow.net>\n *\n * This program is free software: you can r"
},
{
"path": "src/dfeed/loc/package.d",
"chars": 5332,
"preview": "/* Copyright (C) 2020, 2021 Vladimir Panteleev <vladimir@thecybershadow.net>\n *\n * This program is free software: you"
},
{
"path": "src/dfeed/loc/turkish.d",
"chars": 54911,
"preview": "/* Copyright (C) 2020, 2021, 2025 Vladimir Panteleev <vladimir@thecybershadow.net>\n *\n * This program is free softwar"
},
{
"path": "src/dfeed/mail.d",
"chars": 1235,
"preview": "/* Copyright (C) 2015, 2017, 2018 Vladimir Panteleev <vladimir@thecybershadow.net>\n *\n * This program is free softwar"
},
{
"path": "src/dfeed/message.d",
"chars": 9349,
"preview": "/* Copyright (C) 2011, 2012, 2013, 2014, 2015, 2018, 2020, 2021, 2024 Vladimir Panteleev <vladimir@thecybershadow.net"
},
{
"path": "src/dfeed/paths.d",
"chars": 2887,
"preview": "/* Copyright (C) 2025 Vladimir Panteleev <vladimir@thecybershadow.net>\n *\n * This program is free software: you can r"
},
{
"path": "src/dfeed/progs/dfeed.d",
"chars": 3257,
"preview": "/* Copyright (C) 2011, 2012, 2014, 2015, 2017, 2018, 2021, 2023 Vladimir Panteleev <vladimir@thecybershadow.net>\n *\n *"
},
{
"path": "src/dfeed/progs/nntpdownload.d",
"chars": 1609,
"preview": "/* Copyright (C) 2011, 2012, 2014, 2015, 2018 Vladimir Panteleev <vladimir@thecybershadow.net>\n *\n * This program is "
},
{
"path": "src/dfeed/progs/sendspamfeedback.d",
"chars": 2028,
"preview": "/* Copyright (C) 2014, 2015, 2018 Vladimir Panteleev <vladimir@thecybershadow.net>\n *\n * This program is free softwar"
},
{
"path": "src/dfeed/progs/unban.d",
"chars": 2130,
"preview": "/* Copyright (C) 2011, 2012, 2014, 2015, 2017, 2018 Vladimir Panteleev <vladimir@thecybershadow.net>\n *\n * This progr"
},
{
"path": "src/dfeed/sinks/cache.d",
"chars": 1812,
"preview": "/* Copyright (C) 2011, 2012, 2014, 2015, 2018 Vladimir Panteleev <vladimir@thecybershadow.net>\n *\n * This program is "
},
{
"path": "src/dfeed/sinks/irc.d",
"chars": 4406,
"preview": "/* Copyright (C) 2011, 2012, 2014, 2015, 2016, 2018, 2020 Vladimir Panteleev <vladimir@thecybershadow.net>\n *\n * This"
},
{
"path": "src/dfeed/sinks/messagedb.d",
"chars": 6121,
"preview": "/* Copyright (C) 2011, 2012, 2014, 2015, 2018, 2025 Vladimir Panteleev <vladimir@thecybershadow.net>\n *\n * This progr"
},
{
"path": "src/dfeed/sinks/subscriptions.d",
"chars": 29970,
"preview": "/* Copyright (C) 2015, 2016, 2017, 2018, 2020, 2022, 2025 Vladimir Panteleev <vladimir@thecybershadow.net>\n *\n * Thi"
},
{
"path": "src/dfeed/sinks/twitter.d",
"chars": 4117,
"preview": "/* Copyright (C) 2018 Sebastian Wilzbach\n * Copyright (C) 2018, 2020, 2021 Vladimir Panteleev <vladimir@thecybershad"
},
{
"path": "src/dfeed/site.d",
"chars": 1175,
"preview": "/* Copyright (C) 2014, 2015, 2017, 2018 Vladimir Panteleev <vladimir@thecybershadow.net>\n *\n * This program is free s"
},
{
"path": "src/dfeed/sources/github.d",
"chars": 5836,
"preview": "/* Copyright (C) 2011, 2012, 2013, 2014, 2015, 2017, 2018, 2021, 2023 Vladimir Panteleev <vladimir@thecybershadow.net"
},
{
"path": "src/dfeed/sources/mailman.d",
"chars": 4953,
"preview": "/* Copyright (C) 2011, 2012, 2014, 2015, 2017, 2018 Vladimir Panteleev <vladimir@thecybershadow.net>\n *\n * This progr"
},
{
"path": "src/dfeed/sources/mailrelay.d",
"chars": 1831,
"preview": "/* Copyright (C) 2011, 2012, 2014, 2015, 2018, 2020 Vladimir Panteleev <vladimir@thecybershadow.net>\n *\n * This progr"
},
{
"path": "src/dfeed/sources/newsgroups.d",
"chars": 6840,
"preview": "/* Copyright (C) 2011, 2012, 2014, 2015, 2018, 2020 Vladimir Panteleev <vladimir@thecybershadow.net>\n *\n * This progr"
},
{
"path": "src/dfeed/sources/socket.d",
"chars": 3064,
"preview": "/* Copyright (C) 2015, 2018 Vladimir Panteleev <vladimir@thecybershadow.net>\n *\n * This program is free software: you"
},
{
"path": "src/dfeed/sources/web/feed.d",
"chars": 3026,
"preview": "/* Copyright (C) 2011, 2012, 2014, 2015, 2016, 2018, 2022 Vladimir Panteleev <vladimir@thecybershadow.net>\n *\n * This"
},
{
"path": "src/dfeed/sources/web/reddit.d",
"chars": 3016,
"preview": "/* Copyright (C) 2011, 2014, 2015, 2018, 2023 Vladimir Panteleev <vladimir@thecybershadow.net>\n *\n * This program is "
},
{
"path": "src/dfeed/sources/web/stackoverflow.d",
"chars": 3640,
"preview": "/* Copyright (C) 2011, 2012, 2013, 2014, 2015, 2016, 2018 Vladimir Panteleev <vladimir@thecybershadow.net>\n *\n * This"
},
{
"path": "src/dfeed/sources/web/webpoller.d",
"chars": 2719,
"preview": "/* Copyright (C) 2011, 2012, 2014, 2015, 2018, 2020 Vladimir Panteleev <vladimir@thecybershadow.net>\n *\n * This progr"
},
{
"path": "src/dfeed/web/captcha/common.d",
"chars": 3146,
"preview": "/* Copyright (C) 2012, 2014, 2015, 2016, 2018, 2021, 2025 Vladimir Panteleev <vladimir@thecybershadow.net>\n *\n * This"
},
{
"path": "src/dfeed/web/captcha/dcaptcha.d",
"chars": 3329,
"preview": "/* Copyright (C) 2012, 2014, 2015, 2017, 2018, 2020, 2021, 2025 Vladimir Panteleev <vladimir@thecybershadow.net>\n *\n *"
},
{
"path": "src/dfeed/web/captcha/dummy.d",
"chars": 2059,
"preview": "/* Copyright (C) 2025 Vladimir Panteleev <vladimir@thecybershadow.net>\n *\n * This program is free software: you can r"
},
{
"path": "src/dfeed/web/captcha/package.d",
"chars": 1166,
"preview": "/* Copyright (C) 2012, 2014, 2015, 2016, 2018, 2021 Vladimir Panteleev <vladimir@thecybershadow.net>\n *\n * This progr"
},
{
"path": "src/dfeed/web/captcha/recaptcha.d",
"chars": 3384,
"preview": "/* Copyright (C) 2012, 2014, 2015, 2018, 2020, 2021 Vladimir Panteleev <vladimir@thecybershadow.net>\n *\n * This progr"
},
{
"path": "src/dfeed/web/lint.d",
"chars": 32714,
"preview": "/* Copyright (C) 2015, 2016, 2017, 2018, 2020, 2021, 2025 Vladimir Panteleev <vladimir@thecybershadow.net>\n *\n * Thi"
},
{
"path": "src/dfeed/web/list.d",
"chars": 3541,
"preview": "/* Copyright (C) 2011, 2012, 2014, 2015, 2018 Vladimir Panteleev <vladimir@thecybershadow.net>\n *\n * This program is "
},
{
"path": "src/dfeed/web/mailhide.d",
"chars": 2807,
"preview": "/* Copyright (C) 2015, 2018 Vladimir Panteleev <vladimir@thecybershadow.net>\n *\n * This program is free software: you"
},
{
"path": "src/dfeed/web/markdown.d",
"chars": 2845,
"preview": "/* Copyright (C) 2021, 2022 Vladimir Panteleev <vladimir@thecybershadow.net>\n *\n * This program is free software: you"
},
{
"path": "src/dfeed/web/moderation.d",
"chars": 1815,
"preview": "/* Copyright (C) 2011, 2012, 2014, 2015, 2018 Vladimir Panteleev <vladimir@thecybershadow.net>\n *\n * This program is "
},
{
"path": "src/dfeed/web/posting.d",
"chars": 16084,
"preview": "/* Copyright (C) 2011, 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2020, 2021, 2025 Vladimir Panteleev <vladimir@thecybe"
},
{
"path": "src/dfeed/web/spam/akismet.d",
"chars": 3270,
"preview": "/* Copyright (C) 2011, 2012, 2014, 2015, 2017, 2018, 2020, 2025 Vladimir Panteleev <vladimir@thecybershadow.net>\n *\n *"
},
{
"path": "src/dfeed/web/spam/bayes.d",
"chars": 1992,
"preview": "/* Copyright (C) 2011, 2012, 2014, 2015, 2017, 2018, 2020 Vladimir Panteleev <vladimir@thecybershadow.net>\n *\n * This"
},
{
"path": "src/dfeed/web/spam/blogspam.d",
"chars": 3394,
"preview": "/* Copyright (C) 2011, 2012, 2014, 2015, 2017, 2018, 2020, 2021 Vladimir Panteleev <vladimir@thecybershadow.net>\n *\n *"
},
{
"path": "src/dfeed/web/spam/openai.d",
"chars": 8352,
"preview": "/* Copyright (C) 2025 Vladimir Panteleev <vladimir@thecybershadow.net>\n *\n * This program is free software: you can r"
},
{
"path": "src/dfeed/web/spam/package.d",
"chars": 5704,
"preview": "/* Copyright (C) 2011, 2012, 2014, 2015, 2017, 2018, 2020, 2025 Vladimir Panteleev <vladimir@thecybershadow.net>\n *\n *"
},
{
"path": "src/dfeed/web/spam/projecthoneypot.d",
"chars": 2919,
"preview": "/* Copyright (C) 2011, 2012, 2014, 2015, 2017, 2018, 2020 Vladimir Panteleev <vladimir@thecybershadow.net>\n *\n * This"
},
{
"path": "src/dfeed/web/spam/simple.d",
"chars": 2185,
"preview": "/* Copyright (C) 2011, 2012, 2014, 2015, 2017, 2018, 2020 Vladimir Panteleev <vladimir@thecybershadow.net>\n *\n * This"
},
{
"path": "src/dfeed/web/spam/stopforumspam.d",
"chars": 2724,
"preview": "/* Copyright (C) 2011, 2012, 2014, 2015, 2017, 2018, 2020 Vladimir Panteleev <vladimir@thecybershadow.net>\n *\n * This"
},
{
"path": "src/dfeed/web/user.d",
"chars": 16233,
"preview": "/* Copyright (C) 2011, 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2020, 2021, 2025 Vladimir Panteleev <vladimir@thecybe"
},
{
"path": "src/dfeed/web/web/cache.d",
"chars": 1566,
"preview": "/* Copyright (C) 2011, 2012, 2013, 2014, 2015, 2016, 2017, 2018 Vladimir Panteleev <vladimir@thecybershadow.net>\n *\n "
},
{
"path": "src/dfeed/web/web/config.d",
"chars": 1487,
"preview": "/* Copyright (C) 2011, 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2025 Vladimir Panteleev <vladimir@thecybershadow.net"
},
{
"path": "src/dfeed/web/web/draft.d",
"chars": 5027,
"preview": "/* Copyright (C) 2011, 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2020, 2021 Vladimir Panteleev <vladimir@thecybershad"
},
{
"path": "src/dfeed/web/web/moderation.d",
"chars": 12500,
"preview": "/* Copyright (C) 2011, 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2021 Vladimir Panteleev <vladimir@thecybershadow.net"
},
{
"path": "src/dfeed/web/web/page.d",
"chars": 1268,
"preview": "/* Copyright (C) 2011, 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2020 Vladimir Panteleev <vladimir@thecybershadow.net"
},
{
"path": "src/dfeed/web/web/part/gravatar.d",
"chars": 2522,
"preview": "/* Copyright (C) 2011, 2012, 2013, 2014, 2015, 2016, 2017, 2018 Vladimir Panteleev <vladimir@thecybershadow.net>\n *\n "
},
{
"path": "src/dfeed/web/web/part/pager.d",
"chars": 3849,
"preview": "/* Copyright (C) 2011, 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2020 Vladimir Panteleev <vladimir@thecybershadow.net"
},
{
"path": "src/dfeed/web/web/part/post.d",
"chars": 9547,
"preview": "/* Copyright (C) 2011, 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2020, 2021 Vladimir Panteleev <vladimir@thecybershad"
},
{
"path": "src/dfeed/web/web/part/postbody.d",
"chars": 6123,
"preview": "/* Copyright (C) 2011, 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2020, 2021 Vladimir Panteleev <vladimir@thecybershad"
},
{
"path": "src/dfeed/web/web/part/profile.d",
"chars": 1619,
"preview": "/* Copyright (C) 2025 Vladimir Panteleev <vladimir@thecybershadow.net>\n *\n * This program is free software: you can r"
},
{
"path": "src/dfeed/web/web/part/strings.d",
"chars": 4925,
"preview": "/* Copyright (C) 2011, 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2020 Vladimir Panteleev <vladimir@thecybershadow.net"
},
{
"path": "src/dfeed/web/web/part/thread.d",
"chars": 8424,
"preview": "/* Copyright (C) 2011, 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2020 Vladimir Panteleev <vladimir@thecybershadow.net"
},
{
"path": "src/dfeed/web/web/perf.d",
"chars": 1518,
"preview": "/* Copyright (C) 2011, 2012, 2013, 2014, 2015, 2016, 2017, 2018 Vladimir Panteleev <vladimir@thecybershadow.net>\n *\n "
},
{
"path": "src/dfeed/web/web/postinfo.d",
"chars": 3681,
"preview": "/* Copyright (C) 2011, 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2020 Vladimir Panteleev <vladimir@thecybershadow.net"
},
{
"path": "src/dfeed/web/web/posting.d",
"chars": 21073,
"preview": "/* Copyright (C) 2011, 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2020, 2021, 2022, 2024, 2025 Vladimir Panteleev <vla"
},
{
"path": "src/dfeed/web/web/postmod.d",
"chars": 3545,
"preview": "/* Copyright (C) 2011, 2012, 2013, 2014, 2015, 2016, 2017, 2018 Vladimir Panteleev <vladimir@thecybershadow.net>\n *\n "
},
{
"path": "src/dfeed/web/web/request.d",
"chars": 39189,
"preview": "/* Copyright (C) 2011, 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2020, 2021, 2023, 2024, 2025 Vladimir Panteleev <vla"
},
{
"path": "src/dfeed/web/web/server.d",
"chars": 1625,
"preview": "/* Copyright (C) 2011, 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2020, 2025 Vladimir Panteleev <vladimir@thecybershad"
},
{
"path": "src/dfeed/web/web/site.d",
"chars": 1182,
"preview": "/* Copyright (C) 2023 Vladimir Panteleev <vladimir@thecybershadow.net>\n *\n * This program is free software: you can "
},
{
"path": "src/dfeed/web/web/statics.d",
"chars": 6690,
"preview": "/* Copyright (C) 2011, 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2021, 2025 Vladimir Panteleev <vladimir@thecybershad"
},
{
"path": "src/dfeed/web/web/user.d",
"chars": 3978,
"preview": "/* Copyright (C) 2011, 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2020, 2021 Vladimir Panteleev <vladimir@thecybershad"
},
{
"path": "src/dfeed/web/web/view/feed.d",
"chars": 4605,
"preview": "/* Copyright (C) 2011, 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2020, 2021 Vladimir Panteleev <vladimir@thecybershad"
},
{
"path": "src/dfeed/web/web/view/group.d",
"chars": 20923,
"preview": "/* Copyright (C) 2011, 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2020 Vladimir Panteleev <vladimir@thecybershadow.net"
},
{
"path": "src/dfeed/web/web/view/index.d",
"chars": 12554,
"preview": "/* Copyright (C) 2011, 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2020, 2021 Vladimir Panteleev <vladimir@thecybershad"
},
{
"path": "src/dfeed/web/web/view/login.d",
"chars": 4990,
"preview": "/* Copyright (C) 2011, 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2020 Vladimir Panteleev <vladimir@thecybershadow.net"
},
{
"path": "src/dfeed/web/web/view/moderation.d",
"chars": 35449,
"preview": "/* Copyright (C) 2011, 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2020, 2025, 2026 Vladimir Panteleev <vladimir@thecyb"
},
{
"path": "src/dfeed/web/web/view/post.d",
"chars": 6325,
"preview": "/* Copyright (C) 2011, 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2020, 2020, 2021 Vladimir Panteleev <vladimir@thecyb"
},
{
"path": "src/dfeed/web/web/view/search.d",
"chars": 11632,
"preview": "/* Copyright (C) 2011, 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2020 Vladimir Panteleev <vladimir@thecybershadow.net"
},
{
"path": "src/dfeed/web/web/view/settings.d",
"chars": 14201,
"preview": "/* Copyright (C) 2011, 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2020, 2021 Vladimir Panteleev <vladimir@thecybershad"
},
{
"path": "src/dfeed/web/web/view/subscription.d",
"chars": 3441,
"preview": "/* Copyright (C) 2011, 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2020 Vladimir Panteleev <vladimir@thecybershadow.net"
},
{
"path": "src/dfeed/web/web/view/thread.d",
"chars": 5533,
"preview": "/* Copyright (C) 2011, 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2020 Vladimir Panteleev <vladimir@thecybershadow.net"
},
{
"path": "src/dfeed/web/web/view/userprofile.d",
"chars": 9778,
"preview": "/* Copyright (C) 2025 Vladimir Panteleev <vladimir@thecybershadow.net>\n *\n * This program is free software: you can r"
},
{
"path": "src/dfeed/web/web/view/widgets.d",
"chars": 4866,
"preview": "/* Copyright (C) 2011, 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2020, 2022 Vladimir Panteleev <vladimir@thecybershad"
},
{
"path": "tests/captcha-screenshot.spec.ts",
"chars": 4601,
"preview": "import { test, expect } from \"@playwright/test\";\nimport { execSync } from \"child_process\";\nimport path from \"path\";\n\ncon"
},
{
"path": "tests/deleted-post-moderation.spec.ts",
"chars": 6285,
"preview": "import { test, expect } from \"@playwright/test\";\nimport { execSync } from \"child_process\";\nimport path from \"path\";\n\ncon"
},
{
"path": "tests/deleted-post-screenshot.spec.ts",
"chars": 4453,
"preview": "import { test, expect } from \"@playwright/test\";\nimport { execSync } from \"child_process\";\nimport path from \"path\";\n\ncon"
},
{
"path": "tests/index.spec.ts",
"chars": 372,
"preview": "import { test, expect } from '@playwright/test';\n\ntest('index page loads successfully', async ({ page }) => {\n const re"
},
{
"path": "tests/package.json",
"chars": 230,
"preview": "{\n \"name\": \"dfeed-e2e-tests\",\n \"version\": \"1.0.0\",\n \"description\": \"End-to-end tests for DFeed using Playwright\",\n \""
},
{
"path": "tests/playwright.config.ts",
"chars": 555,
"preview": "import { defineConfig, devices } from '@playwright/test';\n\nexport default defineConfig({\n testDir: '.',\n timeout: 3000"
},
{
"path": "tests/posting.spec.ts",
"chars": 14363,
"preview": "import { test, expect } from \"@playwright/test\";\n\ntest.describe(\"Posting\", () => {\n test(\"can create a new thread in lo"
},
{
"path": "tests/user-journey.spec.ts",
"chars": 5340,
"preview": "import { test, expect } from \"@playwright/test\";\nimport { execSync } from \"child_process\";\nimport path from \"path\";\n\ncon"
}
]
About this extraction
This page contains the full source code of the CyberShadow/DFeed GitHub repository, extracted and formatted as plain text for AI agents and large language models (LLMs). The extraction includes 137 files (881.0 KB), approximately 254.2k tokens, and a symbol index with 173 extracted functions, classes, methods, constants, and types. Use this with OpenClaw, Claude, ChatGPT, Cursor, Windsurf, or any other AI tool that accepts text input. You can copy the full output to your clipboard or download it as a .txt file.
Extracted by GitExtract — free GitHub repo to text converter for AI. Built by Nikandr Surkov.