npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

textpattern-forum

v1.6.4

Published

This repository contains the source code for the [Textpattern support forum](https://forum.textpattern.com/).

Downloads

10

Readme

Textpattern support forum

This repository contains the source code for the Textpattern support forum.

Requires an installation of our customized clone of FluxBB.

Supported web browsers

  • Chrome, Edge, Firefox, Safari and Opera the last two recent stable releases.
  • Firefox ESR latest major point release.

Older versions of the above and other browsers may work, but these are the ones we verify.

Building this repository requires:

Environment must consist of:

  • Apache >=2.2
  • PHP >=7.4
  • MySQL >=5.0.6
  • Unix-like OS, e.g. Linux or macOS

Setup

Installing required tools

The project uses Grunt to run tasks and Sass for CSS pre-processing. This creates a few dependencies in addition to your normal PHP required by FluxBB. First make sure you have base dependencies installed: Node.js and Grunt. You can install Node using the installer, Composer using the installer, and Grunt with npm:

$ npm install -g grunt-cli

Consult the Grunt documentation for more instructions if necessary.

Setting up Apache virtual host

The public/ directory is intended to be set as the server's document root. You can do this by adding a new virtual host to your httpd.conf. Along the lines of:

<VirtualHost *:80>
    VirtualHost "/absolute/path/to/textpattern-forum/public"
    ServerName forum.textpattern.test
</VirtualHost>

On a local development server, after this you can use your hosts file to point the development domain to correct location (e.g. back to home), run a local DNS server that resolves .test TLDs, or use a xip.io domain.

Installing dependencies

After you have the base dependencies taken care of, you can install the project's dependencies. Navigate to the project's directory, and run the dependency managers:

$ cd textpattern-forum
$ npm install
$ composer install

npm installs Node modules for Grunt and composer installs PHP libraries.

Installing FluxBB

Once you have Grunt installed, you can then install our customized clone of FluxBB - place it in the public/ directory. Complete FluxBB's installation by following the normal Installation steps, and use this as your config.php template.

Updating and patching FluxBB

Periodically we update our customized clone of FluxBB. To update your FluxBB installation, simply install files from that repository again.

You may need to adjust the write permissions on the public/cache/ directory after updating.

Building

This repository hosts sources and needs to be built before it can be used. After you have installed all dependencies, you will be able to run tasks using Grunt, including building:

$ grunt @task@

Where the @task@ is either build or watch.

  • The build task builds the project.
  • The watch task will launch a task that watches for file changes; the project is then automatically built if a source file is modified.

REST API

We offer a public API that can be used to retrieve data from the forums and topics. The public end point can be found from https://forum.textpattern.com/api. Data can be retrieved as JSON, and options can be passed optional HTTP query parameters. This API is read-only, and all requests must be done using HTTP GET method. You can also ping resource existence with HEAD, but any other methods are rejected.

Response codes

HTTP status codes can be used to detect the type of response. The server responds with:

  • 200: Successful response.
  • 401: You will need to log in to access this resource. The resource may be removed, or private.
  • 404: The resource has been removed, or has never existed.
  • 500: Internal server error.
  • 503: Server is under maintenance.

Authentication

Authentication happens using basic HTTP method and regular forum user account.

$ curl -u "username" https://forum.textpattern.com/api/

If you request a private or removed resource without being logged in, you will be treated with 401 response:

$ curl -I https://forum.textpattern.com/api/posts/401

Responds with:

HTTP/1.0 401 Unauthorized
Date: Tue, 15 Oct 2013 09:16:42 GMT
Server: Apache
WWW-Authenticate: Basic realm="Textpattern CMS Support Forum External Syndication"
Connection: close
Content-Type: application/json; charset=UTF-8

Topics

GET https://forum.textpattern.com/api/topics/:forum

Returns topics from the specified forum.

Optional parameters

  • limit: number items to show. A value between 1 and 50. Defaults to 15.
  • sort: either last_post or posted.

Example request

$ curl https://forum.textpattern.com/api/topics/2

Response headers:

HTTP/1.1 200 OK
Date: Sun, 13 Oct 2013 11:24:49 GMT
Server: Apache
Content-Type: application/json; charset=UTF-8

Response body:

{
  "url": ["https:\/\/forum.textpattern.com\/index.php"],
  "topic": [
    {
      "title": "Better way to upload media",
      "link": "https:\/\/forum.textpattern.com\/viewtopic.php?id=40096&action=new",
      "content": "<p>+ lots<\/p>",
      "author": {
        "name": "tye",
        "uri": "https:\/\/forum.textpattern.com\/profile.php?id=5751"
      },
      "posted": "26 September 2013 21:51",
      "postedutc": "2013-09-24T16:18:48Z",
      "id": "40096"
    }
  ]
}

Posts

GET https://forum.textpattern.com/api/posts/:topic

Returns replies from a specific public topic.

Optional parameters

  • limit: number items to show. A value between 1 and 50. Defaults to 15.

Example request

$ curl https://forum.textpattern.com/api/posts/40092

Response headers:

HTTP/1.1 200 OK
Date: Sun, 13 Oct 2013 12:24:49 GMT
Server: Apache
Content-Type: application/json; charset=UTF-8

Response body:

{
  "url": ["https:\/\/forum.textpattern.com\/viewtopic.php?id=40092"],
  "post": [
    {
      "title": "Re: Tag tree best practise: to nest or not to nest",
      "link": "https:\/\/forum.textpattern.com\/viewtopic.php?pid=275473#p275473",
      "content": "<p>Stef, this is really useful &#8211; I&#8217;m on the right track. Thank you very much.<\/p>",
      "author": {
        "name": "gaekwad",
        "uri": "https:\/\/forum.textpattern.com\/profile.php?id=7456"
      },
      "posted": "26 September 2013 21:51",
      "postedutc": "2013-09-24T16:18:48Z",
      "id": "275473"
    }
  ]
}

Contributing

Want to help out with the development of Textpattern CMS? Please refer to the Contributing documentation for full details.

License

Licensed under MIT license.