Ticket #64 (closed enhancement: fixed)

Opened 7 years ago

Last modified 6 years ago

Add new paramifier to override readOnly setting

Reported by: JeremyRuston Owned by:
Priority: minor Milestone: 2.3
Component: core Version:
Severity: medium Keywords:
Cc:

Description

Sometimes it's useful for advanced users to be able to force a TiddlyWiki into edittable mode in order to be able to see underlying the raw tiddler text, and experiment with editting.

It's proposed to add a new paramifier that allows the readOnly status to be set:

 http://www.osmosoft.com/#readOnly:true  http://www.osmosoft.com/#readOnly:false

Change History

Changed 7 years ago by UdoBorkowski

This may be the code that does the job (not tested):

config.paramifiers.readOnly = {
    onconfig: function(v) {
        readOnly = v.toLowerCase() == "true";
        }
};

Changed 7 years ago by anonymous

  • severity changed from high to trivial
  • component changed from edition to support
  • priority changed from trivial to minor
  • version changed from 2.0.02 to 2.0.01
  • milestone 2.0.11 deleted
  • owner changed from developer to admin
  • type changed from enhancement to defect

Changed 7 years ago by anonymous

  • severity changed from trivial to critical
  • component changed from support to hosting
  • priority changed from minor to trivial
  • version changed from 2.0.01 to 2.0.04
  • milestone set to 2.1
  • type changed from defect to enhancement

Changed 7 years ago by JeremyRuston

  • status changed from new to assigned
  • severity changed from critical to medium
  • component changed from hosting to core
  • priority changed from trivial to minor
  • version 2.0.04 deleted
  • owner changed from admin to JeremyRuston

Changed 7 years ago by JeremyRuston

  • milestone changed from 2.1 to 2.2

Changed 6 years ago by MartinBudden

  • owner JeremyRuston deleted
  • status changed from assigned to new

Changed 6 years ago by MartinBudden

  • milestone changed from 2.2 to 2.3

Changed 6 years ago by SaqImtiaz

  • status changed from new to closed
  • resolution set to fixed

Implemented in TiddlyWiki 2.2 Usage as #readOnly:yes and #readOnly:no

Note: See TracTickets for help on using tickets.