olddoc user/dev discussion/patches/bugs/etc
 help / color / mirror / code / Atom feed
Search results ordered by [date|relevance]  view[summary|nested|Atom feed]
thread overview below | download mbox.gz: |
* [ANN] olddoc 1.6.0 - old-fashioned RDoc generator
@ 2019-01-07  0:46  4% Eric Wong
  0 siblings, 0 replies; 4+ results
From: Eric Wong @ 2019-01-07  0:46 UTC (permalink / raw)
  To: ruby-talk, olddoc-public

olddoc contains old-fashioned document generators for those who do not
wish to impose bloated, new-fangled web cruft on their readers.

olddoc contains oldweb, an HTML generator without any images, frames,
CSS, or JavaScript.  It is designed for users of text-based browsers
and/or low-bandwidth connections.  oldweb focuses on text as it is
the lowest common denominator for accessibility and compatibility
with people and hardware.

== Reasons

* No CSS.  Encouraging users to use CSS leads to problems like
  copy-paste hijacking: https://thejh.net/misc/website-terminal-copy-paste
  External CSS also increases page load time as it often blocks page
  rendering.  Asynchronous loading of CSS also causes accessibility
  problems as links/buttons may move as a user attempts to click.

* No JavaScript.  There is a constant barrage of security and
  client-side performance problems associated with it.  It's also
  unreasonable to expect users to rely on LibreJS and inspect every
  piece of JS they run.

* No frames.  Frames are an accessibility hassle and unfriendly
  to users of tiny screens on mobile devices and text-based browsers.

* No images.  Not everyone can view or afford bandwidth to load images.
  This also reduces the potential for security vulnerabilities as less
  code gets run.  Furthermore, loading the wrong image in a public
  place can get you arrested (or worse).

Encourage readers to simplify and speed up their browsing experience.
They can disable CSS, JavaScript, and images in their browser without
missing out!

== Usage

	gem install olddoc
	cd $ANY_RDOC_USING_RUBY_PROJECT
	rdoc -f oldweb

== Changes

    olddoc 1.6.0

    4 changes since v1.5.1 (2017-12-15):
          oldweb: work around annoying ERB deprecation in Ruby 2.6
          update URLs to HTTPS
          linkify source commands and URLs
          fall back to cgit_url and git_url if "source_code" is not defined

* https://80x24.org/olddoc/ - homepage + sample
* https://80x24.org/olddoc-public/ - mailing list archives
* nntp://news.public-inbox.org/inbox.comp.lang.ruby.olddoc
* olddoc-public@80x24.org - public mailing list (no subscription necessary)
* license: GPL-3.0+

* git clone https://80x24.org/olddoc.git
  about git cgit instance above...

  I've submitted patches to the cgit mailing list[1] to reduce
  dependencies on css, and they're also available at
  https://80x24.org/cgit.git in the meantime
  [1] https://lists.zx2c4.com/mailman/listinfo/cgit
      https://lists.zx2c4.com/pipermail/cgit/2019-January.txt.gz

^ permalink raw reply	[relevance 4%]

* [PATCH] update URLs to HTTPS
@ 2019-01-04 13:59  7% Eric Wong
  0 siblings, 0 replies; 4+ results
From: Eric Wong @ 2019-01-04 13:59 UTC (permalink / raw)
  To: olddoc-public

Let's Encrypt is working well, so lets discourage sniffable
traffic.
---
 .olddoc.yml | 4 ++--
 README      | 2 +-
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/.olddoc.yml b/.olddoc.yml
index f9cb790..de9e42a 100644
--- a/.olddoc.yml
+++ b/.olddoc.yml
@@ -1,6 +1,6 @@
 ---
 cgit_url: https://80x24.org/olddoc.git
-git_url: git://80x24.org/olddoc.git
+git_url: https://80x24.org/olddoc.git
 rdoc_url: https://80x24.org/olddoc/
 ml_url: https://80x24.org/olddoc-public/
 nntp_url: nntp://news.public-inbox.org/inbox.comp.lang.ruby.olddoc
@@ -8,4 +8,4 @@ merge_html:
   olddoc_1: Documentation/olddoc.1.html
   olddoc_5: Documentation/olddoc.5.html
 public_email: olddoc-public@80x24.org
-source_code: git clone git://80x24.org/olddoc
+source_code: git clone https://80x24.org/olddoc.git
diff --git a/README b/README
index e3ab17e..4b5aa1f 100644
--- a/README
+++ b/README
@@ -52,7 +52,7 @@ such as pandoc(1).  This requries an appropriately configured
 
 == Source code
 
-	git clone git://80x24.org/olddoc
+	git clone https://80x24.org/olddoc.git
 
 Please use git-format-patch(1) and git-send-email(1) distributed with
 the git(7) suite for generating and sending patches.  Please format
-- 
EW


^ permalink raw reply related	[relevance 7%]

* [ANN] olddoc 1.5.0 - old-fashioned RDoc generator
@ 2017-02-02 18:39  4% Eric Wong
  0 siblings, 0 replies; 4+ results
From: Eric Wong @ 2017-02-02 18:39 UTC (permalink / raw)
  To: ruby-talk, olddoc-public; +Cc: Daniel Ferreira

olddoc contains old-fashioned document generators for those who do not
wish to impose bloated, new-fangled web cruft on their readers.

olddoc contains oldweb, an HTML generator without any images, frames,
CSS, or JavaScript.  It is designed for users of text-based browsers
and/or low-bandwidth connections.  oldweb focuses on text as it is
the lowest common denominator for accessibility and compatibility
with people and hardware.

== Reasons

* No CSS.  Encouraging users to use CSS leads to problems like
  copy-paste hijacking: https://thejh.net/misc/website-terminal-copy-paste
  External CSS also increases page load time as it often blocks page
  rendering.  Asynchronous loading of CSS also causes accessibility
  problems as links/buttons may move as a user attempts to click.

* No JavaScript.  There is a constant barrage of security and
  client-side performance problems associated with it.  It's also
  unreasonable to expect users to rely on LibreJS and inspect every
  piece of JS they run.

* No frames.  Frames are an accessibility hassle and unfriendly
  to users of tiny screens on mobile devices and text-based browsers.

* No images.  Not everyone can view or afford bandwidth to load images.
  This also reduces the potential for security vulnerabilities as less
  code gets run.  Furthermore, loading the wrong image in a public
  place can get you arrested (or worse).

Encourage readers to simplify and speed up their browsing experience.
They can disable CSS, JavaScript, and images in their browser without
missing out!

== Usage

	gem install olddoc
	cd $ANY_RDOC_USING_RUBY_PROJECT
	rdoc -f oldweb

== Changes

    olddoc 1.5.0
    
    olddoc now avoids changing core RDoc behavior unless it is
    actually specified.  Thanks to Daniel Ferreira for noticing
    this bug in [ruby-talk:437390]:
    
      http://blade.nagaokaut.ac.jp/cgi-bin/scat.rb/ruby/ruby-talk/437390
      <CAPL_2g25ir4ZBJo652ao1EYB59ZvFHhpGef1V14QOV2SeVXLeA@mail.gmail.com>
    
    We still assume any Ruby process will only use one RDoc template
    in its lifetime, and not switch between them.
    
    There are also a few minor documentation and code cleanups.
    
    5 changes since olddoc v1.4.0:
    
          update URLs to HTTPS
          oldweb: apply LessHtml monkey patch late, at runtime
          oldweb: use flat_map instead of flatten.map chain
          oldweb: use native String#encode for (X)HTML escaping
          README: add NNTP archive link for mailing list

* https://80x24.org/olddoc/ - homepage + sample
* https://80x24.org/olddoc-public/ - mailing list archives
* nntp://news.public-inbox.org/inbox.comp.lang.ruby.olddoc
* olddoc-public@80x24.org - public mailing list (no subscription * necessary)
* git clone git://80x24.org/olddoc
* license: GPL-3.0+

^ permalink raw reply	[relevance 4%]

* [PATCH] update URLs to HTTPS
@ 2017-01-22 22:00  7% Eric Wong
  0 siblings, 0 replies; 4+ results
From: Eric Wong @ 2017-01-22 22:00 UTC (permalink / raw)
  To: olddoc-public

80x24.org fully supports HTTPS, now, so use it to give users
some measure of protection from spying.  A Tor .onion mirror
is planned.

Oops, missed the 1.4.0 release :x
---
 .olddoc.yml | 6 +++---
 README      | 2 +-
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/.olddoc.yml b/.olddoc.yml
index 293d369..f9cb790 100644
--- a/.olddoc.yml
+++ b/.olddoc.yml
@@ -1,8 +1,8 @@
 ---
-cgit_url: http://bogomips.org/olddoc.git
+cgit_url: https://80x24.org/olddoc.git
 git_url: git://80x24.org/olddoc.git
-rdoc_url: http://80x24.org/olddoc/
-ml_url: http://80x24.org/olddoc-public/
+rdoc_url: https://80x24.org/olddoc/
+ml_url: https://80x24.org/olddoc-public/
 nntp_url: nntp://news.public-inbox.org/inbox.comp.lang.ruby.olddoc
 merge_html:
   olddoc_1: Documentation/olddoc.1.html
diff --git a/README b/README
index ef0503c..23f872b 100644
--- a/README
+++ b/README
@@ -67,7 +67,7 @@ appreciated.
 
 Please send plain-text mail to the list at <olddoc-public@80x24.org>
 HTML will not be read.  olddoc is for GUI-phobes, by GUI-phobes.
-Mailing list archives available at http://80x24.org/olddoc-public/
+Mailing list archives available at https://80x24.org/olddoc-public/
 No subscription is necessary to post to the mailing list.
 
 == License
-- 
EW


^ permalink raw reply related	[relevance 7%]

Results 1-4 of 4 | reverse | options above
-- pct% links below jump to the message on this page, permalinks otherwise --
2017-01-22 22:00  7% [PATCH] update URLs to HTTPS Eric Wong
2017-02-02 18:39  4% [ANN] olddoc 1.5.0 - old-fashioned RDoc generator Eric Wong
2019-01-04 13:59  7% [PATCH] update URLs to HTTPS Eric Wong
2019-01-07  0:46  4% [ANN] olddoc 1.6.0 - old-fashioned RDoc generator Eric Wong

Code repositories for project(s) associated with this public inbox

	https://80x24.org/olddoc.git/

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).