Sponsored Content
Top Forums Web Development Header in mobile version UNIX.com Post 303044893 by Neo on Saturday 7th of March 2020 10:41:01 PM
Old 03-07-2020
After thinking about this.....

To be honest, I am inclined to stop development and updates on the current code base and migrate the forums to discourse.

Code:
https://en.wikipedia.org/wiki/Discourse_(software)

Code:
Discourse is an open source Internet forum and mailing list management software application founded in 2013 by Jeff Atwood, Robin Ward, and Sam Saffron.[2] Discourse received funding from First Round Capital and Greylock Partners.[3] The application is written with Ember.js”¯[4] and Ruby on Rails.[5] PostgreSQL serves as its back-end database management system.

From a usability perspective, Discourse breaks with existing forum software by including features recently popularized by large social networks, such as infinite scrolling, live updates, expanding links, and drag and drop attachments.[6] However, the stated goals of the project are social rather than technical, to improve online discussion quality through improved forum software.

The source code is distributed under the GNU General Public License version 2. Therefore Discourse can be self-hosted by anyone. Alternatively, hosting service can be bought from the company of the founders. As of October 2017, more than 700 businesses or instances have chosen this option.[7] On May 2017, co-founder Jeff Atwood said in an interview that the company is generating approximately 120,000 dollars per month at that time.[8] With the money the company pays salary for its full-time employees who maintain the software and develop new features which benefits those who are self-hosting the open source software, too. This is an example of an open source software business model where a company sells professional services to willing customers.

I think it is about time to "retire" the legacy vB site, in a controlled way.

See / continue:

Under Consideration: Migrate the Forums to Discourse
 

5 More Discussions You Might Find Interesting

1. Solaris

Migrate unix version 8 to version 9

i have a program writing in PRO C which currently running in unix version 8 tie with oracle 8i, but in the future company gonna migrate this OS to version 9. Anything i have to prepare for my PRO C program to run in unix version 9? or anything would that impact my program couldn't run well? what... (2 Replies)
Discussion started by: lsy
2 Replies

2. What is on Your Mind?

Mobile App for UNIX.com?

Do we have a mobile app for unix.com? (1 Reply)
Discussion started by: ahamed101
1 Replies

3. What is on Your Mind?

Mobile Friendly Version of UNIX.COM

Hello, I have noticed some problems with Google complaining our site is not "https://search.google.com/www.usearch-console/mobile-friendly" using only Tapatalk. So, after a lot of work, I have re-enabled our legacy mobile style and make some improvements and Google has declared us "mobile... (2 Replies)
Discussion started by: Neo
2 Replies

4. What is on Your Mind?

Prototyping New Responsive Mobile UNIX.COM

I'm working on updates to the mobile phone view, and it's going to look much better I think. Here are some current prototypes: Prototype Mobile Home Page: https://www.unix.com/members/1-albums214-picture690.jpg Prototype Mobile Search Page: ... (43 Replies)
Discussion started by: Neo
43 Replies

5. What is on Your Mind?

New UNIX.COM Mobile Site Icons

Having given up for the time being with a very difficult game engine project to virtualizing cyberspace, am working on the forums again. Just updated a few icons on the mobile site. Explanations in the picture captions: https://www.unix.com/members/1-albums214-picture855.jpeg ... (1 Reply)
Discussion started by: Neo
1 Replies
Mason::Plugin::RouterSimple(3pm)			User Contributed Perl Documentation			  Mason::Plugin::RouterSimple(3pm)

NAME
Mason::Plugin::RouterSimple - Specify routes for page components VERSION
version 0.05 SYNOPSIS
In a top-level component '/archives.mc': %% route ":section/{year:[0-9]{4}}/{month:[0-9]{2}}"; Archives for <b><% $.section %></b> For the month of <% $.month %>/<% $.year %> then "/archives/news/2010/02" outputs Archives for <b>news</b> For the month of 2010/02 DESCRIPTION
See Mason::Manual::RequestDispatch for background on how request paths get mapped to page components. This plugin allows you to parse "$m->path_info" (the remainder of the top-level path) using Router::Simple routes. It can be used whenever "$m->path_info" is set, i.e. with a dhandler or with a partial path. Use the "route" keyword to declare routes, either in a <%class> block or on a %%-line. Like Router::Simple::connect, "route" takes a string/regex pattern and a destination hashref; the latter defaults to "{}" if omitted. e.g. %% route "wiki/:page", { action => "wiki" }; <%class> route "download/*.*", { action => "download" }; route "blog/{year:[0-9]+}/{month:[0-9]{2}}"; </%class> This plugin overrides the default allow_path_info to return true for any component that declares at least one route. For components that do not declare a route, you will need to override "allow_path_info" as usual. Any named captured arguments, including "splat", are placed in component attributes, which are automatically declared (as standard read- write attributes) if you do not otherwise declare them. If you specify more than one route in a component, they will be tried in turn, with the first matching route taking precedence. If none of the routes match, the request will be declined; in a web context this generally means a 404. e.g. Given the route declarations above in a component named '/site.mc', o The URL "/site/wiki/HomePage" will set "$.action = "wiki"" and "$.page = "HomePage"". o The URL "/site/download/ping.mp3" will set "$.action = "download"" and "$.splat = ['ping', 'mp3']". o The URL "/site/blog/2010/02" will set "$.year = "2010"" and "$.month = "02"". o The URLs "/site/other" and "/site/blog/10/02" will result in a decline/404. SUPPORT
The mailing list for Mason and Mason plugins is mason-users@lists.sourceforge.net. You must be subscribed to send a message. To subscribe, visit https://lists.sourceforge.net/lists/listinfo/mason-users <https://lists.sourceforge.net/lists/listinfo/mason-users>. You can also visit us at "#mason" on <irc://irc.perl.org/#mason>. Bugs and feature requests will be tracked at RT: http://rt.cpan.org/NoAuth/Bugs.html?Dist=Mason-Plugin-RouterSimple bug-mason-plugin-routersimple@rt.cpan.org The latest source code can be browsed and fetched at: http://github.com/jonswar/perl-mason-plugin-routersimple git clone git://github.com/jonswar/perl-mason-plugin-routersimple.git SEE ALSO
Mason, Router::Simple AUTHOR
Jonathan Swartz <swartz@pobox.com> COPYRIGHT AND LICENSE
This software is copyright (c) 2011 by Jonathan Swartz. This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself. perl v5.14.2 2011-07-03 Mason::Plugin::RouterSimple(3pm)
All times are GMT -4. The time now is 02:07 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy