content
stringlengths 228
999k
| pred_label
stringclasses 1
value | pred_score
float64 0.5
1
|
---|---|---|
How To Install budgie-desktop on Kali Linux
In this tutorial we learn how to install budgie-desktop on Kali Linux. budgie-desktop is Desktop package for budgie-desktop
Introduction
In this tutorial we learn how to install budgie-desktop on Kali Linux.
What is budgie-desktop
budgie-desktop is:
Budgie-Desktop is a GTK+ based desktop environment which focuses on simplicity and elegance. It provides a traditional desktop metaphor based interface utilising customisable panel based menu driven system. Budgie-Desktop is written from scratch utilising many GNOME based sub-systems such as GNOME-Session and Mutter.
This package installs the minimal GNOME based package-set together with the key budgie-desktop packages to produce a working desktop environment.
There are three methods to install budgie-desktop on Kali Linux. We can use apt-get, apt and aptitude. In the following sections we will describe each method. You can choose one of them.
Install budgie-desktop Using apt-get
Update apt database with apt-get using the following command.
sudo apt-get update
After updating apt database, We can install budgie-desktop using apt-get by running the following command:
sudo apt-get -y install budgie-desktop
Install budgie-desktop Using apt
Update apt database with apt using the following command.
sudo apt update
After updating apt database, We can install budgie-desktop using apt by running the following command:
sudo apt -y install budgie-desktop
Install budgie-desktop Using aptitude
If you want to follow this method, you might need to install aptitude on Kali Linux first since aptitude is usually not installed by default on Kali Linux. Update apt database with aptitude using the following command.
sudo aptitude update
After updating apt database, We can install budgie-desktop using aptitude by running the following command:
sudo aptitude -y install budgie-desktop
How To Uninstall budgie-desktop on Kali Linux
To uninstall only the budgie-desktop package we can use the following command:
sudo apt-get remove budgie-desktop
Uninstall budgie-desktop And Its Dependencies
To uninstall budgie-desktop and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove budgie-desktop
Remove budgie-desktop Configurations and Data
To remove budgie-desktop configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge budgie-desktop
Remove budgie-desktop configuration, data, and all of its dependencies
We can use the following command to remove budgie-desktop configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge budgie-desktop
Dependencies
budgie-desktop have the following dependencies:
References
Summary
In this tutorial we learn how to install budgie-desktop package on Kali Linux using different package management tools: apt, apt-get and aptitude.
|
__label__pos
| 0.792372 |
整関数の極値
COMPASS
真の理解のためのシンプルな数学のノート
数式を枠からはみ出さずに表示するためには, 画面を横に傾けてください(532 ピクセル以上推奨).
整関数の極値
整関数の極値
問題≪$3$ 次関数のグラフの対称性≫
$a,$ $b,$ $c,$ $d$ $(a \neq 0)$を実数とする. $3$ 次関数 $f(x) = ax^3+bx^2+cx+d$ とそのグラフ $C:y = f(x)$ 上の点 $\mathrm M\left( -\dfrac{b}{3a},f\left( -\dfrac{b}{3a}\right)\right)$ について, 次のことを示せ.
(A)
$C$ は点 $\mathrm M$ に関して対称である.
(B)
$f(x)$ が $x = \alpha$ で極大値, $x = \beta$ で極小値をとるとき, $2$ 点 $\mathrm A(\alpha,f(\alpha )),$ $\mathrm B(\beta,f(\beta ))$ を結ぶ線分の中点は $\mathrm M$ に一致する.
解答例
$p = -\dfrac{b}{3a},$ $q = f(p)$ とおく.
(A)
このとき, $C$ を $x$ 軸方向に $-p,$ $y$ 軸方向に $-q$ だけ平行移動した曲線 $C_0$ の方程式は, \[ y+q = f(x+p)\] つまり \begin{align*} y &= f(x+p)-q \\ &= a(x+p)^3+b(x+p)^2+c(x+p)+d-q \\ &= ax^3+(3ap+b)x^2+(3ap^2+2bp+c)x \\ &\qquad +(ap^3+bp^2+cp+d)-q \\ &= ax^3+(3ap^2+2bp+c)x \end{align*} である. 右辺は $x$ の奇関数であるから, $C_0$ は原点に関して対称である. $C$ は, $C_0$ を $x$ 軸方向に $p,$ $y$ 軸方向に $q$ だけ平行移動した曲線であるから, 点 $\mathrm M(p,q)$ に関して対称である.
(B)
平行移動しても線分とその中点の関係は変わらないから, $\mathrm M = \mathrm O$ の場合に \[\frac{\alpha +\beta}{2} = 0\ \cdots [1], \quad \frac{f(\alpha )+f(\beta )}{2} = 0\ \cdots [2]\] を示せば十分である. このとき, $p = 0,$ $q = f(p) = f(0) = 0$ から, $b = d = 0$ であり, \[ f(x) = ax^3+cx, \quad f'(x) = 3ax^2+c\] である. $\alpha,$ $\beta$ は $f'(x) = 0$ の解であるから, 解と係数の関係により, \[\alpha +\beta = 0\] が成り立ち, $[1]$ が従う. さらに, \begin{align*} \frac{f(\alpha )+f(\beta )}{2} &= \frac{a\alpha ^3+c\alpha +a\beta ^3+c\beta}{2} \\ &= \frac{a(\alpha ^3+\beta ^3)+c(\alpha +\beta )}{2} \\ &= \frac{a(\alpha\!+\!\beta )(\alpha ^2\!-\!\alpha\beta\!+\!\beta ^2)\!+\!c(\alpha\!+\!\beta )}{2} \\ &= 0 \quad \cdots [2] \end{align*} が成り立つ. 以上から, 線分 $\mathrm{AB}$ の中点は $\mathrm M$ に一致する.
背景
• 一般に, 実数値関数 $f(x)$ に対して, \begin{align*} &y = f(x)\text{ が点 }(p,q)\text{ に関して対称} \\ &\iff y+q = f(x+p)\text{ が原点に関して対称} \\ &\iff f(-x+p)-q = -f(x+p)+q \\ &\iff f(x+p)-q\text{ が奇関数} \end{align*} が成り立つ.
• 一般に, 実数値関数 $f(x)$ は偶関数 $\dfrac{f(x)+f(-x)}{2}$ と奇関数 $\dfrac{f(x)-f(-x)}{2}$ の和として \[ f(x) = \frac{f(x)+f(-x)}{2}+\frac{f(x)-f(-x)}{2}\] と一意的に表すことができる. 多項式関数の場合には, 偶関数の部分が偶数次の項の和, 奇関数の部分が奇数次の項の和となる. よって, 多項式関数が偶関数のとき偶数次の項の係数は $0$ であり, 奇関数のとき奇数次の項の係数は $0$ である.
問題≪$4$ 次関数のグラフの対称性≫
$a,$ $b,$ $c,$ $d,$ $e$ $(a \neq 0)$を実数とする. $4$ 次関数 $f(x) = ax^4+bx^3+cx^2+dx+e$ とそのグラフ $C:y = f(x)$ について, 次の問いに答えよ.
(A)
$C$ が $y$ 軸に平行な直線 $x = p$ に関して対称であるとする. このとき, $a,$ $b,$ $c,$ $d,$ $e$ を用いて $p$ を表し, $a,$ $b,$ $c,$ $d,$ $e$ の関係式を求めよ.
(B)
$f(x)$ がある実数 $x = p$ に関して対称な $2$ 点において等しい極値をとるならば, $C$ は直線 $x = p$ に関して対称であり, $f(x)$ は $x = p$ においても極値をとることを示せ.
解答例
(A)
$C$ を $x$ 軸方向に $-p$ だけ平行移動した曲線の方程式は, \[ y = a(x\!+\!p)^4\!+\!b(x\!+\!p)^3\!+\!c(x\!+\!p)^2\!+\!d(x\!+\!p)\!+\!e\] である. この曲線は $y$ 軸に関して対称であり, 右辺は偶関数であるから, $3$ 次, $1$ 次の項の係数は $0$ であり, \begin{align*} 4ap+b &= 0 \quad \cdots [1], \\ 4ap^3+3bp^2+2cp+d &= 0 \quad \cdots [2] \end{align*} が成り立つ. $[1]$ から, \[ p = -\frac{b}{4a}\] が得られる. これを $[2]$ に代入すると \begin{align*} -\frac{b^3}{16a^2}+\frac{3b^3}{16a^2}-\frac{bc}{2a}+d &= 0 \\ \frac{b^3}{8a^2}-\frac{bc}{2a}+d &= 0 \end{align*} となるから, 求める関係式は \[ b^3-4abc+8a^2d = 0\] である.
(B)
平行移動を考えることにより, $p = 0$ の場合を示せばよい. $f(x)$ が $x = \pm\alpha$ $(\alpha > 0)$ において等しい極値をとるとする. このとき, $f(\alpha ) = f(-\alpha )$ つまり \[ a\alpha ^4\!+\!b\alpha ^3\!+\!c\alpha ^2\!+\!d\alpha\!+\!e = a\alpha ^4\!-\!b\alpha ^3\!+\!c\alpha ^2\!-\!d\alpha\!+\!e\] であるから, \begin{align*} 2b\alpha ^3+2d\alpha &= 0 \\ b\alpha ^2+d &= 0 \quad \cdots [1] \end{align*} が成り立つ. また, \[ f'(\pm\alpha ) = 0\] であり, \[ f'(x) = 4ax^3+3bx^2+2cx+d\] であるから, \begin{align*} 4a\alpha ^3+3b\alpha ^2+2c\alpha +d &= 0, \quad \cdots [2] \\ -4a\alpha ^3+3b\alpha ^2-2c\alpha +d &= 0 \quad \cdots [3] \end{align*} が成り立つ. $[2]-[3]$ から \begin{align*} 8a\alpha ^3+4c\alpha &= 0 \\ 2a\alpha ^2+c &= 0 \end{align*} が成り立つ. これを $[2]$ つまり \[ 2\alpha (2a\alpha ^2+c)+3b\alpha ^2+d = 0\] に代入すると, \[ 3b\alpha ^2+d = 0 \quad \cdots [4]\] が得られる. よって, $[1],$ $[4]$ から, \[ b = d = 0\] が成り立つ. したがって, $f(x)$ は偶関数であるから, $y = f(x)$ は直線 $x = 0$ に関して対称である. さらに, このとき \[ f'(x) = 4ax^3+2cx = 2x(2ax^2+c)\] であるから, $f'(x) = 0$ は $3$ つの実数解 $x = 0,$ $\pm\alpha$ をもつ. $f'(x)$ の符号は $x = 0,$ $\pm\alpha$ の前後で入れ替わるから, $f(x)$ は $x = 0$ でも極値をとる. これで, 題意が示された.
背景
一般に, 実数値関数 $f(x)$ に対して, \begin{align*} &y = f(x)\text{ が直線 }x = p\text{ に関して対称} \\ &\iff y = f(x+p)\text{ が }y\text{ 軸に関して対称} \\ &\iff f(-x+p) = f(x+p) \\ &\iff f(x+p)\text{ が偶関数} \end{align*} が成り立つ.
|
__label__pos
| 0.989466 |
Using Perl With XML (part 2)
They say there’s more than one way to skin a cat – and that’s twice as true when you’re a Perl developer. In this concluding article on XML parsing with Perl, find out how the XML::DOM package provides an alternative technique for manipulating XML elements and attributes, and compare the two approaches to see which one works best for you.
In the first part of this article, I said that there were two approaches to parsing an XML document. The event-based SAX approach is one; the other uses the DOM, or Document Object Model, to build a tree representation of the XML data structures in the document, and then offers built-in methods to navigate through this tree. Once a particular node has been reached, built-in methods can be used to obtain the value of the node, and use it within the script.
Over the next few pages, I’m going to take a look at a Perl package that supports this tree-based approach. I’ll also attempt to duplicate the previous examples, marking up books and recipes with HTML tags, in order to demonstrate how either technique can be used to achieve the same result. Finally, I’ll briefly discuss the pros and cons of the SAX and DOM approaches, and point you to some links for your further education.
Let’s get started, shall we?{mospagebreak title=Meet Joe Cool} Perl comes with a DOM parser based on the expat library created by James Clark; it’s implemented as a Perl package named XML::DOM, and currently maintained by T. J. Mather. If you don’t already have it, you should download and install it before proceeding further; you can get a copy from CPAN (http://www.cpan.org/).
This DOM parser works by reading an XML document and creating objects to represent the different parts of that document. Each of these objects comes with specific methods and properties, which can be used to manipulate and access information about it. Thus, the entire XML document is represented as a “tree” of these objects, with the DOM parser providing a simple API to move between the different branches of the tree.
The parser itself supports all the different structures typically found in an XML document – elements, attributes, namespaces, entities, notations et al – but our focus here will be primarily on elements and the data contained within them. If you’re interested in the more arcane aspects of XML – as you will have to be to do anything complicated with the language – the XML::DOM package comes with some truly excellent documentation, which gets installed when you install the package. Make it your friend, and you’ll find things considerably easier.
Let’s start things off with a simple example:
#!/usr/bin/perl # create an XML-compliant string $xml = “<?xml version=”1.0″?><me><name>Joe Cool</name><age>24</age><sex>male</sex></me>”; # include package use XML::DOM; # instantiate parser $xp = new XML::DOM::Parser(); # parse and create tree $doc = $xp->parse($xml); # print tree as string print $doc->toString(); # end
In this case, a new instance of the parser is created and assigned to the variable $xp. This object instance can now be used to parse the XML data via its parse() function:
# instantiate parser $xp = new XML::DOM::Parser(); # parse and create tree $doc = $xp->parse($xml);
You’ll remember the parse() function from the first part of this article – it was used by the SAX parser to parse a string. When you think about it, this isn’t really all that remarkable – the XML::DOM package is built on top of the XML::Parser package, and therefore inherits many of the latter’s methods.
With that in mind, it follows that the DOM parser should also be able to read an XML file directly, simply by using the parsefile() method, instead of the parse() method:
#!/usr/bin/perl # XML file $file = “me.xml”; # include package use XML::DOM; # instantiate parser $xp = new XML::DOM::Parser(); # parse and create tree $doc = $xp->parsefile($file); # print tree as string print $doc->toString(); # end
The results of successfully parsing an XML document – whether string or file – is an object representation of the XML document (actually, an instance of the Document class). In the example above, this object is called $doc.
# instantiate parser $xp = new XML::DOM::Parser(); # parse and create tree $doc = $xp->parsefile($file);
This Document object comes with a bunch of interesting methods – and one of the more useful ones is the toString() method, which returns the current document tree as a string. In the examples above, I’ve used this method to print the entire document to the console.
# print tree as string print $doc->toString();
It should be noted that this isn’t all that great an example of how to use the toString() method. Most often, this method is used during dynamic XML tree generation, when an XML tree is constructed in memory from a database or elsewhere. In such situations, the toString() method comes in handy to write the final XML tree to a file or send it to a parser for further processing.{mospagebreak title=Parents And Their Children} The Document object comes with another useful method, one which enables you to gain access to information about the document’s XML version and character encoding. It’s called the getXMLDecl() method, and it returns yet another object, this one representing the standard XML declaration that appears at the top of every XML document. Take a look:
#!/usr/bin/perl # create an XML-compliant string $xml = “<?xml version=”1.0″ encoding=”utf-8″?><me><name>Joe Cool</name><age>24</age><sex>male</sex></me>”; # include package use XML::DOM; # instantiate parser $xp = new XML::DOM::Parser(); # parse and create tree $doc = $xp->parse($xml); # get XML PI $decl = $doc->getXMLDecl(); # get XML version print $decl->getVersion(); # get encoding print $decl->getEncoding(); # get whether standalone print $decl->getStandalone(); # end
As you can see, the newly-created XMLDecl object comes with a bunch of object methods of its own. These methods provide a simple way to access the document’s XML version, character encoding and status.
Using the Document object, it’s also possible to obtain references to other nodes in the XML tree, and manipulate them using standard methods. Since the entire document is represented as a tree, the first step is always to obtain a reference to the tree root, or the outermost document element, and use this a stepping stone to other, deeper branches. Consider the following example, which demonstrates how to do this:
#!/usr/bin/perl # create an XML-compliant string $xml = “<?xml version=”1.0″?><me><name>Joe Cool</name><age>24</age><sex>male</sex></me>”; # include package use XML::DOM; # instantiate parser $xp = new XML::DOM::Parser(); # parse and create tree $doc = $xp->parse($xml); # get root node “me” $root = $doc->getDocumentElement(); # end
An option here would be to use the getChildNodes() method, which is a common method available to every single node in the document tree. The following code snippet is identical to the one above:
#!/usr/bin/perl # create an XML-compliant string $xml = “<?xml version=”1.0″?><me><name>Joe Cool</name><age>24</age><sex>male</sex></me>”; # include package use XML::DOM; # instantiate parser $xp = new XML::DOM::Parser(); # parse and create tree $doc = $xp->parse($xml); # get root node “me” @children = $doc->getChildNodes(); $root = $children[0]; # end
Note that the getChildNodes() method returns an array of nodes under the current node; each of these nodes is again an object instance of the Node class, and comes with methods to access the node name, type and content. Let’s look at that next.{mospagebreak title=What’s In A Name?} Once you’ve obtained a reference to a node, a number of other methods become available to help you obtain the name and value of that node, as well as references to parent and child nodes. Take a look:
#!/usr/bin/perl # create an XML-compliant string $xml = “<?xml version=”1.0″?><me><name>Joe Cool</name><age>24</age><sex>male</sex></me>”; # include package use XML::DOM; # instantiate parser $xp = new XML::DOM::Parser(); # parse and create tree $doc = $xp->parse($xml); # get root node $root = $doc->getDocumentElement(); # get name of root node # returns “me” print $root->getNodeName(); # get children as array @children = $root->getChildNodes(); # this is the “name” element under “me” # I could also have used $root->getFirstChild() to get here $firstChild = $children[0]; # returns “name” print $firstChild->getNodeName(); # returns “1” print $firstChild->getNodeType(); # now to access the value of the text node under “name” $text = $firstChild->getFirstChild(); # returns “Joe Cool” print $text->getData(); # returns “#text” print $text->getNodeName(); # returns “3” print $text->getNodeType(); # go back up the tree # start from the “name” element and get its parent $parent = $firstChild->getParentNode(); # check the name – it should be “me” # yes it is! print $parent->getNodeName(); # end
As you can see, the getNodeName() and getNodeType() methods provide access to basic information about the node currently under examination. The children of this node can be obtained with the getChildNodes() method previously discussed, and node parents can be obtained with the getParentNode() method. It’s fairly simple, and – once you play with it a little – you’ll get the hang of how it works.
A quick note on the getNodeType() method above: every node is of a specific type, and this property returns a numeric code corresponding to the type. A complete list of defined types is available in the Perl documentation for the XML::DOM package.
Note also that the text within an element’s opening and closing tags is treated as a child node of the corresponding element node, and is returned as an object. This object comes with a getData() method, which returns the actual content nested within the element’s opening and closing tags. You’ll see this again in a few pages.{mospagebreak title=Welcome To The Human Race} Just as it’s possible to access elements and their content, it’s also possible to access element attributes and their values. The getAttributes() method of the Node object provides access to a list of all available attributes, and the getNamedItem() and getValue() methods make it possible to access specific attributes and their values. Take a look at a demonstration of how it all works:
#!/usr/bin/perl # create an XML-compliant string $xml = “<?xml version=”1.0″?><me species=”human”><name>Joe Cool</name><age>24</age><sex>male</sex></me>”; # include package use XML::DOM; # instantiate parser $xp = new XML::DOM::Parser(); # parse and create tree $doc = $xp->parse($xml); # get root node (Node object) $root = $doc->getDocumentElement(); # get attributes (NamedNodeMap object) $attribs = $root->getAttributes(); # get specific attribute (Attr object) $species = $attribs->getNamedItem(“species”); # get value of attribute # returns “human” print $species->getValue(); # end
Getting to an attribute value is a little more complicated than getting to an element. But hey – no gain without pain, right?{mospagebreak title=Building A Library} Using this information, it’s pretty easy to re-create our first example using the DOM parser. Here’s the XML data,
<?xml version=”1.0″?> <library> <book> <title>Dreamcatcher</title> <author>Stephen King</author> <genre>Horror</genre> <pages>899</pages> <price>23.99</price> <rating>5</rating> </book> <book> <title>Mystic River</title> <author>Dennis Lehane</author> <genre>Thriller</genre> <pages>390</pages> <price>17.49</price> <rating>4</rating> </book> <book> <title>The Lord Of The Rings</title> <author>J. R. R. Tolkien</author> <genre>Fantasy</genre> <pages>3489</pages> <price>10.99</price> <rating>5</rating> </book> </library>
and here’s the script which does all the work.
#!/usr/bin/perl # XML file $file = “library.xml”; # array of ratings @ratings = (“Words fail me!”, “Terrible”, “Bad”, “Indifferent”, “Good”, “Excellent”); # include package use XML::DOM; # instantiate parser $xp = new XML::DOM::Parser(); # parse and create tree $doc = $xp->parsefile($file); # set up HTML page print “Content-Type: text/htmlnn”; print “<html><head></head><body>”; print “<h2>The Library</h2>”; print “<table border=1 cellspacing=1 cellpadding=5> <tr> <td align=center>Title</td> <td align=center>Author</td> <td align=center>Price</td> <td align=center>User Rating</td> </tr>”; # get root node $root = $doc->getDocumentElement(); # get children @books = $root->getChildNodes(); # iterate through book list foreach $node (@books) { print “<tr>”; # if element node if ($node->getNodeType() == 1) { # get children # this is the “title”, “author”… level @children = $node->getChildNodes(); # iterate through child nodes foreach $item (@children) { # check element name if (lc($item->getNodeName) eq “title”) { # print text node contents under this element print “<td><i>” . $item->getFirstChild()->getData . “</i></td>”; } elsif (lc($item->getNodeName) eq “author”) { print “<td>” . $item->getFirstChild()->getData . “</td>”; } elsif (lc($item->getNodeName) eq “price”) { print “<td>$” . $item->getFirstChild()->getData . “</td>”; } elsif (lc($item->getNodeName) eq “rating”) { $num = $item->getFirstChild()->getData; print “<td>” . $ratings[$num] . “</td>”; } } } print “</tr>”; } print “</table></body></html>”; # end
This may appear complex, but it isn’t really all that hard to understand. I’ve first obtained a reference to the root of the document tree, $root, and then to the children of that root node; these children are returned as a regular Perl array. I’ve then used a “foreach” loop to iterate through the array, navigate to the next level, and print the content found in the nodes, with appropriate formatting. The numerous “if” statements you see are needed to check the name of each node and then add appropriate HTML formatting to it.
As explained earlier, the data itself is treated as a child text node of the corresponding element node. Therefore, whenever I find an element node, I’ve used the node’s getFirstChild() method to access the text node under it, and the getData() method to extract the data from that text node.
Here’s what it looks like:
{mospagebreak title=Anyone For Chicken?} I can do the same thing with the second example as well. However, since there are quite a few levels to the document tree, I’ve decided to use a recursive function to iterate through the tree, rather than a series of “if” statements.
Here’s the XML file,
<?xml version=”1.0″?> <recipe> <name>Chicken Tikka</name> <author>Anonymous</author> <date>1 June 1999</date> <ingredients> <item> <desc>Boneless chicken breasts</desc> <quantity>2</quantity> </item> <item> <desc>Chopped onions</desc> <quantity>2</quantity> </item> <item> <desc>Ginger</desc> <quantity>1 tsp</quantity> </item> <item> <desc>Garlic</desc> <quantity>1 tsp</quantity> </item> <item> <desc>Red chili powder</desc> <quantity>1 tsp</quantity> </item> <item> <desc>Coriander seeds</desc> <quantity>1 tsp</quantity> </item> <item> <desc>Lime juice</desc> <quantity>2 tbsp</quantity> </item> <item> <desc>Butter</desc> <quantity>1 tbsp</quantity> </item> </ingredients> <servings> 3 </servings> <process> <step>Cut chicken into cubes, wash and apply lime juice and salt</step> <step>Add ginger, garlic, chili, coriander and lime juice in a separate bowl</step> <step>Mix well, and add chicken to marinate for 3-4 hours</step> <step>Place chicken pieces on skewers and barbeque</step> <step>Remove, apply butter, and barbeque again until meat is tender</step> <step>Garnish with lemon and chopped onions</step> </process> </recipe>
and here’s the script which parses it.
#!/usr/bin/perl # XML file $file = “recipe.xml”; # hash of tag names mapped to HTML markup # “recipe” => start a new block # “name” => in bold # “ingredients” => unordered list # “desc” => list items # “process” => ordered list # “step” => list items %startTags = ( “name” => “<font size=+2>”, “date” => “<i>(“, “author” => “<b>”, “servings” => “<i>Serves “, “ingredients” => “<h3>Ingredients:</h3><ul>”, “desc” => “<li>”, “quantity” => “(“, “process” => “<h3>Preparation:</h3><ol>”, “step” => “<li>” ); # close tags opened above %endTags = ( “name” => “</font><br>”, “date” => “)</i>”, “author” => “</b>”, “ingredients” => “</ul>”, “quantity” => “)”, “servings” => “</i>”, “process” => “</ol>” ); # this function accepts an array of nodes as argument, # iterates through it and prints HTML markup for each tag it finds. # for each node in the array, it then gets an array of the node’s children, and # calls itself again with the array as argument (recursion) sub printData() { my (@nodeCollection) = @_; foreach $node (@nodeCollection) { print $startTags{$node->getNodeName()}; print $node->getFirstChild()->getData(); my @children = &getChildren($node); printData(@children); print $endTags{$node->getNodeName()}; } } # this function accepts a node # and returns all the element nodes under it (its children) # as an array sub getChildren() { my ($node) = @_; # get children of this node my @temp = $node->getChildNodes(); my $count = 0; my @collection; # iterate through children foreach $item (@temp) { # if this is an element # (need this to strip out text nodes containing whitespace) if ($item->getNodeType() == 1) { # add it to the @collection array $collection[$count] = $item; $count++; } } # return node collection return @collection; } use XML::DOM; # instantiate parser $xp = new XML::DOM::Parser(); # parse and create tree $doc = $xp->parsefile($file); # send standard header to browser print “Content-Type: text/htmlnn”; # print HTML header print “<html><head></head><body><hr>”; # get root node $root = $doc->getDocumentElement(); # get children @children = &getChildren($root); # run a recursive function starting here &printData(@children); print “</table></body></html>”; # end
In this case, I’ve utilized a slightly different method to mark up the XML. I’ve first initialized a couple of hashes to map XML tags to corresponding HTML markup, in much the same manner as I did last time. Next, I’ve used DOM functions to obtain a reference to the first set of child nodes in the DOM tree.
This initial array of child nodes is used to “seed” my printData() function, a recursive function which takes an array of child nodes, matches their tag names to values in the associative arrays, and outputs the corresponding HTML markup to the browser. It also obtains a reference to the next set of child nodes, via the getChildren() function, and calls itself with the new node collection as argument.
By using this recursive function, I’ve managed to substantially reduce the number of “if” conditional statements in my script; the code is now easier to read, and also structured more logically.
Here’s what it looks like:
{mospagebreak title=Conclusions…} As you can see, you can parse a document using either DOM or SAX, and achieve the same result. The difference is that the DOM parser is a little slower, since it has to build a complete tree of the XML data, whereas the SAX parser is faster, since it’s calling a function each time it encounters a specific tag type. You should experiment with both methods to see which one works better for you.
There’s another important difference between the two techniques. The SAX approach is event-centric – as the parser travels through the document, it executes specific functions depending on what it finds. Additionally, the SAX approach is sequential – tags are parsed one after the other, in the sequence in which they appear. Both these features add to the speed of the parser; however, they also limit its flexibility in quickly accessing any node of the DOM tree.
As opposed to this, the DOM approach builds a complete tree of the document in memory, making it possible to easily move from one node to another (in a non-sequential manner). Since the parser has the additional overhead of maintaining the tree structure in memory, speed is an issue here; however, navigation between the various “branches” of the tree is easier. Since the approach is not dependent on events, developers need to use the exposed methods and attributes of the various DOM objects to process the XML data.{mospagebreak title=…And Links} That just about concludes this little tour of parsing XML data with Perl. I’ve tried to keep it as simple as possible, and there are numerous aspects of XML I haven’t covered here. If you’re interested in learning more about XML and XSL, you should visit the following links:
The XML specification, at http://www.w3.org/TR/2000/REC-xml-20001006
The XSLT specification, at http://www.w3.org/TR/xslt.html
The SAX project, at http://www.saxproject.org/
The W3C’s DOM specification, at http://www.w3.org/DOM/
A number of developers have built and released Perl packages to handle XML data – if you’re ever on a tight deadline, using these packages might save you some development time. Take a look at the following links for more information:
CPAN, at http://www.cpan.org/
And that’s just about all for the moment. I hope you found this interesting, and that it helped to make the road ahead a little clearer. Till next time, stay healthy!
Note: All examples in this article have been tested on Linux/i586 with Perl 5.005. Examples are illustrative only, and are not meant for a production environment. YMMV!
[gp-comments width="770" linklove="off" ]
chat sex hikayeleri Ensest hikaye
|
__label__pos
| 0.873779 |
The importance of user testing in app development
January 7, 2023 | Heather Stugen
User testing is a crucial step in the app development process that should not be overlooked. It allows developers to gather valuable feedback from real users, identify any problems or usability issues, and make necessary improvements before launching the app. In this blog post, we’ll explore the importance of user testing in app development and how it can lead to a better, more successful app.
First, let’s define user testing. It is the process of evaluating a product or service by testing it with representative users. In the context of app development, user testing involves having a group of users try out the app and provide feedback on its functionality, usability, and overall user experience. This feedback can come in the form of surveys, interviews, focus groups, or simply observing users as they interact with the app.
So why is user testing important in app development? Here are a few key reasons:
1. User testing helps identify problems and usability issues. Even the most well-designed app can have problems that may not be immediately obvious to developers. User testing allows developers to see how real users interact with the app and identify any issues or problems that need to be addressed. This can include everything from bugs and glitches to usability issues and user frustration. By identifying and fixing these issues early on, developers can save time and resources in the long run.
2. User testing helps improve the user experience. User testing allows developers to get a better understanding of how users interact with the app and what they like or dislike about it. This can help developers make necessary improvements to the user experience, such as simplifying navigation, improving the layout, or adding new features that users want. A better user experience leads to higher user satisfaction and can ultimately drive more downloads and engagement.
3. User testing helps validate design decisions. Before user testing, developers may have certain assumptions about how users will interact with the app. User testing allows developers to validate these assumptions and see if they hold up in practice. It can also help developers discover new insights about how users want to use the app and what they need. This information can inform future design decisions and help ensure that the app meets the needs of its target audience.
4. User testing helps build credibility and trust with users. By actively seeking out and incorporating user feedback, developers can show users that they care about their needs and are committed to creating a high-quality app. This can help build credibility and trust with users, which can translate into higher retention and loyalty.
So, how can developers go about user testing their app? Here are a few steps to follow:
1. Define your goals. What do you want to learn from user testing? Do you want to gather feedback on the overall user experience, identify usability issues, or validate certain design decisions? Having clear goals in mind will help guide the user testing process and ensure that you get the most value out of it.
2. Identify your target audience. Who will you be testing your app with? Make sure to select a representative group of users that aligns with your target audience. This could include demographics such as age, gender, location, and profession.
3. Plan your user testing sessions. Decide how you want to conduct user testing, such as through surveys, interviews, focus groups, or simply observing users as they interact with the app. Make sure to provide clear instructions and guidelines for users to follow during the testing process.
4. Gather and analyze feedback. After conducting user testing, it’s important to carefully review and analyze the feedback you received. Look for patterns and trends in the data and use them to inform future design decisions. Make sure to document any issues or problems that users identified and prioritize them for future updates or fixes.
If you’re ready to take the next step in your app development journey and want to work with a team of experienced professionals, we encourage you to contact us. Our team has a track record of delivering high-quality apps on time and on budget. We would be happy to discuss your project in more detail and provide a free quote. Simply contact us and fill out the form. We look forward to the opportunity to work with you and help bring your app idea to life.
• Views3098
• Views3098
Recent Blogs
Let's Discuss
All information provided by you will be kept 100% confidential.
|
__label__pos
| 0.838359 |
Beefy Boxes and Bandwidth Generously Provided by pair Networks
No such thing as a small change
PerlMonks
How can I set popup_menu parameters and send them to another page?
by jaffinito34 (Acolyte)
on May 11, 2013 at 18:00 UTC ( #1033141=perlquestion: print w/ replies, xml ) Need Help??
jaffinito34 has asked for the wisdom of the Perl Monks concerning the following question:
I understand to send data to another page, you use:
print start_form( -action=>'results.cgi'); various form stuff.... print end_form;
I would like to be able to take the selected options from popup_menu's as well as a textbox to return information from a database. So I'm going from a search page to a results page. The search page is displaying information from the database, then whatever the user picks as their selection in the popup_menu gets passed to the results page to query the database.
use DBI; use CGI::Cookie; use CGI qw /:standard/; use warnings; #checking if cookie is set, if not redirecting to login my %cookies = CGI::Cookie->fetch; if (! defined $cookies{'authorized'}) { print redirect('login.cgi') } #connecting to DB my $dbh = DBI->connect("dbi:SQLite:dbname=/path/to/database.db","","") +; # getting artist info my $sth = $dbh->prepare('select artistid, name from artist'); $sth->execute; # getting genre info my $sth2 = $dbh->prepare('select genreid, name from genre'); $sth2->execute; #printing header print header, start_html('Database Search'), h2('Select items from the dropdown menus to help filter your results.' +), br,br, end_html; print start_form(-action=>'results.cgi'); end_form; ### THIS CAUSES REDIRECT TO RESULTS WHEN USER HITS SUBMI +T ############################POPUPS###################### #displaying artist dropdown my @artistValues; my %artistLabels; #this push adds to beginning of values, then it gets set to 'Make a se +lection' as the default for the dropdown push (@artistValues, -1); print h4('Please select an artist'); $artistLabels{-1} = "Make a selection"; while (my @row = $sth->fetchrow_array) { #2 columns in DB, first is ID second is NAME my $artistId = $row[0]; my $artistName = $row[1]; push(@artistValues,$artistId); $artistLabels{$artistId} = $artistName; } print popup_menu(-name=>'artist', -values=>\@artistValues, -labels=>\%artistLabels); $userArtist = param('artist'); #displaying genre dropdown my @genreValues; my %genreLabels; push (@genreValues, 'Make a selection'); print br,br; print h4('Please select a genre'); $genreLabels{-1} = "Make a selection"; while (my @row = $sth2->fetchrow_array) { my $genreId = $row[0]; my $genreName = $row[1]; push (@genreValues, $genreName); $genreLabels{$genreId} = $genreId; } print popup_menu(-name=>'genre', -values=>\@genreValues, -lables=>\%genreLabels); $userGenre = param('genre'); print br,br; ###################################################################### +## #displaying trackname textbox print "Track name: ",textfield('trackname'),br,br submit('SEARCH'), $trackName = param('trackname'); while(my @row = $sth->fetchrow_array){ foreach $item (@row){ print "$item "; }print br; } print br,br,br,br,a({href=>'http://www.blablabla.com/logout.cgi'},'Log +out');
When I go to print the parameters ($userArtist, $userGenre, $trackName), only trackname gets printed and I don't see anything for artist or genre. I am not able to find anything online about this, or maybe I'm just unsure how it works, any help is appreciated.
Comment on How can I set popup_menu parameters and send them to another page?
Select or Download Code
Re: How can I set popup_menu parameters and send them to another page?
by poj (Priest) on May 11, 2013 at 19:15 UTC
You could use a test results.cgi page to see the name and value of all the parameter sent like this ;
use strict; use CGI qw /:standard/; print header,start_html('results'); print h3("Parameters"); for (param){ print "$_ = ".param($_)."<br/>"; } print end_html;
poj
Re: How can I set popup_menu parameters and send them to another page?
by thewebsi (Beadle) on May 11, 2013 at 20:07 UTC
I'm assuming that this script is the "search" page and the "results" page is where you are printing the parameter values (not shown here).
print start_form(-action=>'results.cgi');
end_form; ### THIS CAUSES REDIRECT TO RESULTS WHEN USER HITS SUBMIT
It looks like this might be the issue: You want to print end_form() (not just run it), and you want to do this at the end of your script (ie, at the end of the form), not here.
Re: How can I set popup_menu parameters and send them to another page?
by Anonymous Monk on May 11, 2013 at 20:22 UTC
#printing header print header, start_html('Database Search'), h2('Select items from the dropdown menus to help filter your results.' +), br,br, end_html;
Why did you output the end_html here? That should be the last item printed, not one of the first items prior to your form.
Log In?
Username:
Password:
What's my password?
Create A New User
Node Status?
node history
Node Type: perlquestion [id://1033141]
Approved by ww
Front-paged by Corion
help
Chatterbox?
and the web crawler heard nothing...
How do I use this? | Other CB clients
Other Users?
Others rifling through the Monastery: (7)
As of 2014-09-23 22:40 GMT
Sections?
Information?
Find Nodes?
Leftovers?
Voting Booth?
How do you remember the number of days in each month?
Results (241 votes), past polls
|
__label__pos
| 0.653575 |
Proof that e is irrational
By Martin McBride, 2024-06-07
Tags: exponential proof irrational e euler
Categories: exponentials
Euler's number, e, is an important number in mathematics that appears in many contexts.
As an example, here are two important properties of $e$. First, the following simple first-order differential equation applies to many situations from population growth to radioactive decay:
Uses of e
The only non-trivial solution to this equation (we will ignore the trivial solution y = 0) is the exponential function e to the power x:
Uses of e
Second, e is involved in Euler's formula, which is the bedrock of the complex analysis (the study of complex numbers):
Uses of e
If we substitute the value π for θ we get Euler's identity:
Uses of e
This formula puts e at the heart of mathematics. It links what are arguably the three most important constants in mathematics, pi, e and i, in a single formula.
It turns out that e is an irrational number, and in this article, we will look at Fourier's ingenious proof of that.
Fourier's proof
Joseph Fourier's proof is a proof by contradiction. We start by assuming that e is rational, meaning that, for some positive integers a and b we have:
Fourier's proof
We will prove that this leads to a contradiction, and therefore cannot be true. This is a similar approach we saw for the proof that the square root of 2 is irrational, although after this initial step, the two proofs are quite different.
This proof relies on the Maclaurin expansion of the exponential function, given by:
Fourier's proof
We can use this to find an expression for e, simply by setting x equal to 1:
Fourier's proof
Properties of factorials
Before we get into the proof, we will look at a couple of properties of factorials that will be useful later. The factorial of n, of course, is the product of n and every positive integer less than n:
Properties of factorials
There is a special rule that 0! is equal to 1.
Any factorial is divisible by any smaller factorial. For example, 7! is divisible by 4!, because the smallest four terms are identical, so they just cancel out:
Properties of factorials
So in general, if n ≥ m we can write the quotient of the factorials like this:
Properties of factorials
This is always an integer, because each term in the product is an integer. We will use this fact later.
If n < m we get a rational fraction (it is always one divided by an integer):
Properties of factorials
On with the proof
So far we have shown that if e is rational, then the following must be true (where a and b are positive integers):
Fourier's proof
We are, of course, hoping to prove that this equation cannot hold when a and b are positive integers. That will prove that e is irrational.
It will be useful to multiply both sides by b!:
Fourier's proof
Looking at the right-hand side, each term has a denominator that is a factorial, and the factorial becomes larger with each successive term. We can split the terms into two groups - those where the denominator is less than or equal to b! and those where the denominator is greater than b!. All we have done is group the terms, we haven't changed anything:
Fourier's proof
Let's write this as:
Fourier's proof
We can look at the terms one by one. P can be simplified as follows:
Fourier's proof
We have used the fact that b! is equal to b(b-1)!, then cancelled out b top and bottom. Since a is an integer and any factorial is an integer, it follows that P is an integer. As we will see, that is all we need to know about P.
Now on to Q:
Fourier's proof
Every term on the right has the form n!/m! where n ≥ m. We saw earlier that this always evaluates to an integer. This means that Q is the sum of a finite set of integers so Q must be an integer.
So we have shown that if a and b are integers, P and Q must also be integers. And if P is equal to Q plus R, then R must also be an integer.
If we can prove that R is not an integer, we have a contradiction. In that case, P cannot be an integer, so a and b cannot be both integers, so e cannot be rational.
Finalising Fourier's proof
From above, we have:
Fourier's proof
This is an infinite series, so how do we prove it is not integer? There is no obvious way to solve it, but fortunately, Fourier found a clever method to prove that whatever the result is, it cannot an integer.
First, since b is a positive integer, therefore greater than 0, we can say for certain that R > 0.
Can we find an upper bound? Let's expand the first few terms, using the factorial rule we discovered earlier for n!/m! when n < m. The first term is:
Fourier's proof
The second term is:
Fourier's proof
Fourier now uses a clever simplification. Since (b + 2) is greater than (b + 1), if we substitute (b + 1) in the denominator it will make the fraction bigger. So we can say that:
Fourier's proof
Which in turn gives us the result that:
Fourier's proof
The third term is:
Fourier's proof
We can do the same thing, substituting both (b + 2) and (b + 3) with (b + 1) and applying the same logic:
Fourier's proof
If we do the same for every term, we can say that:
Fourier's proof
Notice that R is strictly less than the sum because every term except for the first is overestimated in the formula above.
Since b appears in each denominator, so the smaller b the larger the sum. We know b is a positive integer, so the largest value for the above equation would be if b was 1. In that case, the sum becomes:
Fourier's proof
This is a well-known geometric series that sums to 1. R must be less than this maximum. Since we already know R is greater than 0 we have:
Fourier's proof
There are no integers that are greater than zero but less than one. So R cannot be an integer. As we have already shown, this means that e cannot be rational.
See also
Join the GraphicMaths Newletter
Sign up using this form to receive an email when new content is added:
Popular tags
adder adjacency matrix alu and gate angle area argand diagram binary maths cartesian equation chain rule chord circle cofactor combinations complex modulus complex polygon complex power complex root cosh cosine cosine rule cpu cube decagon demorgans law derivative determinant diagonal directrix dodecagon eigenvalue eigenvector ellipse equilateral triangle euler eulers formula exponent exponential exterior angle first principles flip-flop focus gabriels horn gradient graph hendecagon heptagon hexagon horizontal hyperbola hyperbolic function hyperbolic functions infinity integration by parts integration by substitution interior angle inverse hyperbolic function inverse matrix irrational irregular polygon isosceles trapezium isosceles triangle kite koch curve l system line integral locus maclaurin series major axis matrix matrix algebra mean minor axis nand gate newton raphson method nonagon nor gate normal normal distribution not gate octagon or gate parabola parallelogram parametric equation pentagon perimeter permutations polar coordinates polynomial power probability probability distribution product rule proof pythagoras proof quadrilateral radians radius rectangle regular polygon rhombus root sech set set-reset flip-flop sine sine rule sinh sloping lines solving equations solving triangles square standard curves standard deviation star polygon statistics straight line graphs surface of revolution symmetry tangent tanh transformation transformations trapezium triangle turtle graphics variance vertical volume of revolution xnor gate xor gate
|
__label__pos
| 0.928897 |
clang-tools 17.0.0git
NamespaceAliaser.cpp
Go to the documentation of this file.
1//===---------- NamespaceAliaser.cpp - clang-tidy -------------------------===//
2//
3// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6//
7//===----------------------------------------------------------------------===//
8
9#include "NamespaceAliaser.h"
10
11#include "ASTUtils.h"
12#include "clang/ASTMatchers/ASTMatchFinder.h"
13#include "clang/ASTMatchers/ASTMatchers.h"
14#include "clang/Lex/Lexer.h"
15#include <optional>
16namespace clang::tidy::utils {
17
18using namespace ast_matchers;
19
20NamespaceAliaser::NamespaceAliaser(const SourceManager &SourceMgr)
21 : SourceMgr(SourceMgr) {}
22
23AST_MATCHER_P(NamespaceAliasDecl, hasTargetNamespace,
24 ast_matchers::internal::Matcher<NamespaceDecl>, innerMatcher) {
25 return innerMatcher.matches(*Node.getNamespace(), Finder, Builder);
26}
27
28std::optional<FixItHint>
29NamespaceAliaser::createAlias(ASTContext &Context, const Stmt &Statement,
30 StringRef Namespace,
31 const std::vector<std::string> &Abbreviations) {
32 const FunctionDecl *Function = getSurroundingFunction(Context, Statement);
33 if (!Function || !Function->hasBody())
34 return std::nullopt;
35
36 if (AddedAliases[Function].count(Namespace.str()) != 0)
37 return std::nullopt;
38
39 // FIXME: Doesn't consider the order of declarations.
40 // If we accidentally pick an alias defined later in the function,
41 // the output won't compile.
42 // FIXME: Also doesn't consider file or class-scope aliases.
43
44 const auto *ExistingAlias = selectFirst<NamedDecl>(
45 "alias", match(functionDecl(hasBody(compoundStmt(has(declStmt(
46 has(namespaceAliasDecl(hasTargetNamespace(hasName(
47 std::string(Namespace))))
48 .bind("alias"))))))),
49 *Function, Context));
50
51 if (ExistingAlias != nullptr) {
52 AddedAliases[Function][Namespace.str()] = ExistingAlias->getName().str();
53 return std::nullopt;
54 }
55
56 for (const auto &Abbreviation : Abbreviations) {
57 DeclarationMatcher ConflictMatcher = namedDecl(hasName(Abbreviation));
58 const auto HasConflictingChildren =
59 !match(findAll(ConflictMatcher), *Function, Context).empty();
60 const auto HasConflictingAncestors =
61 !match(functionDecl(hasAncestor(decl(has(ConflictMatcher)))), *Function,
62 Context)
63 .empty();
64 if (HasConflictingAncestors || HasConflictingChildren)
65 continue;
66
67 std::string Declaration =
68 (llvm::Twine("\nnamespace ") + Abbreviation + " = " + Namespace + ";")
69 .str();
70 SourceLocation Loc =
71 Lexer::getLocForEndOfToken(Function->getBody()->getBeginLoc(), 0,
72 SourceMgr, Context.getLangOpts());
73 AddedAliases[Function][Namespace.str()] = Abbreviation;
74 return FixItHint::CreateInsertion(Loc, Declaration);
75 }
76
77 return std::nullopt;
78}
79
80std::string NamespaceAliaser::getNamespaceName(ASTContext &Context,
81 const Stmt &Statement,
82 StringRef Namespace) const {
83 const auto *Function = getSurroundingFunction(Context, Statement);
84 auto FunctionAliases = AddedAliases.find(Function);
85 if (FunctionAliases != AddedAliases.end()) {
86 if (FunctionAliases->second.count(Namespace) != 0) {
87 return FunctionAliases->second.find(Namespace)->getValue();
88 }
89 }
90 return Namespace.str();
91}
92
93} // namespace clang::tidy::utils
CodeCompletionBuilder Builder
SourceLocation Loc
std::string getNamespaceName(ASTContext &Context, const Stmt &Statement, llvm::StringRef Namespace) const
NamespaceAliaser(const SourceManager &SourceMgr)
std::optional< FixItHint > createAlias(ASTContext &Context, const Stmt &Statement, llvm::StringRef Namespace, const std::vector< std::string > &Abbreviations)
AST_MATCHER_P(NamespaceAliasDecl, hasTargetNamespace, ast_matchers::internal::Matcher< NamespaceDecl >, innerMatcher)
const FunctionDecl * getSurroundingFunction(ASTContext &Context, const Stmt &Statement)
Definition: ASTUtils.cpp:18
|
__label__pos
| 0.970961 |
You're viewing a comment by Dani and its responses.
Dani Permalink
March 02, 2011, 03:13
Could it be that absolute mode is faster? For instance, if you are changing the permissions of a whole filesystem (to make it worse, imagine its a network filesystem), having to do a "stat" of the file before changing it makes it slower, right?
Also, i dont see why it is more powerful because u can do the same thing with both. Personally, I prefer absolute mode since my brain can calculate the mask faster than remembering the command flags.
Reply To This Comment
(why do I need your e-mail?)
(Your twitter name, if you have one. (I'm @pkrumins, btw.))
Type the word "cloud_253": (just to make sure you're a human)
Please preview the comment before submitting to make sure it's OK.
|
__label__pos
| 0.951873 |
Video Thumbnails: Does Android even recognize them?
Last Updated:
1. Media Mogul
Media Mogul New Member
Video Thumbnails:
That's the still frame that displays before you play the video. Sometimes they're known as poster frames.
Does Android even recognize them?
The thumbnail image is a vital thing for a small child to be able to use the tablet device to identify and watch a video.
I'm pretty good with video. I use multiple editing applications, and own sophisticated video compression software like Apple's Compressor and Sorenson Squeeze.
Sorenson Squeeze has a setting to choose the thumbnail image for an MPEG-4 movie. But when that movie is imported into my Nexus 7 tablet, it is disregarded. The Nexus just displays any random frame.
Has anyone figured out how to add your own thumbnail image to a video to be displayed in Android?
Advertisement
2. krazyasif786
krazyasif786 Well-Known Member
I assume you mean like a preview similar to ones you get when watching youtube .... scrolling over a section of video ....
.... I know the note 2 has a thing called airview? not sure if its available on other devices. This lets you hover over a section of video to give you a preview. Also it lets you preview (with sound) a video in the library.
3. Media Mogul
Media Mogul New Member
No, not like YouTube.
When you look through the Gallery app on Android, you can see the videos and photos in your collection, with each one represented by a still image.
It's that still image I'm talking about. I want a way to select which still image from the video is displayed when I scroll through the Gallery.
I wondered if there's a way to add artwork to a single video? That might be a way to get it to display a particular image to represent that video. I don't know.
When a 2-year-old child looks through the Gallery, the child needs to see an image that represents the video, to be able to choose which video to watch.
For this reason, not being able to choose that image is a show-stopper. My Nexus 7 is only weeks old, but unfortunately I'm considering switching to Apple's iOS for this reason alone, as it means a child can't use the Nexus tablet.
Share This Page
|
__label__pos
| 0.813917 |
Take the 2-minute tour ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.
I'm struggling with add_custom_command. Let me explain the problem in detail.
I've these set of cxx files and hxx files. I run a perl script on each of them to generate a certain kind of translation file. The command looks like
perl trans.pl source.cxx -o source_cxx_tro
and similarly for header.hxx files as well.
So I'll end up with some multiple commands (each for a file)
Then I run another perl scripn on the output generated from these commands (source_cxx_tro, header_hxx_tro)
perl combine.pl source_cxx_tro header_hxx_tro -o dir.trx
dir.trx is the output file.
I've something like this.
Loop_Over_All_Files()
Add_Custom_Command (OUTPUT ${trofile} COMMAND perl trans.pl ${file} -o ${file_tro})
List (APPEND trofiles ${file_tro})
End_Loop()
Add_Custom_Command (TARGET LibraryTarget POST_BUILD COMMAND perl combine.pl ${trofiles} -o LibraryTarget.trx)
What I expect is when building the post build target, the trofiles will be built first. but it is not the case. The ${trofiles} are not getting built and hence the post build command ends in a failure. Is there any way I can tell the POST_BUILD command depend on the previous custom command ?
Any suggestions ?
Thanks in advance, Surya
share|improve this question
add comment
2 Answers
up vote 19 down vote accepted
Use add_custom_command's to create a file transformation chain
• *.(cxx|hxx) -> *_(cxx|hxx)_tro
• *_(cxx|hxx)_tro -> Foo.trx
and make the last transformation an first class entity in cmake by using add_custom_target. By default this target won't be build, unless you mark it with ALL or let another target that is built depend on it.
set(SOURCES foo.cxx foo.hxx)
add_library(Foo ${SOURCES})
set(trofiles)
foreach(_file ${SOURCES})
string(REPLACE "." "_" file_tro ${_file})
set(file_tro "${file_tro}_tro")
add_custom_command(
OUTPUT ${file_tro}
COMMAND perl ${CMAKE_CURRENT_SOURCE_DIR}/trans.pl ${CMAKE_CURRENT_SOURCE_DIR}/${_file} -o ${file_tro}
DEPENDS ${_file}
)
list(APPEND trofiles ${file_tro})
endforeach()
add_custom_command(
OUTPUT Foo.trx
COMMAND perl ${CMAKE_CURRENT_SOURCE_DIR}/combine.pl ${trofiles} -o Foo.trx
DEPENDS ${trofiles}
)
add_custom_target(do_trofiles DEPENDS Foo.trx)
add_dependencies(Foo do_trofiles)
share|improve this answer
add comment
You want to create a custom target that consumes the output of the custom commands. Then use ADD_DEPENDENCIES to make sure the commands are run in the right order.
This might be sort of close to what you want: http://www.cmake.org/Wiki/CMake_FAQ#How_do_I_use_CMake_to_build_LaTeX_documents.3F
Basically one add_custom_command for each file generated, collect a list of those files (trofiles), then use add_custom_target with a DEPENDS on the list trofiles. Then use add_dependencies to make the LibraryTarget depend on the custom target. Then the custom target should be built before the library target is built.
share|improve this answer
add comment
Your Answer
discard
By posting your answer, you agree to the privacy policy and terms of service.
Not the answer you're looking for? Browse other questions tagged or ask your own question.
|
__label__pos
| 0.603384 |
blob: 1e361a8d65b4cdaf397a8ff8004810056d4c3137 [file] [log] [blame]
# Generated from gn.g4 by ANTLR 4.7.1
# encoding: utf-8
from __future__ import print_function
from antlr4 import *
from io import StringIO
import sys
def serializedATN():
with StringIO() as buf:
buf.write(u"\3\u608b\ua72a\u8133\ub9ed\u417c\u3be7\u7786\u5964\2")
buf.write(u"\24\u008e\b\1\4\2\t\2\4\3\t\3\4\4\t\4\4\5\t\5\4\6\t\6")
buf.write(u"\4\7\t\7\4\b\t\b\4\t\t\t\4\n\t\n\4\13\t\13\4\f\t\f\4")
buf.write(u"\r\t\r\4\16\t\16\4\17\t\17\4\20\t\20\4\21\t\21\4\22\t")
buf.write(u"\22\4\23\t\23\4\24\t\24\4\25\t\25\3\2\3\2\3\3\3\3\3\4")
buf.write(u"\3\4\3\4\3\5\3\5\3\6\3\6\3\7\3\7\3\b\3\b\3\t\3\t\3\n")
buf.write(u"\3\n\3\13\3\13\3\13\3\13\3\13\3\f\3\f\3\f\3\f\3\f\5\f")
buf.write(u"I\n\f\3\r\3\r\3\16\3\16\3\16\3\16\3\16\3\16\3\16\3\16")
buf.write(u"\3\16\3\16\3\16\3\16\3\16\3\16\5\16[\n\16\3\17\3\17\3")
buf.write(u"\17\7\17`\n\17\f\17\16\17c\13\17\3\20\5\20f\n\20\3\20")
buf.write(u"\6\20i\n\20\r\20\16\20j\3\21\3\21\3\21\3\21\7\21q\n\21")
buf.write(u"\f\21\16\21t\13\21\3\21\3\21\3\22\3\22\3\23\5\23{\n\23")
buf.write(u"\3\24\3\24\7\24\177\n\24\f\24\16\24\u0082\13\24\3\24")
buf.write(u"\5\24\u0085\n\24\3\24\3\24\3\24\3\24\3\25\3\25\3\25\3")
buf.write(u"\25\2\2\26\3\3\5\4\7\5\t\6\13\7\r\b\17\t\21\n\23\13\25")
buf.write(u"\f\27\r\31\16\33\17\35\20\37\21!\22#\2%\2\'\23)\24\3")
buf.write(u"\2\b\5\2--//>>\3\2$$\3\2\62;\5\2C\\aac|\4\2\f\f\17\17")
buf.write(u"\5\2\f\f\17\17\"\"\2\u009c\2\3\3\2\2\2\2\5\3\2\2\2\2")
buf.write(u"\7\3\2\2\2\2\t\3\2\2\2\2\13\3\2\2\2\2\r\3\2\2\2\2\17")
buf.write(u"\3\2\2\2\2\21\3\2\2\2\2\23\3\2\2\2\2\25\3\2\2\2\2\27")
buf.write(u"\3\2\2\2\2\31\3\2\2\2\2\33\3\2\2\2\2\35\3\2\2\2\2\37")
buf.write(u"\3\2\2\2\2!\3\2\2\2\2\'\3\2\2\2\2)\3\2\2\2\3+\3\2\2\2")
buf.write(u"\5-\3\2\2\2\7/\3\2\2\2\t\62\3\2\2\2\13\64\3\2\2\2\r\66")
buf.write(u"\3\2\2\2\178\3\2\2\2\21:\3\2\2\2\23<\3\2\2\2\25>\3\2")
buf.write(u"\2\2\27H\3\2\2\2\31J\3\2\2\2\33Z\3\2\2\2\35\\\3\2\2\2")
buf.write(u"\37e\3\2\2\2!l\3\2\2\2#w\3\2\2\2%z\3\2\2\2\'|\3\2\2\2")
buf.write(u")\u008a\3\2\2\2+,\7*\2\2,\4\3\2\2\2-.\7+\2\2.\6\3\2\2")
buf.write(u"\2/\60\7k\2\2\60\61\7h\2\2\61\b\3\2\2\2\62\63\7}\2\2")
buf.write(u"\63\n\3\2\2\2\64\65\7\177\2\2\65\f\3\2\2\2\66\67\7]\2")
buf.write(u"\2\67\16\3\2\2\289\7_\2\29\20\3\2\2\2:;\7\60\2\2;\22")
buf.write(u"\3\2\2\2<=\7.\2\2=\24\3\2\2\2>?\7g\2\2?@\7n\2\2@A\7u")
buf.write(u"\2\2AB\7g\2\2B\26\3\2\2\2CI\7?\2\2DE\7-\2\2EI\7?\2\2")
buf.write(u"FG\7/\2\2GI\7?\2\2HC\3\2\2\2HD\3\2\2\2HF\3\2\2\2I\30")
buf.write(u"\3\2\2\2JK\7#\2\2K\32\3\2\2\2L[\t\2\2\2MN\7>\2\2N[\7")
buf.write(u"?\2\2O[\7@\2\2PQ\7@\2\2Q[\7?\2\2RS\7?\2\2S[\7?\2\2TU")
buf.write(u"\7#\2\2U[\7?\2\2VW\7(\2\2W[\7(\2\2XY\7~\2\2Y[\7~\2\2")
buf.write(u"ZL\3\2\2\2ZM\3\2\2\2ZO\3\2\2\2ZP\3\2\2\2ZR\3\2\2\2ZT")
buf.write(u"\3\2\2\2ZV\3\2\2\2ZX\3\2\2\2[\34\3\2\2\2\\a\5%\23\2]")
buf.write(u"`\5#\22\2^`\5%\23\2_]\3\2\2\2_^\3\2\2\2`c\3\2\2\2a_\3")
buf.write(u"\2\2\2ab\3\2\2\2b\36\3\2\2\2ca\3\2\2\2df\7/\2\2ed\3\2")
buf.write(u"\2\2ef\3\2\2\2fh\3\2\2\2gi\5#\22\2hg\3\2\2\2ij\3\2\2")
buf.write(u"\2jh\3\2\2\2jk\3\2\2\2k \3\2\2\2lr\7$\2\2mn\7^\2\2nq")
buf.write(u"\7$\2\2oq\n\3\2\2pm\3\2\2\2po\3\2\2\2qt\3\2\2\2rp\3\2")
buf.write(u"\2\2rs\3\2\2\2su\3\2\2\2tr\3\2\2\2uv\7$\2\2v\"\3\2\2")
buf.write(u"\2wx\t\4\2\2x$\3\2\2\2y{\t\5\2\2zy\3\2\2\2{&\3\2\2\2")
buf.write(u"|\u0080\7%\2\2}\177\n\6\2\2~}\3\2\2\2\177\u0082\3\2\2")
buf.write(u"\2\u0080~\3\2\2\2\u0080\u0081\3\2\2\2\u0081\u0084\3\2")
buf.write(u"\2\2\u0082\u0080\3\2\2\2\u0083\u0085\7\17\2\2\u0084\u0083")
buf.write(u"\3\2\2\2\u0084\u0085\3\2\2\2\u0085\u0086\3\2\2\2\u0086")
buf.write(u"\u0087\7\f\2\2\u0087\u0088\3\2\2\2\u0088\u0089\b\24\2")
buf.write(u"\2\u0089(\3\2\2\2\u008a\u008b\t\7\2\2\u008b\u008c\3\2")
buf.write(u"\2\2\u008c\u008d\b\25\2\2\u008d*\3\2\2\2\16\2HZ_aejp")
buf.write(u"rz\u0080\u0084\3\b\2\2")
return buf.getvalue()
class gnLexer(Lexer):
atn = ATNDeserializer().deserialize(serializedATN())
decisionsToDFA = [ DFA(ds, i) for i, ds in enumerate(atn.decisionToState) ]
T__0 = 1
T__1 = 2
T__2 = 3
T__3 = 4
T__4 = 5
T__5 = 6
T__6 = 7
T__7 = 8
T__8 = 9
T__9 = 10
AssignOp = 11
UnaryOp = 12
BinaryOp = 13
Identifier = 14
Integer = 15
String = 16
COMMENT = 17
WS = 18
channelNames = [ u"DEFAULT_TOKEN_CHANNEL", u"HIDDEN" ]
modeNames = [ u"DEFAULT_MODE" ]
literalNames = [ u"<INVALID>",
u"'('", u"')'", u"'if'", u"'{'", u"'}'", u"'['", u"']'", u"'.'",
u"','", u"'else'", u"'!'" ]
symbolicNames = [ u"<INVALID>",
u"AssignOp", u"UnaryOp", u"BinaryOp", u"Identifier", u"Integer",
u"String", u"COMMENT", u"WS" ]
ruleNames = [ u"T__0", u"T__1", u"T__2", u"T__3", u"T__4", u"T__5",
u"T__6", u"T__7", u"T__8", u"T__9", u"AssignOp", u"UnaryOp",
u"BinaryOp", u"Identifier", u"Integer", u"String", u"DIGIT",
u"LETTER", u"COMMENT", u"WS" ]
grammarFileName = u"gn.g4"
def __init__(self, input=None, output=sys.stdout):
super(gnLexer, self).__init__(input, output=output)
self.checkVersion("4.7.1")
self._interp = LexerATNSimulator(self, self.atn, self.decisionsToDFA, PredictionContextCache())
self._actions = None
self._predicates = None
|
__label__pos
| 0.999947 |
USB Device Support on NI Linux Real-Time Operating System
Updated Feb 19, 2020
Reported In
Operating System
• NI Linux Real-Time
Issue Details
I have connected a USB device to my hardware running the NI Linux Real-Time Operating System (RTOS). I have no visual confirmation that the USB device is usable by my hardware. How do I know that it has been recognized or if the USB device is supported?
Solution
The Linux kernel has built-in support for many types of devices including but not limited to USB storage devices and USB webcams. Since the NI Linux RTOS is based on the Linux kernel, support for these devices is included. There is no defined list of hardware that can be referenced for support purposes, but there are ways to determine if a device can be used with the NI Linux RTOS.
Note: The techniques discussed here will require the ability to log in to the NI Linux Real-Time target using a secure shell (SSH) or serial connection to the device. Documentation has been provided in the Related Links section that can assist with this.
Detecting Connected USB Devices:
It is possible to verify that a USB device has been detected by the NI Linux RTOS when it is initially plugged into a USB port on the target. Once logged in to the Real-Time target, connect a USB device and issue the command dmesg to the console, then press enter. Information similar to that shown in Figure 1 will be displayed. You can search the information for text related to the device you have plugged into the target. This is a reliable method for determining if the NI Linux RTOS can identify your device. This does not guarantee that the device is usable with the target.
Figure 1. Typical dmseg Information About a USB Storage Drive
Determining if the Connected USB Device Is Usable by the Target:
The current kernel that the NI Linux RTOS utilizes is the 3.14.40 Linux kernel. When the kernel detects a USB device that it can support, the kernel module (driver) is automatically loaded into memory and the device will become accessible to the user. An easy method to determine if a new kernel module has been loaded for a particular USB device is to issue the lsmod command to the terminal before inserting the device, then issuing the same command after inserting the device. If a module has been loaded, comparing the lists of loaded modules will show the new module.
For most supported USB devices, a module will be automatically loaded for the kernel. There may be times that a module does not load automatically. To manually load a module for the kernel, issue the command modprobe <module> to the terminal. For example, if the ftdi_sio module, a USB-to-Serial driver needs to be loaded, the command would be modprobe ftdi_sio.
USB storage devices will be automatically mounted to the Real-Time target. These can be accessed in the /media location and a shortcut to the drive will generally be mapped as /U unless a folder with that name exists on the system. In such a case, the next available letter is used to map the USB storage device.
Additional Information
List of USB Modules on the NI Linux Real-Time OS:
Many kernel modules are multipurpose and do not make any indication as to what hardware is supported by the module. There are no resources that explicitly list all hardware that is on a specific module. To determine if your hardware is supported by the NI Linux RTOS, a search for the hardware on the internet may allow you to determine the kernel module it is associated with. The current list of USB modules that are included with the NI Linux RTOS can be found in:/lib/modules/<kernel-version>/modules.usbmap.
More Information About a Module:
Most modules that exist for the Linux kernel have documentation that can be referenced online. See the Related Links to learn more about each module. To gain a general idea about the particular function of a module, you can issue the command modinfo <module> to the terminal. This will generally display module developer information as well as a simple description of the function of the module.
|
__label__pos
| 0.668463 |
ObscureInfo(): Hide Sensitive Information in Access Form Controls
Avoid over-the-shoulder attacks and prevent accidental disclosures in your Microsoft Access forms with this easy-to-implement function.
ObscureInfo(): Hide Sensitive Information in Access Form Controls
To prevent over-the-shoulder attacks–or accidental disclosure during presentations or screenshots–it's good practice to hide the contents of sensitive information in your Access forms.
The ObscureInfo() function does just that. When the control does not have the focus, the function sets the back color to match the fore color (i.e., the text color). When the control gets the focus, the back color is set to white.
The code is easy to apply to multiple controls and is compatible with lightweight forms (i.e., you can call the function directly from the Property Sheet events without needing to use the form code behind module).
The Code
' ----------------------------------------------------------------
' Procedure : ObscureInfo
' Date : 9/21/2009
' Author : Mike Wolfe
' Source : https://nolongerset.com/obscureinfo/
' Purpose : Use to hide data in sensitive fields (e.g., BirthDate, PhoneNum, SSN)
' Usage : Ctl OnEnter property: =ObscureInfo(False, Form.ActiveControl)
' Ctl OnExit property: =ObscureInfo(True, Form.ActiveControl)
' Form Current property: =ObscureInfo(True, [BirthDate], [HomePhone], [SSN])
' Form Load property: =ObscureInfo(True, [BirthDate], [HomePhone], [SSN])
' ----------------------------------------------------------------
Function ObscureInfo(HideIt As Boolean, ParamArray Ctls() As Variant)
Dim Ctl As Variant
For Each Ctl In Ctls
If HideIt Then
If IsNull(Ctl.Value) Then
Ctl.BackColor = vbWhite
Else
Ctl.BackColor = Ctl.ForeColor
End If
Else
Ctl.BackColor = vbWhite
End If
Next Ctl
End Function
Usage: Step-by-Step
The easiest way to apply the changes in form design view is by using the Property Sheet events.
Here's the step-by-step process:
1. Go to Form Design View
2. Select all the controls you want to obscure ([Ctrl]/[Shift] + Click)
3. Set the On Enter property to: =ObscureInfo(False, Form.ActiveControl)
4. Set the On Exit property to: =ObscureInfo(True, Form.ActiveControl)
5. Select the form itself
6. Set the On Current property to: =ObscureInfo(True, [tbBirthDate], [tbSSN])
7. Set the On Load property to: =ObscureInfo(True, [tbBirthDate], [tbSSN])
For step 6, you list the control name (not the field name) of every control you want to be initially obscured when the form opens.
In Action
The controls only get obscured if they contain data. So, for a new record, all the controls have white backgrounds.
When we switch to a populated record, the sensitive information is blacked out:
When we tab into one of the sensitive fields, the background turns white and we can see its contents:
The "Soc Sec Num" text box is active. If you look closely, you can see the cursor before the "123-45-6789" text.
When we tab into the next sensitive field, the previous field blacks out and the new field's contents become visible:
Tabbing from "Soc Sec Num" to "Home Phone" obscures the Soc Sec Num field, selects the text in the Home Phone field, and sets the back color to white so we can see its contents.
Sample Database
There's not much to the code, but if you would like to see it in action, you can download the database I used for the above screenshots:
ObscureInfoSample.zip
|
__label__pos
| 0.74607 |
/* * ip27-irq.c: Highlevel interrupt handling for IP27 architecture. * * Copyright (C) 1999, 2000 Ralf Baechle ([email protected]) * Copyright (C) 1999, 2000 Silicon Graphics, Inc. * Copyright (C) 1999 - 2001 Kanoj Sarcar */ #undef DEBUG #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include /* * Linux has a controller-independent x86 interrupt architecture. * every controller has a 'controller-template', that is used * by the main code to do the right thing. Each driver-visible * interrupt source is transparently wired to the apropriate * controller. Thus drivers need not be aware of the * interrupt-controller. * * Various interrupt controllers we handle: 8259 PIC, SMP IO-APIC, * PIIX4's internal 8259 PIC and SGI's Visual Workstation Cobalt (IO-)APIC. * (IO-APICs assumed to be messaging to Pentium local-APICs) * * the code is designed to be easily extended with new/different * interrupt controllers, without having to do assembly magic. */ extern asmlinkage void ip27_irq(void); extern struct bridge_controller *irq_to_bridge[]; extern int irq_to_slot[]; /* * use these macros to get the encoded nasid and widget id * from the irq value */ #define IRQ_TO_BRIDGE(i) irq_to_bridge[(i)] #define SLOT_FROM_PCI_IRQ(i) irq_to_slot[i] static inline int alloc_level(int cpu, int irq) { struct hub_data *hub = hub_data(cpu_to_node(cpu)); struct slice_data *si = cpu_data[cpu].data; int level; level = find_first_zero_bit(hub->irq_alloc_mask, LEVELS_PER_SLICE); if (level >= LEVELS_PER_SLICE) panic("Cpu %d flooded with devices\n", cpu); __set_bit(level, hub->irq_alloc_mask); si->level_to_irq[level] = irq; return level; } static inline int find_level(cpuid_t *cpunum, int irq) { int cpu, i; for_each_online_cpu(cpu) { struct slice_data *si = cpu_data[cpu].data; for (i = BASE_PCI_IRQ; i < LEVELS_PER_SLICE; i++) if (si->level_to_irq[i] == irq) { *cpunum = cpu; return i; } } panic("Could not identify cpu/level for irq %d\n", irq); } /* * Find first bit set */ static int ms1bit(unsigned long x) { int b = 0, s; s = 16; if (x >> 16 == 0) s = 0; b += s; x >>= s; s = 8; if (x >> 8 == 0) s = 0; b += s; x >>= s; s = 4; if (x >> 4 == 0) s = 0; b += s; x >>= s; s = 2; if (x >> 2 == 0) s = 0; b += s; x >>= s; s = 1; if (x >> 1 == 0) s = 0; b += s; return b; } /* * This code is unnecessarily complex, because we do SA_INTERRUPT * intr enabling. Basically, once we grab the set of intrs we need * to service, we must mask _all_ these interrupts; firstly, to make * sure the same intr does not intr again, causing recursion that * can lead to stack overflow. Secondly, we can not just mask the * one intr we are do_IRQing, because the non-masked intrs in the * first set might intr again, causing multiple servicings of the * same intr. This effect is mostly seen for intercpu intrs. * Kanoj 05.13.00 */ static void ip27_do_irq_mask0(struct pt_regs *regs) { int irq, swlevel; hubreg_t pend0, mask0; cpuid_t cpu = smp_processor_id(); int pi_int_mask0 = (cputoslice(cpu) == 0) ? PI_INT_MASK0_A : PI_INT_MASK0_B; /* copied from Irix intpend0() */ pend0 = LOCAL_HUB_L(PI_INT_PEND0); mask0 = LOCAL_HUB_L(pi_int_mask0); pend0 &= mask0; /* Pick intrs we should look at */ if (!pend0) return; swlevel = ms1bit(pend0); #ifdef CONFIG_SMP if (pend0 & (1UL << CPU_RESCHED_A_IRQ)) { LOCAL_HUB_CLR_INTR(CPU_RESCHED_A_IRQ); } else if (pend0 & (1UL << CPU_RESCHED_B_IRQ)) { LOCAL_HUB_CLR_INTR(CPU_RESCHED_B_IRQ); } else if (pend0 & (1UL << CPU_CALL_A_IRQ)) { LOCAL_HUB_CLR_INTR(CPU_CALL_A_IRQ); smp_call_function_interrupt(); } else if (pend0 & (1UL << CPU_CALL_B_IRQ)) { LOCAL_HUB_CLR_INTR(CPU_CALL_B_IRQ); smp_call_function_interrupt(); } else #endif { /* "map" swlevel to irq */ struct slice_data *si = cpu_data[cpu].data; irq = si->level_to_irq[swlevel]; do_IRQ(irq, regs); } LOCAL_HUB_L(PI_INT_PEND0); } static void ip27_do_irq_mask1(struct pt_regs *regs) { int irq, swlevel; hubreg_t pend1, mask1; cpuid_t cpu = smp_processor_id(); int pi_int_mask1 = (cputoslice(cpu) == 0) ? PI_INT_MASK1_A : PI_INT_MASK1_B; struct slice_data *si = cpu_data[cpu].data; /* copied from Irix intpend0() */ pend1 = LOCAL_HUB_L(PI_INT_PEND1); mask1 = LOCAL_HUB_L(pi_int_mask1); pend1 &= mask1; /* Pick intrs we should look at */ if (!pend1) return; swlevel = ms1bit(pend1); /* "map" swlevel to irq */ irq = si->level_to_irq[swlevel]; LOCAL_HUB_CLR_INTR(swlevel); do_IRQ(irq, regs); LOCAL_HUB_L(PI_INT_PEND1); } static void ip27_prof_timer(struct pt_regs *regs) { panic("CPU %d got a profiling interrupt", smp_processor_id()); } static void ip27_hub_error(struct pt_regs *regs) { panic("CPU %d got a hub error interrupt", smp_processor_id()); } static int intr_connect_level(int cpu, int bit) { nasid_t nasid = COMPACT_TO_NASID_NODEID(cpu_to_node(cpu)); struct slice_data *si = cpu_data[cpu].data; unsigned long flags; set_bit(bit, si->irq_enable_mask); local_irq_save(flags); if (!cputoslice(cpu)) { REMOTE_HUB_S(nasid, PI_INT_MASK0_A, si->irq_enable_mask[0]); REMOTE_HUB_S(nasid, PI_INT_MASK1_A, si->irq_enable_mask[1]); } else { REMOTE_HUB_S(nasid, PI_INT_MASK0_B, si->irq_enable_mask[0]); REMOTE_HUB_S(nasid, PI_INT_MASK1_B, si->irq_enable_mask[1]); } local_irq_restore(flags); return 0; } static int intr_disconnect_level(int cpu, int bit) { nasid_t nasid = COMPACT_TO_NASID_NODEID(cpu_to_node(cpu)); struct slice_data *si = cpu_data[cpu].data; clear_bit(bit, si->irq_enable_mask); if (!cputoslice(cpu)) { REMOTE_HUB_S(nasid, PI_INT_MASK0_A, si->irq_enable_mask[0]); REMOTE_HUB_S(nasid, PI_INT_MASK1_A, si->irq_enable_mask[1]); } else { REMOTE_HUB_S(nasid, PI_INT_MASK0_B, si->irq_enable_mask[0]); REMOTE_HUB_S(nasid, PI_INT_MASK1_B, si->irq_enable_mask[1]); } return 0; } /* Startup one of the (PCI ...) IRQs routes over a bridge. */ static unsigned int startup_bridge_irq(unsigned int irq) { struct bridge_controller *bc; bridgereg_t device; bridge_t *bridge; int pin, swlevel; cpuid_t cpu; pin = SLOT_FROM_PCI_IRQ(irq); bc = IRQ_TO_BRIDGE(irq); bridge = bc->base; pr_debug("bridge_startup(): irq= 0x%x pin=%d\n", irq, pin); /* * "map" irq to a swlevel greater than 6 since the first 6 bits * of INT_PEND0 are taken */ swlevel = find_level(&cpu, irq); bridge->b_int_addr[pin].addr = (0x20000 | swlevel | (bc->nasid << 8)); bridge->b_int_enable |= (1 << pin); bridge->b_int_enable |= 0x7ffffe00; /* more stuff in int_enable */ /* * Enable sending of an interrupt clear packt to the hub on a high to * low transition of the interrupt pin. * * IRIX sets additional bits in the address which are documented as * reserved in the bridge docs. */ bridge->b_int_mode |= (1UL << pin); /* * We assume the bridge to have a 1:1 mapping between devices * (slots) and intr pins. */ device = bridge->b_int_device; device &= ~(7 << (pin*3)); device |= (pin << (pin*3)); bridge->b_int_device = device; bridge->b_wid_tflush; return 0; /* Never anything pending. */ } /* Shutdown one of the (PCI ...) IRQs routes over a bridge. */ static void shutdown_bridge_irq(unsigned int irq) { struct bridge_controller *bc = IRQ_TO_BRIDGE(irq); struct hub_data *hub = hub_data(cpu_to_node(bc->irq_cpu)); bridge_t *bridge = bc->base; struct slice_data *si = cpu_data[bc->irq_cpu].data; int pin, swlevel; cpuid_t cpu; pr_debug("bridge_shutdown: irq 0x%x\n", irq); pin = SLOT_FROM_PCI_IRQ(irq); /* * map irq to a swlevel greater than 6 since the first 6 bits * of INT_PEND0 are taken */ swlevel = find_level(&cpu, irq); intr_disconnect_level(cpu, swlevel); __clear_bit(swlevel, hub->irq_alloc_mask); si->level_to_irq[swlevel] = -1; bridge->b_int_enable &= ~(1 << pin); bridge->b_wid_tflush; } static inline void enable_bridge_irq(unsigned int irq) { cpuid_t cpu; int swlevel; swlevel = find_level(&cpu, irq); /* Criminal offence */ intr_connect_level(cpu, swlevel); } static inline void disable_bridge_irq(unsigned int irq) { cpuid_t cpu; int swlevel; swlevel = find_level(&cpu, irq); /* Criminal offence */ intr_disconnect_level(cpu, swlevel); } static void mask_and_ack_bridge_irq(unsigned int irq) { disable_bridge_irq(irq); } static void end_bridge_irq(unsigned int irq) { if (!(irq_desc[irq].status & (IRQ_DISABLED|IRQ_INPROGRESS)) && irq_desc[irq].action) enable_bridge_irq(irq); } static struct hw_interrupt_type bridge_irq_type = { .typename = "bridge", .startup = startup_bridge_irq, .shutdown = shutdown_bridge_irq, .enable = enable_bridge_irq, .disable = disable_bridge_irq, .ack = mask_and_ack_bridge_irq, .end = end_bridge_irq, }; static unsigned long irq_map[NR_IRQS / BITS_PER_LONG]; static int allocate_irqno(void) { int irq; again: irq = find_first_zero_bit(irq_map, NR_IRQS); if (irq >= NR_IRQS) return -ENOSPC; if (test_and_set_bit(irq, irq_map)) goto again; return irq; } void free_irqno(unsigned int irq) { clear_bit(irq, irq_map); } void __devinit register_bridge_irq(unsigned int irq) { irq_desc[irq].status = IRQ_DISABLED; irq_desc[irq].action = 0; irq_desc[irq].depth = 1; irq_desc[irq].handler = &bridge_irq_type; } int __devinit request_bridge_irq(struct bridge_controller *bc) { int irq = allocate_irqno(); int swlevel, cpu; nasid_t nasid; if (irq < 0) return irq; /* * "map" irq to a swlevel greater than 6 since the first 6 bits * of INT_PEND0 are taken */ cpu = bc->irq_cpu; swlevel = alloc_level(cpu, irq); if (unlikely(swlevel < 0)) { free_irqno(irq); return -EAGAIN; } /* Make sure it's not already pending when we connect it. */ nasid = COMPACT_TO_NASID_NODEID(cpu_to_node(cpu)); REMOTE_HUB_CLR_INTR(nasid, swlevel); intr_connect_level(cpu, swlevel); register_bridge_irq(irq); return irq; } extern void ip27_rt_timer_interrupt(struct pt_regs *regs); asmlinkage void plat_irq_dispatch(struct pt_regs *regs) { unsigned long pending = read_c0_cause() & read_c0_status(); if (pending & CAUSEF_IP4) ip27_rt_timer_interrupt(regs); else if (pending & CAUSEF_IP2) /* PI_INT_PEND_0 or CC_PEND_{A|B} */ ip27_do_irq_mask0(regs); else if (pending & CAUSEF_IP3) /* PI_INT_PEND_1 */ ip27_do_irq_mask1(regs); else if (pending & CAUSEF_IP5) ip27_prof_timer(regs); else if (pending & CAUSEF_IP6) ip27_hub_error(regs); } void __init arch_init_irq(void) { } void install_ipi(void) { int slice = LOCAL_HUB_L(PI_CPU_NUM); int cpu = smp_processor_id(); struct slice_data *si = cpu_data[cpu].data; struct hub_data *hub = hub_data(cpu_to_node(cpu)); int resched, call; resched = CPU_RESCHED_A_IRQ + slice; __set_bit(resched, hub->irq_alloc_mask); __set_bit(resched, si->irq_enable_mask); LOCAL_HUB_CLR_INTR(resched); call = CPU_CALL_A_IRQ + slice; __set_bit(call, hub->irq_alloc_mask); __set_bit(call, si->irq_enable_mask); LOCAL_HUB_CLR_INTR(call); if (slice == 0) { LOCAL_HUB_S(PI_INT_MASK0_A, si->irq_enable_mask[0]); LOCAL_HUB_S(PI_INT_MASK1_A, si->irq_enable_mask[1]); } else { LOCAL_HUB_S(PI_INT_MASK0_B, si->irq_enable_mask[0]); LOCAL_HUB_S(PI_INT_MASK1_B, si->irq_enable_mask[1]); } }
|
__label__pos
| 0.999166 |
El Swarm (enjambre) de Docker
dockerswarm
En esta entrada vamos a introducir la funcionalidad Swarm que soporta el motor (engine) de Docker, esto nos permitirá desplegar contenedores en varias máquinas añadiendo una infraestructura clúster entre ellas, y así poder utilizar y compartir los recursos de varias máquinas con Docker como si fuera una única instancia.
La gestión de red y algunos recursos es transparente para el usuario, el Swarm se encarga de orquestar la comunicación entre contenedores, también se publican los puertos compartidos de los contenedores por defecto en todos los nodos, por lo que no tendremos de que preocuparnos, da la posibilidad de escalar servicios fácilmente y distribuirlos entre los nodos, etc.
Iniciar el Swarm
En el Swarm de Docker existen dos tipos de nodos, los manager y los worker, siendo el manager el que delega las tareas a los workers y no al revés, el manager también forma parte del Swarm. En un entorno en producción se recomienda tener mínimo unos tres managers para soportar la tolerancia a fallos.
Se inicia el swarm en el manager con el siguiente comando
$ docker swarm init
Para añadir un manager al Swarm se ejecuta el siguiente comando, hay que seguir las instrucciones en el nodo correspondiente
$ docker swarm join-token manager
Para añadir un worker se ejecuta y seguir las instrucciones
$ docker swarm join-token worker
Una vez añadidos los nodos podremos visualizarlos desde el manager ejecutando
$ docker node ls
Desplegar servicios
Para desplegar (deploy) servicios en el Swarm usaremos docker-compose y la configuración correspondiente que está disponible a partir de la versión 3, configuramos un servicio:
version: '3'
services:
servicio:
image: imagen_del_servicio
deploy:
mode: replicated
replicas: 1
restart_policy:
condition: on-failure
placement:
constraints: [node.hostname==nodehostname]
volumes:
- ssh-entrypoint:/entrypoint:ro
networks:
netservice:
networks:
netservice:
volumes:
ssh-entrypoint:
driver: vieux/sshfs
driver_opts:
sshcmd: user@host:/remote_shared_folder
password: secret
port: 2222
sftp_server: "/usr/bin/sudo /usr/lib/openssh/sftp-server"
allow_other: ""
Ejecutamos el stack que vamos a desplegar en el Swarm
$ docker stack up --with-registry-auth -c docker-compose.yml nombre_del_servicio
La opción –with-registry-auth se utiliza por si usamos imágenes de un registro de Docker propio, el Swarm buscará la imagen a desplegar en los registros que estemos conectados en los nodos y la bajará en cada uno de ellos. Pueden mezclarse arquitecturas para tener un conjunto de imágenes multiarch jugando con el manifest del repositorio, pero esa opción es todavía experimental.
Hemos creado el volumen compartido por sshfs con el driver vieux/sshfs para varias arquitecturas, por lo que cada nodo se conectará a la carpeta /remote_shared_folder del host que indiquemos con la correspondiente configuración por sshfs.
En el apartado node.hostname se indica una máquina concreta para desplegar el servicio, si se omite esta opción se replicará en la que elija el Swarm
Gestión del Swarm
Una vez desplegado el servicio puede verse ejecutando
$ docker service ls
Y si queremos ver uno en concreto
$ docker service ps nombre_del_servicio
Para ver logs de un servicio se ejecuta
$ docker service logs -f nombre_del_servicio
Eliminar un servicio ejecutando
$ docker stack rm nombre_del_servicio
Y eliminar un nodo del Swarm
$ docker node rm nodo_a_eliminar
Por último comentar que podemos usar otras herramientas para gestionar el Swarm como es Portainer, aunque existen otras muchas nos facilita información gráficamente del clúster.
Portainer
Esto es todo por el momento, volveremos pronto con Kubernetes (k8s), saludos
DNSCrypt y anonimiza tus datos
dnscrypt
Hola, hoy os vamos a comentar en esta entrada como montar vuestro propio cliente DNSCrypt, que nos servirá para anonimizar los datos de resolución de dominio que van por nuestra conexión, esto pondrá un poco más difícil la parametrización que hacen los gobiernos y grandes corporaciones con nuestra información.
¿Qué es DNSCrypt?
DNSCrypt crea un túnel cifrado entre el servidor y el cliente, y resuelve las peticiones DNS que realiza. Evita la suplantación de identidad y utiliza firmas criptográficas para verificar que las respuestas se originan en el sistema y que no hayan sido manipuladas.
Es una especificación abierta, con implementación libre, y que no está afiliada a ninguna empresa u organización.
Usar DNSCrypt
Necesitamos tener instalado el programa dnscrypt-proxy para conectar a un servidor.
$ apt install dnscrypt-proxy
Configuramos el programa para que escuche en el puerto 53 de localhost (127.0.0.1) y se conecte al servidor DNSCrypt de HatThieves.
listen_addresses = ['127.0.0.1:53']
server_names = ['hatthieves', 'hatthieves6']
[static.'hatthieves']
stamp = 'sdns://AQUAAAAAAAAAETgyLjIyMy4zLjEzNTo1NDQzICIJ3we16VXeoGdYSnOd3QYm2h5ZQCUmjS_GNx-JOELOHTIuZG5zY3J5cHQtY2VydC5oYXR0aGlldmVzLmVz'
[static.'hatthieves6']
stamp = 'sdns://AQUAAAAAAAAAHFsyMDAxOmJhMDoxODAwOjgwZTA6OjFdOjU0NDMgIgnfB7XpVd6gZ1hKc53dBibaHllAJSaNL8Y3H4k4Qs4dMi5kbnNjcnlwdC1jZXJ0LmhhdHRoaWV2ZXMuZXM'
Una vez conectado podremos configurar nuestro sistema para que utilice el puerto local.
$ echo 'nameserver 127.0.0.1' > /etc/resolv.conf
Y todas las peticiones del sistema pasarán a través de nuestro servidor que resuelve directamente a los servidores raíz de internet, usamos DNSSEC y no guardamos registros como puede verse en nuestra instancia. También se pueden usar los servidores públicos oficiales.
Un saludo, estad seguros y nos vemos en la próxima entrada.
Libera tu voz con Grumble
grumble
Hola, como ya sabéis, con todo lo que está sucediendo referente a la pandemia está cambiando el estilo de vida. Se tiende a utilizar servicios telemáticos tanto para trabajar, si es posible hacerlo, como en todos los ámbitos: compras, formación, reuniones familiares, etc.
Esta tendencia obliga al usuario a utilizar plataformas “gratuitas” de empresas que se quedan con nuestra voz y datos (ya sabes que cuando algo es gratis el producto eres tú). Por eso queremos hacer hincapié en que los usuarios utilicen servicios gestionados por ellos mismos y alejarse lo máximo posible de dar beneficios a estas empresas que han ganado popularidad con la pandemia y se quedan con los datos (el petróleo del siglo XXI).
Grumble
Si conocéis el famoso programa de chat de voz Mumble, su hermano se llama Grumble. Éste es la implementación en lenguaje Go de Mumble y está en desarrollo. Vamos a instalarlo en una Raspberry Pi ya que no necesita consumir muchos recursos y podremos tenerlo en un servidor casero sin mucho esfuerzo. Utilizaremos Docker para desplegarlo porque es más cómodo, limpio y sus programadores nos han facilitado un Dockerfile en su repositorio.
Creamos una carpeta y clonamos el repositorio:
$ git clone https://github.com/mumble-voip/grumble
En la misma carpeta creamos un archivo docker-compose.yml con el siguiente contenido:
version: '2'
services:
grumble:
build: ./grumble
container_name: grumble
hostname: grumble
restart: always
# volumes:
# - ./data:/data
ports:
- 64738:64738
- 64738:64738/udp
networks:
grumblenet:
networks:
grumblenet:
Con el volumen comentado, construimos la imagen y levantamos el contenedor. Seguidamente copiamos la carpeta /data en la carpeta local para compartir el volumen:
$ docker-compose up -d
Building grumble
Step 1/14 : FROM golang:1.14-alpine as builder
1.14-alpine: Pulling from library/golang
...
$ docker cp grumble:/data .
Y finalmente lo descomentamos todo, lo paramos y volvemos a crear el contenedor:
$ docker-compose down && docker-compose up -d
Ya podemos conectarnos con nuestro cliente favorito a nuestro Grumble como lo haríamos con Mumble, esperamos que os sea de ayuda y os animéis a montarlo para ser dueños de vuestra propia voz cifrada. Nos leemos en la próxima entrada.
TensorFlow 2.0 y redes neuronales
tf_logo
Buenas, hoy vamos a explicar un poco en esta entrada como funciona el framework que nos ofrece herramientas para programar tareas de aprendizaje automático, crear redes neuronales, deeplearning, deep reinforcement learning, etc. En definitiva lo que suelen denominarse hoy inteligencias artificiales, se llama TensorFlow y va por la versión 2.3
TensorFlow es el sistema de aprendizaje automático de segunda generación de Google Brain, liberado como software libre en noviembre de 2015. El nombre TensorFlow deriva de las operaciones que tales redes neuronales realizan sobre arrays multidimensionales de datos. Estos arrays multidimensionales son llamados tensores
Unidad de procesamiento del tensor (TPU)
En mayo de 2016 Google anunció su unidad de procesamiento del tensor (TPU), una construcción ASIC personalizada específicamente para aprendizaje automático y adaptada para TensorFlow. TPU es un acelerador de IA programable diseñado para proporcionar alta eficiencia aritmética de precisión baja, y orientado a utilizar modelos más que para entrenarlos
TensorFlow
La API de TensorFlow está disponible en varios lenguajes, nosotros usaremos la de NodeJS para el ejemplo de red neuronal artificial que construiremos con el conjunto de datos MNIST
// Cargamos los módulos necesarios
const tfnode = require('@tensorflow/tfjs-node-gpu'),
fs = require('fs'),
zlib = require('zlib');
(async () => {
// Leemos el conjunto de datos (dataset) y preparamos los datos para la entrada
const features = (new Uint8Array(zlib.gunzipSync(fs.readFileSync(__dirname + '/mnist/train-images-idx3-ubyte.gz')))).slice(16),
labels = (new Uint8Array(zlib.gunzipSync(fs.readFileSync(__dirname + '/mnist/train-labels-idx1-ubyte.gz')))).slice(8),
featuresTest = (new Uint8Array(zlib.gunzipSync(fs.readFileSync(__dirname + '/mnist/t10k-images-idx3-ubyte.gz')))).slice(16),
labelsTest = (new Uint8Array(zlib.gunzipSync(fs.readFileSync(__dirname + '/mnist/t10k-labels-idx1-ubyte.gz')))).slice(8),
feats = tfnode.data.array((new Float32Array(features)).map(f => f / 255.0)).batch(784),
lbls = tfnode.data.array(labels).batch(1),
featTests = tfnode.data.array((new Float32Array(featuresTest)).map(f => f / 255.0)).batch(784),
lblTests = tfnode.data.array(labelsTest).batch(1)
// Instanciación del modelo
const model = tfnode.sequential()
// Se añaden las capas de la red neuronal
model.add(tfnode.layers.dense({ units: 128, activation: 'relu', inputShape: [784] }))
model.add(tfnode.layers.dropout(0.2))
model.add(tfnode.layers.dense({ units: 10, activation: 'softmax' }))
// Compilación del modelo
model.compile({ optimizer: 'adam', loss: 'sparseCategoricalCrossentropy', metrics: ['acc'] })
model.summary()
console.log(`Training dataset with ${feats.size} features and ${lbls.size} labels...`)
// Fase de entrenamiento del modelo
const dataTrain = tfnode.data.zip({ xs: feats, ys: lbls }).batch(1),
testTrain = tfnode.data.zip({ xs: featTests, ys: lblTests }).batch(1),
history = await model.fitDataset(dataTrain, {
epochs: 5,
validationData: testTrain,
callbacks: {
onTrainBegin: logs => console.log('Start Training...'),
onTrainEnd: logs => console.log('Stop Training'),
onEpochBegin: (epoch, logs) => console.log('Begin epoch: ' + epoch),
onEpochEnd: (epoch, logs) => console.log('End epoch: ' + epoch + '\n- Loss: ' + logs.loss + '\n- Accuracy: ' + logs.acc)
}
}).catch(err => console.error(err))
// Se muestran los valores de salida
Object.keys(history.history).map(key => console.log(`${key}=${history.history[key]}`))
})()
Necesitamos instalar las dependencias del módulo @tensorflow/tfjs-node-gpu para que funcione, o el módulo @tensorflow/tfjs-node en caso de no usar GPU
En el ejemplo anterior estamos leyendo el dataset y creando una red neuronal artificial con 128 neuronas, la capa de dropout permite desactivar un porcentaje de las neuronas durante el entrenamiento en nuestro caso el 20%, esto es necesario para no tener resultados por sobreentrenamiento. Finalmente tenemos 10 unidades en la capa de salida por lo que el resultado será un tensor de 10 elementos que indica la probabilidad de que la imagen sea correcta. Hacemos 5 pasadas de entrenamiento y validamos los resultados
La salida por lo tanto muestra el resumen del modelo y el entrenamiento, dando los valores de pérdida y acierto en cada entrenamiento y al final el total
_________________________________________________________________
Layer (type) Output shape Param #
=================================================================
dense_Dense1 (Dense) [null,128] 100480
_________________________________________________________________
dropout_Dropout1 (Dropout) [null,128] 0
_________________________________________________________________
dense_Dense2 (Dense) [null,10] 1290
=================================================================
Total params: 101770
Trainable params: 101770
Non-trainable params: 0
_________________________________________________________________
Training dataset with 60000 features and 60000 labels...
Start Training...
Epoch 1 / 5
Begin epoch: 0
eta=863.4 ==>-------------------------------- acc=1.00 loss=0.102
Una vez entrenado el modelo podremos pasarle imágenes para detectar la coincidencia en la probabilidad de los resultados
// Adaptamos las imágenes a la entrada del modelo y se crea el tensor de entrada
fs.createReadStream('/images.json.gz').pipe(zlib.createGunzip()).on('data', async data => {
const imagen = Float32Array.from(await sharp(Buffer.from(data.image, 'base64')).resize(28, 28).greyscale().raw().toBuffer().catch(err => next(err))),
buffer = tfnode.buffer([1, 784], 'float32', imagen.map(f => f / 255.0))
model.predict(buffer.toTensor()).print()
})
.on('end', () => {
console.log('All images predicted.')
})
Tensor
[[0, 0, 0, 0, 0, 0.0427372, 0, 0.9571278, 0, 0.0001349],]
Tensor
[[0.0002897, 0, 0.209211, 0.0000031, 0, 0.0015369, 0.7871032, 0.001465, 0.0003912, 0],]
Tensor
[[0.0000626, 0, 0.4744948, 0.0397445, 0, 0.0002614, 0, 0.4854368, 0, 0],]
Tensor
[[0.0000023, 0, 0.0093701, 0.1584364, 0, 0.3968244, 0.0428764, 0.3924459, 0.0000444, 2e-7],]
Tensor
[[0.0000071, 0, 0.0316687, 0.0000178, 0, 0.0000988, 0.9680935, 0.0001098, 0.0000045, 0],]
...
Esperamos que os haya gustado, nos leemos en la próxima haciendo redes neuronales de convolución 🤖
Integración Continua: Gitea + Drone + SonarQube
¿Qué es y para que se usa la integración continua?
Es una práctica de ingeniería de software que consiste en hacer integraciones automáticas de un proyecto lo más a menudo posible para así poder detectar fallos cuanto antes. Entendemos por integración la compilación y ejecución de pruebas de todo un proyecto.
Gitea + Drone + SonarQube
Se utiliza el software libre de Gitea para almacenar los repositorios de código y que conectaremos a Drone para realizar la IC
Drone permite ejecutar las pipelines que tiene configuradas el repositorio, cuenta con mucha variedad de plugins dando posibilidad de despliegues o comunicaciones
SonarQube provee de métricas y analiza la calidad y seguridad del código
Con este stack podremos montar un ciclo de IC que cubre las necesidades básicas, también destaca los pocos recursos que necesita esta configuración pudiendo desplegarse en máquinas pequeñas como una Raspberry
Docker
Usamos Docker para desplegar las aplicaciones en distintos contenedores
version: '2'
services:
gitea:
image: gitea/gitea
restart: always
container_name: gitea
hostname: gitea
volumes:
- ./data:/data
expose:
- 3000
depends_on:
- db
networks:
mynet:
db:
image: mariadb:10
container_name: gitea-db
hostname: gitea-db
restart: always
environment:
- MYSQL_ROOT_PASSWORD=secretdb
- MYSQL_DATABASE=gitea
- MYSQL_USER=gitea
- MYSQL_PASSWORD=secretpass
volumes:
- ./db/:/var/lib/mysql
networks:
mynet:
drone:
image: drone/drone
restart: always
container_name: drone
hostname: drone
environment:
- DRONE_GITEA_SERVER=https://gitea.domain.com
- DRONE_GITEA_CLIENT_ID=secretid
- DRONE_GITEA_CLIENT_SECRET=secret
- DRONE_RPC_SECRET=secret-rpc
- DRONE_SERVER_HOST=drone.domain.com
- DRONE_SERVER_PROTO=https
volumes:
- ./drone:/data
expose:
- 80
networks:
mynet:
runner:
image: drone/drone-runner-docker
restart: always
container_name: runner
hostname: runner
environment:
- DRONE_RPC_PROTO=http
- DRONE_RPC_HOST=drone
- DRONE_RPC_SECRET=secret-rpc
- DRONE_RUNNER_CAPACITY=2
- DRONE_RUNNER_NAME=runner
volumes:
- /var/run/docker.sock:/var/run/docker.sock
expose:
- 3000
networks:
mynet:
sonarqube:
image: sonarqube
container_name: sonarqube
hostname: sonarqube
expose:
- 9000
volumes:
- ./sonar/conf:/opt/sonarqube/conf
- ./sonar/data:/opt/sonarqube/data
- ./sonar/logs:/opt/sonarqube/logs
- ./sonar/extensions:/opt/sonarqube/extensions
networks:
mynet:
networks:
mynet:
Solo hay que crear la app en Gitea para conectarla a Drone y generar las claves de la configuración del runner de Drone. También habría que generar la token del plugin de sonar para cada proyecto de Drone que configuremos
Con esta receta de docker-compose se puede poner un proxy que ataque los distintos contenedores bajo el mismo dominio.com
Eso es todo, nos vemos en la próxima
Dockerizando una Raspberry Pi 4
En esta entrada vamos a instalar y preparar un ordenador Raspberry Pi 4 con la distribución Buster Debian GNU/Linux y arquitectura arm64 (aarch64) aprovechando al máximo el procesador que lleva de serie
Necesitamos la imagen de RaspiOS oficial con el software arm64 instalado, también necesitaremos una tarjeta microSD para grabarla, esto podemos hacerlo con un solo comando desde un terminal
$ curl -s https://downloads.raspberrypi.org/raspios_arm64/images/raspios_arm64-2020-05-28/2020-05-27-raspios-buster-arm64.zip | gzip -d - | sudo dd if=/dev/stdin of=/dev/sdX status=progress
Donde el dispositivo /dev/sdX será el de la memoria microSD
Una vez termina el comando tendremos la imagen grabada en la tarjeta, la conectamos a la Raspberry Pi 4 y arrancará el sistema por defecto
Abrimos un terminal desde la Raspberry y ejecutamos los siguientes comandos
$ echo 'deb https://download.docker.com/linux/debian buster stable' | sudo tee /etc/apt/sources.list.d/docker.list
$ curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -
$ sudo apt update
$ sudo apt install -y docker-ce
Cuando termine de instalar se necesita reiniciar el sistema para que todo funcione correctamente, y ya tenemos docker en nuestro ordenador arm64
$ docker -v
Docker version 19.03.12, build 48a6621
Kernel Version: 5.4.51-v8+
Operating System: Debian GNU/Linux 10 (buster)
OSType: linux
Architecture: aarch64
CPUs: 4
Total Memory: 7.633GiB
Name: raspberrypi
Hasta la próxima…
Subir vídeos al reproductor IPFS
IPFS logo
Hola, en esta entrada explicaremos como adaptar nuestros vídeos para subirlos a la red IPFS desde nuestra página de Upload y poder visualizarlos con el reproductor IPFS, utilizaremos el software ffmpeg que suele venir disponible en los repositorios de la distribución que estemos usando
Si tenemos por ejemplo un archivo mp4 y queremos adaptarlo al formato HLS con el siguiente comando:
ffmpeg -i video.mp4 -y -acodec aac -vcodec copy -hls_time 60 -hls_list_size 0 -f hls video.m3u8
Y de esta forma trozeamos el archivo mp4 en partes de 60 segundos con formato hls
Una vez termine la transcodificación del archivo vamos a la página de Upload y subimos el directorio generado
Cuando termine de subirse nos devuelve un hash de la carpeta que contiene el vídeo en formato HLS, este hash es el que tenemos que pasarle al reproductor IPFS
Y con esto ya tenemos nuestro vídeo en la red IPFS disponible para verlo desde el reproductor cuando nos apetezca, advertir que se tenga cuidado con los contenidos subidos ya que no pueden borrarse de la red.
Saludos
Docker con IPv6
docker6
Aquí vamos a explicar como habilitar el protocolo IPv6 en Docker, esto permitirá comunicar nuestros contenedores con el mundo exterior por este protocolo aparte del conocido IPv4, funciona solamente en GNU/Linux
Para esto hay que tener configurado en el servidor anfitrión IPv6 en la interfaz WAN (la que llega a internet), en algunos proveedores puede venir activado por defecto pero no es la norma, para probar si tenemos IPv6 en el anfitrión haremos un ping6
$ ping6 2600::
Si responde correctamente las solicitudes ICMPv6 tendremos IPv6 en la máquina, sino hay que negociar con el proveedor como habilitarlo
En el archivo /etc/docker/daemon.json (si no existe lo creamos) hay que añadir lo siguiente como se indica en la documentación de Docker
{
"ipv6": true,
"fixed-cidr-v6": "2001:db8:1::/80"
}
El parámetro fixed-cidr-v6 indica la subred interna que usarán los contenedores, es decir, la subred de la interfaz bridge que normalmente identificamos con docker0, se configurará con la primera dirección de la red disponible
Se elige la máscara de red /80 que es menor que la que hay en la interfaz externa /64 para evitar problemas en el enrutado de los paquetes IPv6, lo recomendable es usar una máscara con un rango menor, si ponemos una máscara /64 o del mismo valor que la externa se tiene que usar algún demonio de enrutado como ndppd
Una vez se reinicia Docker puede verse configurada la interfaz interna de red bridge con IPv6 habilitado y la consiguiente red asignada con el comando
$ docker network inspect bridge
Para usar IPv6 en los contenedores habrá que enrutar el tráfico de vuelta hacia la interfaz externa haciendo masquerading con el comando ip6tables
$ ip6tables -t nat -A POSTROUTING -s 2001:db8:1::/80 -j MASQUERADE
Además hay que configurar el sysctl de la máquina para preparar el kernel con un entorno IPv6, añadimos las siguientes líneas al archivo /etc/sysctl.d/99-sysctl.conf modificando la interfaz de red de salida por la correspondiente (hay que reiniciar la máquina)
net.ipv6.conf.default.accept_ra=0
net.ipv6.conf.all.accept_ra=0
net.ipv6.conf.default.forwarding=1
net.ipv6.conf.all.forwarding=1
net.ipv6.bindv6only=0
net.ipv6.conf.default.disable_ipv6=0
net.ipv6.conf.all.disable_ipv6=0
net.ipv6.conf.default.proxy_ndp=0
net.ipv6.conf.all.proxy_ndp=0
net.ipv6.conf.ensXXX.proxy_ndp=1
net.ipv6.conf.ensXXX.accept_ra=2
net.ipv6.conf.ensXXX.forwarding=0
Solo queda instanciar un contenedor y comprobar que tenemos ping6 desde él
$ docker run -ti --rm debian:buster ping6 -c10 2600::
PING 2600::(2600::) 56 data bytes
64 bytes from 2600::: icmp_seq=1 ttl=52 time=140 ms
64 bytes from 2600::: icmp_seq=2 ttl=52 time=140 ms
64 bytes from 2600::: icmp_seq=3 ttl=52 time=140 ms
64 bytes from 2600::: icmp_seq=4 ttl=52 time=140 ms
64 bytes from 2600::: icmp_seq=5 ttl=52 time=140 ms
64 bytes from 2600::: icmp_seq=6 ttl=52 time=140 ms
64 bytes from 2600::: icmp_seq=7 ttl=52 time=141 ms
64 bytes from 2600::: icmp_seq=8 ttl=52 time=140 ms
64 bytes from 2600::: icmp_seq=9 ttl=52 time=140 ms
64 bytes from 2600::: icmp_seq=10 ttl=52 time=140 ms
--- 2600:: ping statistics ---
10 packets transmitted, 10 received, 0% packet loss, time 20ms
rtt min/avg/max/mdev = 139.906/140.204/141.457/0.475 ms
Y colorín colorado este post se ha terminado, esperamos os haya gustado, nos vemos en la próxima
Usa Virt-Manager NO VirtualBox
logo-virt-manager
Desde que se lanzó la versión 10 de Debian GNU/Linux (Buster) en su página nos recomiendan dejar de usar VirtualBox por la aplicación de escritorio Virt-Manager
apt install virt-manager
Ya conocemos desde hace años VirtualBox de Oracle para trabajar con máquinas virtuales, es OpenSource aunque el producto está controlado por la misma empresa. Como alternativa ahora se utiliza Virt-Manager que está basado en KVM y libvirt, aunque también puede gestionar Xen o LXC directamente
Como podéis ver el entorno nos recuerda mucho a otras aplicaciones de virtualización como VMware o VirtualBox, al crear una máquina virtual nos da a elegir el tipo de instalación que queremos realizar
Una vez configurados los parámetros del menú wizard, se generan los recursos necesarios para arrancar la máquina virtual, esto podemos realizarlo también mediante comandos pero la GUI nos facilita mucho la tarea
También hay que configurar las interfaces de red que se asignarán a las máquinas virtuales, aunque la aplicación lo hace todo a golpe de ratón con permisos de root
Como se puede ver el menú nos recuerda mucho a otras aplicaciones de virtualización, aunque difieren muchas de las configuraciones, por ejemplo no hay límites a la hora de asignar los núcleos del procesador a una máquina virtual, pero la aplicación nos avisa que puede incurrir en un bajo rendimiento
Os animo a probarlo y utilizarlo como alternativa a otras aplicaciones de virtualización tanto comerciales como libres y comprobar la potencia que nos ofrece la virtualización del Kernel de GNU/Linux, como ya recomendó hace años fanta en su blog, saludos
|
__label__pos
| 0.516912 |
SHARE
TWEET
JoeNotCharles
a guest Jan 2nd, 2011 177 Never
1. #!/usr/bin/env python
2. import sys
3.
4. # map of candidate names to candidate numbers
5. candidates = {}
6.
7. # the highest candidate number seen so far
8. maxCandidateNum = 0
9.
10. # contents of the ballots file
11. ballots = []
12.
13. # open ballots.txt for writing
14. with open("ballots.txt", "w") as ballotFile:
15.
16. # loop through all command-line args except the first (the program name)
17. for filename in sys.argv[1:]:
18.
19. # start an empty ballot for this file
20. ballot = []
21.
22. # open the file for reading and loop through all lines in it
23. with open(filename, "r") as currentFile:
24. for line in currentFile:
25.
26. # the current candidate is the line with all leading and trailing whitespace stripped
27. candidateName = line.strip()
28.
29. # if the candidate has already been seen, get its number
30. # otherwise, assign a new number to it
31. if candidateName in candidates:
32. candidateNum = candidates[candidateName]
33. else:
34. maxCandidateNum += 1
35. candidateNum = maxCandidateNum
36. candidates[candidateName] = candidateNum
37.
38. # add the candidate number to the current ballot
39. ballot.append(candidateNum)
40.
41. # write the current ballot, as one line with > between each candidate number
42. ballotString = " > ".join(str(num) for num in ballot)
43. ballots.append(ballotString)
44.
45. # write the -cands and -tie parameters
46. candsString = " ".join(str(num) for num in sorted(candidates.values()))
47. ballotFile.write("-cands " + candsString + "\n\n")
48. tieString = " ".join(str(candidates[name]) for name in sorted(candidates.keys()))
49. ballotFile.write("-tie " + tieString + "\n\n")
50.
51. # write all the ballots to the ballot file
52. for ballot in ballots:
53. ballotFile.write(ballot + "\n\n")
54.
55. # now that we've read all candidates from all files, write candidates.txt
56. with open("candidates.txt", "w") as candidateFile:
57.
58. # define a comparison function which, given two candidate names, returns the one with the lower candidate number
59. def candidateNumberSort(name1, name2):
60. num1 = candidates[name1]
61. num2 = candidates[name2]
62. return cmp(num1, num2)
63.
64. # use this function to loop through the candidate map in order of number, and write the name
65. candidateNames = candidates.keys()
66. for candidateName in sorted(candidateNames, candidateNumberSort):
67. candidateFile.write(candidateName + "\n")
RAW Paste Data
Top
|
__label__pos
| 0.99803 |
DWRequest: MooTools 1.2 AJAX Listener & Message Display
By on
Though MooTools 1.2 is in its second beta stage, its basic syntax and theory changes have been hashed out. The JavaScript library continues to improve and become more flexible.
Fellow DZone Zone Leader Boyan Kostadinov wrote a very useful article detailing how you can add a Gmail-like AJAX display to your website using the Prototype JavaScript library. The article got me to thinking: could it be helpful to always display an AJAX notification message upon every request's initial request, success event, and failure event? Maybe even only for debugging purposes?
Whatever your reason may be, I've created the DWRequest MooTools class to inform the user or developer of each AJAX request and subsequent result.
The CSS Code
#message { display:none; width:150px; text-align:center; padding:5px 8px; font-weight:bold; position:absolute; right:2%; font:12px arial; }
The XHTML Code
The following code is an example of two XHTML links that make AJAX calls. Note the message DIV.
<body>
<div id="message">Performing Request...</div>
<a href="inputs.php" class="ajax">Succeed</a><br />
<a href="sug.php" class="ajax">Fail</a>
</body>
The MooTools JavaScript Code
var DWRequest = new Class({
Extends: Request,
options: {
onRequest: function() {
show_ajax_message('request');
},
onSuccess: function() {
show_ajax_message('success');
},
onFailure: function() {
show_ajax_message('failure');
},
onCancel: function() {
show_ajax_message('cancel');
}
}
});
//adds initial events
window.addEvent('domready',function() {
//for every action class
$$('.ajax').each(function(el) {
//add an event..
el.addEvent('click', function(e) {
e = new Event(e).stop();
//make ajax request
var req = new DWRequest({
url: el.get('href'),
method: 'get',
data: 'something'
}).send();
});
});
});
//shows the block
function show_ajax_message(state)
{
//set position
$('message').setStyle('top',window.getScrollTop() + 10);
//on request...
if(state == 'request')
{
//show the box
$('message').addClass('onrequest').setText('Performing Request...').setStyles({'background-color':'#fffea1','display':'block','opacity':'100'});
}
//on success
else if(state == 'success')
{
//take care of box
$('message').set('text','Request Complete!');
//do effect
var myMorph = new Fx.Morph('message',{'duration':1000});
myMorph.start({'opacity': 0,'background-color': '#90ee90'});
}
else if(state == 'failure')
{
//take care of box
$('message').set('text','Request Failed!');
//do effect
var myMorph = new Fx.Morph('message',{'duration':1000});
myMorph.start({'opacity': 0,'background-color': '#ff0000'});
}
else if(state == 'cancel')
{
//take care of box
$('message').set('text','Request Cancelled!');
//do effect
var myMorph = new Fx.Morph('message',{'duration':1000});
myMorph.start({'opacity': 0,'background-color': '#fffea1'});
}
}
The Explanation
1. Once the DOM is ready, any link with the class ajax is listened to -- upon click, a DWRequest class instance is created.
2. I've extended the MooTools Request class, adding default actions for the onRequest, onFailure, onCancel, and onComplete events. (Calls the show_ajax_message() function.)
3. The function displays and manipulates the message DIV as needed: color morphing, message changes, and positioning.
Do you have any suggestions for my class? Please share!
Recent Features
• By
Create Namespaced Classes with MooTools
MooTools has always gotten a bit of grief for not inherently using and standardizing namespaced-based JavaScript classes like the Dojo Toolkit does. Many developers create their classes as globals which is generally frowned up. I mostly disagree with that stance, but each to their own. In any event...
• By
Serving Fonts from CDN
For maximum performance, we all know we must put our assets on CDN (another domain). Along with those assets are custom web fonts. Unfortunately custom web fonts via CDN (or any cross-domain font request) don't work in Firefox or Internet Explorer (correctly so, by spec) though...
Incredible Demos
Discussion
1. Great little script!
The only thing I’d add is more information about the faillure message. Like wich type is it. Because that’s meaningfull if it’s used for debugging.
Also it can be “extended” by shooting the php error message in the postback nad showing it in the message box, like… this value is missing or inexistant, etc. depending on which type of request you’ve fired, but that’s getting a bit out of the js part ;).
gj!
2. Thank you for your ideas Keven!
In terms of versioning, I guess I’d consider this a “0.1”. I hope to continue working on this class, adding user-friendly icons and providing more information about the Ajax request itself (displaying url, execution time, …)
3. Use switch statement instead of the if, it is more appropriate here and the performance is better.
Why you have called it *DW*Request? what is the meaning?
4. Right nir, I’ll incorporate a switch next time. The “DW” is simply my attempt at tracking usage (my initials).
5. Wouldn’t it be more mootoolesk to add the function show_ajax_message to the class, cause there is no other one that will use it.
6. @Andreas: Absolutely. After I published the article, I kicked myself for not doing that. I’ll do that in the next version.
@All: Any more suggestions?
7. Fabrice Terrasson
Tried to extend Request.HTML without success. Any clue ?
8. acctman
do you have any examples or tips for using this to display a notification to a user? Pretty much what I want to do is if the user is on the site, and i need to send out a notification to all users, how would i call the Request… ? is there anyway to do this, what method would work without having the user to reload a page to see the message. I.e. in a chat room
9. Cheers David,
http://paste.davidwalsh.name/78
I’m using your code in my Ajax-based-Joomla.
Actually, it’s highly modified as I’ve made a simple generic class.
Hope you don’t mind to take look in your pastebin area.
Thank You. Thank You. Thank You.
note: pastebin looks great… I’ve never known you have it.
Wrap your code in <pre class="{language}"></pre> tags, link to a GitHub gist, JSFiddle fiddle, or CodePen pen to embed!
|
__label__pos
| 0.655995 |
1
I am learning Vanilla JS and DOM. Today I have a problem when I want to remove a class of all elements expect one.
const panels = document.querySelectorAll(".panel");
function toggleOpen() {
this.classList.toggle("open");
console.log(panels);
}
function toggleActive(e) {
if (e.propertyName.includes("flex")) {
this.classList.toggle("open-active");
}
}
panels.forEach((panel) => panel.addEventListener("click", toggleOpen));
panels.forEach((panel) =>
panel.addEventListener("transitionend", toggleActive)
);
I want when I click "panel" the only panel be clicked have class "open" and remove all class "open" of all another "panel". (Exactly I want only a panel to have class "open" in all time, and it can toggle.) Thank you for your help.
1 Answer 1
1
In toggleOpen, iterate over all panels (except this one) and remove their open class first:
function toggleOpen() {
// Close all other panels:
for (const panel of panels) {
if (panel !== this) {
panel.classList.remove('open');
}
}
// Either open this panel or close it:
this.classList.toggle("open");
}
1
• Thanks you so much. Now i know "this" can be use like that.
– Cyan Coder
Sep 20, 2020 at 17:18
Your Answer
By clicking “Post Your Answer”, you agree to our terms of service and acknowledge that you have read and understand our privacy policy and code of conduct.
Not the answer you're looking for? Browse other questions tagged or ask your own question.
|
__label__pos
| 0.941499 |
How to check CPU temperature ? Top methods to reduce overheating
Overheating
Heat is a computer’s enemy. To prevent overheating, computers are specifically designed with heat dispersion and ventilation. When too much heat builds up, there's a chance that the computer may become unstable, resulting in unexpected shutdown or some component damage.
There are several ways to check the CPU's temperature. Users, who prefer the hard way, can open the BIOS settings where third-party tools can be used to check the temperature of the CPU. However, there are various CPU temp monitor tools for Windows 10. These tools may work with older versions such as Windows 7 and Windows 8.1. Here is the list of top 5 free tools for checking CPU temperature.
1. Open Hardware Monitor
The first one on the list will be the Open Hardware Monitor tool. As the name says, the tool is open source and can be downloaded for free. The UI is clean and easy to use, also CPU temperature can be checked along with the GPU. It also displays various details like RAM consumption, CPU operating speed, and the power supply stats.
2. Speccy
Speccy is a famous tool developed by Piriform CCleaner. The tool provides a lot of information, in addition, it's arranged in a way that makes it easy to understand. The only disadvantage is the lack of information related to internal-GPU.
3. HWMonitor
CPU-ID developed this software that is very popular to check CPU temperature. It offers more details regarding the hardware and can also show temperature readings for the integrated GPU in addition to the CPU.
4. SpeedFan
Another CPU temp monitor tool that one can try on your Windows 10 (or older) machine is SpeedFan. The main purpose of SpeedFan is to let users manually control the speed of the cooling fan on your machine. Moreover, there are numerous other functions that analyze the temperature of the PC.
5. Core Temp
Core Temp is the last one on the list that can be used to check CPU temp. One major thing is that users can view the temperature levels in the notification area in the Taskbar. One of its selling points is that you can add a bunch of add-ons to improve its functionality. For example, Core Temp Gadget can we added, which is a widget displayed on the screen.
How to fix CPU Overheating?
Overheating is a major issue nowadays and can cause many problems that can damage the PC. Here is the list of measures you can make to reduce overheating.
1. Maintain good airflow around your PC
The most basic and essential method is to maintain airflow to keep the machine cool. Remove any obstacles that are obstructing the airflow and also check if the fan inside the CPU is working properly or not.
2. Choosing the right case
The case plays a crucial role in maintaining proper airflow dynamics and ensure heat is dissipating efficiently.
3. Using PC at low-power settings
Using a PC at high-power has many benefits. However, the computer doesn't need that much power at all times and many people forget to switch back to low-power after using it. Sometimes. it may be the cause for overheating and one should keep that in mind.
4. Check for the external culprits
Another reason why the PC overheat is because of some apps running on it. If the temperature levels on your machine are significantly higher when you’re doing nothing, then the culprit could be some other apps that are exhausting all the system resources. So, it is advised to find and shut them down using the Task Manager.
5. Cleaning the blocked heat sink and remove internal dust
Dust may get deposited inside the machine and may overheat it and affect the performance. Cleaning the machine on regular basis can prevent overheating. Also, one might consider cleaning the heat sink and other components of the machine.
|
__label__pos
| 0.933825 |
hack facebook without survey
NetNoble
hack facebook without survey
Title: The Truth About Hacking facebook -parental-controls-guide”>Facebook Without Surveys
Introduction:
In today’s digital age, social media has become an integral part of our lives, with Facebook being one of the leading platforms. However, the desire to hack into someone’s Facebook account without surveys has become a popular topic of discussion. In this article, we will explore the truth behind hacking Facebook accounts without surveys, the legality of such actions, and the potential risks involved.
Paragraph 1: Understanding Facebook Security Systems
Facebook is committed to protecting its users’ privacy and security. The company has implemented robust security measures to safeguard user accounts, including two-factor authentication, encryption, and regular security updates. These measures make it increasingly difficult for hackers to gain unauthorized access to Facebook accounts.
Paragraph 2: The Legality of Hacking Facebook Accounts
Hacking Facebook accounts without the owner’s consent is illegal and unethical. It violates the computer Fraud and Abuse Act (CFAA) in the United States and similar laws in other countries. Engaging in such activities can lead to severe legal consequences, including fines and imprisonment.
Paragraph 3: The Rise of Social Engineering Attacks
Social engineering is a technique that exploits human psychology to manipulate individuals into revealing sensitive information. Hackers often resort to social engineering tactics to gain unauthorized access to Facebook accounts. These attacks involve tricking users into sharing their login credentials or other personal information voluntarily.
Paragraph 4: Common Techniques Used in Facebook Hacking
Despite the security measures in place, hackers continually develop new techniques to exploit vulnerabilities in Facebook’s system. Some common hacking methods include phishing, keylogging, brute force attacks, and malware distribution. However, it’s important to note that these techniques still require the victim’s active participation, such as clicking on malicious links or downloading infected files.
Paragraph 5: The Risks of Hacking Facebook Accounts
Attempting to hack a Facebook account without proper authorization poses significant risks. Firstly, you risk legal consequences, as mentioned earlier. Secondly, hacking is a violation of user privacy, and your actions can have severe emotional and psychological impacts on the victim. Lastly, hackers themselves are vulnerable to being hacked, as they often interact with malicious individuals in underground online communities.
Paragraph 6: The Myth of Survey-Based Facebook Hacking Tools
Numerous websites and tools claim to provide a way to hack Facebook accounts without surveys. However, these claims are often deceptive and misleading. Most of these websites are scams that aim to collect personal information or distribute malware to unsuspecting users. It is essential to exercise caution and avoid falling into these traps.
Paragraph 7: Ethical Hacking and Security Awareness
Ethical hacking, also known as white-hat hacking, is a legitimate practice aimed at identifying and fixing vulnerabilities in computer systems. Ethical hackers work with the consent of the system owner and follow strict guidelines to ensure no harm is done. Instead of attempting to hack Facebook accounts without surveys, individuals interested in cybersecurity should consider pursuing ethical hacking certifications and contribute positively to the field.
Paragraph 8: Protecting Your Facebook Account
While it may not be possible to completely eliminate the risk of being hacked, there are steps you can take to enhance your Facebook account’s security. Enable two-factor authentication, use strong and unique passwords, be cautious of suspicious links and attachments, and regularly update your device’s software and antivirus programs. Additionally, educate yourself about common hacking techniques to identify and avoid potential threats.
Paragraph 9: Reporting Suspicious Activity
If you suspect that your Facebook account has been compromised or notice any suspicious activity, report it immediately to Facebook’s support team. They have dedicated resources to help investigate and resolve security-related issues. By promptly reporting incidents, you not only protect your own account but also contribute to the overall security of the Facebook community.
Paragraph 10: Conclusion
Hacking Facebook accounts without surveys is not only illegal but also unethical. Facebook’s robust security measures make it increasingly difficult for hackers to gain unauthorized access. Instead of engaging in illegal activities, individuals should focus on ethical hacking practices, enhancing their own cybersecurity, and promoting online safety awareness. Remember, protecting privacy and security should always be a priority in today’s digital world.
life protect phone number
In today’s fast-paced, technology-driven world, it’s more important than ever to have a reliable way to protect yourself and your loved ones. That’s where life protect phone numbers come in. These specialized numbers provide a direct line of communication to emergency services, giving you peace of mind and instant access to help when you need it most. In this article, we’ll explore the benefits of life protect phone numbers, how they work, and the different options available to ensure you and your family are always just a call away from safety.
What is a Life Protect Phone Number?
A life protect phone number is a specialized number that is used for emergencies. It is a 24-hour service that connects you directly to emergency services such as police, fire, and medical assistance. These numbers are typically toll-free and can be accessed from any phone, including landlines and mobile devices. They are designed to provide immediate assistance in life-threatening situations and are a crucial tool for personal safety.
How do Life Protect Phone Numbers Work?
Life protect phone numbers work by connecting you directly to emergency services when you dial the number. These numbers are connected to a call center that is staffed 24/7 with trained operators who are trained to handle emergency situations. When you call the number, the operator will ask you for your location and the nature of your emergency. They will then dispatch the appropriate emergency services to your location.
Benefits of Life Protect Phone Numbers
There are many benefits to having a life protect phone number, including:
1. Immediate Access to Help
The most significant benefit of a life protect phone number is that it provides immediate access to help when you need it most. In an emergency situation, every second counts, and a life protect phone number can save valuable time by connecting you directly to emergency services without having to look up and dial multiple numbers.
2. Available 24/7
Life protect phone numbers are available 24 hours a day, 7 days a week. This means that no matter what time of day or night an emergency occurs, you can always reach out for help. Whether you’re at home, at work, or on the go, you can rest assured that you have access to emergency services at all times.
3. Easy to Remember
Life protect phone numbers are typically toll-free and easy to remember. They are often a short, simple sequence of numbers, making them easy to dial in a panic or emergency situation. This is especially helpful for children or elderly individuals who may have trouble remembering multiple numbers.
4. Location Tracking
Many life protect phone numbers have the ability to track your location when you call. This is particularly useful for those who are in unfamiliar areas or have trouble communicating their location in an emergency. With this feature, emergency services can quickly locate you and provide assistance.
5. Peace of Mind
Having a life protect phone number can provide you with peace of mind knowing that you have a direct line of communication to emergency services. This can be especially comforting for those who live alone, have medical conditions, or are at risk for emergencies.
Types of Life Protect Phone Numbers
There are several types of life protect phone numbers available, each with its own unique features and benefits. Some of the most common types include:
1. 911
911 is the most well-known life protect phone number in the United States. It is a three-digit number that connects you to emergency services in your area. It is available in all 50 states and can be dialed from any phone, including landlines and mobile devices.
2. 211
211 is a non-emergency phone number that connects you to local community services and resources. It is available in most areas in the United States and can be used for non-life-threatening situations, such as finding shelter, food assistance, or mental health services.
3. 311
Similar to 211, 311 is a non-emergency phone number that connects you to local government services and information. It is available in many cities and can be used for non-life-threatening situations, such as reporting a pothole, requesting information, or reporting non-emergency crimes.
4. 511
511 is a phone number that provides real-time traffic and travel information. It is available in most states and can be used to plan your route and avoid traffic delays. This number is particularly useful for long-distance travel.
5. 811
811 is a phone number that connects you to a national hotline for underground utility location services . It is available in all 50 states and can be used to request information about the location of underground utilities before digging to avoid damaging them.
Choosing the Right Life Protect Phone Number for You
When choosing a life protect phone number, it’s essential to consider your specific needs and location. Some numbers, such as 911, are available nationwide, while others, like 211 and 311, may only be available in certain areas. Additionally, some numbers may have specific features, such as location tracking, that may be more beneficial for certain individuals. It’s important to research and understand the options available in your area to choose the best fit for you and your family’s needs.
In conclusion, life protect phone numbers are a crucial tool for personal safety. They provide immediate access to emergency services, are available 24/7, and are easy to remember. With various options available, it’s important to research and choose the right life protect phone number for your specific needs and location. By having a life protect phone number, you can have peace of mind knowing that you and your loved ones are always just a call away from help in an emergency.
gift for minecraft lover
Minecraft has become a cultural phenomenon and has captured the hearts of millions of players worldwide. With its endless possibilities and creative freedom, it is no wonder that this game has gained a massive following. As such, there are many people who are passionate about Minecraft and consider themselves true fans of the game. If you know someone who loves Minecraft, whether it be a friend, family member, or significant other, finding the perfect gift for them can be a daunting task. But fear not, for we have compiled a list of the best gifts for Minecraft lovers that will surely make their day.
1. Minecraft Merchandise
One of the easiest and most obvious gifts for a Minecraft lover is merchandise. With the game’s popularity, there is an abundance of official and unofficial merchandise available. From t-shirts and hoodies to plushies and figurines, there is something for every Minecraft fan out there. You can even find accessories like phone cases, keychains, and wall art featuring the iconic pixelated graphics of the game. These items are not only a great way to show off their love for Minecraft, but they also make for practical and useful gifts.
2. Minecraft Lego Sets
Minecraft and Lego are two beloved childhood favorites, so it is no surprise that the combination of the two has been a hit among fans. Lego has released several Minecraft-themed sets that allow players to build and recreate their favorite structures and scenes from the game. From the iconic Creeper to the Nether Fortress, these sets are not only fun to build, but they also make for great display pieces. They are suitable for both children and adults, making them a perfect gift for any Minecraft enthusiast.
3. Minecraft Books
For those who love to read, there are several books available that explore the world of Minecraft in a different way. Some of these books are official guides that provide tips and tricks for playing the game, while others are fan-made novels that tell stories set in the Minecraft universe. These books are not only entertaining but also informative and can help players improve their skills and knowledge of the game. They also make for a great addition to any Minecraft fan’s collection.
4. Minecraft Crafting Box
One of the most enjoyable aspects of Minecraft is crafting, and what better way to bring that experience to life than with a real-life crafting box? These boxes come with all the necessary materials, including different colored blocks, stickers, and tools, to create a variety of Minecraft-inspired items. With a crafting box, players can make their own swords, pickaxes, and even Steve’s iconic diamond armor. This gift is not only fun but also encourages creativity and imagination.
5. Minecraft Card Game
For those who enjoy card games, there is a Minecraft-themed card game that puts a new spin on the classic game of Uno. In this version, players must match the color or number of the card played, but there are also special Creeper cards that can change the game’s direction. The game also includes special blocks that can be used to protect players from Creeper attacks. This card game is a great way to bring the Minecraft experience to life and is suitable for all ages.
6. Minecraft Papercraft Kits
If your Minecraft lover is into arts and crafts, then a papercraft kit may be the perfect gift for them. These kits come with pre-cut and scored paper pieces that can be folded and glued together to create 3D models of creatures, characters, and structures from the game. There are various kits available, from simple figures to more complex structures like the Ender Dragon. Not only are these kits fun to assemble, but they also make for great display pieces.
7. Minecraft Board Games
Board games are a great way to bring people together, and there are a few Minecraft-inspired games that are perfect for game nights. One of these games is Minecraft: Builders and Biomes, where players must collect resources and build structures to earn points. Another option is Minecraft: The Board Game, where players must explore, mine, and build to survive in the game’s world. These board games offer a new way to experience Minecraft and make for a great gift for any fan.
8. Minecraft Subscription Box
For a gift that keeps on giving, consider a Minecraft subscription box. These boxes are filled with exclusive and officially licensed merchandise, such as t-shirts, accessories, and collectibles, all centered around the game. Each box has a different theme, and subscribers can choose to receive them monthly, quarterly, or as a one-time purchase. This gift is perfect for those who can’t get enough of Minecraft and will surely bring a smile to their face every time a new box arrives.
9. Minecraft Music
The music in Minecraft is iconic and has become synonymous with the game. For those who love the game’s soundtrack, there are various options available to enjoy it outside of the game. You can gift them the official soundtrack on CD or vinyl, or you can find fan-made versions of the music on streaming platforms like Spotify. Additionally, there are also music boxes and even a working jukebox that plays the game’s tunes, making for unique and thoughtful gifts.
10. Minecraft Subscription Services
If your Minecraft lover is an avid player, they may appreciate a subscription to a Minecraft server or realm. These services allow players to create and join custom-made servers where they can play with friends or other players from around the world. They offer a more personalized and unique gaming experience and are perfect for those who want to take their Minecraft adventures to the next level. With a subscription service, you can gift your loved one with endless hours of fun and entertainment.
In conclusion, finding the perfect gift for a Minecraft lover can be challenging, but with these ideas, you are sure to find something that they will love. Whether it be merchandise, games, or unique experiences, these gifts will bring a smile to the face of any Minecraft enthusiast. So the next time you are struggling to find the perfect gift, consider one of these options and make a Minecraft lover’s day.
Leave a Comment
|
__label__pos
| 0.700891 |
Davor Zubak Davor Zubak - 7 months ago 9
SQL Question
How to return second newest record in SQL?
If this:
SELECT *
FROM Table
WHERE Date=( SELECT MAX(Date)
FROM Table
)
returns newest record from the table, how to get second newest record?
Answer
SELECT *
FROM Table
WHERE Date = ( SELECT MAX(Date)
FROM Table
WHERE Date < ( SELECT MAX(Date)
FROM Table
)
) ;
or:
SELECT TOP (1) *
FROM Table
WHERE Date < ( SELECT MAX(Date)
FROM Table
)
ORDER BY Date DESC ;
or:
SELECT *
FROM
( SELECT t.*
, ROW_NUMBER() OVER(ORDER BY Date DESC) AS RowNumber
FROM Table t
) AS tmp
WHERE RowNumber = 2 ;
If the Date column has unique values, all three queries will give the same result. If the column can have duplicate dates, then they may give different results (when there are ties in 1st or 2nd place). The first query will even give multiple rows in the result if there are ties in 2nd place.
Comments
|
__label__pos
| 0.998579 |
loading...
Cover image for JavaScript Prototypes and Class Inheritance
JavaScript Prototypes and Class Inheritance
akdeberg profile image Anik Khan ・3 min read
Javascript is object-based. Understanding the object system is very crucial to write a better, flexible, and robust application.
Not Your Typical Object System
It's important to note that javascript's object system is different from other major languages.
Javascript's object system is prototype based.
Major languages like Python, C#, Java are class based
So it's important to keep in mind that javascript's object system has a different mechanism than other commonly used ones.
Create a protypical object
Let's create an object using prototypes-
//here Vehicle is a constructor function to create Vehicle Object
let Vehicle = function (hasEngine) {
this.hasEngine = hasEngine
}
//every js object has prototype. let's add a method to it
Vehicle.prototype.getDetails = function () {
return `Vehicle Details------ Any Engine: ${this.hasEngine}`
}
Now getDetails() method is a part of Vehicle object via the prototype.
This code below will create a new object with Vehicle constructor and assign the values.
//the new keyword creates an object with Vehicle constructor
let vehicleOne = new Vehicle(true)
//remember we added the getDetails method to Vehicle using prototype;
//here we invoke it
console.log(vehicleOne.getDetails())
//OUTPUT
Vehicle Details------ Any Engine: true
Prototypical Inheritance
Now let's take it one step further. Besides creating object using prototype we can use it for inheritance. This way of doing is known as prototypical inheritance.
Let's create a Car object that inherits from Vehicle-
let Car = function (hasEngine, model, color) {
//hasEngine will belongs to Vehicle so we call it
//and attach it to this Car object
Vehicle.call(this, hasEngine)
this.model = model
this.color = color
}
//Car will use Vehicle's prototype; thus will get the getDetails method
Object.setPrototypeOf(Car, Vehicle.prototype)
Car.prototype.getCarInfo = function () {
return `Car Details------ Model: ${this.model}, Color: ${this.color}, Any Engine: ${this.hasEngine}`
}
//calling the Vehicle actually calls the constructor
let carOne = new Car(true, 'Model X', 'Black')
console.log(carOne.getCarInfo())
//OUTPUT
Car Details------ Model: Model X, Color: Black, Any Engine: true
What this code does is essentially give the Car object to access to Vehicle prototypes. This will allow Car object to having the methods and properties of Vehicle object.
Alt Text
Be Aware
Using ES6+ class syntax the code can be written as follows-
class Vehicle {
constructor(hasEngine) {
this.hasEngine = hasEngine
}
//method
getDetails() {
return `Vehicle Details------ Any Engine: ${this.hasEngine}`
}
}
//calling the Vehicle actually calls the constructor
let vehicleOne = new Vehicle(true)
console.log(vehicleOne.getDetails())
//inherit
class Car extends Vehicle {
constructor(model, color) {
super(true)
this.model = model
this.color = color
}
carDetails() {
return `Car Details------ Model: ${this.model}, Color: ${this.color}, Any Engine: ${this.hasEngine}`
}
}
//calling the Vehicle actually calls the constructor
let carOne = new Car('Model X', 'Black')
console.log(carOne.carDetails())
The output is the same. So one might think this is the exact same thing as a prototypical inheritance; which is pretty wrong.
Using class syntax is like mimicking Java or C#'s class-based inheritance using js prototypical inheritance.
Class-based inheritance is always dangerous; it's wise to use composition. Yet in js using the class syntax we are mimicking the dangerous class inheritance. It's something that should be avoided at any cost.
Quote from Eric Elliot
Using class inheritance in JavaScript is more like driving your new Tesla Model S to the dealer and trading it in for a rusted out 1973 Ford Pinto.
Posted on by:
akdeberg profile
Anik Khan
@akdeberg
Convincing computers to do human tasks
Discussion
markdown guide
|
__label__pos
| 0.987351 |
#!/usr/bin/perl # Page inlining and blogging. package IkiWiki::Plugin::inline; use warnings; use strict; use IkiWiki 1.00; use URI; sub import { #{{{ hook(type => "getopt", id => "inline", call => \&getopt); hook(type => "checkconfig", id => "inline", call => \&checkconfig); hook(type => "preprocess", id => "inline", call => \&IkiWiki::preprocess_inline); hook(type => "pagetemplate", id => "inline", call => \&IkiWiki::pagetemplate_inline); # Hook to change to do pinging since it's called late. # This ensures each page only pings once and prevents slow # pings interrupting page builds. hook(type => "change", id => "inline", call => \&IkiWiki::pingurl); } # }}} sub getopt () { #{{{ eval q{use Getopt::Long}; error($@) if $@; Getopt::Long::Configure('pass_through'); GetOptions( "rss!" => \$config{rss}, "atom!" => \$config{atom}, ); } sub checkconfig () { #{{{ if (($config{rss} || $config{atom}) && ! length $config{url}) { error(gettext("Must specify url to wiki with --url when using --rss or --atom")); } if ($config{rss}) { push @{$config{wiki_file_prune_regexps}}, qr/\.rss$/; } if ($config{atom}) { push @{$config{wiki_file_prune_regexps}}, qr/\.atom$/; } } #}}} # Back to ikiwiki namespace for the rest, this code is very much # internal to ikiwiki even though it's separated into a plugin. package IkiWiki; my %toping; my %feedlinks; sub yesno ($) { #{{{ my $val=shift; return (defined $val && lc($val) eq "yes"); } #}}} sub preprocess_inline (@) { #{{{ my %params=@_; if (! exists $params{pages}) { return ""; } my $raw=yesno($params{raw}); my $archive=yesno($params{archive}); my $rss=($config{rss} && exists $params{rss}) ? yesno($params{rss}) : $config{rss}; my $atom=($config{atom} && exists $params{atom}) ? yesno($params{atom}) : $config{atom}; my $quick=exists $params{quick} ? yesno($params{quick}) : 0; my $feeds=exists $params{feeds} ? yesno($params{feeds}) : !$quick; if (! exists $params{show} && ! $archive) { $params{show}=10; } my $desc; if (exists $params{description}) { $desc = $params{description} } else { $desc = $config{wikiname}; } my $actions=yesno($params{actions}); my @list; foreach my $page (keys %pagesources) { next if $page eq $params{page}; if (pagespec_match($page, $params{pages}, $params{page})) { push @list, $page; } } if (exists $params{sort} && $params{sort} eq 'title') { @list=sort @list; } elsif (! exists $params{sort} || $params{sort} eq 'age') { @list=sort { $pagectime{$b} <=> $pagectime{$a} } @list; } else { return sprintf(gettext("unknown sort type %s"), $params{sort}); } if (yesno($params{reverse})) { @list=reverse(@list); } if (exists $params{skip}) { @list=@list[$params{skip} .. scalar @list - 1]; } if ($params{show} && @list > $params{show}) { @list=@list[0..$params{show} - 1]; } add_depends($params{page}, $params{pages}); my $rssurl=rsspage(basename($params{page})); my $atomurl=atompage(basename($params{page})); my $ret=""; if (exists $params{rootpage} && $config{cgiurl}) { # Add a blog post form, with feed buttons. my $formtemplate=template("blogpost.tmpl", blind_cache => 1); $formtemplate->param(cgiurl => $config{cgiurl}); $formtemplate->param(rootpage => $params{rootpage}); $formtemplate->param(rssurl => $rssurl) if $feeds && $rss; $formtemplate->param(atomurl => $atomurl) if $feeds && $atom; $ret.=$formtemplate->output; } elsif ($feeds) { # Add feed buttons. my $linktemplate=template("feedlink.tmpl", blind_cache => 1); $linktemplate->param(rssurl => $rssurl) if $rss; $linktemplate->param(atomurl => $atomurl) if $atom; $ret.=$linktemplate->output; } my $template=template( ($archive ? "inlinepagetitle.tmpl" : "inlinepage.tmpl"), blind_cache => 1, ) unless $raw; foreach my $page (@list) { my $file = $pagesources{$page}; my $type = pagetype($file); if (! $raw || ($raw && ! defined $type)) { unless ($archive && $quick) { # Get the content before populating the # template, since getting the content uses # the same template if inlines are nested. my $content=get_inline_content($page, $params{destpage}); $template->param(content => $content); } # Don't use htmllink because this way the # title is separate and can be overridden by # other plugins. my $link=bestlink($params{page}, $page); $link=htmlpage($link) if defined $type; $link=abs2rel($link, dirname($params{destpage})); $template->param(pageurl => $link); $template->param(title => pagetitle(basename($page))); $template->param(ctime => displaytime($pagectime{$page})); if ($actions) { my $file = $pagesources{$page}; my $type = pagetype($file); if ($config{discussion}) { my $discussionlink=gettext("discussion"); if ($page !~ /.*\/\Q$discussionlink\E$/ && (length $config{cgiurl} || exists $links{$page."/".$discussionlink})) { $template->param(have_actions => 1); $template->param(discussionlink => htmllink($page, $params{page}, gettext("Discussion"), 1, 1)); } } if (length $config{cgiurl} && defined $type) { $template->param(have_actions => 1); $template->param(editurl => cgiurl(do => "edit", page => $page)); } } run_hooks(pagetemplate => sub { shift->(page => $page, destpage => $params{page}, template => $template,); }); $ret.=$template->output; $template->clear_params; } else { if (defined $type) { $ret.="\n". linkify($page, $params{page}, preprocess($page, $params{page}, filter($page, readfile(srcfile($file))))); } } } if ($feeds) { if (exists $params{feedshow} && @list > $params{feedshow}) { @list=@list[0..$params{feedshow} - 1]; } if ($rss) { will_render($params{page}, rsspage($params{page})); writefile(rsspage($params{page}), $config{destdir}, genfeed("rss", $rssurl, $desc, $params{page}, @list)); $toping{$params{page}}=1 unless $config{rebuild}; $feedlinks{$params{destpage}}=qq{}; } if ($atom) { will_render($params{page}, atompage($params{page})); writefile(atompage($params{page}), $config{destdir}, genfeed("atom", $atomurl, $desc, $params{page}, @list)); $toping{$params{page}}=1 unless $config{rebuild}; $feedlinks{$params{destpage}}=qq{}; } } return $ret; } #}}} sub pagetemplate_inline (@) { #{{{ my %params=@_; my $page=$params{page}; my $template=$params{template}; $template->param(feedlinks => $feedlinks{$page}) if exists $feedlinks{$page} && $template->query(name => "feedlinks"); } #}}} sub get_inline_content ($$) { #{{{ my $page=shift; my $destpage=shift; my $file=$pagesources{$page}; my $type=pagetype($file); if (defined $type) { return htmlize($page, $type, linkify($page, $destpage, preprocess($page, $destpage, filter($page, readfile(srcfile($file)))))); } else { return ""; } } #}}} sub date_822 ($) { #{{{ my $time=shift; eval q{use POSIX}; error($@) if $@; my $lc_time=POSIX::setlocale(&POSIX::LC_TIME); POSIX::setlocale(&POSIX::LC_TIME, "C"); my $ret=POSIX::strftime("%a, %d %b %Y %H:%M:%S %z", localtime($time)); POSIX::setlocale(&POSIX::LC_TIME, $lc_time); return $ret; } #}}} sub date_3339 ($) { #{{{ my $time=shift; eval q{use POSIX}; error($@) if $@; my $lc_time=POSIX::setlocale(&POSIX::LC_TIME); POSIX::setlocale(&POSIX::LC_TIME, "C"); my $ret=POSIX::strftime("%Y-%m-%dT%H:%M:%SZ", localtime($time)); POSIX::setlocale(&POSIX::LC_TIME, $lc_time); return $ret; } #}}} sub absolute_urls ($$) { #{{{ # sucky sub because rss sucks my $content=shift; my $baseurl=shift; my $url=$baseurl; $url=~s/[^\/]+$//; $content=~s/(new(encode_utf8($config{url}."/".htmlpage($page))); my $itemtemplate=template($feedtype."item.tmpl", blind_cache => 1); my $content=""; my $lasttime = 0; foreach my $p (@pages) { my $u=URI->new(encode_utf8($config{url}."/".htmlpage($p))); my $pcontent = absolute_urls(get_inline_content($p, $page), $url); $itemtemplate->param( title => pagetitle(basename($p), 1), url => $u, permalink => $u, date_822 => date_822($pagectime{$p}), date_3339 => date_3339($pagectime{$p}), ); if ($itemtemplate->query(name => "enclosure")) { my $file=$pagesources{$p}; my $type=pagetype($file); if (defined $type) { $itemtemplate->param(content => $pcontent); } else { my ($a, $b, $c, $d, $e, $f, $g, $size) = stat(srcfile($file)); my $mime="unknown"; eval q{use File::MimeInfo}; if (! $@) { $mime = mimetype($file); } $itemtemplate->param( enclosure => $u, type => $mime, length => $size, ); } } else { $itemtemplate->param(content => $pcontent); } run_hooks(pagetemplate => sub { shift->(page => $p, destpage => $page, template => $itemtemplate); }); $content.=$itemtemplate->output; $itemtemplate->clear_params; $lasttime = $pagectime{$p} if $pagectime{$p} > $lasttime; } my $template=template($feedtype."page.tmpl", blind_cache => 1); $template->param( title => $page ne "index" ? pagetitle($page, 1) : $config{wikiname}, wikiname => $config{wikiname}, pageurl => $url, content => $content, feeddesc => $feeddesc, feeddate => date_3339($lasttime), feedurl => $feedurl, version => $IkiWiki::version, ); run_hooks(pagetemplate => sub { shift->(page => $page, destpage => $page, template => $template); }); return $template->output; } #}}} sub pingurl (@) { #{{{ return unless @{$config{pingurl}} && %toping; eval q{require RPC::XML::Client}; if ($@) { debug(gettext("RPC::XML::Client not found, not pinging")); return; } # daemonize here so slow pings don't slow down wiki updates defined(my $pid = fork) or error("Can't fork: $!"); return if $pid; chdir '/'; eval q{use POSIX 'setsid'}; setsid() or error("Can't start a new session: $!"); open STDIN, '/dev/null'; open STDOUT, '>/dev/null'; open STDERR, '>&STDOUT' or error("Can't dup stdout: $!"); # Don't need to keep a lock on the wiki as a daemon. IkiWiki::unlockwiki(); foreach my $page (keys %toping) { my $title=pagetitle(basename($page), 0); my $url="$config{url}/".htmlpage($page); foreach my $pingurl (@{$config{pingurl}}) { debug("Pinging $pingurl for $page"); eval { my $client = RPC::XML::Client->new($pingurl); my $req = RPC::XML::request->new('weblogUpdates.ping', $title, $url); my $res = $client->send_request($req); if (! ref $res) { debug("Did not receive response to ping"); } my $r=$res->value; if (! exists $r->{flerror} || $r->{flerror}) { debug("Ping rejected: ".(exists $r->{message} ? $r->{message} : "[unknown reason]")); } }; if ($@) { debug "Ping failed: $@"; } } } exit 0; # daemon done } #}}} 1
|
__label__pos
| 0.999839 |
What is your estimate of the cumulative average hours required for the first four designs?
October 24, 2018
Write a C++ program that defines a class Vector that allocates stack space for vectors of up to ten elements, and stores the actual vector size as a component of the class.
October 24, 2018
) What is the probability of selecting a female if one person from this group is selected randomly?
Survey in a Student Activity Participation Study (SAPS) survey, 30 engineering majors, 25 business majors, 20 science majors, 15 liberal arts majors, and 10 human development majors were selected. Ten of the engineering, 12 of the science, 6 of the human development, 13 of the business, and 8 of the liberal arts majors selected for the study were female. (a) What is the probability of selecting a female if one person from this group is selected randomly? (b) What is the probability that a student selected randomly from this group is a science major, given that she is female?
"Looking for a Similar Assignment? Get Expert Help at an Amazing Discount!"
Hi there! Click one of our representatives below and we will get back to you as soon as possible.
Chat with us on WhatsApp
|
__label__pos
| 0.985119 |
DZone Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world
Kenneth has posted 3 posts at DZone. View Full User Profile
Detecting File Type - The Ultimate Way In Php
07.01.2009
| 4378 views |
• submit to reddit
// description of your code here
<?php
function strhex($string)
{
$hex = "";
$len = strlen($string);
for($i = 0; $i < $len; ++$i)
{
$hex .= str_pad(dechex(ord($string[$i])), 2, 0, STR_PAD_LEFT);
}
return $hex;
}
$data = file_get_contents($filename);
if(preg_match('/\.(jpg|jpeg|gif|png)/i', $filename, $matches))
{
$type = ($matches[1] === 'jpeg') ? 'jpg' : $matches[1];
}
else
{
// Get the first 12 bytes of the file
$hdr = strhex($data[0].$data[1].$data[2].$data[3].$data[4].$data[5].$data[6].$data[7].$data[8].$data[9].$data[10].$data[11]);
echo $hdr;
// Match header of the file (Google it).
if(preg_match('$/ffd8ffe0....4A46494600/i', $hdr))
{
// JPEG?
$type = 'jpg';
}
elseif(preg_match('$/89504e470D0a1a0a/i', $hdr))
{
// PNG?
$type = 'png';
}
elseif(preg_match('$/474946/i', $hdr))
{
// GIF?
$type = 'gif';
}
else
{
// Unknown image type.
}
}
Comments
Kenneth Mccall replied on Fri, 2007/08/10 - 12:56pm
[Bug] Regex was wrong. [Improved] file_get_contents - restricted to the first 12 bytes. Should improve performance. <?php function strhex($string) { $hex = ""; $len = strlen($string); for($i = 0; $i < $len; ++$i) { $hex .= str_pad(dechex(ord($string[$i])), 2, 0, STR_PAD_LEFT); } return $hex; } $data = file_get_contents($filename, FALSE, NULL, -1, 12); if(preg_match('/\.(jpg|jpeg|gif|png)/i', $filename, $matches)) { $type = ($matches[1] === 'jpeg') ? 'jpg' : $matches[1]; } else { // Get the first 12 bytes of the file // Could probably do strhex($data) - but this might be safer..? $hdr = strhex($data[0].$data[1].$data[2].$data[3].$data[4].$data[5].$data[6].$data[7].$data[8].$data[9].$data[10].$data[11]); echo $hdr; // Match header of the file (Google it). if(preg_match('/^ffd8ffe0....4A46494600/i', $hdr)) { // JPEG? $type = 'jpg'; } elseif(preg_match('/^89504e470D0a1a0a/i', $hdr)) { // PNG? $type = 'png'; } elseif(preg_match('/^474946/i', $hdr)) { // GIF? $type = 'gif'; } else { // Unknown image type. } }
Kenneth Mccall replied on Fri, 2007/08/10 - 12:56pm
Only works if the file has the correct extension.. This determines type by looking at the first 12 bytes of the file (the file's header).
Snippets Manager replied on Tue, 2009/07/21 - 5:08pm
PHP has got a function for that already, its called pathinfo(). It returns an array of information about a file path, so say if you just wanted to test if the file was a specific type then you could just do this: $ext = pathinfo('path/to/file', PATHINFO_EXTENSION); // When you set an option, the function returns a string if ($ext === 'jpg') { // Do something if the file is a jpg } else if ($ext === 'png') { // Do something if the file is a png } else if ($ext === 'gif') { // Do something if the file a a gif } else { return false; }
|
__label__pos
| 0.88935 |
Background: #fff
Foreground: #000
PrimaryPale: #8cf
PrimaryLight: #18f
PrimaryMid: #04b
PrimaryDark: #014
SecondaryPale: #ffc
SecondaryLight: #fe8
SecondaryMid: #db4
SecondaryDark: #841
TertiaryPale: #eee
TertiaryLight: #ccc
TertiaryMid: #999
TertiaryDark: #666
Error: #f88
<!--{{{-->
<div class='toolbar' macro='toolbar [[ToolbarCommands::EditToolbar]]'></div>
<div class='title' macro='view title'></div>
<div class='editor' macro='edit title'></div>
<div macro='annotations'></div>
<div class='editor' macro='edit text'></div>
<div class='editor' macro='edit tags'></div><div class='editorFooter'><span macro='message views.editor.tagPrompt'></span><span macro='tagChooser excludeLists'></span></div>
<!--}}}-->
To get started with this blank [[TiddlyWiki]], you'll need to modify the following tiddlers:
* [[SiteTitle]] & [[SiteSubtitle]]: The title and subtitle of the site, as shown above (after saving, they will also appear in the browser title bar)
* [[MainMenu]]: The menu (usually on the left)
* [[DefaultTiddlers]]: Contains the names of the tiddlers that you want to appear when the TiddlyWiki is opened
You'll also need to enter your username for signing your edits: <<option txtUserName>>
<<importTiddlers>>
<!--{{{-->
<link rel='alternate' type='application/rss+xml' title='RSS' href='index.xml' />
<!--}}}-->
These [[InterfaceOptions]] for customising [[TiddlyWiki]] are saved in your browser
Your username for signing your edits. Write it as a [[WikiWord]] (eg [[JoeBloggs]])
<<option txtUserName>>
<<option chkSaveBackups>> [[SaveBackups]]
<<option chkAutoSave>> [[AutoSave]]
<<option chkRegExpSearch>> [[RegExpSearch]]
<<option chkCaseSensitiveSearch>> [[CaseSensitiveSearch]]
<<option chkAnimate>> [[EnableAnimations]]
----
Also see [[AdvancedOptions]]
<!--{{{-->
<div class='header' role='banner' macro='gradient vert [[ColorPalette::PrimaryLight]] [[ColorPalette::PrimaryMid]]'>
<div class='headerShadow'>
<span class='siteTitle' refresh='content' tiddler='SiteTitle'></span>
<span class='siteSubtitle' refresh='content' tiddler='SiteSubtitle'></span>
</div>
<div class='headerForeground'>
<span class='siteTitle' refresh='content' tiddler='SiteTitle'></span>
<span class='siteSubtitle' refresh='content' tiddler='SiteSubtitle'></span>
</div>
</div>
<div id='mainMenu' role='navigation' refresh='content' tiddler='MainMenu'></div>
<div id='sidebar'>
<div id='sidebarOptions' role='navigation' refresh='content' tiddler='SideBarOptions'></div>
<div id='sidebarTabs' role='complementary' refresh='content' force='true' tiddler='SideBarTabs'></div>
</div>
<div id='displayArea' role='main'>
<div id='messageArea'></div>
<div id='tiddlerDisplay'></div>
</div>
<!--}}}-->
/*{{{*/
body {background:[[ColorPalette::Background]]; color:[[ColorPalette::Foreground]];}
a {color:[[ColorPalette::PrimaryMid]];}
a:hover {background-color:[[ColorPalette::PrimaryMid]]; color:[[ColorPalette::Background]];}
a img {border:0;}
h1,h2,h3,h4,h5,h6 {color:[[ColorPalette::SecondaryDark]]; background:transparent;}
h1 {border-bottom:2px solid [[ColorPalette::TertiaryLight]];}
h2,h3 {border-bottom:1px solid [[ColorPalette::TertiaryLight]];}
.button {color:[[ColorPalette::PrimaryDark]]; border:1px solid [[ColorPalette::Background]];}
.button:hover {color:[[ColorPalette::PrimaryDark]]; background:[[ColorPalette::SecondaryLight]]; border-color:[[ColorPalette::SecondaryMid]];}
.button:active {color:[[ColorPalette::Background]]; background:[[ColorPalette::SecondaryMid]]; border:1px solid [[ColorPalette::SecondaryDark]];}
.header {background:[[ColorPalette::PrimaryMid]];}
.headerShadow {color:[[ColorPalette::Foreground]];}
.headerShadow a {font-weight:normal; color:[[ColorPalette::Foreground]];}
.headerForeground {color:[[ColorPalette::Background]];}
.headerForeground a {font-weight:normal; color:[[ColorPalette::PrimaryPale]];}
.tabSelected {color:[[ColorPalette::PrimaryDark]];
background:[[ColorPalette::TertiaryPale]];
border-left:1px solid [[ColorPalette::TertiaryLight]];
border-top:1px solid [[ColorPalette::TertiaryLight]];
border-right:1px solid [[ColorPalette::TertiaryLight]];
}
.tabUnselected {color:[[ColorPalette::Background]]; background:[[ColorPalette::TertiaryMid]];}
.tabContents {color:[[ColorPalette::PrimaryDark]]; background:[[ColorPalette::TertiaryPale]]; border:1px solid [[ColorPalette::TertiaryLight]];}
.tabContents .button {border:0;}
#sidebar {}
#sidebarOptions input {border:1px solid [[ColorPalette::PrimaryMid]];}
#sidebarOptions .sliderPanel {background:[[ColorPalette::PrimaryPale]];}
#sidebarOptions .sliderPanel a {border:none;color:[[ColorPalette::PrimaryMid]];}
#sidebarOptions .sliderPanel a:hover {color:[[ColorPalette::Background]]; background:[[ColorPalette::PrimaryMid]];}
#sidebarOptions .sliderPanel a:active {color:[[ColorPalette::PrimaryMid]]; background:[[ColorPalette::Background]];}
.wizard {background:[[ColorPalette::PrimaryPale]]; border:1px solid [[ColorPalette::PrimaryMid]];}
.wizard h1 {color:[[ColorPalette::PrimaryDark]]; border:none;}
.wizard h2 {color:[[ColorPalette::Foreground]]; border:none;}
.wizardStep {background:[[ColorPalette::Background]]; color:[[ColorPalette::Foreground]];
border:1px solid [[ColorPalette::PrimaryMid]];}
.wizardStep.wizardStepDone {background:[[ColorPalette::TertiaryLight]];}
.wizardFooter {background:[[ColorPalette::PrimaryPale]];}
.wizardFooter .status {background:[[ColorPalette::PrimaryDark]]; color:[[ColorPalette::Background]];}
.wizard .button {color:[[ColorPalette::Foreground]]; background:[[ColorPalette::SecondaryLight]]; border: 1px solid;
border-color:[[ColorPalette::SecondaryPale]] [[ColorPalette::SecondaryDark]] [[ColorPalette::SecondaryDark]] [[ColorPalette::SecondaryPale]];}
.wizard .button:hover {color:[[ColorPalette::Foreground]]; background:[[ColorPalette::Background]];}
.wizard .button:active {color:[[ColorPalette::Background]]; background:[[ColorPalette::Foreground]]; border: 1px solid;
border-color:[[ColorPalette::PrimaryDark]] [[ColorPalette::PrimaryPale]] [[ColorPalette::PrimaryPale]] [[ColorPalette::PrimaryDark]];}
.wizard .notChanged {background:transparent;}
.wizard .changedLocally {background:#80ff80;}
.wizard .changedServer {background:#8080ff;}
.wizard .changedBoth {background:#ff8080;}
.wizard .notFound {background:#ffff80;}
.wizard .putToServer {background:#ff80ff;}
.wizard .gotFromServer {background:#80ffff;}
#messageArea {border:1px solid [[ColorPalette::SecondaryMid]]; background:[[ColorPalette::SecondaryLight]]; color:[[ColorPalette::Foreground]];}
#messageArea .button {color:[[ColorPalette::PrimaryMid]]; background:[[ColorPalette::SecondaryPale]]; border:none;}
.popupTiddler {background:[[ColorPalette::TertiaryPale]]; border:2px solid [[ColorPalette::TertiaryMid]];}
.popup {background:[[ColorPalette::TertiaryPale]]; color:[[ColorPalette::TertiaryDark]]; border-left:1px solid [[ColorPalette::TertiaryMid]]; border-top:1px solid [[ColorPalette::TertiaryMid]]; border-right:2px solid [[ColorPalette::TertiaryDark]]; border-bottom:2px solid [[ColorPalette::TertiaryDark]];}
.popup hr {color:[[ColorPalette::PrimaryDark]]; background:[[ColorPalette::PrimaryDark]]; border-bottom:1px;}
.popup li.disabled {color:[[ColorPalette::TertiaryMid]];}
.popup li a, .popup li a:visited {color:[[ColorPalette::Foreground]]; border: none;}
.popup li a:hover {background:[[ColorPalette::SecondaryLight]]; color:[[ColorPalette::Foreground]]; border: none;}
.popup li a:active {background:[[ColorPalette::SecondaryPale]]; color:[[ColorPalette::Foreground]]; border: none;}
.popupHighlight {background:[[ColorPalette::Background]]; color:[[ColorPalette::Foreground]];}
.listBreak div {border-bottom:1px solid [[ColorPalette::TertiaryDark]];}
.tiddler .defaultCommand {font-weight:bold;}
.shadow .title {color:[[ColorPalette::TertiaryDark]];}
.title {color:[[ColorPalette::SecondaryDark]];}
.subtitle {color:[[ColorPalette::TertiaryDark]];}
.toolbar {color:[[ColorPalette::PrimaryMid]];}
.toolbar a {color:[[ColorPalette::TertiaryLight]];}
.selected .toolbar a {color:[[ColorPalette::TertiaryMid]];}
.selected .toolbar a:hover {color:[[ColorPalette::Foreground]];}
.tagging, .tagged {border:1px solid [[ColorPalette::TertiaryPale]]; background-color:[[ColorPalette::TertiaryPale]];}
.selected .tagging, .selected .tagged {background-color:[[ColorPalette::TertiaryLight]]; border:1px solid [[ColorPalette::TertiaryMid]];}
.tagging .listTitle, .tagged .listTitle {color:[[ColorPalette::PrimaryDark]];}
.tagging .button, .tagged .button {border:none;}
.footer {color:[[ColorPalette::TertiaryLight]];}
.selected .footer {color:[[ColorPalette::TertiaryMid]];}
.error, .errorButton {color:[[ColorPalette::Foreground]]; background:[[ColorPalette::Error]];}
.warning {color:[[ColorPalette::Foreground]]; background:[[ColorPalette::SecondaryPale]];}
.lowlight {background:[[ColorPalette::TertiaryLight]];}
.zoomer {background:none; color:[[ColorPalette::TertiaryMid]]; border:3px solid [[ColorPalette::TertiaryMid]];}
.imageLink, #displayArea .imageLink {background:transparent;}
.annotation {background:[[ColorPalette::SecondaryLight]]; color:[[ColorPalette::Foreground]]; border:2px solid [[ColorPalette::SecondaryMid]];}
.viewer .listTitle {list-style-type:none; margin-left:-2em;}
.viewer .button {border:1px solid [[ColorPalette::SecondaryMid]];}
.viewer blockquote {border-left:3px solid [[ColorPalette::TertiaryDark]];}
.viewer table, table.twtable {border:2px solid [[ColorPalette::TertiaryDark]];}
.viewer th, .viewer thead td, .twtable th, .twtable thead td {background:[[ColorPalette::SecondaryMid]]; border:1px solid [[ColorPalette::TertiaryDark]]; color:[[ColorPalette::Background]];}
.viewer td, .viewer tr, .twtable td, .twtable tr {border:1px solid [[ColorPalette::TertiaryDark]];}
.viewer pre {border:1px solid [[ColorPalette::SecondaryLight]]; background:[[ColorPalette::SecondaryPale]];}
.viewer code {color:[[ColorPalette::SecondaryDark]];}
.viewer hr {border:0; border-top:dashed 1px [[ColorPalette::TertiaryDark]]; color:[[ColorPalette::TertiaryDark]];}
.highlight, .marked {background:[[ColorPalette::SecondaryLight]];}
.editor input {border:1px solid [[ColorPalette::PrimaryMid]];}
.editor textarea {border:1px solid [[ColorPalette::PrimaryMid]]; width:100%;}
.editorFooter {color:[[ColorPalette::TertiaryMid]];}
.readOnly {background:[[ColorPalette::TertiaryPale]];}
#backstageArea {background:[[ColorPalette::Foreground]]; color:[[ColorPalette::TertiaryMid]];}
#backstageArea a {background:[[ColorPalette::Foreground]]; color:[[ColorPalette::Background]]; border:none;}
#backstageArea a:hover {background:[[ColorPalette::SecondaryLight]]; color:[[ColorPalette::Foreground]]; }
#backstageArea a.backstageSelTab {background:[[ColorPalette::Background]]; color:[[ColorPalette::Foreground]];}
#backstageButton a {background:none; color:[[ColorPalette::Background]]; border:none;}
#backstageButton a:hover {background:[[ColorPalette::Foreground]]; color:[[ColorPalette::Background]]; border:none;}
#backstagePanel {background:[[ColorPalette::Background]]; border-color: [[ColorPalette::Background]] [[ColorPalette::TertiaryDark]] [[ColorPalette::TertiaryDark]] [[ColorPalette::TertiaryDark]];}
.backstagePanelFooter .button {border:none; color:[[ColorPalette::Background]];}
.backstagePanelFooter .button:hover {color:[[ColorPalette::Foreground]];}
#backstageCloak {background:[[ColorPalette::Foreground]]; opacity:0.6; filter:alpha(opacity=60);}
/*}}}*/
/*{{{*/
* html .tiddler {height:1%;}
body {font-size:.75em; font-family:arial,helvetica; margin:0; padding:0;}
h1,h2,h3,h4,h5,h6 {font-weight:bold; text-decoration:none;}
h1,h2,h3 {padding-bottom:1px; margin-top:1.2em;margin-bottom:0.3em;}
h4,h5,h6 {margin-top:1em;}
h1 {font-size:1.35em;}
h2 {font-size:1.25em;}
h3 {font-size:1.1em;}
h4 {font-size:1em;}
h5 {font-size:.9em;}
hr {height:1px;}
a {text-decoration:none;}
dt {font-weight:bold;}
ol {list-style-type:decimal;}
ol ol {list-style-type:lower-alpha;}
ol ol ol {list-style-type:lower-roman;}
ol ol ol ol {list-style-type:decimal;}
ol ol ol ol ol {list-style-type:lower-alpha;}
ol ol ol ol ol ol {list-style-type:lower-roman;}
ol ol ol ol ol ol ol {list-style-type:decimal;}
.txtOptionInput {width:11em;}
#contentWrapper .chkOptionInput {border:0;}
.externalLink {text-decoration:underline;}
.indent {margin-left:3em;}
.outdent {margin-left:3em; text-indent:-3em;}
code.escaped {white-space:nowrap;}
.tiddlyLinkExisting {font-weight:bold;}
.tiddlyLinkNonExisting {font-style:italic;}
/* the 'a' is required for IE, otherwise it renders the whole tiddler in bold */
a.tiddlyLinkNonExisting.shadow {font-weight:bold;}
#mainMenu .tiddlyLinkExisting,
#mainMenu .tiddlyLinkNonExisting,
#sidebarTabs .tiddlyLinkNonExisting {font-weight:normal; font-style:normal;}
#sidebarTabs .tiddlyLinkExisting {font-weight:bold; font-style:normal;}
.header {position:relative;}
.header a:hover {background:transparent;}
.headerShadow {position:relative; padding:4.5em 0 1em 1em; left:-1px; top:-1px;}
.headerForeground {position:absolute; padding:4.5em 0 1em 1em; left:0; top:0;}
.siteTitle {font-size:3em;}
.siteSubtitle {font-size:1.2em;}
#mainMenu {position:absolute; left:0; width:10em; text-align:right; line-height:1.6em; padding:1.5em 0.5em 0.5em 0.5em; font-size:1.1em;}
#sidebar {position:absolute; right:3px; width:16em; font-size:.9em;}
#sidebarOptions {padding-top:0.3em;}
#sidebarOptions a {margin:0 0.2em; padding:0.2em 0.3em; display:block;}
#sidebarOptions input {margin:0.4em 0.5em;}
#sidebarOptions .sliderPanel {margin-left:1em; padding:0.5em; font-size:.85em;}
#sidebarOptions .sliderPanel a {font-weight:bold; display:inline; padding:0;}
#sidebarOptions .sliderPanel input {margin:0 0 0.3em 0;}
#sidebarTabs .tabContents {width:15em; overflow:hidden;}
.wizard {padding:0.1em 1em 0 2em;}
.wizard h1 {font-size:2em; font-weight:bold; background:none; padding:0; margin:0.4em 0 0.2em;}
.wizard h2 {font-size:1.2em; font-weight:bold; background:none; padding:0; margin:0.4em 0 0.2em;}
.wizardStep {padding:1em 1em 1em 1em;}
.wizard .button {margin:0.5em 0 0; font-size:1.2em;}
.wizardFooter {padding:0.8em 0.4em 0.8em 0;}
.wizardFooter .status {padding:0 0.4em; margin-left:1em;}
.wizard .button {padding:0.1em 0.2em;}
#messageArea {position:fixed; top:2em; right:0; margin:0.5em; padding:0.5em; z-index:2000; _position:absolute;}
.messageToolbar {display:block; text-align:right; padding:0.2em;}
#messageArea a {text-decoration:underline;}
.tiddlerPopupButton {padding:0.2em;}
.popupTiddler {position: absolute; z-index:300; padding:1em; margin:0;}
.popup {position:absolute; z-index:300; font-size:.9em; padding:0; list-style:none; margin:0;}
.popup .popupMessage {padding:0.4em;}
.popup hr {display:block; height:1px; width:auto; padding:0; margin:0.2em 0;}
.popup li.disabled {padding:0.4em;}
.popup li a {display:block; padding:0.4em; font-weight:normal; cursor:pointer;}
.listBreak {font-size:1px; line-height:1px;}
.listBreak div {margin:2px 0;}
.tabset {padding:1em 0 0 0.5em;}
.tab {margin:0 0 0 0.25em; padding:2px;}
.tabContents {padding:0.5em;}
.tabContents ul, .tabContents ol {margin:0; padding:0;}
.txtMainTab .tabContents li {list-style:none;}
.tabContents li.listLink { margin-left:.75em;}
#contentWrapper {display:block;}
#splashScreen {display:none;}
#displayArea {margin:1em 17em 0 14em;}
.toolbar {text-align:right; font-size:.9em;}
.tiddler {padding:1em 1em 0;}
.missing .viewer,.missing .title {font-style:italic;}
.title {font-size:1.6em; font-weight:bold;}
.missing .subtitle {display:none;}
.subtitle {font-size:1.1em;}
.tiddler .button {padding:0.2em 0.4em;}
.tagging {margin:0.5em 0.5em 0.5em 0; float:left; display:none;}
.isTag .tagging {display:block;}
.tagged {margin:0.5em; float:right;}
.tagging, .tagged {font-size:0.9em; padding:0.25em;}
.tagging ul, .tagged ul {list-style:none; margin:0.25em; padding:0;}
.tagClear {clear:both;}
.footer {font-size:.9em;}
.footer li {display:inline;}
.annotation {padding:0.5em; margin:0.5em;}
* html .viewer pre {width:99%; padding:0 0 1em 0;}
.viewer {line-height:1.4em; padding-top:0.5em;}
.viewer .button {margin:0 0.25em; padding:0 0.25em;}
.viewer blockquote {line-height:1.5em; padding-left:0.8em;margin-left:2.5em;}
.viewer ul, .viewer ol {margin-left:0.5em; padding-left:1.5em;}
.viewer table, table.twtable {border-collapse:collapse; margin:0.8em 1.0em;}
.viewer th, .viewer td, .viewer tr,.viewer caption,.twtable th, .twtable td, .twtable tr,.twtable caption {padding:3px;}
table.listView {font-size:0.85em; margin:0.8em 1.0em;}
table.listView th, table.listView td, table.listView tr {padding:0 3px 0 3px;}
.viewer pre {padding:0.5em; margin-left:0.5em; font-size:1.2em; line-height:1.4em; overflow:auto;}
.viewer code {font-size:1.2em; line-height:1.4em;}
.editor {font-size:1.1em;}
.editor input, .editor textarea {display:block; width:100%; font:inherit;}
.editorFooter {padding:0.25em 0; font-size:.9em;}
.editorFooter .button {padding-top:0; padding-bottom:0;}
.fieldsetFix {border:0; padding:0; margin:1px 0px;}
.zoomer {font-size:1.1em; position:absolute; overflow:hidden;}
.zoomer div {padding:1em;}
* html #backstage {width:99%;}
* html #backstageArea {width:99%;}
#backstageArea {display:none; position:relative; overflow: hidden; z-index:150; padding:0.3em 0.5em;}
#backstageToolbar {position:relative;}
#backstageArea a {font-weight:bold; margin-left:0.5em; padding:0.3em 0.5em;}
#backstageButton {display:none; position:absolute; z-index:175; top:0; right:0;}
#backstageButton a {padding:0.1em 0.4em; margin:0.1em;}
#backstage {position:relative; width:100%; z-index:50;}
#backstagePanel {display:none; z-index:100; position:absolute; width:90%; margin-left:3em; padding:1em;}
.backstagePanelFooter {padding-top:0.2em; float:right;}
.backstagePanelFooter a {padding:0.2em 0.4em;}
#backstageCloak {display:none; z-index:20; position:absolute; width:100%; height:100px;}
.whenBackstage {display:none;}
.backstageVisible .whenBackstage {display:block;}
/*}}}*/
/***
StyleSheet for use when a translation requires any css style changes.
This StyleSheet can be used directly by languages such as Chinese, Japanese and Korean which need larger font sizes.
***/
/*{{{*/
body {font-size:0.8em;}
#sidebarOptions {font-size:1.05em;}
#sidebarOptions a {font-style:normal;}
#sidebarOptions .sliderPanel {font-size:0.95em;}
.subtitle {font-size:0.8em;}
.viewer table.listView {font-size:0.95em;}
/*}}}*/
/*{{{*/
@media print {
#mainMenu, #sidebar, #messageArea, .toolbar, #backstageButton, #backstageArea {display: none !important;}
#displayArea {margin: 1em 1em 0em;}
noscript {display:none;} /* Fixes a feature in Firefox 1.5.0.2 where print preview displays the noscript content */
}
/*}}}*/
<!--{{{-->
<div class='toolbar' role='navigation' macro='toolbar [[ToolbarCommands::ViewToolbar]]'></div>
<div class='title' macro='view title'></div>
<div class='subtitle'><span macro='view modifier link'></span>, <span macro='view modified date'></span> (<span macro='message views.wikified.createdPrompt'></span> <span macro='view created date'></span>)</div>
<div class='tagging' macro='tagging'></div>
<div class='tagged' macro='tags'></div>
<div class='viewer' macro='view text wikified'></div>
<div class='tagClear'></div>
<!--}}}-->
!Summary
Resources on how to use Git for core development...
!Details
tbd
<<list filter [startsWith[title,TiddlyWiki.]][sort[title]]>>
<<list filter "[tag[Function AND TiddlyWiki.class]][sort[title]]">>
See [[Startup Parameters]]...
/***
|''Name''|SimpleSearchPlugin|
|''Description''|displays search results as a simple list of matching tiddlers|
|''Authors''|FND|
|''Version''|0.4.1|
|''Status''|stable|
|''Source''|http://devpad.tiddlyspot.com/#SimpleSearchPlugin|
|''CodeRepository''|http://svn.tiddlywiki.org/Trunk/contributors/FND/plugins/SimpleSearchPlugin.js|
|''License''|[[Creative Commons Attribution-ShareAlike 3.0 License|http://creativecommons.org/licenses/by-sa/3.0/]]|
|''Keywords''|search|
!Code
***/
//{{{
if(!version.extensions.SimpleSearchPlugin) { //# ensure that the plugin is only installed once
version.extensions.SimpleSearchPlugin = { installed: true };
if(!config.extensions) { config.extensions = {}; }
config.extensions.SimpleSearchPlugin = {
heading: "Search Results",
containerId: "searchResults",
btnCloseLabel: "close",
btnCloseTooltip: "dismiss search results",
btnCloseId: "search_close",
btnOpenLabel: "open all",
btnOpenTooltip: "open all search results",
btnOpenId: "search_open",
displayResults: function(matches, query) {
story.refreshAllTiddlers(true); // update highlighting within story tiddlers
var el = document.getElementById(this.containerId);
query = '"""' + query + '"""'; // prevent WikiLinks
if(el) {
removeChildren(el);
} else { //# fallback: use displayArea as parent
var container = document.getElementById("displayArea");
el = document.createElement("div");
el.id = this.containerId;
el = container.insertBefore(el, container.firstChild);
}
var msg = "!" + this.heading + "\n";
if(matches.length > 0) {
msg += "''" + config.macros.search.successMsg.format([matches.length.toString(), query]) + ":''\n";
this.results = [];
for(var i = 0 ; i < matches.length; i++) {
this.results.push(matches[i].title);
msg += "* [[" + matches[i].title + "]]\n";
}
} else {
msg += "''" + config.macros.search.failureMsg.format([query]) + "''"; // XXX: do not use bold here!?
}
createTiddlyButton(el, this.btnCloseLabel, this.btnCloseTooltip, config.extensions.SimpleSearchPlugin.closeResults, "button", this.btnCloseId);
if(matches.length > 0) { // XXX: redundant!?
createTiddlyButton(el, this.btnOpenLabel, this.btnOpenTooltip, config.extensions.SimpleSearchPlugin.openAll, "button", this.btnOpenId);
}
wikify(msg, el);
},
closeResults: function() {
var el = document.getElementById(config.extensions.SimpleSearchPlugin.containerId);
removeNode(el);
config.extensions.SimpleSearchPlugin.results = null;
highlightHack = null;
},
openAll: function(ev) {
story.displayTiddlers(null, config.extensions.SimpleSearchPlugin.results);
return false;
}
};
// override Story.search()
Story.prototype.search = function(text, useCaseSensitive, useRegExp) {
highlightHack = new RegExp(useRegExp ? text : text.escapeRegExp(), useCaseSensitive ? "mg" : "img");
var matches = store.search(highlightHack, null, "excludeSearch");
var q = useRegExp ? "/" : "'";
config.extensions.SimpleSearchPlugin.displayResults(matches, q + text + q);
};
// override TiddlyWiki.search() to sort by relevance
TiddlyWiki.prototype.search = function(searchRegExp, sortField, excludeTag, match) {
var candidates = this.reverseLookup("tags", excludeTag, !!match);
var primary = [];
var secondary = [];
var tertiary = [];
for(var t = 0; t < candidates.length; t++) {
if(candidates[t].title.search(searchRegExp) != -1) {
primary.push(candidates[t]);
} else if(candidates[t].tags.join(" ").search(searchRegExp) != -1) {
secondary.push(candidates[t]);
} else if(candidates[t].text.search(searchRegExp) != -1) {
tertiary.push(candidates[t]);
}
}
var results = primary.concat(secondary).concat(tertiary);
if(sortField) {
results.sort(function(a, b) {
return a[sortField] < b[sortField] ? -1 : (a[sortField] == b[sortField] ? 0 : +1);
});
}
return results;
};
} //# end of "install only once"
//}}}
Here is a table of web browsers that work with ~TiddlyWiki. For details, click on the browser name...
|!Browser |!Version |!Allows changes to be saved locally?|
|InternetExplorer |6.0+ |Yes |
|Firefox |1.0+ |Yes |
|Safari |1.0+ |Yes, using TiddlySaver.jar|
|Opera |? |Yes, using TiddlySaver.jar|
|Netscape Navigator |7.0+ |Yes |
|Camino |1.0+ |Yes |
|Chrome |All |Yes, using TiddlySaver.jar|
|iPhone |All |Yes. See [[iTW|http://www.apple.com/webapps/productivity/itwatiddlywikiforiphone.html]]|
|Wii |All |No |
|luakit |All |Yes |
See also [[TiddlyWiki apps available for smartphones|Mobile]]. Please [[let us know|http://groups.google.com/group/TiddlyWiki]] of any additions or corrections
!Summary
This page explains the build process for TiddlyWiki.
!Methods
/%
!NEW
The new build process using...
* Git / GitHub
* node.js
;instructions for building a classic TiddlyWiki
:» [[build instructions at GitHub repo|https://github.com/TiddlyWiki/tiddlywiki.com/blob/master/README.md]]
:» [[build instructions by Eric Shulman|http://tiddlywiki.com/dev]]
;instructions for building TW5
:» see [[http://five.tiddlywiki.com|http://five.tiddlywiki.com/static/Building%20classic%20TiddlyWiki%20with%20TiddlyWiki5.html]]
!OLD
The old build process using...
* Git / GitHub
* Ruby
* Cook
* Ginsu
;Instructions for linux based systems
:http://dev-template-doc.tiddlyspace.com/#About
!TINY
The build process for TinyTiddlyWiki...
!TESTS
Test resources can be found here...
» https://github.com/TiddlyWiki/tiddlywiki/tree/master/test
;testing with the new build process
:»The new build process doesn't yet provide / run tests.
!END%/<<tabs
chkBuildProcess
New 'The new build process using node.js' Build##NEW
Old 'The old build process using cook and ginsu' Build##OLD
Tiny 'The build process for TinyTiddlyWiki' Build##TINY
Tests 'Some information on testing a TiddlyWiki build' Build##TESTS
>>
{{right title{[[Core Macros]]}}}From the [[Glossary|Macro]]...
<<<
<<tiddler [[Macro]]>>
<<<
!"""Macro Parameters"""
<<tiddler "Macro Parameters">>
Proposed:
* Freedombits
* Data tiddlers
* Forum software
* Video plugin
* Authentication
* Tiddler state for reveal widget etc.
To improve accessibility and ergonomics, TiddlyWiki provides the following keyboard shortcuts which should be identical on all platforms...
!!Editing
| !Scope | !Action | !Shortcut | !Details |h
|EditMode|save tiddler|~Ctrl-Enter|for Macs: Ctrl => Cmd|
|EditMode|minor change|~Shift-Ctrl-Enter|does not update modified timestamp|
|EditMode|cancel|Esc|leave EditMode|
|[[Search]]|clear|Esc|Clear the search term|
Some [[TiddlyWiki macros|Core Macros]] define [[access keys|http://en.wikipedia.org/wiki/Access_key]], whose invocation is browser-specific:
| !Action | !PC | !Mac |h
|[[search|Search]]|SHIFT+ALT+F| CTRL+F|
|[[save changes|saveChanges]]|SHIFT+ALT+S| CTRL+S|
|[[new tiddler|newTiddler]]|SHIFT+ALT+N| CTRL+N|
|[[new journal|newJournal]]|SHIFT+ALT+J| CTRL+J|
For Firefox versions prior to 2.0 the default modifier is ALT only rather than SHIFT+ALT.
As of Opera 7.0 on the PC and Mac, press and release SHIFT+ESC and then press the shortcut letter without any modifier.
!Description
The closeAll macro outputs a button to close all open tiddlers.
!Usage
{{{
<<closeAll>>
}}}
<<closeAll>>
@@Please do not modify this tiddler; it was created automatically upon space creation.@@
Custom fields are fields that are either created by a plugin or manually by an author for a dedicated purpose, e.g.:
* to aggregate all tiddlers that have a certain field or field value elsewhere
* to flag a tiddler and then trigger some macro or plugin to run when it's viewed
* etc...
* Progress to beta
* ThemeTweaks
* WikiInfo
* MathML support
* AndTidWiki support
----
Left over from Hangout #10:
* A tutorial on how to write TW5 plugins
* Tiddler link formatting
* Tiddler state for reveal widget etc.
* Transclude widget being split into tiddler and transclude widgets
* Tagged entries in ViewTemplate
[[Bookmarklets]] are small chunks of JavaScript that you can save as a bookmark in your browser. When opened in the context of a TiddlyWiki, they act as a plugin that is saved in the browser, independent of the TiddlyWiki documents itself.
See [[Bookmarklets]]...
Besides [[primitive types|Primitive Types]], objects provide the basic element in JavaScript for you to get creative -- you can equip it with [[Properties]] and [[Functions]] or turn it into a [[Class|Classes]] to create new instanciate from.
!Introduction to TiddlyWiki
<html>
<iframe width="420" height="345" src="http://www.youtube.com/embed/ezNScBd7_h4" frameborder="0" allowfullscreen></iframe>
</html>
!Summary
You can directly apply CSS rules inline or use custom classes.
!Markup
!!!Inline Styles
Enclose text using two double @ signs and let the first two follow by your CSS rules.
{{{
@@color:#4bbbbb;Some random text@@
}}}
''Displays as:''
@@color:red;Some random text@@
!!!CSS Classes
CSS classes can be applied to text blocks.
To wrap your text inline in a HTML {{{<span>}}} element use...
{{{
before » {{customClassName{inline content}}} « after
}}}
''Displays as:''
before » {{customClassName{inline content}}} « after
To wrap your text as a block level element -- a HTML {{{<div>}}} -- use line-breaks...
<html><pre>
before » {{customClassName{
box content
}}} « after
</pre></html>''Displays as:''
before » {{customClassName{
box content
}}} « after
/***
|''Name''|FancyMissingPlugin|
|''Version''|0.1.0|
|''Description''|Orders the output in the Missing tab by how missing|
|''Author''|Frederik Dohr|
|''License''|[[BSD|http://www.opensource.org/licenses/bsd-license.php]]|
!Usage
No explicit use require, just add the plugin and go to the Missing tab.
!Code
***/
//{{{
(function() {
// hijack getMissingLinks to sort by number of references
var getMissingLinks = TiddlyWiki.prototype.getMissingLinks;
TiddlyWiki.prototype.getMissingLinks = function(sortField) {
var results = getMissingLinks.apply(this, arguments);
var index = results.map(function(item, i) {
return {
title: results[i],
count: store.getReferringTiddlers(results[i]).length
};
});
return index.sort(function(a, b) {
return b.count - a.count;
}).map(function(item, i) {
return item.title;
});
};
})();
//}}}
#Install [[HideWhenPlugin|http://mptw.tiddlyspot.com/#HideWhenPlugin]]
#Modify the toolbar section in your ViewTemplate as below{{sub{
{{{
<div macro="showWhen readOnly">
<!--simple toolbar for visitors -->
<div macro='toolbar
closeTiddler
permalink'>
</div>
</div>
<div macro="hideWhen readOnly">
<!-- full toolbar for admin -->
<div macro='toolbar
closeTiddler
closeOthers
+editTiddler
deleteTiddler
permalink
references
jump'>
</div>
</div>
}}}
}}}
While {{{<<someMacros>>}}} work just like that, a TiddlyWiki macro may allow you to specify either simple parameters or named parameters.
!!!"""Simple Parameter Definition"""
Some macros only require a single parameter, e.g.:
{{{<<someMacro parameterValue>>}}}
For others, the macro author may have defined a fixed parameter sequence, e.g.:
{{{<<someMacro param1Value param2Value param2Value>>}}}
!!!"""Named Parameter Definition"""
Named parameters allow you to specify the values for predefined variables that are recognized by the macro by their name so that their sequence is of no importance, e.g.:
{{{<<someMacro namedParameter:yourValue>>}}}
In rare occasions, as with the [[newTiddler]] macro, a named parameter may be overloaded, e.g.:
{{{<<newTiddler tag:tag1 tag:"tag 2">>}}}
This will actually allow you to create a <<newTiddler label:"new tiddler" prompt:"Create a new tiddler with tags 'tag1' and '[[tag 2]]'..." tag:tag1 tag:"tag 2">> with both {{{tag1}}} and {{{tag 2}}} as its tags; i.e. the macro can handle multiple values passed down to it for the same named parameter {{{tag}}}.
!!!"""How TiddlyWiki Parses Parameters"""
For a visual reference as to how TiddlyWiki parses macro parameters, see [[ParamParser|http://paramparser.tiddlyspace.com/#ParamParserMacro]].
!!!"""Value Delimiters"""
For both, simple parameters or named parameters, you can use any of the following options to delimit parameter values:
;no quotes
:{{{<<someMacro param1 param2>>}}}
;single quotes
:{{{<<someMacro 'param1' 'param 2'>>}}}
:usually used for values containing spaces
;double quotes
:{{{<<someMacro "param1" "param 2">>}}}
:may be handy when you need to nest quotes
;double square brackets
:{{{<<someMacro [[Tiddler A]] [[Tiddler B]]>>}}}
:the most safe and visual way to reference tiddlers, but not necessarily
;double curly brackets
:{{{<<someMacro param:{{<code>}}>>}}}
:{{alert{Caution!}}} The {{{<code>}}} is actually [[evaluated as javascript|Evaluated Parameters]] and the result used as the parameter value.
!!!"""Empty Values"""
To pass down an empty value, i.e. to override an otherwise non-empty default value, you can pass down either of the following as the parameter value:
;empty single quotes
:{{{''}}}
;empty double quotes
:{{{""}}}
;empty double square brackets
:{{{[[]]}}}
/***
|Name|TSFeedback|
|Version|0.2.0|
|Author|Colm Britton|
|Type|plugin|
|Description|Generate a bookmarklet that will pop up a feedback form from html or wiki serialization|
!Usage
!!In TiddlyWiki....
To generate the bookmarklet, use:
{{{
<<tsfeedback "label">>
}}}
where label is the name you want the link to have.
It can accept ascii codes which make it possible to have labels like ''+ Feedback''
This plugin requires the @feedback space to be set up correctly.
!!In HtmlJavascript
Simply include the lines
{{{
/bags/common/tiddlers/jquery.js
/TSFeedbackPlugin
}}}
!Code
***/
//{{{
(function($) {
function feedback(place, spaceName, username, label) {
if(!label) {
label = "+ feedback";
}
var eventListener;
if(document.attachEvent) {
eventListener = "a.onreadystatechange=function()%7Bif(a.readyState=='complete' || a.readyState=='loaded')%7Ba.onreadystatechange='';loadBookmarker('http://feedback.tiddlyspace.com/feedback','" + spaceName + "',u);%7D%7D";
} else {
eventListener = "a.addEventListener('load',function()%7BloadBookmarker('http://feedback.tiddlyspace.com/feedback','" + spaceName + "',u);%7D,false);";
}
var bookmarklet = "javascript:(function(a,b,u)%7Ba=b.createElement('script');a.setAttribute('type','text/javascript');a.setAttribute('charset','UTF-8');a.setAttribute('src','http://feedback.tiddlyspace.com/feedback-loader.js');b.body.appendChild(a);u='" + username + "'||'Addtitle';" + eventListener + "%7D(null,document,null));";
var link = jQuery('<a/>')
.attr('href', bookmarklet)
.attr('title', "Please give us some feedback")
.addClass("tsfeedback-btn")
.html(label)
.appendTo(place);
}
if(typeof(version) !== "undefined" && version.title === "TiddlyWiki") {
config.macros.tsfeedback = {
handler: function(place, macroName, params, wikifier, paramString, tiddler) {
var container = $("<div />").appendTo(place)[0];
config.extensions.tiddlyweb.getStatus(function(status) {
var bookmarklet,
label = params[0] || document.title,
spacename = config.extensions.tiddlyspace.currentSpace.name,
username = config.extensions.tiddlyweb.username;
feedback(container, spacename, username, label);
});
}
};
} else {
$.getJSON("/status", function(data) {
if(data && data.username !== "GUEST") {
feedback(document.body, data.space.name, data.username);
$('head').append('<link rel="stylesheet" href="http://feedback.tiddlyspace.com/button.css" type="text/css" />');
}
});
}
})(jQuery);
//}}}
<<list filter [tag[common]]>>
See [[Plugins]]...
See [[store.reverseLookup()]]...
A TiddlyWiki is built on the following classes implemented in JavaScript...
;[[Tiddler.class]]
:» the atomic base elements in the TiddlyVerse -- tiddlers
;[[TiddlyWiki.class]]
:» the framework that brings [[tiddlers|Tiddler]] to life
;[[Story.class]]
:» manages the display area where TiddlyWiki renders tiddlers
;[[Wikifier.class]]
:» manages conversion of representations, e.g. [[TiddlyWiki Markup]]@tiddlywiki to [[HTML]]
{{annotation{
''Note:'' To be able to do this in TiddlySpace you will need to enable [[Evaluated Parameters]].
}}}
The resumeNotifications method of a [[TiddlyWiki class|TiddlyWiki]] object resumes issuing notifications after [[suspendNotifications|TiddlyWiki.prototype.suspendNotifications]] is called. If [[suspendNotifications|TiddlyWiki.prototype.suspendNotifications]] was called multiple times, this method must be called an equal number of times in order for notifications to occur. This method does not expect any parameters.
|''Name:''|YourSearchPlugin|
|''Version:''|2.1.6 (2012-04-19)|
|''Summary:''|Search your TiddlyWiki with advanced search features such as result lists, tiddler preview, result ranking, search filters, combined searches and many more.|
|''Source:''|http://tiddlywiki.abego-software.de/#YourSearchPlugin|
|''Twitter:''|[[@abego|https://twitter.com/#!/abego]]|
|''GitHub:''|https://github.com/abego/YourSearchPlugin|
|''Author:''|UdoBorkowski (ub [at] abego-software [dot] de)|
|''License:''|[[BSD open source license|http://www.abego-software.de/legal/apl-v10.html]]|
!About YourSearch
YourSearch gives you a bunch of new features to simplify and speed up your daily searches in TiddlyWiki. It seamlessly integrates into the standard TiddlyWiki search: just start typing into the 'search' field and explore!
!Description
The [[tagging]] macro lists all the tiddlers for a specified tag.
!Usage
{{{
<<tagging [[TagName]]>>
}}}
!Parameters
Pass the name of the tag for which you want the tagging list as the first parameter to the macro.
Optionally you can use a second, named parameter called {{{sep}}} to define a minimalistic separator displayed between each list item.
!Example
{{{
<<tagging [[Core Macros]]>>
}}}
<<tagging [[Core Macros]]>>
!CSS Separator
Instead of using the {{{sep}}} parameter, you are better advised to wrap the {{{<<tagging>>}}} macro in a custom class along with desired css rules for it in your StyleSheet, e.g.:
{{{
.viewer .listWrapper li {
margin-top:1px;
background:[[ColorPalette::TertiaryPale]];
list-style-type:none;
padding:0;
}
.viewer .listWrapper li .tiddlyLink {
display:block;
padding:0 4px;
}
.viewer .listWrapper li.listTitle {
background:transparent;
}
}}}
Then use the custom class, here {{{.listWrapper}}}, around your macro like this...
{{{
{{listWrapper{<<tagging [[Core Macros]]>>}}}
}}}
{{listWrapper{
<<tagging [[Core Macros]]>>
}}}
The layout of a TiddlyWiki is defined in shadow tiddlers which serve as templates that contain HTML...
;[[PageTemplate|PageTemplate...]]
:» the overall page layout
;[[ViewTemplate|ViewTemplate...]]
:» the layout for an individual tiddler when viewing it |
;[[EditTemplate|EditTemplate...]]
:» the layout for a tiddler when editing it
''Note'': The commands in a tiddler toolbar are defined in a shadow tiddler called [[ToolbarCommands]].
![[Visual Layout|Layout]]
<<tiddler "Layout">>
![[TiddlySpace Layout]]
<<tiddler "TiddlySpace Layout">>
!Summary
This <<tag global>> function creates a DOM text node.
!Signature
{{{TiddlyWiki.prototype.createTiddlyText = function(parent, text) {} }}}
!Returns
DOM reference: to the created text node
!Arguments
;1. (DOM reference) parent
:the DOM element where the text node will be placed
;2. (string) text
:the text content to be added to ''parent''
!Example
{{{
createTiddlyText(foo,'bar');
}}}
''outputs:'' "bar" in ''foo''
!Summary
The TiddlyWiki core code is stored and developed as a collection of individual files, which makes it more manageable. A recipe file determines which code files, tiddlers and HTML components to put together - somewhat like a jigsaw puzzle.
!Cook
[[Cook]] then reads the recipe file and generates a new TiddlyWiki document from it.
Recipes can reference one another, making it straightforward to create a multiple variants of TiddlyWiki at one time.
!Example
The default [[default recipe file|http://svn.tiddlywiki.org/Trunk/core/tiddlywiki.html.recipe]] for TiddlyWiki:
{{{
template: html/tiddlywiki.template.html
recipe: tiddlers/split.recipe
recipe: js/split.recipe
copy: java/TiddlySaver.jar
}}}
!!External Resources
* [[Recipe Files|http://trac.tiddlywiki.org/wiki/RecipeFiles]]
!!See Also
* [[Cook]]
* [[Ginsu]]
* [[Chef]]
/***
|''Name''|RevisionsCommandPlugin|
|''Description''|provides access to tiddler revisions|
|''Author''|FND|
|''Contributors''|Martin Budden|
|''Version''|0.3.3|
|''Status''|@@beta@@|
|''Source''|http://svn.tiddlywiki.org/Trunk/association/plugins/RevisionsCommandPlugin.js|
|''CodeRepository''|http://svn.tiddlywiki.org/Trunk/association/plugins/|
|''License''|[[BSD|http://www.opensource.org/licenses/bsd-license.php]]|
|''CoreVersion''|2.6.0|
|''Keywords''|serverSide|
!Usage
Extend [[ToolbarCommands]] with {{{revisions}}}.
!Revision History
!!v0.1 (2009-07-23)
* initial release (renamed from experimental ServerCommandsPlugin)
!!v0.2 (2010-03-04)
* suppressed wikification in diff view
!!v0.3 (2010-04-07)
* restored wikification in diff view
* added link to side-by-side diff view
!To Do
* strip server.* fields from revision tiddlers
* resolve naming conflicts
* i18n, l10n
* code sanitizing
* documentation
!Code
***/
//{{{
(function($) {
jQuery.twStylesheet(".diff { white-space: pre, font-family: monospace }",
{ id: "diff" });
var cmd = config.commands.revisions = {
type: "popup",
hideShadow: true,
text: "revisions",
tooltip: "display tiddler revisions",
revTooltip: "", // TODO: populate dynamically?
loadLabel: "loading...",
loadTooltip: "loading revision list",
selectLabel: "select",
selectTooltip: "select revision for comparison",
selectedLabel: "selected",
compareLabel: "compare",
linkLabel: "side-by-side view",
revSuffix: " [rev. #%0]",
diffSuffix: " [diff: #%0 #%1]",
dateFormat: "YYYY-0MM-0DD 0hh:0mm",
listError: "revisions could not be retrieved",
handlePopup: function(popup, title) {
title = this.stripSuffix("rev", title);
title = this.stripSuffix("diff", title);
var tiddler = store.getTiddler(title);
var type = _getField("server.type", tiddler);
var adaptor = new config.adaptors[type]();
var limit = null; // TODO: customizable
var context = {
host: _getField("server.host", tiddler),
workspace: _getField("server.workspace", tiddler)
};
var loading = createTiddlyButton(popup, cmd.loadLabel, cmd.loadTooltip);
var params = { popup: popup, loading: loading, origin: title };
adaptor.getTiddlerRevisionList(title, limit, context, params, this.displayRevisions);
},
displayRevisions: function(context, userParams) {
removeNode(userParams.loading);
if(context.status) {
var callback = function(ev) {
var e = ev || window.event;
var revision = resolveTarget(e).getAttribute("revision");
context.adaptor.getTiddlerRevision(tiddler.title, revision, context,
userParams, cmd.displayTiddlerRevision);
};
var table = createTiddlyElement(userParams.popup, "table");
for(var i = 0; i < context.revisions.length; i++) {
var tiddler = context.revisions[i];
var row = createTiddlyElement(table, "tr");
var timestamp = tiddler.modified.formatString(cmd.dateFormat);
var revision = tiddler.fields["server.page.revision"];
var cell = createTiddlyElement(row, "td");
createTiddlyButton(cell, timestamp, cmd.revTooltip, callback, null,
null, null, { revision: revision });
cell = createTiddlyElement(row, "td", null, null, tiddler.modifier);
cell = createTiddlyElement(row, "td");
createTiddlyButton(cell, cmd.selectLabel, cmd.selectTooltip,
cmd.revisionSelected, null, null, null,
{ index:i, revision: revision, col: 2 });
cmd.context = context; // XXX: unsafe (singleton)!?
}
} else {
$("<li />").text(cmd.listError).appendTo(userParams.popup);
}
},
revisionSelected: function(ev) {
var e = ev || window.event;
e.cancelBubble = true;
if(e.stopPropagation) {
e.stopPropagation();
}
var n = resolveTarget(e);
var index = n.getAttribute("index");
var col = n.getAttribute("col");
while(!index || !col) {
n = n.parentNode;
index = n.getAttribute("index");
col = n.getAttribute("col");
}
cmd.revision = n.getAttribute("revision");
var table = n.parentNode.parentNode.parentNode;
var rows = table.childNodes;
for(var i = 0; i < rows.length; i++) {
var c = rows[i].childNodes[col].firstChild;
if(i == index) {
if(c.textContent) {
c.textContent = cmd.selectedLabel;
} else {
c.text = cmd.selectedLabel;
}
} else {
if(c.textContent) {
c.textContent = cmd.compareLabel;
} else {
c.text = cmd.compareLabel;
}
c.onclick = cmd.compareSelected;
}
}
},
compareSelected: function(ev) {
var e = ev || window.event;
var n = resolveTarget(e);
var context = cmd.context;
context.rev1 = n.getAttribute("revision");
context.rev2 = cmd.revision;
context.tiddler = context.revisions[n.getAttribute("index")];
context.format = "unified";
context.adaptor.getTiddlerDiff(context.tiddler.title, context,
context.userParams, cmd.displayTiddlerDiffs);
},
displayTiddlerDiffs: function(context, userParams) {
var tiddler = context.tiddler;
tiddler.title += cmd.diffSuffix.format([context.rev1, context.rev2]);
tiddler.text = "{{diff{\n" + context.diff + "\n}}}";
tiddler.tags = ["diff"];
tiddler.fields.doNotSave = "true"; // XXX: correct?
if(!store.getTiddler(tiddler.title)) {
store.addTiddler(tiddler);
}
var src = story.getTiddler(userParams.origin);
var tiddlerEl = story.displayTiddler(src, tiddler);
var uri = context.uri.replace("format=unified", "format=horizontal");
var link = $('<a target="_blank" />').attr("href", uri).text(cmd.linkLabel);
$(".viewer", tiddlerEl).prepend(link);
},
displayTiddlerRevision: function(context, userParams) {
var tiddler = context.tiddler;
tiddler.title += cmd.revSuffix.format([tiddler.fields["server.page.revision"]]);
tiddler.fields.doNotSave = "true"; // XXX: correct?
if(!store.getTiddler(tiddler.title)) {
store.addTiddler(tiddler);
}
var src = story.getTiddler(userParams.origin);
story.displayTiddler(src, tiddler);
},
stripSuffix: function(type, title) {
var str = cmd[type + "Suffix"];
var i = str.indexOf("%0");
i = title.indexOf(str.substr(0, i));
if(i != -1) {
title = title.substr(0, i);
}
return title;
}
};
var _getField = function(name, tiddler) {
return tiddler.fields[name] || config.defaultCustomFields[name];
};
})(jQuery);
//}}}
FAQ about using the [[HideWhenPlugin from MPTW|http://mptw.tiddlyspot.com/#HideWhenPlugin]].
!!Using ~HideWhen to do conditional toolbars based on user name
Replace the normal toolbar comand in the ViewTemplate tiddler with the following:
{{{
<div class='toolbar'
macro="showWhen config.options.txtUserName == '~MyName' ">
<span macro='toolbar editTiddler closeOthers closeTiddler'></span>
</div>
<div class='toolbar'
macro="showWhen config.options.txtUserName !='~MyName' ">
<span macro='toolbar closeOthers closeTiddler'></span>
</div>
}}}
!!Using ~HideWhen to do conditional fields based on tags
Let suppose you have a some tiddlers tagged with "friend" and you'd like to use some custom field to maintain some information about them, say their favourite food.
In the ViewTemplate:
{{{
<div macro="showWhen tiddler.tags.contains('friend')">
Favourite food: <span macro="view favouritefood"></span>
</div>
}}}
In the EditTemplate:
{{{
<div macro="showWhen tiddler.tags.contains('friend')">
Favourite food: <span macro="edit favouritefood"></span>
</div>
}}}
Now you can view and edit your friends' favourite food.
If you wish to have the same field show for your business contacts as well as your friends then you would do it like this:
In the EditTemplate:
{{{
<div macro="showWhen tiddler.tags.containsAny(['friend','contact'])">
Favourite food: <span macro="edit favouritefood"></span>
</div>
}}}
In the ViewTemplate:
{{{
<div macro="showWhen tiddler.tags.containsAny(['friend','contact'])">
Favourite food: <span macro="view favouritefood"></span>
</div>
}}}
Note that custom fields must be lower case. See http://trac.tiddlywiki.org/ticket/356 for details.
!!Making editable custom fields appear on a new tiddler
Create a customized newTiddler button:
{{{
<<newTiddler
label:'Add Training'
tag:'Training'
title:'New Training'
>>
}}}
Place the following in the EditTemplate:
{{{
<div macro="showWhen
tiddler.tags.contains('Training') ||
tiddler.title == 'New Training'">
[[TrainingTemplateEdit]]
</div>
}}}
Create a TrainingTemplateEdit tiddler to put all of your desired custom fields in.
Placing each collection of custom fields in a separate tiddler helps cut down on the confusion of having multiple different things going on in your ViewTemplate & EditTemplate, as well as making it easier to safe guard against accidentally deleting or over writing one of them and losing everything.
!Summary
//''Emphasizing''// @@text@@ __is easy__!
!Markup
| !Style | !Markup |h
|<html><b><i>bold</i></b></html>|{{{''bold''}}} -- two single-quotes|
|//italics//|{{{//italics//}}}|
|<html><b><i>bold italics</i></b></html>|{{{''//bold italics//''}}}|
|__underline__|{{{__underline__}}}|
|--strikethrough--|{{{--Strikethrough--}}}|
|super^^script^^|{{{super^^script^^}}}|
|sub~~script~~|{{{sub~~script~~}}}|
|@@Highlight@@|{{{@@Highlight@@}}}|
|{{{plain text}}}|<html><code>{{{PlainText No ''Formatting''}}}</code></html>|
|/%this text will be invisible%/hidden text|{{{/%this text will be invisible%/}}}|
|foo -- bar|{{{use two dashes -- between two words to create an Em dash}}}|
* short walk through the code design, for reading the source code
* it would be great to have a quick walk through the TW5 high level design and to give people like me some guidance in how to start reading TW5 code.
* A tutorial on how to write TW5 plugins
* Probably TW5 design/code overview will be spread across several hangouts. It would be great to annotate the recording and eventually pull those pieces together to produce a video lecture about TW5 design/implementation/extension.
* Progress to beta
* Tiddler link formatting
* Tiddler state for reveal widget etc.
* Transclude widget being split into tiddler and transclude widgets
* Tagged entries in ViewTemplate
<<tiddler "Suppressing Formatting">>
See...
* [[How can I display my UserName somewhere?]]
* [[How can I edit my UserName?]]
See TiddlyLink...
To link to a tiddler named 'Meeting with Alice', you'd type <nowiki>[[Meeting with Alice]]</nowiki>
----
Does not work if you want to link from one space to another using a permalink :
{{{http://tiddlywiki.org/#[[How do I link to a tiddler without a wiki word name]]}}}
{{{[[Link Text|http://tiddlywiki.org/#«escape»[[«escape»How do I link to a tiddler without a wiki word name«escape»]]«escape»]]}}}
will not work.
----
/***
|''Name''|BinaryTiddlersPlugin|
|''Description''|renders base64-encoded binary tiddlers as images or links|
|''Author''|FND|
|''Version''|0.3.2|
|''Status''|@@beta@@|
|''Source''|http://svn.tiddlywiki.org/Trunk/association/plugins/BinaryTiddlersPlugin.js|
|''License''|[[BSD|http://www.opensource.org/licenses/bsd-license.php]]|
|''CoreVersion''|2.5|
!Code
***/
//{{{
(function($) {
"use strict";
var ctfield = "server.content-type";
var plugin = config.extensions.BinaryTiddlersPlugin = {
isWikiText: function(tiddler) {
var ctype = tiddler.fields[ctfield];
if(ctype) {
if (ctype === 'text/x-tiddlywiki') {
return true;
}
return !this.isBinary(tiddler) && !this.isTextual(ctype);
} else {
return true;
}
},
// NB: pseudo-binaries are considered non-binary here
isBinary: function(tiddler) {
var ctype = tiddler.fields[ctfield];
return ctype ? !this.isTextual(ctype) : false;
},
isTextual: function(ctype) {
return ctype.indexOf("text/") === 0
|| this.endsWith(ctype, "+xml")
|| ctype === 'application/json'
|| ctype === 'application/javascript';
},
endsWith: function(str, suffix) {
return str.length >= suffix.length &&
str.substr(str.length - suffix.length) === suffix;
},
isLink: function(tiddler) {
return this.isBinary(tiddler) && tiddler.text.indexOf("<html>") !== -1;
}
};
// Disable edit for linked tiddlers (for now)
// This will be changed to a GET then PUT
config.commands.editTiddler.isEnabled = function(tiddler) {
var existingTest = config.commands.editTiddler.isEnabled;
if (existingTest) {
return existingTest && !plugin.isLink(tiddler);
} else {
return !plugin.isLink(tiddler);
}
};
// hijack text viewer to add special handling for binary tiddlers
var _view = config.macros.view.views.wikified;
config.macros.view.views.wikified = function(value, place, params, wikifier,
paramString, tiddler) {
var ctype = tiddler.fields["server.content-type"];
if(params[0] === "text" && ctype && ctype !== 'text/x-tiddlywiki' &&
!tiddler.tags.contains("systemConfig") && !plugin.isLink(tiddler)) {
var el;
if(plugin.isBinary(tiddler)) {
var uri = "data:%0;base64,%1".format([ctype, tiddler.text]); // TODO: fallback for legacy browsers
if(ctype.indexOf("image/") === 0) {
el = $("<img />").attr("alt", tiddler.title).attr("src", uri);
} else {
el = $("<a />").attr("href", uri).text(tiddler.title);
}
} else {
el = $("<pre />").text(tiddler.text);
}
el.appendTo(place);
} else {
_view.apply(this, arguments);
}
};
// hijack edit macro to disable editing of binary tiddlers' body
var _editHandler = config.macros.edit.handler;
config.macros.edit.handler = function(place, macroName, params, wikifier,
paramString, tiddler) {
if(params[0] === "text" && plugin.isBinary(tiddler)) {
return false;
} else {
_editHandler.apply(this, arguments);
}
};
// hijack autoLinkWikiWords to ignore binary tiddlers
var _autoLink = Tiddler.prototype.autoLinkWikiWords;
Tiddler.prototype.autoLinkWikiWords = function() {
return plugin.isWikiText(this) ? _autoLink.apply(this, arguments) : false;
};
}(jQuery));
//}}}
!Summary
TiddlyWiki provides flexible means to output tables.
!!"""Simple Tables"""
{{{
|North West|North|North East|
|West|Here|East|
|South West|South|South East|
}}}
|North West|North|North East|
|West|Here|East|
|South West|South|South East|
!!"""Cell Formatting"""
*Insert a space before cell content to right justify cell
*Insert a space after cell content to left justify cell
*Insert spaces before and after cell content to centre justify cell
*Insert an exclamation mark ({{{!}}}) as the first non-space character of a cell to turn it into a header cell
{{{
|!First column|!Second column|!Third column|
|left | centre | right|
}}}
|!First column|!Second column|!Third column|
|left | centre | right|
!!"""Table Headers and Footers"""
* Mark a table row as a header by adding an 'h' to the end
* Mark a table row as a footer by adding an 'f' to the end
{{{
|NW|N|NE|h
|W|X|E|
|SW|S|SE|f
}}}
|NW|N|NE|h
|W|X|E|
|SW|S|SE|f
Use an exclamation mark to turn an individual cell into a header cell of type {{{<th}}}...
{{{
| NW| !N |NE |h
| !W| X |!E |
| SW| !S |SE |f
}}}
| NW| !N |NE |h
| !W| X |!E |
| SW| !S |SE |f
!!"""Table Caption"""
A caption can be added to a table by adding a {{{c}}} after the last column either before the main table...
{{{
|A caption above the table|c
|North West|North|North East|
|West|Here|East|
|South West|South|South East|
}}}
|A caption above the table|c
|North West|North|North East|h
|West|Here|East|
|South West|South|South East|
or after the main table...
{{{
|North West|North|North East|
|West|Here|East|
|South West|South|South East|
|A caption below the table|c
}}}
|North West|North|North East|h
|West|Here|East|
|South West|South|South East|
|A caption below the table|c
!!"""Merging Table Cells"""
Merge a cell horizontally with the one to its right using greater-than {{{>}}}...
{{{
|North West|North|North East|
|>|>|West and Here and East|
|South West|South|South East|
}}}
|North West|North|North East|
|>|>|West and Here and East|
|South West|South|South East|
Merge a cell vertically with the one above using a tilde {{{~}}}...
{{{
|Westerly|North|North East|
|~|Here|East|
|~|South|South East|
}}}
|Westerly|North|North East|
|~|Here|East|
|~|South|South East|
!!"""CSS Formatting for Tables"""
A CSS class can be added to an entire table using a special first row that ends with a {{{k}}}...
{{{
|myClass|k
|North West|North|North East|
|West|Here|East|
|South West|South|South East|
}}}
Use your StyleSheet tiddler to define the desired styles.
CSS properties can also be added to individual table cells by appending the CSS syntax directly after the delimiting pipe {{{|}}}.
{{{
|color:red; North West|opacity:0.5;North|North East|
|color(green):West|Here|East|
|South West|South|South East|
}}}
|color:red; North West|opacity:0.5;North|North East|
|color(green):West|Here|East|
|South West|South|South East|
!!"""Alternating Row Colors"""
TiddlyWiki automatically assigns the classes {{{oddRow}}} and {{{evenRow}}} to table row elements {{{<TR>}}}. These can then be styled using the StyleSheet tiddler:
{{{
.viewer tr.oddRow { background-color: #fff; }
.viewer tr.evenRow { background-color: #ffe; }
}}}
A reference of all [[TiddlyWiki Core|Dev.Core]] functions...
{{functions{<<list filter [tag[Function]][tag[function]][sort[title]]>>}}}<<listfiltr>>
[[Unit tests|http://en.wikipedia.org/wiki/Unit_testing]] increase confidence in the quality and reliability of source code.
From release 2.5, The TiddlyWiki core uses the [[QUnit|http://docs.jquery.com/QUnit]] framework (gradually transitioning from [[JSSpec|http://jania.pe.kr/aw/moin.cgi/JSSpec]]).
The [[test suite|http://trac.tiddlywiki.org/browser/Trunk/core/test/recipes/tests.html.recipe]] [[Dev:Recipe|recipe]] provides a simple way to get started.
Individual tests are located in the [[tests directory|http://trac.tiddlywiki.org/browser/Trunk/core/test/tests/]].
These tests can also be see in action in the @test space
!Description
The [[version]] macro displays the version of a TiddlyWiki.
{{annotation{
''Note:'' Old TiddlyWiki versions can be found in the [[Archive]].
}}}
!Usage
{{{<<version>>}}}
<<version>>
Unless you're delighted with the default theme you can make some quick changes by generating a new random color palette, hit this button to cycle through some alternatives.
<<RandomColorPaletteButton saturation_pale:0.67 saturation_light:0.53
saturation_mid:0.43 saturation_dark:0.06 pale:0.99 light:0.85 mid:0.5 dark:0.31>>
You can also change the look and feel completely by installing a new theme. To do this, find one you like in the @themes space, note down the name, and include it in this space by going to the space menu. You can reach the space menu by clicking on the blue and pink circle at the top-right of the page and chooshing "THIS SPACE". Here are a few to check out:
* @pip
* @caspian-ii
* @basalt
* @simplicity
* @cheesecake
* @jelly-doughnut
(//Note that if you are using a custom TiddlySpace install, these themes may not be present.//)
[[TiddlyHoster|http://hoster.peermore.com]] provides TiddlyWeb based hosting for your [[tiddlers|Tiddler]]. It provides more flexibility than TiddlySpace in terms of access control which, however, it does not live up to in terms of presentation and user engagement.
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
version="1.1"
width="14pt"
height="14pt"
viewBox="918 510 14 14"
id="svg3070">
<metadata
id="metadata3089">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<defs
id="defs3072">
<radialGradient
cx="0"
cy="0"
r="1"
id="Gradient"
gradientUnits="userSpaceOnUse">
<stop
id="stop3075"
style="stop-color:#ffffff;stop-opacity:1"
offset="0" />
<stop
id="stop3077"
style="stop-color:#2b2b2b;stop-opacity:1"
offset="1" />
</radialGradient>
<radialGradient
id="Obj_Gradient"
xlink:href="#Gradient"
gradientTransform="matrix(11.473944,0,0,11.473944,922.3752,513.7837)" />
</defs>
<g
id="g3080"
style="fill:none;stroke:none">
<g
id="g3082">
<path
d="m 929.6952,512.9018 c -2.5384,-2.53843 -6.654,-2.53843 -9.1924,0 -2.5384,2.5384 -2.5384,6.654 0,9.19238 2.5384,2.53839 6.654,2.53839 9.1924,0 2.5384,-2.53838 2.5384,-6.65398 0,-9.19238 m -4.5962,2.8407 2.07733,-2.07734 1.75547,1.75549 -2.0773,2.07735 2.0773,2.07732 -1.75547,1.75548 -2.07733,-2.07732 -2.07733,2.07732 -1.75547,-1.75548 2.0773,-2.07732 -2.0773,-2.07735 1.75547,-1.75549 z"
id="path3084"
style="fill:url(#Obj_Gradient)" />
<path
d="m 927.61447,515.38354 a 4.51205,4.2590378 0 1 1 -9.0241,0 4.51205,4.2590378 0 1 1 9.0241,0 z"
transform="matrix(1.0218069,0,0,1.0462046,-18.063694,-21.648443)"
id="path2394"
style="fill:#000000;fill-opacity:0;fill-rule:evenodd;stroke:none;stroke-width:5;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
</g>
</g>
</svg>
!Summary
The shadow tiddler PageTemplate contains the HTML markup that defines the overall layout and structure of TiddlyWiki. Here you can change the main content areas in your TiddlyWiki.
!Default Contents
<!--{{{-->
<div class='header'
macro='gradient vert [[ColorPalette::PrimaryLight]] [[ColorPalette::PrimaryMid]]'>
<div class='headerShadow'>
<span class='siteTitle' refresh='content' tiddler='SiteTitle'></span>
<span class='siteSubtitle' refresh='content' tiddler='SiteSubtitle'></span>
</div>
<div class='headerForeground'>
<span class='siteTitle' refresh='content' tiddler='SiteTitle'></span>
<span class='siteSubtitle' refresh='content' tiddler='SiteSubtitle'></span>
</div>
</div>
<div id='mainMenu' refresh='content' tiddler='MainMenu'></div>
<div id='sidebar'>
<div id='sidebarOptions' refresh='content' tiddler='SideBarOptions'></div>
<div id='sidebarTabs' refresh='content' force='true' tiddler='SideBarTabs'></div>
</div>
<div id='displayArea'>
<div id='messageArea'></div>
<div id='tiddlerDisplay'></div>
</div>
<!--}}}-->
@@Please do not modify this tiddler; it was created automatically upon space creation.@@
!Summary
This <<tag global>> function creates a [[button|createTiddlyButton()]] that presents an error to the user in the tiddler contents.
!Signature
{{{createTiddlyError(place, title, text){}}}}
!Returns
undefined
!Arguments
;1. (DOM reference) place
:the DOM element where the error button will be placed
;2. (string) title
:the error button label
;3. (string) text
:the text displayed when the error button is clicked
!Example
{{{
createTiddlyError(
place,
config.messages.macroError.format([macro]),
config.messages.macroErrorDetails.format([macro, ex.toString() ])
);
}}}
''outputs:'' a popup button showing a macro error and exception details in a popup when clicked
!Description
The [[plugins]] macro outputs the plugins manager...
!Usage
{{{
<<plugins>>
}}}
<<plugins>>
A sections in a tiddler refers to all the content starting from a [[heading|TiddlyWiki Markup]] up until the next heading or the end of the tiddler text.
{{annotation{
''Important'': Sections do __not__ entail subsections when accessed programatically.
}}}
!Example
Assume, there is a tiddler called ''"""Some Tiddler"""'' containing the following text...
{{{
!Section 1
Some introductory text.
!!Section 1.1
Some more details.
}}}
Here, the section ''Section 1'' entails all the content up until heading ''Section 1.1''.
You can [[reuse|Transclusion]] the content of ''Section 1'' using the [[tiddler macro|tiddler]]:
{{{
<<tiddler "Some Tiddler##Section 1">>
}}}
Displayed as:
<<<
Some introductory text.
<<<
Transcluding ''Section 1.1'' works the same way...
{{{
<<tiddler "Some Tiddler##Section 1.1>>
}}}
Displayed as:
<<<
Some more details.
<<<
!Summary
This prototype function of the [[Story.class]] displays all tiddlers listed in the [[DefaultTiddlers]] shadow tiddler in the story column calling [[story.displayTiddlers()]] on each one of them.
{{annotation{
''Note:'' Any tiddlers already displayed in the story will persist.
}}}
!Signature
{{{Story.prototype.displayDefaultTiddlers = function()}}}
!Returns
nothing
!Arguments
none
!Example
none needed
There are a lot of interesting people using ~TiddlySpace that you might like to keep track of and interact with. There are a number of ways of doing this.
If you see a number in the speech bubble in one of your tiddlers, it means that someone is writing about the same thing as you. You can find out what they're saying by clicking on it. Likewise, if you see something interesting in someone else's space, you can respond to it and write up your own thoughts on the subject by clicking "Reply to this tiddler".
Additionally, if you find anyone interesting, or you find an interesting looking space and you'd like to know when it's changed, you can "follow" that space. To do this, simply create a tiddler with the title: {{{@space-name}}} and tag it {{{follow}}}. If you want, you can store some notes about that space in the body of the tiddler.
If you then want to know what happening, simply [[include|How do I include/exclude spaces?]]@docs the @tivity space and then visit your activity stream at [[/activity|/activity]], or just visit the @tapas space directly.
!Not sure who to follow?
Here's a few suggestions:
* @fnd
* @cdent
* @pmario
* @bengillies
* @dickon
[[Osmosoft|http://osmosoft.com]] is the open source innovation arm of [[BT|http://www.bt.com]].
Osmosoft helps promote [[Open Source|http://en.wikipedia.org/wiki/Open_source]] within [[BT]], ensuring that benefits from as well as obligations to consuming and contributing to [[Open Source|http://en.wikipedia.org/wiki/Open_source]] projects are well understood.
Osmosift helps drive innovation, leading several popular projects including [[TiddlyWiki]], [[TiddlyWeb]] and of course [[TiddlySpace]].
!Description
The [[permaview]] macro provides a button which outputs a URL to all open tiddlers in the browsers' address bar.
!Usage
{{{
<<permaview>>
}}}
<<permaview>>
/*{{{*/
body {
font-size: 1em;
font-family: helvetica, arial, sans-serif;
background-color: #fff;
color: [[ColorPalette::Foreground]];
}
body ul { margin: 0; }
#popup {
background-color: [[ColorPalette::TertiaryPale]];
}
#popup.confirmationPopup, .followList {
font-size: 0.8em;
padding: 1em;
border: solid 1px [[ColorPalette::SecondaryMid]];
background-color: [[ColorPalette::SecondaryPale]];
}
.followList .listTitle {
text-decoration: underline;
}
#popup .followTiddlersList a {
display: inline;
padding: 0;
}
#popup li a {
color: [[ColorPalette::PrimaryMid]];
font-weight: bold;
}
#popup li a:hover {
color: [[ColorPalette::PrimaryPale]];
background: [[ColorPalette::PrimaryMid]];
}
#popup li.listTitle {
border-bottom: 1px solid #000;
font-weight: bold;
margin-bottom: 10px;
}
#popup.followList {
margin-left: 50px;
margin-top: -30px;
}
.followTiddlersList .label {
display: block;
left: 10px;
top: 0px;
line-height: 16px;
position: relative;
}
#popup .followTiddlersList .siteIcon{
height: auto;
}
#popup .followTiddlersList li{
clear: both;
display: block;
height: 48px;
margin-bottom: 8px;
position: relative;
}
#popup .followTiddlersList a{
display: inline;
}
#displayArea {
margin: 0;
top: 0px;
left: 0px;
width: 100%;
position: relative;
}
.revisionCloak {
position: absolute;
position: fixed !important;
height: 100%;
width: 100%;
top: 0;
left: 0;
border: 0;
margin: 0;
padding: 0;
opacity: 0.5;
filter: alpha(opacity=50);
background-color: #000;
}
/* *** Header *** */
.header {
position: relative;
background-color: [[ColorPalette::PrimaryMid]];
_width: 100%; /* ie 6 demands */
}
.headerForeground {
background-color: [[ColorPalette::PrimaryMid]];
float: left;
margin: 24px 16px 0px 72px;
padding: 0;
position: relative;
top: 0;
_width: 70%; /*ie6: needed for the background to actually be transparent*/
_background-color: transparent; /*ie6: needed to show the search box*/
}
.clearFloat {
clear: both;
}
#contentWrapper {
position: relative;
padding-top: 1px;
top: -1px;
}
#tiddlerDisplay {
_position: relative; /* ie 6*/
}
.siteTitle {
clear: both;
display: block;
font-size: 32px;
font-weight: bold;
line-height: 32px;
}
.siteSubtitle {
display: block;
font-size: 14px;
height: 16px;
margin-bottom: 8px;
}
#sidebarSearch {
padding: 0;
position: absolute;
right: 80px;
top: 8px;
width: 176px;
}
#sidebarSearch .txtOptionInput {
width: 100%;
margin-top: 5px;
_color: #bbb; /* ie6 danger */
}
#sidebarSearch .txtOptionInput:focus {
color: #000;
}
#sidebarSearch .searchButton {
display: none;
}
/* *** Menu Bar *** */
#mainMenu {
position: static;
text-align: left;
margin-left: 72px;
float: left;
width: auto;
padding: 0;
font-size: 1em;
line-height: normal;
}
#mainMenu a {
color: #fff;
padding: 8px;
font-size: 0.9em;
margin-right: 16px;
}
#mainMenu a:hover {
background-color: [[ColorPalette::PrimaryMid]];
color: [[ColorPalette::Background]]
}
#sidebarOptions {
margin-right: 72px;
float: right;
font-size: 1.1em;
line-height: 1.6em;
min-height: 1em;
padding-top: 0;
}
#sidebarOptions a {
margin-right: 8px;
}
.confirmationPopup .button,
#sidebarOptions .button {
cursor: pointer;
line-height: 1.4em;
text-align: center;
margin-right: 8px;
margin-left:-2px;
}
.confirmationPopup .button {
font-size: 0.9em;
padding: 2px;
}
#sidebarOptions .button {
font-size: 0.7em;
float: left;
width: 80px;
padding: 0px;
color: #fff;
}
.confirmationPopup a.button,
#sidebarOptions a {
border: none;
margin: 0 0.2em;
padding: 0.6em 0.25em;
display: inline;
color: #666;
}
.confirmationPopup a.button:hover,
#sidebarOptions a:hover {
color: #000;
}
.confirmationPopup a.button:active,
#sidebarOptions a:active {
border: solid 1px [[ColorPalette::PrimaryMid]];
background-color: #fff;
background: -webkit-gradient( linear, left bottom, left top, color-stop(0.1,rgb(200,200,200)), color-stop(1, rgb(100,100,100)));
background: -moz-linear-gradient(center bottom , rgb(200,200,200) 10%,rgb(100,100,100) 100%) repeat scroll 0 0 transparent;
}
/* *** Sidebar *** */
#sidebar .wizard table {
margin: 0px;
}
.tabContents .listTitle:first-child {
margin-top: 0px;
}
#menuBar {
background: [[ColorPalette::PrimaryLight]];
left: 0;
right: 0;
position: relative;
margin: 0;
padding: 0.5em 0 0.5em 0;
min-height: 1em;
overflow: hidden;
_width: 100%; /* for ie 6 */
}
#sidebarOptions a.button:hover {
color: [[ColorPalette::PrimaryPale]];
background: [[ColorPalette::PrimaryMid]];
}
#tiddlerDisplay, #searchResults {
margin: 16px 448px 0 72px;
}
#sidebarTabs {
position: absolute;
right: 72px;
width: 352px;
top: 0;
}
#sidebarTabs .tabsetWrapper .tabset {
width: 87px;
border-top: 1px solid [[ColorPalette::PrimaryPale]];
border-left: 1px solid [[ColorPalette::PrimaryPale]];
border-bottom: 1px solid [[ColorPalette::PrimaryPale]];
height: auto;
float: left;
word-wrap: break-word;
top: 0;
padding: 0;
}
#sidebarTabs .tabsetWrapper .tabContents {
background-color: [[ColorPalette::PrimaryPale]];
border: 3px solid [[ColorPalette::PrimaryMid]];
width: 242px;
_width: 238px;
left: -3px;
_left: -5px;
position: relative;
min-height: 34em;
padding: 8px;
font-size: 0.8em;
}
/* ---- Side style --- */
#sidebarTabs .tabsetWrapper .tabset .tab {
font-size: 0.9em;
padding: 0.7em 8px 0.5em;
color: #fff;
background: [[ColorPalette::PrimaryLight]];
border: none;
line-height: 16px;
position: relative;
display: block;
margin: 0;
}
#sidebarTabs .tabsetWrapper .tabset .tabSelected {
color: [[ColorPalette::PrimaryMid]];
background: [[ColorPalette::PrimaryPale]];
border-top: 3px solid [[ColorPalette::PrimaryMid]];
border-bottom: 3px solid [[ColorPalette::PrimaryMid]];
border-left: 3px solid [[ColorPalette::PrimaryMid]];
z-index: 10;
margin-top: -1px;
font-weight: bold;
}
#sidebarTabs .tabContents li {
border: none;
margin-left: 0;
word-wrap: break-word;
}
.tabContents .timeline {
background: [[ColorPalette::PrimaryPale]];
margin-bottom: 8px;
}
#sidebarTabs .timeline li.listTitle {
color: #132E43;
margin-left: 8px 0;
padding: 0.3em 0.11em;
font-size: 1em;
border-bottom: none;
}
#sidebarTabs .tabContents li a {
display: block;
text-align: left;
margin: 0 0 1px 0;
padding: 0.3em 1em;
background: [[ColorPalette::PrimaryPale]];
}
#sidebarTabs .tabsetWrapper .tabset a:hover,
#sidebarTabs .tabContents li a:hover {
color: [[ColorPalette::PrimaryPale]];
background: [[ColorPalette::PrimaryMid]];
}
/* Activity Stream */
#sidebarTabs .tabContents .activityStream .feedItem a {
display: inline-block;
padding: 0;
background: none;
}
/* ---- Tagging box --- */
.tagInfo {
border: 1px solid #cccccc;
padding: 10px 15px;
-moz-box-shadow: 0 2px 2px rgba(0, 0, 0, 0.2);
box-shadow: 0 2px 2px rgba(0,0,0,0.2);
color: [[ColorPalette::TertiaryMid]];
background: -moz-linear-gradient(100% 100% 90deg, #f4f4f4, #e5e5e5);
background: -webkit-gradient(linear, left top, right top, from(#e5e5e5), to(#f4f4f4));
margin-top: 1em;
font-size: 13px;
margin: 0 0 0 56px;
}
.tagInfo ul {
list-style: none;
padding-left: 2.2em;
}
.tagInfo ul li {
display: inline;
}
.tagInfo ul li.listTitle,
.tagInfo .tagging ul li.listTitle {
color: [[ColorPalette::PrimaryMid]];
font-size: 13px;
}
.tagInfo ul li a {
border: none;
}
.tagInfo .tagging ul li {
float: none;
display: inline-block;
}
.tagInfo .tagging {
padding: 0;
}
.viewRevision .toolbar {
right: 48px;
top: 8px;
}
.viewRevision .modifierIcon img,
.viewRevision .modifierIcon svg {
margin-right: 8px;
}
.viewRevision .toolbar svg {
width: 32px;
height: 32px;
}
/* --- IE hacks from lattice --- */
/* ie hacks */
* html #menuBar {
margin-bottom: 8px;
}
.toolbar .svgIconText {
*display: inline;
}
div.tiddler .toolbar a {
cursor: pointer;
float: left\9;
display: inline\9;
}
* html .toolbar {
right: 8px;
}
* html .followButton a {
margin-top: 0px;
margin-right: 8px;
}
* html #tiddlerDisplay {
margin-top: 0px;
}
/* for printing purposes */
@media print {
#mainMenu,
#sidebar,
#messageArea,
.toolbar,
.followPlaceHolder,
#backstageButton,
#backstageArea,
#sidebarTabs,
#sidebarSearch .txtOptionInput,
#sidebarOptions {
display: none !important;
}
#displayArea {
margin: 1em 1em 0em;
}
noscript {
display:none; /* Fixes a feature in Firefox 1.5.0.2 where print preview displays the noscript content */
}
#tiddlerDisplay {
margin: 16px 16px;
}
}
@media all and (max-width: 960px){
#tiddlerDisplay,
#searchResults {
margin: 16px 366px 0 16px;
}
#mainMenu {
margin-left: 16px;
}
.headerForeground {
margin-left: 16px;
}
#sidebarSearch {
right: 16px;
}
#sidebarOptions {
margin-right: 16px;
}
#sidebarTabs {
right: 16px;
width: 326px;
}
#sidebarTabs .tabsetWrapper .tabset {
font-size: 0.9em;
width: 77px;
}
#sidebarTabs .tabsetWrapper .tabContents {
width: 226px;
_width: 222px;
}
#sidebarTabs .tabContents li a {
font-size: 0.9em;
}
}
/*}}}*/
[[StyleSheetTiddler]]
In a standard TiddlyWiki, can edit the UserName in the OptionsPanel in the right sidebar.
However, if you rather want this in a custom tiddler of your own, use the [[option]] macro, e.g.:
{{{
UserName: <<option txtUserName>>
}}}
UserName: <<option txtUserName>>
<<tiddler EVAL>>
If you want to display your UserName, see [[How can I display my UserName somewhere?]]...
!Functions
<<list filter [startsWith[title,Wikifier.]][sort[title]]>>
!Global methods
;[[getParser()]]
:selects the correct formatter for a tiddler
;[[wikify()]]
:creates a ''wikifier'' object and then calls [[wikifier.subWikifyUnterm()]]
;[[wikifyStatic()]]
:returns the html directly
;[[wikifyPlain()]]
:calls [[wikifyPlainText()]] on a single tiddler
;[[wikifyPlainText()]]
:calls [[wikifyPlain()]] on the text
;[[highlightify()]]
:calls [[wikifier.outputText()]]
!Static methods
The ''Wikifier'' object constructor takes a formatter. [[getParser()]] figures out which one. [[config.parsers()]] is examined but is empty by default, which means that in the default setup, calls to [[getParser()]] return the global formatter object.
;[[wikifier.wikifyPlain()]]
:calls [[subWikify()]] on itself
;[[wikifier.subWikify()]]
:calls either [[wikifier.subWikifyTerm()]] or [[wikifier.subWikifyUnterm()]] depending on whether it has a terminator provided or not (see below).
Example uses are in the gradient macro's handler, where it is called with a terminator, and [[wikifier.wikifyPlain()]] where it is called without.
;[[wikifier.subWikifyUnterm()]]
:gets called by [[wikify()]] and [[wikifyStatic()]], [[wikifyPlain()]] and [[wikifyPlainText()]] calls [[wikifier.subWikify()]] with one argument, so that ends up calling [[wikifier.subWikifyUnterm()]] as well
The function finds the strings that match with the formatter, outputs whatever is before the first as ordinary text, then goes into a loop through the matches until they run out. The mechanism for figuring out which part of the formatter and therefore which handler to call depends on the result of an exec() call being an array where the elements correspond to the paranthesized parts of the regex - if there is a match, that element contains something in it, if not, it is undefined.
After the matches are finished, it outputs the rest of the text. The handlers tend to wikify their contents, so the wikification process is recursive. The upshot of this is that care has to be taken to keep the regex's lastIndex property and the output pointer in check.
;[[wikifier.subWikifyTerm()]]
:is similar to [[wikifier.subWikifyUnTerm()]]. It takes a terminator regex to match the end of the string in question and wikifies (again a use of recursion) whatever is in between a formatter match and a terminator match.
;[[wikifier.outputText()]]
:outputs text without wikifying it. Copes with highlighting text (via highlightify).
/***
|''Name''|UntaggedPlugin|
|''Author''|[[Tobias Beer|http://tobibeer.tiddlyspace.com]]|
|''Description''|provides an """<<untagged>>""" macro<br>adds an untagged button to the tags tab<br>allows to hide (empty) tags / tagging|
|''Source''|https://raw.github.com/tobibeer/TiddlyWikiPlugins/master/plugins/UntaggedPlugin.min.js|
|''Documentation''|http://untagged.tiddlyspace.com|
|''Version''|1.0.8 (2013-10-08)|
|''~CoreVersion''|2.5.2|
|''License''|Creative Commons 3.0|
<<option chkShowUntagged>> chkShowUntagged
<<option chkShowUntaggedShadows>> chkShowUntaggedShadows
<<option chkHideEmptyTags>> chkHideEmptyTags
<<option chkHideEmptyTagging>> chkHideEmptyTagging
***/
// /%
(function(e){var t=config.options;["chkShowUntagged","chkShowUntaggedShadows-","chkHideEmptyTags","chkHideEmptyTagging"].map(function(e){e=e.split("-");if(undefined==t[e[0]])t[e[0]]=!e[1]});merge(config.views.wikified.tag,{untaggedButton:"untagged (%0)",untaggedTooltip:"Show untagged tiddlers...",untaggedListTitle:"Untagged tiddlers:",untaggedNone:"There are no untagged tiddlers...",openUntagged:"Open '%0'"});var n=config.views.wikified.tag;var r=config.macros.untagged={selectorTags:".tagged, .tidTags, .infoTags",selectorTagging:".tagging, .infoTagging",noTagsWhenTagged:"no-tags",noTaggingWhenTagged:"no-tagging",untaggedTiddler:"untagged",hideTags:"excludeLists excludeMissing excludePublisher excludeSearch no-tags no-tagging noLinkify",hideTagsReadOnly:"systemConfig",handler:function(e,t,n,i,s,o){r.refresh(e,s)},refresh:function(i,s){var o,u=[],a,f=s.parseParams("anon",null,true),l=f[0]["anon"]||[],c=l.contains("list"),h=e(i).attr("macroName")=="untagged",p=e(i),d=h?p.parent()[0]:i;if(h)p.hide();store.getTiddlers("title").map(function(e){if(!t.chkShowUntaggedShadows&&config.shadowTiddlers[e.title])return true;if(!e.tags||!e.tags.length)u.push(e)});o=e(c?createTiddlyElement(d,"ul"):createTiddlyButton(d,n.untaggedButton.format([u.length]),n.untaggedTooltip,r.showList,"tiddlyLink untagged")).data("tids",u).attr({tiddlyLink:r.untaggedTiddler?r.untaggedTiddler:"",refresh:"macro",macroName:"untagged",params:s});if(c)r.showList(null,o[0]);else if(l.contains("alltags")){o.appendTo(e("<li/>").appendTo(o.prev()))}if(h){o.insertAfter(p);p.remove()}},showList:function(i,s){var o,u=i||window.event,a=e(s?s:this).data("tids"),f=s?s:Popup.create(this),l=e(f);l.addClass("taggedTiddlerList untaggedTiddlerList");if(a.length>0){if(s){createTiddlyElement(f,"li",null,"listTitle",n.untaggedListTitle)}else if(!t.chkSinglePageMode){createTiddlyButton(createTiddlyElement(f,"li"),n.openAllText.format([n.untaggedButton]),n.untaggedTooltip,r.openAll);createTiddlyElement(createTiddlyElement(f,"li",null,"listBreak"),"div")}a.map(function(e){createTiddlyLink(createTiddlyElement(f,"li"),e.title,true)});if(r.untaggedTiddler&&!s){createTiddlyElement(createTiddlyElement(f,"li",null,"listBreak"),"div");o=createTiddlyLink(createTiddlyElement(f,"li"),r.untaggedTiddler,false);createTiddlyText(o,n.openUntagged.format([r.untaggedTiddler]))}}else{createTiddlyElement(f,"li",null,"disabled",n.untaggedNone)}l.data("tids",a);if(!s){Popup.show();u.cancelBubble=true;if(u.stopPropagation)u.stopPropagation();return false}},openAll:function(){story.displayTiddlers(this,e(this).closest(".taggedTiddlerList").data("tids"));return false},hide:function(n,i){var s=r.hideTags;hideR=r.hideTagsReadOnly;if(s||hideR){s=s.readBracketedList();hideR=hideR.readBracketedList();e(".button, .tiddlyLink",n).each(function(){var t=e(this),n=t.attr("tag");if(s.contains(n)||readOnly&&hideR.contains(n)){t.hide();t=t.parent();if(t.is("li")&&t.children().length<2)t.hide()}});if(t["chkHideEmpty"+i]&&!e(".button, .tiddlyLink",n).filter(":visible").length){n.remove()}}}};config.shadowTiddlers.StyleSheetUntagged="/*{{{*/\n"+".untagged {color:[[ColorPalette::TertiaryDark]];}\n"+"/*}}}*/";store.addNotification("StyleSheetUntagged",refreshStyles);config.macros.allTags.handlerUNTAGGED=config.macros.allTags.handler;config.macros.allTags.handler=function(n,i,s){config.macros.allTags.handlerUNTAGGED.apply(this,arguments);r.hide(e(n).last());if(t.chkShowUntagged){wikify("<<untagged alltags>>",n)}};config.macros.tags.handlerUNTAGGED=config.macros.tags.handler;config.macros.tags.handler=function(t,n,i,s,o,u){config.macros.tags.handlerUNTAGGED.apply(this,arguments);r.hide(e(t).last(),"Tags")};Story.prototype.displayTiddlerUNTAGGED=Story.prototype.displayTiddler;Story.prototype.displayTiddler=function(n,i,s,o,u,a,f,l){var c=Story.prototype.displayTiddlerUNTAGGED.apply(this,arguments),h=i instanceof Tiddler?i.title:i,p=store.getTiddler(h);if(p&&p.tags&&p.tags.containsAny(r.noTagsWhenTagged.readBracketedList())||t.chkHideEmptyTags&&e(r.selectorTags,c).find("a:visible").length==0){e(r.selectorTags,c).hide()}if(p&&p.tags&&p.tags.containsAny(r.noTaggingWhenTagged.readBracketedList())||t.chkHideEmptyTagging&&e(r.selectorTagging,c).find("a:visible").length==0){e(r.selectorTagging,c).hide()}return c}})(jQuery)
// %/
Serializations are explained at [[tiddlyweb.peermore.com|http://tiddlyweb.peermore.com/wiki/bags/docs/tiddlers/serialization]]
Read more about the [[TiddlySpace API]]...
Tiddlers with information for developers tag here...
{{noTitle{<<tagging Developer>>}}}
This function is the main entry point for wikification.
It chooses between [[wikifier.subWikifyTerm()]] and [[wikifier.subWikifyUnterm()]] depending upon whether a terminator was passed into the function or not.
!Arguments
;output
:the object to output into
;terminator
:a regexp that defines the end of the block, e.g. ''}}}'' being the end of a code block.
It does not return anything, but rather, renders HTML directly into the output object.
[[Jeremy|http://jermolene.tiddlyspace.com]] is the original creator of TiddlyWiki who worked as Head of Open Source Innovation for [[BT]], leading [[Osmosoft]].
!Summary
This prototype function of the Date class returns a formatted string for a date object given the desired [[date format|Date Formats]] via a template...
!Signature
{{{Date.prototype.formatString = function(template) {} }}}
!Returns
''string:'' the date converted to a string
!Arguments
;1. (string) template
:» the [[date format|Date Formats]]
!Example
{{{
var date = new Date();
// Sun Sep 29 2013 09:37:06 GMT+0200 (CET)
date.formatString('YYYY-0MM-0DD');
}}}
''returns:'' {{{2013-09-29}}}
TiddlyWiki is a free browser-based, reusable, non-linear personal notebook.
This is the community wiki, providing documentation and a variety of resources for TiddlyWiki users and developers. Please visit the official TiddlyWiki site for project information, downloads etc.
TiddlyWiki.org is a community effort, so active participation and contributions are very welcome!
[[TiddlyWiki]] [[TiddlyWiki.org]] [[Policy]] [[Help]]
[[Information for Users]]
|![[Basics]] |![[Advanced Features]] |
|[[Introduction]] |[[Customization]] |
|[[TiddlyWiki Markup]] |[[Macros]] |
|[[Components]] |[[Plugins]] |
|[[Configuration]] |[[Scripts]] |
|[[Content Management]] |[[Server-Side Solutions]] |
|[[Troubleshooting]] |[[Client-side Tools]] |
|[[TiddlyWiki FAQ]] | |
[[Additional Resources]]
[[Beginner's Guides]]
[[Getting Started on TiddlyWiki.com]]
[[TiddlyWiki for the Rest of Us by Dave Gifford]]
[[TW Help by Morris Gray]]
[[more... ]]
[[Services]]
[[Community Support mailing list at Google Groups]]
[[Tiddlyspot (free TiddlyWiki hosting)]]
[[Adaptations]]
[[MPTW]]
[[TeamTasks]]
[[RippleRap]]
[[more... ]]
[[Information for Developers]]
[[Guides]]
[[Translation]]
[[Core Code]]
[[Writing Plugins]]
[[Writing Macros]]
[[Resources]]
[[Code Repository]]
[[Tickets (Bug Tracking)]]
[[Developers' mailing list]]
[[Nightly Builds]]
[[Developer Tools]]
[[Hot Issues]]
[[Translation]]
[[Core Code]]
[[Writing Plugins]]
[[Writing Macros]]
[[Resources]]
[[Code Repository]]
[[Tickets (Bug Tracking)]]
[[Developers' mailing list]]
[[Nightly Builds]]
[[Developer Tools]]
[[Hot Issues]]
(function($){
var spaceName = null;
var bookmarklet;
$.getJSON("/status", function(data) {
if(data && data.username !== "GUEST") {
bookmarklet = "javascript:(function(a,b,u)%7Ba=b.createElement('script');a.setAttribute('src','http://feedback.tiddlyspace.com/feedback-loader.js');b.body.appendChild(a);u='" + data.username + "'||'Add title';a.addEventListener('load',function()%7BloadBookmarker('http://feedback.tiddlyspace.com/feedback','" + spaceName + "',u);%7D,false);%7D(null,document,null))";
attachFeedbackBtn();
}
});
var attachFeedbackBtn = function() {
$('head').append('<link rel="stylesheet" href="http://feedback.tiddlyspace.com/button.css" type="text/css" />');
var link = jQuery('<a/>')
.attr('href', bookmarklet)
.attr('alt', "Give us some feedback")
.addClass("tsfeedback-btn")
.html("+ feedback")
.appendTo('body');
}
})(jQuery);
!"""Extended Types"""
TiddlyWiki extends the following primitive types provided by JavaScript, see below...
* [[Array]]
* [[Date]]
* [[String]]
!"""Other Types"""
The following primitive types have not been extended by TiddlyWiki...
* [[Boolean]]
* [[Integer]]
* [[Object]]
!Extensions
<<tiddler extension>>
!Summary
This function of the <<tag Array "array class">> returns the index of a given element in an array.
!Signature
{{{Array.prototype.indexOf = function(item,from) {} }}}
!Returns
integer: the index of an element in an array
!Arguments
;1. item
:the item to find the index for
;2. from
:the array in which to find the item
!Example
{{{
var el = "Foo",
arr = ["Foo","Bar"];
return arr.indexOf(el);
}}}
''returns:'' integer: 0
//{{{
config.macros.references = {
handler: function(place, m, p, w, pa, tiddler) {
if(!tiddler) return;
else invokeMacro(place, "list", "filter \"[linksTo[%0]]\" emptyMessage:'No references'".format(tiddler.title), null, tiddler);
}
};
//}}}
As of version 2.6.5, TiddlyWiki can save options permanently -- in addition to the ability to save options in cookies. Persistent options are stored in the shadow tiddler called [[SystemSettings]] which need to create manually.
For example, the option {{{chkAnimate}}} is currently stored as a cookie. To make it option persistent add it to your SystemSettings tiddler:
<<<
chkAnimate: true
<<<
''Note:'' It can still be changed using the OptionsPanel in the sidebar.
The names of all available options can be found in the shadow tiddler called AdvancedOptions.
{{annotation{
!Important
An even more flexible and powerful option is to use a [[zzConfig]] type of tiddler. For details, see [[Changing Default Options]].
}}}
!!Under The Hood
TiddlyWiki uses a JavaScript object to store options from SystemSettings, e.g.
{{{
config.optionsSource {
chkAnimate: "setting",
chkAutoSave: "setting"
// etc...
}
}}}
Each option can take two values...
;null
:» the option is stored in a cookie (default)
;setting
:» the option is stored in SystemSettings
!Descriptions
The [[toolbar macro|toolbar]] is used in the shadow tiddlers called ViewTemplate and EditTemplate to render the corresponding toolbar for view mode and edit mode.
!Usage
in EditTemplate:
{{{
<div class='toolbar'
macro='toolbar [[ToolbarCommands::EditToolbar]]'>
</div>
}}}
in ViewTemplate:
{{{
<div class='toolbar'
macro='toolbar [[ToolbarCommands::ViewToolbar]]'>
</div>
}}}
Use the shadow tiddler called ToolbarCommands to define the commands to be displayed in a corresponding toolbar.
!Summary
This <<tag global>> function refreshes the backstage if open and calls the [[refreshElements()]] function for all elements in the dom element with id "contentWrapper".
!Signature
{{{function refreshDisplay(hint) {} }}}
!Returns
undefined
!Arguments
;1. hint
:the element to refresh /% NOT SURE WHAT THIS IS %/
!Example
{{{
refreshDisplay();
}}}
''result:'' refreshes everything in the {{{contentWrapper}}}
!Description
Renders an input field for searching TiddlyWiki and abutton to start searching.
!Usage
{{{
<<search [search-term]>>
}}}
A default search term can be added using a {{{[search-term]}}} as the first parameter.
!Example
{{{
<<search TiddlyWiki>>
}}}
<<search TiddlyWiki>>
!Summary
This prototype function of the [[TiddlyWiki.class]] returns an sorted array of strings, each being the name of an orphaned tiddler with no links to it using [[store.forEachTiddler()]].
!Signature
{{{TiddlyWiki.prototype.getOrphans = function() {} }}}
!Returns
array[string]: array of the titles of orhpaned tiddlers
!Arguments
none
!Example
{{{
store.getOrphans();
}}}
''result:'' you can see in in TabMoreOrphans used by the list macro
TiddlyWiki can be tweaked in a number of ways...
;Styles
:» change text font's, colours an other display options using CSS StyleSheets
;Layout
:» change the general layout and contents using shadow tiddlers
:» SiteTitle, SiteSubtitle, MainMenu, SideBarOptions, SideBarTabs
;Default Options
:» override default settings and localizarion by [[changing default options|Changing Default Options]]
* a wiki, notebook, information manager
* a wiki programmed in ~JavaScript running entirely self-contained in the browser
* a revolutionary new way to manage information using [[microcontent|http://www.useit.com/alertbox/980906.html]]
* a web framework and its own development environment
!!TiddlyWiki in ten seconds...
[[by TomO from d³|http://dcubed.com/#TiddlyWiki]]
;10...
:TiddlyWiki is a web-based [[wiki|http://en.wikipedia.org/wiki/Wiki]] that has a very rich Javascript runtime built into every page. If you are reading a TiddlyWiki document, you have the //entire// TiddlyWiki application, in addition to all the "articles" that make up the wiki itself.
;9
:The "articles" within a TiddlyWiki are called ''tiddlers'', and they are saved with the main HTML page used to view the document. If you open a TW document, you can see all the tiddlers saved at the bottom of the file.
;8
:When you view a TW document over the web, you are usually prohibited from making changes. For interactive, modifiable documents like this one, you typically need to save the document locally to your machine and work with it there.
;7
:Tiddlers can be referenced by their name but, more importantly, they can be arbitrarily ''tagged'' to categorize them. Tags may be freely modified, and there are numerous interface widgets within TW to list or find tiddlers by their tags.
;6
:When you click on an internal hyperlink to a tiddler, it will usually open up directly above or below the tiddler you are currently reading and should scroll immediately into view.
;5
:When you hover your mouse over a tiddler, a small context-sensitive ''tiddler menu'' appears above and to the right of the tiddler. One of the important items in this menu is ''edit'' (or ''view''), which allows you to view and modify the source for a tiddler.
;4
:Tiddler source is a combination of just plain text, plus special formatting commands in ''wiki-text'' that allow you to express style and layout for tiddlers without knowing any HTML. It is important to know that the formatting commands, tiddler menus, and just about everything else can be arbitrarily extended by third-party ''plug-ins'' to create custom solutions like this one.
;3...2...1
:That is it in a nutshell, but if you are still feeling a little lost, try this [[tutorial|http://www.blogjones.com/TiddlyWikiTutorial.html ]]
!Summary
By default, the TabTimeline shadow tiddler defines the contents of the {{{Recent}}} tab in the [[Sidebar]] and calls the [[list macro|list]] which outputs all tiddlers in your TiddlyWiki in reverse chronological order.
!Default Contents
{{{
<<timeline>>
}}}
!Optimization
Listing all tiddlers may not prove practical or desireable. [[TiddlyWiki.org demonstrates|TabTimeline]] how you can shorten the list only to display a full [[timeline]] elsewhere,
(function($){
var spaceName = null;
var bookmarklet;
$.getJSON("/status", function(data) {
if(data && data.username !== "GUEST") {
console.log(data);
bookmarklet = "javascript:(function(a,b,u)%7Ba=b.createElement('script');a.setAttribute('src','http://feedback.tiddlyspace.com/feedback-loader.js');b.body.appendChild(a);u='" + data.username + "'||'Add title';a.addEventListener('load',function()%7BloadBookmarker('http://feedback.tiddlyspace.com/feedback','" + spaceName + "',u);%7D,false);%7D(null,document,null))";
attachFeedbackBtn();
}
});
var attachFeedbackBtn = function() {
$('head').append('<link rel="stylesheet" href="http://feedback.tiddlyspace.com/button.css" type="text/css" />');
var link = jQuery('<a/>')
.attr('href', bookmarklet)
.attr('alt', "Give us some feedback")
.addClass("tsfeedback-btn")
.html("+ feedback")
.appendTo('body');
}
})(jQuery);
See...
* [[PermaLink]]
* [[permaview (macro)]]
Initially, the person creating a space is the Owner of that space, esp of their [[Home Space]].
When other [[users|User]] are [[added as members|Add Member]], all [[mambers|Member]] are considered as [[peers|Small Trusted Group]] sharing the same privileges as the initial [[owner|Owner]].
@@Please do not modify this tiddler; it was created automatically upon space creation.@@
In a [[classic TiddlyWiki|TiddlyWiki Layout]] the sidebar is the right column containing...
;SideBarOptions
:commands to manage TiddlyWiki, e.g. to save it or create new tiddlers and journals
;OptionsPanel
:most used options
;SideBarTabs
:tabs with tiddler lists
!Description
Set the SiteUrl shadow tiddler to the full target URL when using TiddlyWiki for publication on the web.
!Default Contents
''none''
!Description
The [[options]] macro outputs the same AdvancedOptions as you find in the [[Backstage Area]]...
!Usage
{{{
<<options>>
}}}
<<options>>
<<tiddler WikiText>>
<!--{{{-->
<div class='toolbar'
macro='toolbar [[ToolbarCommands::ViewToolbar]] icons:yes height:16 width:16 more:popup'>
</div>
<div class='heading'>
<span class='spaceSiteIcon'
macro='tiddlerOrigin label:no spaceLink:yes height:32 width:32 preserveAspectRatio:yes'>
</span>
<span class="titleBar">
<div class='title' macro='view title text'></div>
<span class="subtitle" macro='viewRevisions page:5'>
last modified on
<span macro="view modified date"></span>
</span>
</span>
<span class='followPlaceHolder' macro='followTiddlers'></span>
<span class='modifierIcon'
macro='view modifier SiteIcon label:no spaceLink:yes height:48 width:48 preserveAspectRatio:yes'>
</span>
<div class='tagClear'></div>
</div>
<div class='content'>
<div class='viewer' macro='view text wikified'>
<div macro='transclude DEV.'></div>
<div macro='showWhenTaggedAny function Function'>
<div macro='code'></div>
</div>
</div>
<div macro='more'></div>
<div class='info_source' macro='originalSource'></div>
</div>
<div class='tagInfo'>
<div class='tidTags' macro='tags'></div>
<!-- LETS SEE IF SOMEONE IS MISSING THIS>>
<div>Linked to from: <span class='tidTags' macro='references'</span></div>
-->
<div class='tagging' macro='tagging'></div>
</div>
<hr/>
<div macro="view title replyLink"></div>
<!--}}}-->
Attempting to close or refresh the page, your browser may display the following warning:
{{{
WARNING! There are unsaved changes in TiddlyWiki.
Choose OK to save.
Choose CANCEL to discard.
}}}
This message may be provoked when saving failed due to losing connection to the server when the [[user|User]] is...
* offline
* experiencing a bad network connection
* faced with an [[Edit Conflict]]
Clicking <<saveChanges>> in the sidebar of a standard TiddlyWiki will cause any unsaved changes to be pushed to the server.
The notification mechanism is provided by the TiddlyWiki store object
to enable interested parties to register callback functions to be
invoked when tiddlers are modified. Callbacks can be registered to be
called for modifications to particular named tiddlers, or to be called
for modifications to any tiddler.
To register new callback functions one should make use of the [[addNotification method|TiddlyWiki.prototype.addNotification]]
Out of the box, the notification table looks like this (see Refresh.js
in the TiddlyWiki source repository):
{{{
config.notifyTiddlers = [
{name: "StyleSheetLayout", notify: refreshStyles},
{name: "StyleSheetColors", notify: refreshStyles},
{name: "StyleSheet", notify: refreshStyles},
{name: "StyleSheetPrint", notify: refreshStyles},
{name: "PageTemplate", notify: refreshPageTemplate},
{name: "SiteTitle", notify: refreshPageTitle},
{name: "SiteSubtitle", notify: refreshPageTitle},
{name: "ColorPalette", notify: refreshColorPalette},
{name: null, notify: refreshDisplay}
];
}}}
Note that these notification handlers are called while TiddlyWiki is
starting up and the store is being loaded from the HTML payload in the
document. Quite a lot of care is taken in the core to make sure that
this doesn't trigger double initialisation (where the main() function
explicitly initialises something that is also re-initialised inside a
notification handler).
The notification table is a global variable. It would be more correct
for each instance of the TiddlyWiki store object to have it's own
notification handler table.
One of the problems with the naivety of the notification mechanism is
that it can be quite noisy; if a piece of code is modifying a bunch of
tiddlers the torrent of notifications triggered can slow things down.
To resolve this, the TiddlyWiki object provides methods to temporarily
[[suspendNotifications()|TiddlyWiki.prototype.suspendNotifications]] and [[resumeNotifications()|TiddlyWiki.prototype.resumeNotifications]]. The core uses this
to improve the performance of the importTiddlers macro by suppressing
notifications as individual tiddlers are imported and issuing a
blanket notification at the end of the import.
!Summary
Ginsu splits the tiddlers in a TiddlyWiki HTML out into separate files ready for checking in to Subversion.
!External Resouces
* [[Ginsu|http://trac.tiddlywiki.org/wiki/Ginsu]]
!!See Also
* [[Cook]]
* [[Recipes|Recipe]]
* [[Chef]]
When TiddlyWiki loads, it reads startup parameters (also called paramifiers) from the local part of the URL which follows the hash character {{{#}}}.
{{foo{
;"""open:<title>"""
:» opens the tiddler with the specified title
:» http://www.tiddlywiki.org/#open:Paramifiers
;"""<tiddler name(s)>"""
:» opens tiddlers, see PermaLink / PermaView
:» http://tiddlywiki.org/#TiddlyLink%20WikiLink
;"""start:safe"""
:» opens the document in [[Safe Mode]]
:» http://www.tiddlywiki.org/#start:safe
;"""search:<text>"""
:» performs a search for the specified text
:» http://tiddlywiki.org/#search:sidebar
;"""theme:<themeTiddler>"""
:» displays TiddlyWiki with the specified theme
;"""tag:<name>"""
:» displays tiddlers tagged with the specified tag
:» http://tiddlywiki.org/#tag:Formatting
;"""filter:<expression>"""
:» displays tiddlers matching the specified [[filter|Filters]] expression
:» http://tiddlywiki.org/#filter:%5Btag%5BButton%5D%5D
;"""readOnly:<yes/no>"""
:» enables or disables [[readOnly]] mode
:» http://www.tiddlywiki.org/#readOnly:yes
;"""newTiddler:<title>"""
:» creates a new tiddler with the specified title, opening it in EditMode
:» http://www.tiddlywiki.org/#newTiddler:NEW
;"""newJournal:<dateFormat>"""
:» creates a new journal entry with the specified [[date format|DateFormats]]
:» http://www.tiddlywiki.org/#newJournal:YYYY-0MM-0DD
}}}<<listfiltr>>
To construct a valid URL, non-ASCII characters in the paramifier value need to be URL encoded...
| !Character | !Encoding |h
| <blank>|%20|
| [|%5B|
| ]|%5D|
[[Welcome]] [[TiddlyWiki Core|Dev.Core]] [[Plugin Development|Dev.Plugins]] [[Contribute]]
!Summary
This prototype function of the [[TiddlyWiki.class]] ties an external function, refered to as a ''callback'' to a tiddler. Whenever that tiddler is changed, the callback function is invoked. TiddlyWiki passes the title of the changed tiddler to the callback function.
!Signature
{{{TiddlyWiki.prototype.addNotification = function(title, fn) {} }}}
!Returns
''object:'' store
!Arguments
;1. (string) title
:the title of the tiddler being watched
:when null (not empty string) the callback function is invoked for every tiddler, but only if either:
:* notifications are running via [[store.notifyAll()]]
:* the notify() is called with the second parameter set to true
;2. (function) fn
:the callback function called on any changes
!Example
{{{
store.addNotification('MyConfig','config.extensions.foo.watchConfigChanges);
}}}
''returns:'' the store object
A [[space|Space]] may have one or more members who together form a [[Small Trusted Group]] collectively owning the space.
[[TiddlyTools|http://www.tiddlytools.com]] is a treasure trove of high quality, well maintained TiddlyWiki plugins created by [[Eric Shulman]] of ELSDesign.
'' Getting an empty TiddlyWiki file from tiddlywiki.com ''
* Right click on http://www.tiddlywiki.com/empty.html
* Choose "Save link as..." or "Save target as..."
* Save the file to your desktop or somewhere else
* Go to the file you just saved and double click it
'' Getting a previous version of TiddlyWiki ''
* Visit http://www.tiddlywiki.com/archive/
'' Getting a hosted TiddlyWiki on Tiddlyspot ''
* Go to http://tiddlyspot.com
* Enter a site id and password
* Click create
* Your TiddlyWiki is now useable online
* To download:
** Click the download link
** Save the file on your desktop or somewhere
** Double click it to open it
'' Downloading a TiddlyWiki hosted somewhere else ''
* As with an empty TiddlyWiki file, but with the specific url
* Or install [http://tiddlywiki.bidix.info/#download.php download.php] on your server to be able to create a download link as in a Tiddlyspot's TiddlyWiki.
[[Category:FAQ]]
[[Category:Getting Started]]
Certain tags in TiddlyWiki are predefined and have a special meaning...
| !System Tag | !Usage |h
|<<tag systemConfig>>|usually usually [[Plugins]] or [[Macros]], these tiddlers contain executable JavaScript code executed on startup and on demand|
|<<tag systemConfigDisable>>|a deaktivated [[plugin|Plugins]] that is not executed on startup -- takes precedence over ''systemConfig'' and ''systemConfigForce''|
|<<tag systemConfigForce>>|force [[plugins|Plugins]] to be executed on startup irrespective of dependencies to a given ''CoreVersion'' or other plugins|
|<<tag systemServer>>|a tiddler which contains server details for [[Import]]|
|<<tag systemTheme>>|a tiddler that is a [[Theme|Themes]]|
|<<tag excludeSearch>>|a tiddler excluded from search results|
|<<tag excludeLists>>|a tiddler excludes from lists in the sidebar tabs (e.g. [[Timeline]]) as well as from the generated RSS feed|
|<<tag excludeMissing>>|a tiddler that wont appear in the sidebar under ''More'' / [[Missing|TabMoreMissing...]]|
@@Please do not modify this tiddler; it was created automatically upon space creation.@@
Runs various <<tag refresh>> functions
It refreshes the PageTemplate, the display and the default stylesheets StyleSheetLayout, StyleSheetColors, StyleSheetPrint and the active stylesheet (usually StyleSheet but defined in the javascript variable config.refresherData.styleSheet)
The [[core|Core]]@tiddlywiki refers to the javascript that comes with a standard TiddlyWiki. The following topics provide inside knowledge in core processes...
<<get ##Summary filter:[tag[Core]] table>>
!"""Wiki Markup"""
Sometimes text can match TiddlyWiki formatting whether you want it to or not, e.g. program code, or conted pasted from elsewhere. To avoid this see section ''Avoiding Wikification'' in [[TiddlyWiki Markup]]...
!Code Comments
Individual tiddler passages can be "commented out" to prevent them from being processed and/or displayed by TiddlyWiki:
[cf. http://oldwiki.tiddlywiki.org/wiki/Escaping / http://oldwiki.tiddlywiki.org/wiki/Dev:Comments]
!Summary
Use the shadow tiddler WindowTitle to define the text you wish displayed as the window title of your TiddlyWiki in the the browser.
!Default Contents
{{{
<<tiddler SiteTitle>> - <<tiddler SiteSubtitle>>
}}}
This then displays something like...
{{{
TiddlyWiki - Community Documentation
}}}
You can change this at any time. For example:
{{{
Shadow Tiddlers Documentation | TiddlyWiki.com
}}}
A [[User]] who is a [[Member]] of a [[Space]] may add another [[User]] as a [[Member]] of the [[Space]].
Caution is advised when adding another [[Member]] to a [[Home Space]] as both now are co-owners enjoying the same privileges to [[edit|Edit Tiddler]], [[publish|Publish Tiddler]], [[delete|Deleting A Tiddler]] a tiddler or [[remove any member|Remove Member]] including the initial [[Owner]]. For this reason, all [[members|Member]] of a [[Space]] are siad to form a [[Small Trusted Group]].
/***
|''Name''|TiddlySpacePublishingCommands|
|''Version''|0.8.5|
|''Status''|@@beta@@|
|''Description''|toolbar commands for drafting and publishing|
|''Author''|Jon Robson|
|''Source''|http://github.com/TiddlySpace/tiddlyspace/raw/master/src/plugins/TiddlySpacePublishingCommands.js|
|''CoreVersion''|2.6.1|
|''Requires''|TiddlySpaceConfig TiddlySpaceFilters|
!Usage
Provides changeToPrivate, changeToPublic and saveDraft commands
Provides TiddlySpacePublisher macro.
{{{<<TiddlySpacePublisher type:private>>}}} make lots of private tiddlers public.
{{{<<TiddlySpacePublisher type:public>>}}} make lots of public tiddlers public.
!TODO
* add public argument?
!Code
***/
//{{{
(function($) {
var tiddlyspace = config.extensions.tiddlyspace;
var originMacro = config.macros.tiddlerOrigin;
tiddlyspace.getTiddlerStatusType = function(tiddler) {
var isShadow = store.isShadowTiddler(tiddler.title);
var exists = store.tiddlerExists(tiddler.title);
if(isShadow && !exists) {
return "shadow";
} else if(!exists) {
return "missing";
} else {
var types = ["private", "public"];
var type = "external";
for(var i = 0; i < types.length; i++) {
var t = types[i];
type = config.filterHelpers.is[t](tiddler) ? t : type;
}
if(config.filterHelpers.is.unsynced(tiddler)) {
type = type == "private" ? "unsyncedPrivate" : "unsyncedPublic";
}
return type;
}
};
var cmd = config.commands.publishTiddler = {
text: "make public",
tooltip: "Change this private tiddler into a public tiddler",
errorMsg: "Error publishing %0: %1",
isEnabled: function(tiddler) {
return !readOnly && config.filterHelpers.is["private"](tiddler);
},
handler: function(ev, src, title) {
var tiddler = store.getTiddler(title);
if(tiddler) {
var newBag = cmd.toggleBag(tiddler.fields["server.bag"]);
this.moveTiddler(tiddler, {
title: tiddler.fields["publish.name"] || tiddler.title,
fields: { "server.bag": newBag }
});
}
},
toggleBag: function(bag, to) {
var newBag;
if(typeof bag != typeof "") {
var tiddler = bag;
bag = tiddler.fields["server.bag"];
}
if(bag.indexOf("_private") > -1) { // should make use of endsWith
to = to ? to : "public";
newBag = bag.replace("_private", "_" + to);
} else {
to = to ? to : "private";
newBag = bag.replace("_public", "_" + to);
}
return newBag;
},
copyTiddler: function(title, newTitle, newBag, callback) {
var original = store.getTiddler(title);
newTitle = newTitle ? newTitle : title;
var adaptor = original.getAdaptor();
var publish = function(original, callback) {
var tiddler = $.extend(new Tiddler(newTitle), original);
tiddler.fields = $.extend({}, original.fields, {
"server.bag": newBag,
"server.workspace": "bags/%0".format(newBag),
"server.page.revision": "false"
});
delete tiddler.fields["server.title"];
tiddler.title = newTitle;
adaptor.putTiddler(tiddler, null, null, callback);
};
publish(original, callback);
},
moveTiddler: function(tiddler, newTiddler, callback) {
var info = {
copyContext: {},
deleteContext: {}
};
var _dirty = store.isDirty();
var adaptor = tiddler.getAdaptor();
var newTitle = newTiddler.title;
var oldTitle = tiddler.title;
delete tiddler.fields["server.workspace"];
var oldBag = tiddler.fields["server.bag"];
var newBag = newTiddler.fields["server.bag"];
var newWorkspace = "bags/%0".format(newBag);
cmd.copyTiddler(oldTitle, newTitle, newBag, function(ctx) {
info.copyContext = ctx;
var context = {
tiddler: tiddler,
workspace: newWorkspace
};
store.addTiddler(ctx.tiddler);
tiddler.title = oldTitle; // for cases where a rename occurs
if(ctx.status) { // only do if a success
if(oldBag != newBag) {
adaptor.deleteTiddler(tiddler, context, {}, function(ctx) {
info.deleteContext = ctx;
var el;
if(tiddler) {
tiddler.fields["server.workspace"] = newWorkspace;
tiddler.fields["server.bag"] = newBag;
}
el = el ? el : story.refreshTiddler(oldTitle, null, true);
if(oldTitle != newTitle) {
store.deleteTiddler(oldTitle);
store.notify(oldTitle, true);
}
if(el) {
story.displayTiddler(el, newTitle);
}
if(oldTitle != newTitle) {
story.closeTiddler(oldTitle);
}
if(callback) {
callback(info);
}
store.setDirty(_dirty);
});
} else {
if(callback) {
callback(info);
}
}
refreshDisplay();
}
});
}
};
var changeToPrivate = config.commands.changeToPrivate = {
text: "make private",
tooltip: "turn this public tiddler into a private tiddler",
isEnabled: function(tiddler) {
return !readOnly && config.filterHelpers.is["public"](tiddler);
},
handler: function(event, src, title) {
var tiddler = store.getTiddler(title);
var newBag = cmd.toggleBag(tiddler, "private");
var newTiddler = { title: title, fields: { "server.bag": newBag }};
cmd.moveTiddler(tiddler, newTiddler);
}
};
config.commands.changeToPublic = cmd;
/* Save as draft command */
var saveDraftCmd = config.commands.saveDraft = {
text: "save draft",
tooltip: "Save as a private draft",
isEnabled: function(tiddler) {
return changeToPrivate.isEnabled(tiddler);
},
getDraftTitle: function(title) {
var draftTitle;
var draftNum = "";
while(!draftTitle) {
var suggestedTitle = "%0 [draft%1]".format(title, draftNum);
if(store.getTiddler(suggestedTitle)) {
draftNum = !draftNum ? 2 : draftNum + 1;
} else {
draftTitle = suggestedTitle;
}
}
return draftTitle;
},
createDraftTiddler: function(title, gatheredFields) {
var tiddler = store.getTiddler(title);
var draftTitle = saveDraftCmd.getDraftTitle(title);
var draftTiddler = new Tiddler(draftTitle);
if(tiddler) {
$.extend(true, draftTiddler, tiddler);
} else {
$.extend(draftTiddler.fields, config.defaultCustomFields);
}
for(var fieldName in gatheredFields) {
if(TiddlyWiki.isStandardField(fieldName)) {
draftTiddler[fieldName] = gatheredFields[fieldName];
} else {
draftTiddler.fields[fieldName] = gatheredFields[fieldName];
}
}
var privateBag = tiddlyspace.getCurrentBag("private");
var privateWorkspace = tiddlyspace.getCurrentWorkspace("private");
draftTiddler.title = draftTitle;
draftTiddler.fields["publish.name"] = title;
draftTiddler.fields["server.workspace"] = privateWorkspace;
draftTiddler.fields["server.bag"] = privateBag;
draftTiddler.fields["server.title"] = draftTitle;
draftTiddler.fields["server.page.revision"] = "false";
delete draftTiddler.fields["server.etag"];
return draftTiddler;
},
handler: function(ev, src, title) {
var tiddler = store.getTiddler(title); // original tiddler
var tidEl = story.getTiddler(title);
var uiFields = {};
story.gatherSaveFields(tidEl, uiFields);
var tid = saveDraftCmd.createDraftTiddler(title, uiFields);
tid = store.saveTiddler(tid.title, tid.title, tid.text, tid.modifier,
new Date(), tid.tags, tid.fields);
autoSaveChanges(null, [tid]);
story.closeTiddler(title);
story.displayTiddler(src, title);
story.displayTiddler(src, tid.title);
}
};
var macro = config.macros.TiddlySpacePublisher = {
locale: {
title: "Batch Publisher",
changeStatusLabel: "Make %0",
noTiddlersText: "No tiddlers to publish",
changeStatusPrompt: "Make all the selected tiddlers %0.",
description: "Change tiddlers from %0 to %1 in this space"
},
listViewTemplate: {
columns: [
{ name: "Selected", field: "Selected", rowName: "title", type: "Selector" },
{ name: "Tiddler", field: "tiddler", title: "Tiddler", type: "Tiddler" },
{ name: "Status", field: "status", title: "Status", type: "WikiText" }
],
rowClasses: []
},
changeStatus: function(tiddlers, status, callback) { // this is what is called when you click the publish button
var publicBag;
for(var i = 0; i < tiddlers.length; i++) {
var tiddler = tiddlers[i];
var newTiddler = {
title: tiddler.title,
fields: { "server.bag": cmd.toggleBag(tiddler, status) }
};
cmd.moveTiddler(tiddler, newTiddler, callback);
}
},
getMode: function(paramString) {
var params = paramString.parseParams("anon")[0];
var status = params.type ?
(["public", "private"].contains(params.type[0]) ? params.type[0] : "private") :
"private";
var newStatus = status == "public" ? "private" : "public";
return [status, newStatus];
},
handler: function(place, macroName, params, wikifier, paramString, tiddler) {
var wizard = new Wizard();
var locale = macro.locale;
var status = macro.getMode(paramString);
wizard.createWizard(place, locale.title);
wizard.addStep(macro.locale.description.format(status[0], status[1]),
'<input type="hidden" name="markList" />');
var markList = wizard.getElement("markList");
var listWrapper = $("<div />").addClass("batchPublisher").
attr("refresh", "macro").attr("macroName", macroName).
attr("params", paramString)[0];
markList.parentNode.insertBefore(listWrapper, markList);
$.data(listWrapper, "wizard", wizard);
macro.refresh(listWrapper);
},
getCheckedTiddlers: function(listWrapper, titlesOnly) {
var tiddlers = [];
$(".chkOptionInput[rowName]:checked", listWrapper).each(function(i, el) {
var title = $(el).attr("rowName");
if(titlesOnly) {
tiddlers.push(title);
} else {
tiddlers.push(store.getTiddler(title));
}
});
return tiddlers;
},
refresh: function(listWrapper) {
var checked = macro.getCheckedTiddlers(listWrapper, true);
var paramString = $(listWrapper).empty().attr("params");
var wizard = $.data(listWrapper, "wizard");
var locale = macro.locale;
var params = paramString.parseParams("anon")[0];
var publishCandidates = [];
var status = macro.getMode(paramString);
var pubType = status[0];
var newPubType = status[1];
var tiddlers = params.filter ? store.filterTiddlers(params.filter[0]) :
store.filterTiddlers("[is[%0]]".format(pubType));
var enabled = [];
for(var i = 0; i < tiddlers.length; i++) {
var tiddler = tiddlers[i];
var title = tiddler.title;
if(!tiddler.tags.contains("excludePublisher") && title !== "SystemSettings") {
publishCandidates.push({ title: title, tiddler: tiddler, status: pubType});
}
if(checked.contains(title)) {
enabled.push("[rowname=%0]".format(title));
}
}
if(publishCandidates.length === 0) {
createTiddlyElement(listWrapper, "em", null, null, locale.noTiddlersText);
} else {
var listView = ListView.create(listWrapper, publishCandidates, macro.listViewTemplate);
wizard.setValue("listView", listView);
var btnHandler = function(ev) {
var tiddlers = macro.getCheckedTiddlers(listWrapper);
var callback = function(status) {
$(".batchPublisher").each(function(i, el) {
macro.refresh(el);
});
};
macro.changeStatus(tiddlers, newPubType, callback);
};
wizard.setButtons([{
caption: locale.changeStatusLabel.format(newPubType),
tooltip: locale.changeStatusPrompt.format(newPubType),
onClick: btnHandler
}]);
$(enabled.join(",")).attr("checked", true); // retain what was checked before
}
}
};
})(jQuery);
//}}}
Lately I found the version number changed from 2.6.2 to 2.6.3
But trying to upgrade the 2.6.2 version by backstage/upgrade does not work, it ends in displaying "Error with the new core code". And this error ist displayed not only when I try to upgrade from 2.6.2 to 2.6.3 but even when I try to "upgrade" a fresh and empty version 2.6.3 tiddlywiki. Might it be that there are (wrong?) Firefox configuration settings which prevent it from upgrading tiddlywiki? What am I doing wrong?
See also: [[Error with the new core code]]
!Description
The [[annotations]] helper macro is used in the shadow tiddlers ViewTemplate and EditTemplate to define where annotations are rendered, e.g.:
* the information displayed in view mode when a """tiddler""" does not exist yet
* the information displayed in edit mode for a tiddler that is a shadow tiddler
!Usage
{{{
<div macro='annotations'></div>
}}}
The TiddlyWiki Address Book (twab) is a system for keeping your Address Book within your TiddlyWiki.
It supports the addition of contacts via a simple macro that can be placed in any Tiddler.
It also supports the import and export of your contacts to and from major webmail providers such as Google, Yahoo, and Hotmail as well as Microsoft Outlook. Twab is customizable and comes fully documented.
!!!Link:
http://www.tiddly-twab.com
<<tiddler DateFormats>>
!Summary
Use quotations to cite other sources or simply indent content.
!!Blockquotes
Text can be displayed as quotations using three less-than signs:
{{{
<<<
Steve Jobs: "computers are like a bicycle for our minds"
<<<
}}}
<<<
Steve Jobs: "computers are like a bicycle for our minds"
<<<
!Nested Blockquotes
Quotes can be displayed with multi-levels:
{{{
> blockquote, level 1
>> blockquote, level 2
>>> blockquote, level 3
}}}
> blockquote, level 1
>> blockquote, level 2
>>> blockquote, level 3
!!Mixed Blockquotes
{{{
<<<
Steve Jobs: "computers are like a bicycle for our minds"
> blockquote, level 1
Some more text.
<<<
}}}
<<<
Steve Jobs: "computers are like a bicycle for our minds"
> blockquote, level 1
Some more text.
<<<
TiddlyWiki markup is a dedicated markup syntax to <<tag Formatting "format your content">> using WikiText...
|noLinkify|k
|width:250px; !Example | !Example Markup |h
| how the example markup renders | what to enter as tiddler text |
|>| ![[Basic Text Formatting|Basic Formatting]] |
|''bold''|{{{''bold''}}} (two __single__-quotes) |
|//italics//|{{{//italics//}}} |
|''//bold italics//''|{{{''//bold italics//''}}} |
|__underline__|{{{__underline__}}} |
|--strikethrough--|{{{--strikethrough--}}} |
|super^^script^^|{{{super^^script^^}}} |
|sub~~script~~|{{{sub~~script~~}}} |
|@@highlight@@|{{{@@highlight@@}}} |
|foo -- bar|{{{foo -- bar}}} -- two dashes create an Em dash|
|>| ![[Avoiding Wikification|Suppressing Formatting]] |
|to output text as-is (escaping), enclose it in three double quotes or use the {{{<nowiki>}}} markup|>|
|"""plain//text""" |{{{"""plain//text"""}}}|
|<nowiki>not__wikified</nowiki>|{{{<nowiki>not__wikified</nowiki>}}}|
|>| ![[Headings]] |
|start a new line with one or more exclamation points to create headings |>|
|<html><h1>Heading 1</h1><h2>Heading 2</h2><h3>Heading 3</h3><h4>Heading 4</h4><h5>Heading 5</h5></html>|{{{!Heading 1}}}<br />{{{!!Heading 2}}}<br />{{{!!!Heading 3}}}<br />{{{!!!!Heading 4}}}<br />{{{!!!!!Heading 5}}}|
|>|![[Lists]]|
|>| [[Ordered Lists|Lists]] |
|<html><ol><li>item one</li><li>item two<ol><li>level two<ol><li>level three</li></ol></li></ol></li></ol></li></ol></html>|{{{#item one}}}<br/>{{{#item two}}}<br/>{{{##level two}}}<br/>{{{###level three}}}|
|>| [[Unordered Lists|Lists]] |
|<html><ul><li>item one</li><li>item two<ul><li>level two<ul><li>level three</li></ul></li></ul></li></ul></html>|{{{*item one}}}<br/>{{{*item two}}}<br/>{{{**level two}}}<br/>{{{***level three}}}|
|>| [[Definition List|Lists]] |
|<html><dl><dt>term</dt><dd>definition</dd></dl></html>|{{{;term}}}<br />{{{:definition}}}|
|>| [[Mixed Lists|Lists]] |
|<html><ol><li>ordered<ul><li>unordered<dl><dt>term</dt><dd>definition</dd></dl></li></ul></li></ol></html>|{{{# ordered}}}<br />{{{#* unordered}}}<br />{{{#*;term}}}<br />{{{#*:definition}}}|
| ![[Blockquotes]] |>|
| [[Nested Blockquotes|Blockquotes]] |>|
|<html><blockquote>blockquote<blockquote>level two<blockquote>level three</blockquote></blockquote></blockquote></html>|{{{>blockquote}}}<br />{{{>>level two}}}<br />{{{>>>level three}}}|
|>| [[Multi-line Blockquotes|Blockquotes]] |
|<html><blockquote>multi-line<br/>blockquote</blockquote></html>|{{{<<<}}}<br />{{{multi-line}}}<br />{{{blockquote}}}<br />{{{<<<}}}|
|>| [[Mixed Blockquotes|Blockquotes]] |
|<html><blockquote>foo<br><blockquote>inner foo, level 1<br><blockquote>inner foo, level 2<br></blockquote></blockquote>more foo<br></blockquote></html>|{{{<<<}}}<br />{{{foo}}}<br />{{{> inner foo, level 1}}}<br />{{{>> inner foo, level 2}}}<br />{{{more foo}}}<br />{{{<<<}}}|
|>| ![[Code / Monospaced Text|Code]] |
|>| [[Inline Code|Code]] |
|{{{monospaced text}}}|<html><code>{{{mono space text}}}</code></html>|
|>| [[Code Block|Code]] |
|<html><pre>{{{<br/>multi-line<br/>code block<br/>}}}</pre></html>|<html><code>{{{</code></html><br/>{{{multi-line}}}<br/>{{{code block}}}<br/><html><code>}}}</code></html>|
| ![[Links]] |>|
|>| [[Internal Links|TiddlyLink]] |
|[[WikiWord]]|{{{WikiWord}}}|
|~NoLink|{{{~NoLink}}} -- a tilde {{{~}}} prevents automatic ~WikiWord links|
|[[Plain Link]]|{{{[[Plain Link]]}}}|
|[[Pretty Link|Tiddler Name]]|{{{[[Pretty Link|Tiddler Name]]}}}|
|>| [[External Links|External Link]] |
|A valid URL is automatically rendered as an external link.|>|
|http://www.tiddlywiki.com|{{{http://www.tiddlywiki.com}}}|
|[[Pretty External Link|http://www.tiddlywiki.com]]|{{{[[Pretty External Link|http://www.tiddlywiki.com]]}}}|
|>| ![[Filesystem Links|Links]] |
|You can, of course, use file system links both as plain or pretty links.|>|
|''Windows Network Path''|{{{[[file://///server/share]]}}}|
|''Windows Local''|{{{[[file:///c:/folder/file]]}}}|
|''Linux/Unix Local''|{{{[[file:///folder/file]]}}}|
|''Relative Path (Subfolder)''|{{{[[folder/file]]}}}|
|>| ![[Images]] |
|In general, image files are external to a TiddlyWiki.|>|
|[img[http://www.tiddlywiki.com/favicon.ico]]|{{{[img[path/image.jpg]]}}}|
| aligned right [>img[http://www.tiddlywiki.com/favicon.ico]]|{{{[>img[path/image.jpg]]}}}|
|[<img[http://www.tiddlywiki.com/favicon.ico]] aligned left|{{{[<img[path/image.jpg]]}}}|
|w/ internal link [>img[http://www.tiddlywiki.com/favicon.ico][TiddlyWiki]]|{{{[img[path/image.jpg][TiddlerName]]}}}|
|w/ external link [>img[http://www.tiddlywiki.com/favicon.ico][http://www.tiddlywiki.com]]|{{{[img[path/image.jpg][TiddlyWiki|http://www.tiddlywiki.com]]}}}|
|>| ![[Gradients|gradient]] |
|<<gradient horiz #faa #afa #aaf>> __vert__ical or __horiz__ontal<br> see [[gradient macro|http://tiddlywiki.org/#%5B%5Bgradient%20(macro)%5D%5D]]>>|{{{<<gradient horiz #faa #afa #aaf>>wiki text>>}}}|
|>| ![[Tables]] |
|<<tiddler HTML_TABLE>>|<<tiddler HTML_TABLE_MARKUP>>|
|>|<<tiddler HTML_TABLE_RULES>>|
|>| ![[Custom Styles|CSS Formatting]] |
|>|a {{{@@highlight@@}}} element can accept CSS syntax to directly style text.|>|
|@@color:green;green coloured@@|{{{@@color:green;green coloured@@}}}|
|>| ![[Custom CSS Class Wrapper|CSS Formatting]] |
|>|You can define a custom css class wrapper, like {{{.button}}} below. By default, the inner text is placed inline into a {{{<span>}}} of said class(s). If you start and end the inner text with a newline, the content is placed in a {{{<div>}}}. Use the StyleSheet to define the css styles applied to the class.|
|<br>{{button title{Click!}}}|<html><pre>{{button title{Click!}}}</pre></html>|
|>| ![[Embedded HTML|HTML Formatting]] |
|<html><span style="padding-right:30px;font-size:2em;">any</span><br /><b>valid</b> <em>xhtml</em></html>|<html><code style="font-weight:bold"><html></code></html>{{{<span style="padding-right:30px;font-size:2em;">any</span><br /><b>valid</b> <em>xhtml</em>}}}<html><code style="font-weight:bold"></html></code></html>|
|>| [[Embedded <iframe>|HTML Formatting]] |
|<html><iframe height="200px" width="300px" src="http://www.youtube.com/embed/Cj6ho1-G6tw?vq=hd720" frameborder="0" allowfullscreen/></html>|<html><code style="font-weight:bold"><html></code></html>{{{<iframe src="http://the.url"/>}}}<html><code style="font-weight:bold"></html></code></html>|
|>| ![[Line Break|Line Breaks]] |
|handy for entering multi-line content into table cells or lists|>|
|a<br>b|{{{a<br>b}}} or {{{a<br/>a}}} or {{{a<br />a}}}|
|>| ![[Horizontal Rules]] |
|before<hr>after|{{{<hr>}}} or <br>{{{----}}} on its own line|
|>| ![[HTML Entities]] |
|>|You can use HTML entities...|
|ɸ™ |{{{ɸ™}}}|
| ![[Macros]] |>|
|>|macros are called by enclosing the macro name in {{{<<}}} and {{{>>}}}|
|<<version>> |{{{<<version>>}}}|
|>| ![[Hidden Text|Basic Formatting]] |
|This is hidden: |{{{This is hidden: /% secret comment %/}}}|
!See also...
* [[WikiText]]
* [[Formatting Text]]
* [[Customization]]
* [[Macros]]
* ''[[TiddlySnip|http://tiddlysnip.com]]'' a firefox extension that allows you to use TiddlyWiki as a scrapbook!
* ''[[Tiddle|http://tiddle.sourceforge.net]]'' a desktop application which provides an indexed quick-search view into a TiddlyWiki file.
<<upgrade>>
@TiddlyWikiDev
''Double Brackets in Links Are Not Rendered Properly''
* [[replace|http://groups.google.com/group/TiddlyWiki/browse_thread/thread/90af118e1dc2fb1c]] the double brackets with their encoded equivalents, %5B and %5D respectively (see [[Firefox|Firefox#Permalinks]]).
All you need to run TiddlyWiki is your web browser. Though it must be a reasonably recent browser that supports javascript. Firefox is reported to have the best support, but IE (6 or better), Opera, and Safari are also supported.
If you want to [[Editing and Saving over HTTP|publish your TiddlyWiki]] then you'll need a web host (or a hosting service like the free http://www.tiddlyspot.com).
[[Category:FAQ]]
[[Category:Basics]]
If it seems like wiki options ("options >>" on the right sidebar) aren't being saved between browser sessions.
Make sure you have cookies enabled because the TW options are saved in cookies.
You can also change the default settings in a tiddler variously called systemconfig, systemsettings, zzconfigoptions. These are tiddlers, not tags.
See also [[How do I change my default options?|Persistent Options]]
/***
|''Name''|TemplateTransclusionPlugin|
|''Author''|Tobias Beer|
|''Version''|0.5 beta|
|''Description''|transcludes content from a tiddler by the same name having a certain prefix|
!Usage
Add to ViewTemplate...
{{{
<div macro='transclude <prefix>'></div>
}}}
Assuming the currently viewed tiddler is called ''Bar'' and //<prefix>// is ''Foo'' the macro will include FooBar.
!Code
***/
//{{{
config.macros.transclude = {
handler: function (place, macroName, params, wikifier, paramString, tiddler) {
wikify('<<tiddler [[' + params[0] + tiddler.title + ']]>>', place);
}
};
//}}}
!Summary
Iterates over all tiddlers and applies a given callback function.
!Signature
{{{TiddlyWiki.prototype.forEachTiddler = function(callback) {} }}}
!Returns
undefined
!Arguments
;1. (function) callback
: the function to be invoked on each tiddler
: passes two parameters to the callback function {{sub{
<<<
;1. t
:the tiddler title
;2. tiddler
:the tiddler object
<<<
}}}
!Example
{{{
store.forEachTiddler(foo);
}}}
''result:'' runs function foo at every tiddler passing the title and tiddler object to it
See [[Blockquotes]]...
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
The content of these tiddlers which have a prefix of {{DEV.}}} are prepended to tiddlers that originate from @TiddlyWiki.
A PermaLink allows you to open TiddlyWiki with a dedicated tiddler or a set of tiddlers.
TiddlyWiki provides two ways to contruct a PermaLink...
;PermaLink Toolbar Button
:» outputs a link in the browsers address bar to open TiddlyWiki with this tiddler
;PermaView Sidebar Button
:» outputs a link in the browsers address bar to open TiddlyWiki with all currently displayed tiddler preserving the order
Martin Budden has created formatter plugins that allow you to use markups other than TiddlyWiki, e.g.:
;MediaWiki Markup
:» [[MediaWikiFormatterPlugin|http://www.martinswiki.com/#MediaWikiFormatterPlugin]]
;More Markup Formatters
:» [[MartinsWiki.com|http://www.martinswiki.com]]
Also see [[this discussion on Google Groups|http://groups.google.com/group/TiddlyWikiDev/browse_thread/thread/a8b1e3cc62ae9268]]...
/***
|''Name''|TiddlySpaceRevisionView|
|''Description''|Show tiddler revisions in a stack of cards view|
|''Author''|BenGillies|
|''Version''|0.2.0|
|''Status''|beta|
|''Source''|http://github.com/TiddlySpace/tiddlyspace|
|''CodeRepository''|http://github.com/TiddlySpace/tiddlyspace|
|''License''|[[BSD|http://www.opensource.org/licenses/bsd-license.php]]|
|''CoreVersion''|2.6.0|
|''Requires''|TiddlyWebAdaptor|
!Usage
The viewRevisions macro can be attached to any element, which should be passed
in as a parameter.
For example:
<<viewRevisions page:10 link:"<<view modified date>>">>
would show the revisions "stack of cards" view, 10 at a time, when the modified
date is clicked.
!Code
***/
//{{{
(function($) {
var me = config.macros.viewRevisions = {
revisionTemplate: "RevisionTemplate",
revSuffix: " [rev. #%0]", // text to append to each tiddler title
defaultPageSize: 5, // default number of revisions to show
defaultLinkText: "View Revisions", // when there's nothing else to use
offsetTop: 30, // in px
offsetLeft: 10, // in px
shiftDownDelay: 50, // in ms
visibleSlideAmount: 20, // amount of revisions to show on left hand edge after sliding
zIndex: 100, // default z-index
handler: function(place, macroName, params, wikifier, paramString, tiddler) {
params = paramString.parseParams(null, null, true)[0];
var tiddlerElem = story.findContainingTiddler(place);
var revButton;
var pageSize = parseInt(params.page[0], 10) || me.defaultPageSize;
var linkObj = params.link ? params.link[0] || me.defaultLinkText : false;
if(linkObj) {
revButton = $('<span class="button openRevisions" />')
.appendTo(place);
wikify(linkObj, revButton[0], null, tiddler);
} else {
revButton = place;
}
$(revButton).click(function() {
if (!$(tiddlerElem).hasClass("revisions")) {
me.showRevisions(tiddlerElem, tiddler, pageSize);
} else {
me.closeRevisions(tiddlerElem);
}
});
},
// initialisation for revision view
showRevisions: function(tiddlerElem, tiddler, pageSize) {
var context = {
host: tiddler.fields["server.host"],
workspace: tiddler.fields["server.workspace"]
};
$(tiddlerElem).addClass("revisions").attr("revName", tiddler.title);
// ensure toolbar commands deactivate RevisionsView
$("a", ".toolbar", tiddlerElem).each(function(index, btn) {
var _onclick = btn.onclick;
btn.onclick = function(e) {
me.closeRevisions(tiddlerElem);
_onclick.apply(this, arguments);
};
});
// ensure default action deactivates RevisionsView
var _ondblclick = tiddlerElem.ondblclick;
tiddlerElem.ondblclick = function(e) {
me.closeRevisions(tiddlerElem);
_ondblclick.apply(this, arguments);
};
var type = tiddler.fields["server.type"];
var adaptor = new config.adaptors[type]();
var userParams = {
tiddlerElem: tiddlerElem,
pageSize: pageSize,
title: tiddler.title
};
me.createCloak(tiddlerElem);
adaptor.getTiddlerRevisionList(tiddler.title, null, context, userParams,
function(context, userParams) {
// strip the current revision
context.revisions.shift();
me.expandStack(context, userParams);
});
},
// fetch the actual revision and put it in the tiddler div
showRevision: function(place, revision, callback) {
var context = {
host: revision.fields["server.host"],
workspace: revision.fields["server.workspace"]
};
var userParams = {
revElem: place
};
var type = revision.fields["server.type"];
var adaptor = new config.adaptors[type]();
var revNo = revision.fields["server.page.revision"];
adaptor.getTiddlerRevision(revision.title, revNo, context, userParams,
function(context, userParams) {
var tiddler = context.tiddler;
tiddler.title += me.revSuffix
.format([$(place).attr("revision")]);
tiddler.fields.doNotSave = true;
if (store.getTiddler(tiddler.title)) {
store.deleteTiddler(tiddler.title);
}
store.addTiddler(tiddler);
//now, populate the existing div
var revElem = userParams.revElem;
$(revElem).attr("id", story.tiddlerId(tiddler.title));
$(revElem).attr("refresh", "tiddler");
var getTemplate = function() {
var themeName = config.options.txtTheme;
if (themeName) {
return store.getTiddlerSlice(themeName,
me.revisionTemplate) || me.revisionTemplate ||
"ViewTemplate";
} else {
return (store.getTiddler(me.revisionTemplate)) ?
me.revisionTemplate : "ViewTemplate";
}
};
var template = getTemplate();
story.refreshTiddler(tiddler.title, template, true);
callback(tiddler);
});
},
createCloak: function(promoteElem) {
var el = $(promoteElem);
// cache styles for resetting later
el.data({
top: el.css("top"),
left: el.css("left"),
zIndex: el.css("z-index")
});
$('<div class="revisionCloak" />').css("z-index", me.zIndex)
.click(function() {
me.closeRevisions(promoteElem);
})
.appendTo(document.body);
el.css("z-index", me.zIndex + 1);
},
// clean up, removing all evidence of revision view
closeRevisions: function(promoteElem) {
var el = $(promoteElem);
// revert the original tiddler back to its previous state
el.removeAttr("revName").removeClass("revisions").css({
top: el.data("top"),
left: el.data("left"),
zIndex: el.data("zIndex")
});
// remove any revisions still in the store
var revisions = $(".revisions");
revisions.each(function(index, revision) {
var revAttributes = revision.attributes;
if ((revAttributes.revname) &&
(revAttributes.revision)) {
var revName = revAttributes.revname.value;
var revNo = revAttributes.revision.value;
var title = revName + me.revSuffix.format([revNo]);
if (store.getTiddler(title)) {
store.deleteTiddler(title);
}
}
});
// delete the previous revisions
revisions.remove();
// remove the cloak
$(".revisionCloak").remove();
},
// calback from getting list of revisions
expandStack: function(context, userParams) {
var pageSize = userParams.pageSize;
var from = userParams.from || 0;
var tiddlerElem = userParams.tiddlerElem;
userParams.defaultHeight = $(tiddlerElem).height();
userParams.defaultWidth = $(tiddlerElem).width();
if (from < context.revisions.length) {
me.displayNextRevision(tiddlerElem, userParams, context, from,
from + pageSize - 1);
}
},
// place the next div above and behind the previous one
displayNextRevision: function(tiddlerElem, userParams, context, from, to) {
var revision = context.revisions[from];
var callback = function() {
var revText = revBtn.getRevisionText(tiddlerElem, revision);
tiddlerElem = me.createRevisionObject(tiddlerElem, context,
userParams, revText);
$(tiddlerElem)
.attr("revision", (context.revisions.length - from));
if ((from < to) && ((from + 1) < context.revisions.length)){
me.displayNextRevision(tiddlerElem, userParams, context,
from + 1, to);
} else if ((context.revisions.length - 1) > to) {
me.showMoreButton(tiddlerElem, context, userParams, to + 1);
}
};
me.shiftVisibleDown(userParams.title, callback);
},
createRevisionObject: function(tiddlerElem, context, userParams, text) {
var newPosition = me.calculatePosition(tiddlerElem, context);
return $('<div class="revisions tiddler" />')
.css({
position: "absolute",
top: newPosition.top,
left: newPosition.left,
"z-index": me.zIndex + 1,
height: userParams.defaultHeight,
width: userParams.defaultWidth
})
.attr("revName", userParams.title)
.append(text)
.insertBefore(tiddlerElem);
},
// move the already present revisions down by 1 to fit the next one in
shiftVisibleDown: function(title, callback) {
var revisions = $("[revName='%0'].revisions".format([title]));
var revisionCount = revisions.length;
$(revisions).animate({top: "+=" + me.offsetTop},
me.shiftDownDelay, function() {
revisionCount -= 1;
if ((callback) && (!revisionCount)) {
callback();
}
});
},
// where we put the new revision
calculatePosition: function(elem, context) {
var offset = $(elem).offset();
var currentPosition = $(elem).position();
var newPosition = {
top: currentPosition.top - me.offsetTop
};
if ((context.restrictLeft) ||
((offset.left - me.offsetLeft) <
$("#contentWrapper").offset().left)) {
newPosition.left = $(elem).position().left;
context.restrictLeft = true;
} else {
newPosition.left = currentPosition.left - me.offsetLeft;
}
return newPosition;
},
// equivalent of displayNextRevision, but for the more button
showMoreButton: function(tiddlerElem, context, userParams, moreIndex) {
userParams.from = moreIndex + 1;
me.shiftVisibleDown(userParams.title, function() {
var btn = me.createRevisionObject(tiddlerElem, context, userParams,
"");
var more = createTiddlyButton(btn[0], "more...", "show more revisions",
function() {
if ($(".viewRevision").length) {
return;
}
userParams.tiddlerElem = btn[0];
$(btn).text("")
.append(revBtn
.getRevisionText(btn[0], context.revisions[moreIndex]))
.attr("revision", context.revisions.length - moreIndex);
me.expandStack(context, userParams);
});
$(more).css("float", "right");
});
},
stripRevFromTitle: function(revisionTitle) {
return revisionTitle.split(/ ?\[rev\. #[0-9]+\]$/)[0];
},
onClickRevision: function(revElem, revision, callback) {
// don't do anything if we are still loading
if ($(".revisions").hasClass("loading")) {
return null;
}
var origTitle = me.stripRevFromTitle(revision.title);
if ($(revElem).hasClass("viewRevision")) {
$(".revisions").addClass("loading");
me.slideIn(revElem, revision, origTitle, function() {
store.deleteTiddler(revision.title);
revision.title = origTitle;
$(revElem).text("").append(revBtn.getRevisionText(revElem,
revision))
.removeAttr("tags").removeAttr("tiddler")
.removeAttr("refresh").removeAttr("template")
.removeAttr("id");
$(".revisions").removeClass("loading");
if (callback) {
callback();
}
});
$(revElem).removeAttr("prevPos").removeClass("viewRevision");
} else {
var viewRevision = function() {
var prevPos = $(revElem).position().left;
$(revElem).addClass("viewRevision").attr("prevPos", prevPos);
$(".revisions").addClass("loading");
me.showRevision(revElem, revision, function(rev) {
me.slideOut(revElem, rev, origTitle, function() {
$(".revisions").removeClass("loading");
});
});
};
// make sure another revision isn't already out
if ($(".viewRevision").length) {
var newRevElem = $(".viewRevision")[0];
var newRevision = store.getTiddler($(newRevElem)
.attr("tiddler"));
me.onClickRevision(newRevElem, newRevision, viewRevision);
} else {
viewRevision();
}
}
},
slideOut: function(revElem, revision, title, callback) {
var leftMostPos = $("[revName='%0'].revisions".format([title]))
.offset().left;
var width = $(revElem).width();
var originalLeftPos = $(story.getTiddler(title))
.position().left;
var slideAmount = leftMostPos + width - me.visibleSlideAmount;
$("[revName='%0'].revisions:not(.viewRevision)".format([title]))
.animate({left: "-=" + slideAmount}, 1000);
$(revElem)
.attr("baseHeight", $(revElem).css("height"))
.css("height", "auto")
.animate({left: originalLeftPos}, 1000, callback);
},
slideIn: function(revElem, revision, title, callback) {
var slideAmount = $(revElem).offset().left -
$(story.getTiddler(title)).offset().left;
var origRevPos = $(revElem).attr("prevPos");
$("[revName='%0'].revisions:not(.viewRevision)".format([title]))
.animate({left: "+=" + slideAmount}, 1000);
$(revElem).animate({left: origRevPos}, 1000, function() {
$(revElem)
.css("height", $(revElem).attr("baseHeight"))
.removeAttr("baseHeight");
callback();
});
}
};
var revBtn;
config.macros.slideRevision = revBtn = {
btnText: "created by %0 at %1 on %2",
handler: function(place, macroName, params, wikifier, paramString, tiddler) {
var btn = revBtn.getRevisionText(place, tiddler);
$(place).append(btn);
},
getRevisionText: function(place, revision) {
var text = revBtn.btnText.format([revision.modifier,
revision.modified.formatString("0hh:0mm"),
revision.modified.formatString("0DD MMM YYYY")]);
var btn = $('<a href="javascript:;" class="button revButton" />')
.text(text)
.click(function() {
var revElem = story.findContainingTiddler(this);
me.onClickRevision(revElem, revision);
});
return btn;
}
};
})(jQuery);
//}}}
Image hosting sites offer a handful of pre-set sizes (eg thumbnail, small, large). If none suit, here's one method for resizing images within TiddlyWiki.
If using a URL, wrap it in HTML tags and insert '''style="width: 70px; "''' or '''style="height: 146px; "''' (altering the px to desired size) before '''/></html>''' like this:
<nowiki>
<html><img src="url of image" style="width: 70px; "/></html>
</nowiki>
If using HTML code from a hosting site, insert '''style="width: 70px; "''' before /></a></html> like this:
<nowiki>
<html><a href="link" style="width: 70px;" /></a></html>
</nowiki>
You can also use [[ImageSizePlugin|http://www.tiddlytools.com#ImageSizePlugin]] from [[TiddlyTools]] to resize images without using HTML.
/***
|''Name''|GetPlugin|
|''Author''|[[Tobias Beer|http://tobibeer.tiddlyspace.com]]|
|''Description''|fetch and output a (list of) tiddler, section, slice or field using a predefined or custom format|
|''Source''|https://raw.github.com/tobibeer/TiddlyWikiPlugins/master/plugins/GetPlugin.min.js|
|''Documentation''|http://get.tiddlyspace.com|
|''Version''|1.2.3 2013-11-07|
|''~CoreVersion''|2.6.2|
|''License''|Creative Commons 3.0|
/%***/
(function(e){var t=config.macros.get={config:"GetPluginConfig",dict:{errFunction:"Function undefined!",errFunctionInfo:"config.macros.get.get%0 is not a valid function!",errConfig:"Config not found!",errConfigInfo:"Config '%0' either does not exist or does not have a 'Tags' section!",defaultCategory:"Tiddler",tipSlider:"toggle '%0'",tipTab:"show '%0'"},identifiers:{filter:"$",fuzzy:"~",tiddler:"!"},template:{fuzzy:"%0",tiddler:"![[%1]]\n%0",section:"!%3 / [[%1]]\n%0",slice:";%3\n:%0",field:";%3\n:%0",tiddlerList:"!![[%1]]\n%0",sectionList:"!![[%1]]\n%0",sliceList:";[[%1]]\n:%0",fieldList:";[[%1]]\n:%0",tiddlerTable:"|[[%1]]|<<tiddler [[%4]]>>|",sectionTable:"|[[%1]]|<<tiddler [[%4]]>>|",sliceTable:"|[[%1]]|<<tiddler [[%4]]>>|",fieldTable:"|[[%1]]|%0|\n",tiddlerTableHead:"| !%0 | !Text |h\n",sectionTableHead:"| !%0 | !%1 |h\n",sliceTableHead:"| !%0 | !%1 |h\n",fieldTableHead:"| !%0 | !%1 |h\n",fmtSliders:'<<slider "%0" "%1" "%2" "%3">>',fmtTabs:'<<tabs "%0" %1>>',tableClass:"getTable",dateFormat:"0DD.0MM.YYYY"},handler:function(n,r,i,s,o,u){if(!o)return;var a,f,l,c="",h,p,d,v,m,g,y=story.findContainingTiddler(n),b=u&&u.tags?u.tags:[],w=o.parseParams("anon",null,true),E=getParam(w,"config",false),S=getParam(w,"filter"),x=i.contains("listfiltr"),T=i[0];if(t.identifiers.fuzzy==T){var N=true;i.shift()}title=u?u.title:y?y.getAttribute("tiddler"):"";if(t.identifiers.tiddler==T){var C=true;i.shift()}if(t.identifiers.filter==T){e(store.getTiddlerText(i[1]).split("\n")).each(function(){var t=this.split("|");e(store.filterTiddlers(t[0])).each(function(){if(title==this.title)c=t[1];return!c});return!c});if(!c)return}else if(E){refItem=getParam(w,"refItem",t.identifiers.tiddler);refTag=getParam(w,"refTag",t.identifiers.tiddler);E=E=="true"?t.config:E;d=store.getTiddlerText(E+"##Tags");if(!d){createTiddlyError(n,t.dict.errConfig,t.dict.errConfigInfo.format([E]))}else{d=d.split("\n");v=store.getTiddlerText(E+"##Template");for(y=0;y<d.length;y++){h=d[y];if([""," ","/","{"].contains(h.substr(0,1)))continue;h=d[y].split("|");f=e.trim(h[h.length>2?2:h.length-1]).parseParams("anon",null,true);if(u.title==h[h.length==1?0:1]&&(h.length==1||h[1]!="")&&refTag!="false")l=1;else if(b.contains(h[0])&&(h.length==1||h[0]!="")&&refItem!="false")l=2;if(l){wikify('<<tiddler "'+E+'##Template" with: "'+(l==1?getParam(f,"refTag",refTag):getParam(f,"refItem",refItem))+'" "'+u.title+'"'+">>",n);return}}}return}var k=0,L="",A=[],O,M,_="",D,P,H,B,j=e(n),F=j.attr("macroName")=="get",I=t[getParam(w,"exec","getValues")],q=getParam(w,"format",""),R=store.getTiddlerText(getParam(w,"template","")),U=i.contains("plain"),z=getParam(w,"sliders",i.contains("sliders")),W=getParam(w,"tabs",i.contains("tabs")),v=z?"Sliders":W?"Tabs":i.contains("table")?"Table":i.contains("list")||S?"List":"",X=v.toLowerCase(),V=["sliders","tabs"].contains(X),g=C?"":i[0],$=config.filters.get.delimiterRegExp.exec(c?"":g),J=$?$[2]:"",K=$?$[3]:"",Q=J=="##"?"section":J=="::"?"slice":J=="??"?"field":"tiddler",G=getParam(w,"valueprefix",""),Y=getParam(w,"prefix",""),Z=getParam(w,"suffix",""),et=getParam(w,"category",t.dict.defaultCategory),tt=getParam(w,"header",X!="table"?"":"|"+t.template.tableClass+" "+t.template.tableClass+Q.toUpperCase()+"|k\n"+t.template[Q+"TableHead"].format([et,K])),nt=getParam(w,"footer",""),rt=getParam(w,"separator","\n"),it=V?(new Date).formatString("YYYY0MM0DD0hh0mm0ss")+Math.random().toString().substr(6):"";if(!c){title=N||!g?title:$?$[1]?$[1]:title:g;if(V){O=t.template["fmt"+(X=="tabs"?"Tabs":"Sliders")]}else{O=U?"%0":q?q:R?R:t.template[N?"fuzzy":J=="##"?"section"+v:J=="::"?"slice"+v:J=="??"?"field"+v:"tiddler"+v]}if(I){H=I.call(t,o,N?g:(X?"":title)+J+K,title,Q,K,X,N)}else{createTiddlyError(n,t.dict.errFunction,t.dict.errFunctionInfo.format([get]));return false}do{k++;A.push(L);L=getParam(w,"$"+k,null)}while(L!=null);for(D=0;D<H.length;D++){M=H[D][0];P=G+H[D][1];P=P.indexOf("***/\n")!=0?P:P.substr(5);for(k=1;k<A.length;k++){P=P.replace(new RegExp("\\$"+k,"mg"),A[k])}B=(X?M:"")+g;O=O.replace(/\\n/mg,"\n");if(X=="tabs"){_+=" [[%0]] [[%1]] [[%2]]".format([M,t.dict.tipTab.format([B]),B])}else{c+=(Y+(X=="sliders"?C&&title==M?"":O.format(["chk"+("string"==typeof z?z:it)+M.replace(/(?!\w)[\x00-\xC0]/mg,"_"),B,M,t.dict.tipSlider.format([B])]):O.format([P,M,Q,K,B,et]))+Z).replace(/\$count/mg,String.zeroPad(D+1,H.length.toString().length))+(X&&D<H.length-1?rt:"")}}}if(X=="tabs"){c=(Y+O.format(["txt"+("string"==typeof W?W:it),_])+Z).replace(/\$count/mg,H.length)}c=(tt?tt:"")+c+(nt?nt:"");if(!F){j=e("<span />");j.appendTo(n);n=j[0];j.attr({refresh:"macro",macroName:"get",params:o})}wikify((x?"{{lf_get{\n%0\n}}}<<listfiltr>>":"%0").format([e.trim(c)]),n)},refresh:function(n,r){e(n).empty();t.handler(n,"get",r.readMacroParams(),null,r)},getValues:function(e,n,r,i,s,o,u){var a,f,l,c,h,p=[],d=e.parseParams("getval",null,true),v=getParam(d,"filter",null),m=u?config.macros.ns:false,c=o?v?store.filterTiddlers(v):store.getTiddlers("title"):[{title:r}];if(u)o="";if(m){m=m?m.defaults.separator:"";l=r+m+n;m=store.getTiddlerText(l);if(m){p.push([l,m]);r=store.getTiddler(l);i="tiddler";u=null}}if(!m){for(f=0;f<c.length;f++){h=undefined;l=c[f].title;if(u||i=="field"){h=store.getValue(l,u?n:s);if(u&&h)i="field"}if(!h){if(u){h=store.getTiddlerText(l+"::"+n);if(h)i="slice";if(!h){h=store.getTiddlerText(l+"##"+n);if(h)i="section"}if(!h){h=store.getTiddlerText(n);if(h){i="tiddler"}}}else{h=store.getTiddlerText((o?l:"")+n)}}a=h&&h.length==12?Date.convertFromYYYYMMDDHHMM(h):undefined;if(a&&!isNaN(a.getMonth))h=a.formatString(t.template.dateFormat);if(h){p.push([l,h])}}}return p}};config.filters.get=function(e,t){var n=t.index==0,r=config.filters.get.delimiterRegExp.exec(t[3]),i=r?r[1]:t[3],s=r?r[2]:"",o=r?r[3]:"",u=n?store.getTiddlers("title"):e.slice();e=[];u.map(function(t){if(i&&i==t.title||!i&&(s=="??"&&store.getValue(t.title,o)||store.getTiddlerText(t.title+s+o)))e.pushUnique(t)});return e};config.filters.get.delimiterRegExp=/(.*)?(\#\#|::|\?\?)(.*)/})(jQuery)
//%/
Type the text for 'New Tiddler'
TiddlyWiki Resources
Contents
[show]
Official
tiddlywiki.com is the primary TiddlyWiki web site.
wiki.tiddlywiki.org is this documentation wiki.
trac.tiddlywiki.org Trac site for submitting/viewing bug reports and seeing the core development progress.
Getting Started on TiddlyWiki.com
Books
TiddlyWiki維基寫作-知識管理最佳工具 ("TiddlyWiki - An excellent tool for knowledge management."; Traditional Chinese)
Guides and Tutorials
TW Help a TiddlyWiki help file for beginners maintained by Morris Gray
TiddlyWiki for the rest of us by Dave G (Also available in Spanish)
Intro: TiddlyWiki is a very versatile program, but has an initial learning curve to it. Much of the documentation is written by and for people immersed day after day in computer code, so, um, how do I put this delicately, it is not always written in helpful everyday language. Not being a computer genius myself, I found the TiddlyWiki learning curve daunting, but well worth it. For those of you like me, newcomers to TiddlyWiki who don't know "Tiddly Squat", I would like you to discover this great program without having to commit as much time and energy to it as I did. Enjoy!
Tiddler Toddler A guide for absolute beginners by Julie Starr, an absolute beginner
TiddlyWikiTutorial a tutorial in the form of a TiddlyWiki
TiddlyWiki Basics by Denise Olson
Writing Macros and Core Code Overview now contain what had been at The Macrocodex a guide to writing TiddlyWiki macros by Gimcrack'd. (That link now produces 301.)
Tid-Help a primer for tiddlywiki by Jim Ventola
TiddlyWiki Getting Started Guide by Daniel Baird
A Getting Started Guide in development that might still be the first in a series of standalone guides to TiddlyWiki. See the latest sample for a preview.
TiddlyWiki quick reference card by Dmitri Popov (CheatSheet PDF) (Broken)
TiddlyWiki Format Reference One page reference for TiddlyWiki markup (without resorting to view tiddler source)
Start here: The making of a presentation manager part 1 to part 3 - A step by step HowTo get this: a-pm presentation manager by Mario Pietsch
Other Useful Sites
TiddlySpot (free TiddlyWiki hosting)
TiddlySnip a firefox extension that allows you to use TiddlyWiki as a scrapbook! (this wouldn't work in Firefox 3.5.12 because of an invalid security certificate)
TiddlyThemes a gallery of themes for TiddlyWiki
Community Support
Users' mailing list at Google Groups (Newcomers welcome!)
Developers' mailing list at Google Groups
IRC chat (#tiddlywiki on Freenode)
Facebook Groups
Benefactors
UnaMesa
Osmosoft
More
Some of these might be past their use-by date.
Tid-Help 2 a screencast also by Jim Ventola
TiddlyWikiTutorial by Blog Jones
Intro: Welcome to TiddlyWikiTutorial, an introduction to one of the most efficient ways of communicating information ever devised.
Getting Started Guide by Russ Lipton 404
Contents About Getting Started, What Is TiddlyWiki? What You Can Do With TiddlyWiki, Getting Around TiddlyWiki...
TiddlyWikiFAQ by Simon Baird. Has some stuff that should be migrated over here.
Some useful reference stuff by Julian Knight (Jules) including lists of built-in macros, formatting rules and useful JavaScript methods for developers.
TiddlyWikiTips by Jim Barr
A screencast by Leon Kilat. Unfortunately he choose an old version of GTD-TiddlyWiki. (Full screen version here).
An old but good introduction to/description of TiddlyWiki from euicho.com
Some older stuff at zrenard.com.
TiddlyWikiPlugin on delicious a list of plugins maintained by BidiX
Guida a TiddlyWiki an italian TiddlyWiki tutorial
Searches
Search for code at GitHub.
Search for code at SourceForge.
Search for shareable adaptations and user creations at LimeBits.
Search for anything "TiddlyWiki" at Delicious.
[[StyleSheetTiddlySpace]]
/*{{{*/
.tidTags .tiddlyLink {
margin-left: 8px;
}
.info_source {
margin-left: 56px;
}
.tidTags .tiddlyLink {
display: inline-block;
}
.tidTags .emptyList {
display:none;
}
h1, h2, h3 {
margin-top: 0.7em;
}
.info_source {
margin-left: 56px;
}
.tiddler .viewer {
margin:0;
}
.viewer .tagcloudTag {
border:none;
background:#ddf;
line-height:1.2em;
}
.viewer .tagcloudTag:hover{
background:#ccf;
}
.viewer pre {
font-size:1em;
}
.viewer .annotation pre {
background-color:[[ColorPalette::TertiaryPale]];
}
.viewer .table100 {
width: 100%;
}
.viewer table,
table.twtable {
margin: 0.8em 0;
}
.viewer .error td,
.twtable .error td {
background-color: #fcc;
}
.viewer td, .viewer tr, .twtable td, .twtable tr {
vertical-align:top;
background: white;
}
.inlineList li {
margin-right: 10px;
display: inline-block;
}
.justifyright {
text-align: right;
}
.justifyfull {
text-align: justify;
}
.serialized{
margin:1em 1em 1em 0;
}
#searchResults .button {
background:white;
float:right;
margin:0.5em 0 0 1em;
padding:0.5em 1em;
}
#menuBar {
padding: 0.3em 0;
}
#mainMenu a {
padding: 5px 10px;
font-size: 0.9em;
margin: 0;
line-height: 1em;
display: inline-block;
}
#sidebarOptions .tiddlyLink,
#sidebarOptions .button {
font-size: 0.7em;
font-weight:normal;
float: right;
padding: 5px 15px;
color: #fff;
display:inline;
cursor: pointer;
line-height: 1em;
text-align: center;
margin: 0 !important;
display: block;
width:auto;
}
#sidebarOptions .tiddlyLink:hover {
color: #fff;
}
.annotation {
display:block;
margin:0.5em 0 0 0;
background-color:[[ColorPalette::PrimaryPale]];
border:none;
}
#sidebarTabs .tabsetWrapper .tabset .tabSelected {
border-color: [[ColorPalette::PrimaryLight]];
}
#sidebarTabs .tabsetWrapper .tabContents {
border-color: [[ColorPalette::PrimaryLight]];
}
.tiddler {
border-top-color: [[ColorPalette::PrimaryLight]];
}
.tiddler:hover {
border-top-color: [[ColorPalette::PrimaryMid]];
}
.tiddler .titleBar{
margin-left:40px;
}
.tiddler .heading .title {
font-size:24px;
line-height:24px;
}
.tagInfo {
margin:0;
}
.tiddler .subtitle:hover {
font-weight:normal;
color:[[ColorPalette::TertiaryMid]];
}
#messageArea .button{
color:[[ColorPalette::Background]];
background:transparent;
text-decoration:none;
}
#messageArea .button:hover{
text-decoration:underline;
}
.viewer blockquote {
border-left: 1px solid[[ColorPalette::PrimaryMid]];
background-color:[[ColorPalette::TertiaryPale]];
line-height: 1.5em;
padding-left: 0.5em;
margin: 0.5em;
}
#messageArea {
top: 0 !important;
left: 30%;
width: 30%;
}
.viewer table, table.twtable {
border:1px solid [[ColorPalette::TertiaryLight]] !important;
}
.viewer th, .viewer thead td, .twtable th, .twtable thead td, .twtable thead tr.evenrow td{
background:[[ColorPalette::SecondaryPale]];
border:1px solid [[ColorPalette::TertiaryLight]] !important;
font-weight:bold;color:[[ColorPalette::Foreground]];
}
.viewer td, .viewer tr, .twtable td, .twtable tr {
border:1px solid [[ColorPalette::TertiaryLight]] !important;
}
.viewer tr.evenRow td, .twtable tr.oddrow td {
background:[[ColorPalette::TertiaryPale]];
}
.viewer th .linkified .tiddlyLink {
font-weight: bold;
color:[[ColorPalette::PrimaryMid]];
}
.viewer th .linkified .tiddlyLink:hover {
color:[[ColorPalette::PrimaryLight]];
}
.highlight,
.marked {
background:[[ColorPalette::SecondaryPale]];
}
.tiddlyLink:hover .highlight,
.tiddlyLink:hover .marked {
background:[[ColorPalette::PrimaryLight]];
}
.alert{
color:red;
}
.viewer .listWrapper li {
margin-top:1px;
background:[[ColorPalette::TertiaryPale]];
list-style-type:none;
padding:0;
}
.viewer .listWrapper li .tiddlyLink {
display:block;
padding:0 4px;
}
.viewer .listWrapper li.listTitle {
background:transparent;
}
.viewer a.bookmarklet,
.viewer span.bookmarklet {
color:#6A6;
font-weight:bold;
}
.viewer a.bookmarklet:hover,
.viewer span.bookmarklet:hover {
color:#393;
font-weight:bold;
background:none;
}
.viewer ul.timeline li.listTitle {
margin-left: 0;
}
.viewer ul.timeline li.listLink {
margin-left: 1em;
list-style-type:none;
color:[[ColorPalette::TertiaryMid]];
}
.viewer .noTitle li.listTitle{
display:none;
}
.fancyTimeline .listTitle{
margin-top:5px;
font-size:1.2em;
color:[[ColorPalette::PrimaryLight]];
}
.source {
float:right;
margin-right:1em;
}
dd{
margin-left: 1em;
}
.titleBar .siteIcon,
.titleBar .label {
display:inline !important;
}
.titleBar a {
color:[[ColorPalette::TertiaryLight]];
}
.titleBar a:hover {
background:transparent;
color:[[ColorPalette::PrimaryLight]];
}
.titleBar .siteIcon img {
display:none;
}
.tiddlerCustomFields input {
width:300px;
}
.tiddlerCustomFields .fieldName {
width:100px;
}
.right {
float:right;
}
.scanResults > ul{
margin-left:0;
padding:0;
}
.scanResults >ul > li {
padding:5px;
}
.scanResults >ul > li:hover {
background:[[ColorPalette::PrimaryPale]];
}
.scanResults blockquote {
border-left:1px solid [[ColorPalette::PrimaryLight]];
margin-left: 0.5em;
padding-left:10px;
}
.functions > div > ul,
.functions > div > ul > li{
margin:0;
padding:0;
list-style-type:none;
}
dd {
margin-left: 20px;
}
dd:before {
content: '» ';
}
/*}}}*/
/***
|''Name''|RandomSortFilter|
|''Version''|0.1.2|
!Description
Updates the sort filter to take a keyword *random
!Usage
{{{
[sort[*random]]
}}}
***/
//{{{
(function() {
var _sort = config.filters.sort;
config.filters.sort = function(results,match) {
if(match[3] === "*random") {
results = results.sort(function(a, b) {
var r = Math.random();
return r < 0.5 ? -1 : 1;
});
return results;
} else {
return _sort.apply(this, arguments);
}
};
})();
//}}}
/***
@@color:red;For now, this is a custom plugin for the @TiddlyWikiDev space.@@
Renders the actual source of a core or other function into a slider...
!Usage
;{{{<<code>>}}}
:» when the tiddler title already is the path, e.g. [[Tiddler.prototype.set()]]
:» if that has been hijacked, use the field {{{function}}} to define an alternative path
;{{{<<code some.js.path>>}}}
:» for any desired path
!Example
{{{
<<code config.macros.code.handler>>
}}}
<<code config.macros.code.handler>>
Assuming you set the custom field {{{function}}} to the above, this also works...
{{{
<<code>>
}}}
<<code>>
***/
///%
config.macros.code = {
dict : {
undefined: 'undefined',
txtName: 'of function %0',
btnTitle: 'View source code%0...',
btnTooltip: 'Click to see the source code%0...'
},
handler : function(place,macroName,params) {
var f, field, ip, noBrackets, slider, tid, displayName,
d = this.dict,
path = params[0],
showname = params.contains('showname');
if(!path){
tid = story.findContainingTiddler(place);
path = tid ? tid.getAttribute('tiddler') : '';
}
field = store.getValue( path, 'function');
if(field) path = field;
if(path) {
ip = path.indexOf('.prototype.');
noBrackets = '()' != path.substr(path.length-2);
path = noBrackets ? path : path.substr(0,path.length-2);
console.log(path);
f = eval(path);
if(!f && ip > 0 )f = eval(path.substr(0,ip));
f = f ? f.toString() : d.undefined;
config.shadowTiddlers['CODE_' + path] = '{{{\n' + f +'\n}}}';
displayName = showname ? d.txtName.format([path]) : '';
slider = '<<slider chkCode.' +
path + ' "' +
'CODE_' + path + '" "' +
d.btnTitle.format([displayName]) + '" "' +
d.btnTooltip.format([displayName]) +
path + '...">>'
wikify(slider, place);
}
}
};
//%/
Using the [[newTiddler]] macro you are able to create new tiddlers with predefined contents.
!1. Entering Text Directly
Use the {{{text}}} parameter to provide the desired text for the new tiddler...
{{{
<<newTiddler
label:"New tiddler with text content.."
text:"Some content..."
tag:"NEW!"
>>
}}}
<<newTiddler
label:"New tiddler with text content.."
text:"Some content..."
tag:"NEW!"
>>
!2. """Using A Template Tiddler"""
Use the {{{text}}} parameter and the getTiddlerText function to fetch the template text from a tiddler via evaluated parameters...
{{{
<<newTiddler
label:"New tiddler with template content..."
text:{{store.getTiddlerText("Welcome")}}
tag:"NEW!"
>>
}}}
<<newTiddler
label:"New tiddler with template content..."
text:{{store.getTiddlerText("Welcome")}}
tag:"NEW!"
>>
{{annotation{
''Important:'' For this to work in TiddlySpace, you will need to enable [[Evaluated Parameters]].
}}}
!store.getTiddlerText()
<<tiddler [[getTiddlerText (function)]]>>
The function {{{getTiddlerText()}}} is a [[core function|http://tiddlywikidev.tiddlyspace.com/#Dev.Core]] of the [[store object|http://tiddlywikidev.tiddlyspace.com/#TiddlyWiki.class]] and allows to fetch the text of...
; [[an entire tiddler|Tiddler]]
:{{{store.getTiddlerText("Some Tiddler")}}}
; [[a tiddler section|Sections]]
:{{{store.getTiddlerText("Some Tiddler##Some Section")}}}
:» notice the double hashes ##
;[[a tiddler slice|Slices]]
:{{{store.getTiddlerText("Some Tiddler::SomeSlice")}}}
:» notice the double colons ::
It is an integral part to [[tiddler]] macro macro and what is referred to as transclusion.
For more info, see [[TiddlyWiki.prototype.getTiddlerText()]]...
Looking for a [[old version|Archive]] of TiddlyWiki? Check out the [[Archive|http://tiddlywiki.com/archive]] embedded below...
<html>
<div style="overflow:hidden;position:relative;clear:both;height:250px;width:100%;">
<iframe style="overflow:auto;position:absolute;margin:0 0 0 -10px;top:-130px; width:100%;height:380px;border:0;" src="http://tiddlywiki.com/archive"/>
</div>
</html>
'' Slow Rendering ''
In TiddlyWikis with a large amount of tiddlers, the listings in [[SideBarTabs]] (e.g. [[Timeline]]) might require a long time to be generated, thus inhibiting the overall performance.
cf. [[Tips for speeding up performance on large TiddlyWikis|http://www.giffmex.org/twfortherestofus.html#%5B%5BTips%20for%20speeding%20up%20performance%20on%20large%20TiddlyWikis%5D%5D]]
Quote:[[Dave|http://groups.google.com/group/TiddlyWiki/browse_thread/thread/2558268245a93d7a/cec021c6f5b42271?#cec021c6f5b42271]]
I recommend disabling animations even on medium-sized tiddlywikis. Animations slow it down. Also, if your file gets big you will want to open the shadowed tiddler tab rather than the tab listing all tidders A-Z or by date. Or hide the tabbed menus altogether if you don't need them showing. With each new tiddler, the image of the two tabbed lists I mentioned (all and by date) has to be refreshed and can take a while. You can remove the tabbed lists from the page layout by removing their code from PageTemplate. Nevertheless, I have a couple TiddlyWikis with 1,000s of tiddlers that each have form fields, and I am not noting any other performance
issues yet.
'' Plugin Load Times ''
[[Eric|http://groups.google.com/group/TiddlyWiki/browse_thread/thread/38c0b23e4e007c2b/263409bf4f852efd?#263409bf4f852efd]]
The plugin 'load timer' information is available in the shadow tiddler, [[PluginManager]], which is also accessible from the
backstage>plugins menu, or by embedding the <nowiki><<plugins>></nowiki> macro into any tiddler content.
[[Martin|http://groups.google.com/group/TiddlyWiki/browse_thread/thread/38c0b23e4e007c2b/53af6dface09556f?#53af6dface09556f]]
You can also see the total time taken to load the plugins:
1) go to the tweak dropdown in backstage
2) click the "Show unknown options" checkbox
3) click the "chkDisplayInstrumentation" checkbox, it's about the 8th one down
this will let you see what proportion of the total load time is spent loading the plugins
'' Maximum File Size ''
Ken: This seems to be the constant question: How big can it get?
As far as I am aware there is no limit to how big of a file you can download and open. I pumped up a TW to around 3 megs just to see what it could do and didn't have any problems. It took a while to get the file, but I got it.
If you are running lots of plugins then Firefox will give you the "A script is making this page run slow. Do you want to continue?" message, but it will load.
[[Daniel|http://groups.google.com/group/TiddlyWiki/browse_thread/thread/2558268245a93d7a/7dcfe21a4e0d5bd3?#7dcfe21a4e0d5bd3]]
The problems reported by people with large TiddlyWikis are usually performance based, and it seems that the solution (once you've disabled animations..) is to remove macros that loop through every tiddler, like the tabs in the sidebar. So it's not so much the size
that's the problem in a direct sense, but the fact that many TW macros assume that looping through every tiddler isn't very slow.
Markus: Mine is online and loading of about 1.7 MB might be quite annoying for people with low bandwidth. I'm desperately seeking for a solution !
''Book Comparison ''
[[Alice in Wonderland|http://www.gutenberg.org/etext/11]], a book of approximately 200 pages, translates to a mere 160 kB in plain-text format.
'' See Also ''
* [[Tips for speeding up performance on large TiddlyWikis|http://www.giffmex.org/twfortherestofus.html#%5B%5BTips%20for%20speeding%20up%20performance%20on%20large%20TiddlyWikis%5D%5D]]
* [[I keep getting "A script is making this page run slow" in Firefox]]
The ~TiddlySaver Java applet allows ~TiddlyWiki to save changes in a local version (from a file:// URL) of Safari, Opera and other browsers. It is a small file named [["TiddlySaver.jar"|TiddlySaver.jar]] that must be placed in the same directory as your ~TiddlyWiki file. As of August 2008, when an empty ~TiddlyWiki file is downloaded using either Safari or Opera, it is bundled with a copy of the ~TiddlySaver.jar file in a zip file - both files must be in the same directory ''whenever the ~TiddlyWiki file is opened'' in order to work.
[["TiddlySaver.jar"|TiddlySaver.jar]] is signed by [[UnaMesa Association|UnaMesa]]. The [[UnaMesa Association|UnaMesa]] certificate is signed by the ''Thawte Code Signing CA'' intermediate certificate which is chained to the ''Thawte Premium Server CA'' root certificate. You need to trust this certificate Chain to be able to use the applet.
Note that there is currently [[a bug|http://trac.tiddlywiki.org/ticket/172]] that prevents ~TiddlySaver from working if you have specified a backup directory in AdvancedOptions and the directory doesn't exist.
Thanks to Andrew Gregory for the original TiddlySaver code, and ~BidiX for arranging all the certificate magic.
''Source'': [[Google Discussion Groups|http://groups.google.com/group/tiddlywiki/browse_thread/thread/f440f280a8098592/58fc107fd0fe86ed]]
!Description
This [[script|Scripts]] allows you to insert the current time.
!Code
{{{
<script label="What time is it?">
return "<br>" + new Date().toString();
</script>
}}}
{{annotation{
''Note:'' A similar result can be achieved using the [[today macro|today]], e.g.:
{{{
''What time is it?''
<<today 0hh:0mm:0ss>>
}}}
''What time is it?''
<<today 0hh:0mm:0ss>>
}}}
The following steps explain how you can setup your TiddlyWiki for use as a public website.
{{annotation{
''Note: ''Due to the nature of Javascript TiddlyWiki generally provides virtually no means to hide what is going on behind the scenes.
}}}
!Read Only Mode
You can add the following to a tiddler called //zzConfig// tagged [[systemConfig|Plugins]]:
{{{
if(config.options.txtUserName != "adminname") {
showBackstage = false;
readOnly = true;
}
}}}
{{annotation{
This plugin is automatically run in the background when TiddlyWiki loads. The prefix zz ensures that this config tiddler is loaded "last" in order to override any previous commands.
}}}
This will achieve the following effects:
;{{{if(config.options.txtUserName != "AdminUserName") }}}
:ensures that read-only mode is only enforced when the UserName set in the options panel is something other than //~AdminUserName//
;{{{showBackstage = false;}}}
:hides the [[Backstage]] area
;{{{readOnly = true;}}}
:displays a different tiddler [[Toolbar]] to the user, i.e instead of an //edit// command you will most often only find a //view// command
In order to edit a wiki in read-only mode, enter the user name in the options panel in the sidebar and reload the wiki. Now you will again be able to use the edit command in the tiddler toolbar. This user name is stored as a cookie in your browser, i.e. you will be logged in for the lifetime of this cookie. No visitor should accidentally view your wiki in edit-mode.
!Hiding The Right Sidebar
In order to hide the right hand side bar for visitors, import the following plugins from [[TiddlyTools]]:
http://www.TiddlyTools.com/#InlineJavascriptPlugin
http://www.TiddlyTools.com/#ToggleRightSidebar
To have the sidebar hidden upon TidlyWiki start, add the following to the aforementioned zzConfig tiddler:
{{{
config.options.chkShowRightSidebar=false;
}}}
{{annotation{
Note: If you put it in the same section that only applies for visitors, you will always see the sidebar whereas your visitors do not.
}}}
Before hiding the right sidebar to your visitors, you should ensure that you can access it yourself by
# simply opening the shadow tiddlers SideBarOptions or SideBarTabs tiddlers, e.g. via yourwiki.html/#SideBarOptions
# creating a hidden or hardly visible element that allows you to toggle the sidebar
#* you could append the following to the shadow tiddler SiteSubtitle {{{<<tiddler ToggleRightSidebar with: ".">>}}}
#* the dot thus added to the subtitle of your TiddlyWiki will now allow you to toggle the sidebar
!!Different Toolbar For Web Users
If you want diffenent toolbars, including the possibility to turn off double-clicking to edit, please see..
[[How do I have a different tiddler toolbar for web users?]]
!Showing One Tiddler At A Time
To enable single-page mode as in most normal web pages...
#import [[SinglePageModePlugin|http://www.TiddlyTools.com/#SinglePageModePlugin]]
#add {{{config.options.chkSinglePageMode= true;}}} to your zzConfig
!Admin Tools
For quick access to admin features, you can add {{{<<tiddler Admin>>}}} to the shadow tiddler SideBarOptions for quick acces to your most needed features and then create a tiddler called //Admin// containing things like...
;{{{<<option txtUserName>>}}}
:enter your username
;{{{<<upload http://yoursite.tiddlyspot.com/store.cgi index.html . . yoursite>>}}}
:upload your TiddlyWiki hosted on TiddlySpot using UploadPlugin
;[[zzConfig]]
:access and modify your zzConfig
The functional side of TiddlyWiki is entirely implemented using JavaScript while the [[HTML]] provides the structure and [[CSS]] the design, all of this in a single, dynamic wiki.
/***
|''Name''|IndexMacro|
|''Author''|Tobias Beer|
|''Version''|0.6 BETA|
|''Description''|will create an {{{<<index>>}}} (toc) and {{{<<scroll>>}}} to elements|
@@color:red; Experimental! Will change at will!@@
!Usage
Heading: <<scroll "##Code">>
{{{
<<scroll "##Code">>
}}}
Definition Term: <<scroll ";;term">>
{{{
<<scroll ";;term">>
}}}
;term
:definition
!Code
***/
//{{{
(function($){
config.macros.scroll = {
handler: function(place, macroName, params, wikifier, paramString, tiddler) {
var what = params[0],
tid = story.findContainingTiddler( place );
type =
what.indexOf('##') == 0 ? ':header' : (
what.indexOf(';;') == 0 ? 'dt' : 'tiddler' );
what = type == 'tiddler' ? what : what.substr(2);
tid = type == 'tiddler' ? what : (
tid ? tid.getAttribute( 'tiddler' ) : ''
);
if( tid ) $(createTiddlyElement(
place,
'a',
null,
'scrollTo tiddlyLink tiddlyLinkExisting',
what,
{
tiddler:tid,
type:type,
contains:what
}
)).click(this.scroll).attr('href','#');
},
top : 20,
scroll: function(){
var $el = $(this),
tid = story.tiddlerId($el.attr('tiddler')),
type = $el.attr('type'),
contains = $el.attr('contains'),
$tid = $('#' + tid);
(
type == 'tiddler' ?
$tid :
$(type, $tid)
).each(function(){
var $el = $(this),
txt = $el.text();
if(txt.indexOf(contains) >= 0){
$('html,body').animate({scrollTop: $el.offset().top - config.macros.scroll.top});
return false;
}
});
}
};
})(jQuery);
//}}}
List below, when you are done documenting, migrating or otherwise bringing-in major contributions to topics so that other know what still needs doing. Add new entries to the top...
*15.02.2012 @tobibeer: included @TiddlyWiki in @TiddlyWikiDev instead
*15.02.2012 @tobibeer: unincluded @TiddlyWikiDev all development stuff should move there!
*15.02.2012 @tobibeer: moved [[Layout|TiddlyWiki Layout]] here from [[TiddlyWiki.com|http://tiddlywiki.com]]
*13.02.2012 @tobibeer: ported ''Dev:Comments'' & ''Escaping'' from [[OldWiki]]
*11.02.2012 @tobibeer: removed inclusion of @TiddlyWiki-com-ref
*11.02.2012 @tobibeer: [[Shadow Tiddlers]] -- moved all form @TiddlyWiki-com-ref here
*11.02.2012 @tobibeer: [[Startup Parameters]] -- complete review
*11.02.2012 @tobibeer: WikiText -- move & review<<tag Formatting>>from @WikiText & @TiddlyWiki-com-ref
*06.02.2012 @tobibeer: @ListFiltrPlugin -- included & added to [[FAQ]], [[Glossary]], [[Quick Search]]
*06.02.2012 @tobibeer: [[Mobile TiddlyWiki]] -- migrated from [[TiddlyWiki.com]]
*06.02.2012 @tobibeer: [[Option]], [[Options]] -- created
*06.02.2012 @tobibeer: [[Persistent Options]] -- migrated from [[tiddlywiki.com|http://tiddlywiki.com/#PersistentOptions]]
*06.02.2012 @tobibeer: [[Download]] -- added [[Download]], also to MainMenu
*06.02.2012 @tobibeer: [[Bookmarklets]] -- should be all that are availabe today
*06.02.2012 @tobibeer: [[Tiddler Templates]] -- created from old FAQ, reviewed
*06.02.2012 @tobibeer: [[Timeline]] -- more details on full timeline
*06.02.2012 @tobibeer: [[Contribution Central]] -- all reviewed / created
*06.02.2012 @tobibeer: [[Fields]] & [[Custom Fields]] -- created & reviewed, major edits
*06.02.2012 @tobibeer: [[Welcome]] -- created new front page
*06.02.2012 @tobibeer: [[Glossary]] -- created overview, all reviewed & migrated from @glossary
*06.02.2012 @tobibeer: [[Changing Default Options]] -- migrated from [[TiddlyWikiGuides.org|CC - Documentation Sources]]
*05.02.2012 @tobibeer: [[Discussion Groups]] -- new overview
*05.02.2012 @tobibeer: [[TiddlyWiki Markup]] -- new all-in-one overview
*05.02.2012 @tobibeer: [[Core Macros]] -- all reviewed / migrated from @macros
*04.02.2012 @tobibeer: @LinkifyPlugin -- included & added [[LinkifyConfig]]
*04.02.2012 @tobibeer: [[Date Formats]] -- migrated & beautified
*04.02.2012 @tobibeer: [[excludeLists]] / [[excludeSearch]] -- new list views by [[Bag]]
<<listfiltr>>
'' Problem ''
When you type a bunch of spaces into your TiddlyWiki, they look ok until you save and reload. Then any run of multiple spaces have been replaced with an single space. This also affects tab characters so it's especially nasty for plugins and code snippets. All your indenting gets trashed.
'' Solution ''
This only happens in Microsoft Internet Explorer. When IE stores tiddlers it replaces a set of spaces with a single space. There is no simple solution apart from switching to a different browser, such as Mozilla Firefox.
Also I believe the problem is fixed in 2.2 (currently in beta).
'' Guess Again ''
It happens in Firefox 2, TiddlyWiki 2.4.0.
And In Firefox 3. Hopefully there's a better solution than using &nbsp;
'''temporary note'''
Using [[preformatted blocks|TiddlyWiki Markup#Preformatted]] should solve this issue.
However, even without those, it seems to work fine with TiddlyWiki v2.4.1 and both Firefox 3 and IE7 on Windows Vista.
-- [[User:FND|FND]] 07:00, 28 August 2008 (UTC)
----
I just upgraded to 2.4.1 and spaces are not preserved for me. I run TiddlyWiki in Firefox 3 on Vista
-- 16:33, 18 December 2008 (UTC)
See [[Finding A Tiddler]]...
A TiddlyWiki file must be saved or served using [[UTF-8 Encoding|http://en.wikipedia.org/wiki/UTF-8]].
!"""Serving TiddlyWiki"""
If you are serving TiddlyWiki using a web server you may need to add a ''.htaccess'' file containing:
{{{
AddCharset utf-8 .html
}}}
!"""Saving TiddlyWiki"""
If you """edit""" the source of TiddlyWiki directly in a text editor, make sure that it can handle UTF-8 and is set to use it, otherwise it might save TiddlyWiki using [[ASCII Encoding|http://en.wikipedia.org/wiki/ASCII]] or [[Latin Encoding (IEC 8859-1)|http://en.wikipedia.org/wiki/ISO/IEC_8859-1]] which will break special characters such as the » character in ''"""options """»''.
Want to embed an iFrame into TiddlyWiki? See [[HTML Formatting]]...
! Be Bold!
Contributions to the wiki are always welcome. If you ever come across information that you think is useful to a larger audience, feel free to add it to the wiki.
Don't worry if you're not sure about details like page title or categorization - this is a wiki, so chances are others will take care of those issues as they find them.
! Editing Guidelines
Anyone who is a member of TiddlySpace has the power to edit in this space.
! Page Names
Page names should generally be concise (e.g. "Customization" or "Customizing" instead of "How to customize TiddlyWiki.").
!! Capitalization in Titles
# Always capitalize the first and the last word.
# Capitalize all nouns, pronouns, adjectives, verbs, adverbs, and subordinate conjunctions ("as", "because", "although").
# Lowercase all articles, coordinate conjunctions ("and", "or", "nor"), and prepositions regardless of length, when they are other than the first or last word.<br>Capitalize prepositions of five characters or more ("after", "among", "between").
# Lowercase the "to" in an infinitive.
source: [http://www.writersblock.ca/tips/monthtip/tipmar98.htm Writer's Block]
! See Also
* [[Quality]]
* <<tag help>>
!Summary
Returns the plain text version of wikitext, i.e. strips the markup and returns just the text.
!Signature
{{{Wikifier.prototype.wikifyPlain = function(){} }}}
!Returns
string: the text representation of wikitext
!Arguments
none
!Example
{{{
var markup = 'I like //italics//.'
wikifyPlain(markup);
}}}
''return:'' 'I like italics.'
!How It Works
This function wikifies the markup into a hidden <div> using the [[Wikifier.prototype.subWikify()]], and calling [[getPlainText()]] on the hidden <div>. It then removes the hidden div and returns the text.
{{annotation{
''Note:'' this does not return html.
}}}
To permanently save a [[tiddler|Tiddler.class]], TiddlyWiki needs to be saved in its entirety.
{{annotation{
''Note:'' While the above is true in a classical TiddlyWiki, this is not so in many [[Server-Side Solutions]]@tiddlywiki for TiddlyWiki, such as [[TiddlyWeb]]@TiddlyWiki (or TiddlySpace@TiddlyWiki respectively) where edits on tiddlers are saved individually, including a check for [[Editing Conflicts]]@tiddlywiki.
}}}
The ''isDirty'' method of a [[TiddlyWiki class|TiddlyWiki]] object returns whether there are unsaved changes to it. This method expects no parameters.
Use:
{{{
store.isDirty();
}}}
See also: [[Story.setDirty]]
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xl="http://www.w3.org/1999/xlink" version="1.1" viewBox="450 366 38 57"
width="30" height="30">
<g stroke="none" stroke-opacity="1" stroke-dasharray="none" fill="none" fill-opacity="1">
<g>
<path d="M 452.1094 421.2422 L 450 421.2422 L 450 423 L 487.9688 423 L 487.9688 421.2422 L 485.8595 421.2422
L 485.8595 377.29688 L 487.9688 377.29688 L 487.9688 375.53906 L 485.8595 375.53906
C 485.8595 375.53906 481.12463 371.59341 473.02023 370.52802 C 472.6824 368.9689 471.72098 366.75 468.9844 366.75
C 466.24783 366.75 465.28638 368.9689 464.94864 370.52802
C 456.84418 371.59341 452.1094 375.53906 452.1094 375.53906 L 450 375.53906 L 450 377.29688 L 452.1094 377.29688
Z M 467.12247 370.32086 L 467.12247 370.32086 C 467.3805 369.42395 467.90762 368.50781 468.9844 368.50781
C 470.0612 368.50781 470.5883 369.42395 470.84634 370.32086
C 470.24136 370.2848 469.62054 370.26562 468.9844 370.26562
C 468.34827 370.26562 467.72748 370.2848 467.12247 370.32086 Z M 454.21875 420.92804 L 454.21875 420.92804
C 455.46762 420.42087 456.32816 419.35281 456.32816 418.11716 L 456.32816 377.29688 L 458.4375 377.29688
L 458.4375 421.2422 L 454.21875 421.2422 Z M 460.5469 420.92804 L 460.5469 420.92804
C 461.79578 420.42087 462.65625 419.35281 462.65625 418.11716 L 462.65625 377.29688 L 464.76566 377.29688
L 464.76566 421.2422 L 460.5469 421.2422 Z M 466.87503 420.92804 L 466.87503 420.92804
C 468.1239 420.42087 468.9844 419.35281 468.9844 418.11716 L 468.9844 377.29688 L 471.09378 377.29688
L 471.09378 421.2422 L 466.87503 421.2422 Z M 473.2032 420.92804 L 473.2032 420.92804
C 474.45203 420.42087 475.31256 419.35281 475.31256 418.11716 L 475.31256 377.29688 L 477.4219 377.29688
L 477.4219 421.2422 L 473.2032 421.2422 Z M 479.5313 420.92804 L 479.5313 420.92804
C 480.78018 420.42087 481.64066 419.35281 481.64066 418.11716 L 481.64066 377.29688 L 483.75006 377.29688
L 483.75006 421.2422 L 479.5313 421.2422 Z" fill="black" class="glyph"/>
</g>
</g>
</svg>
/***
|''Name''|TiddlyWebConfig|
|''Description''|configuration settings for TiddlyWebWiki|
|''Author''|FND|
|''Version''|1.3.2|
|''Status''|stable|
|''Source''|http://svn.tiddlywiki.org/Trunk/association/plugins/TiddlyWebConfig.js|
|''License''|[[BSD|http://www.opensource.org/licenses/bsd-license.php]]|
|''Requires''|TiddlyWebAdaptor ServerSideSavingPlugin|
|''Keywords''|serverSide TiddlyWeb|
!Code
***/
//{{{
(function($) {
if(!config.extensions.ServerSideSavingPlugin) {
throw "Missing dependency: ServerSideSavingPlugin";
}
if(!config.adaptors.tiddlyweb) {
throw "Missing dependency: TiddlyWebAdaptor";
}
if(window.location.protocol != "file:") {
config.options.chkAutoSave = true;
}
var adaptor = tiddler.getAdaptor();
var recipe = tiddler.fields["server.recipe"];
var workspace = recipe ? "recipes/" + recipe : "bags/common";
var plugin = config.extensions.tiddlyweb = {
host: tiddler.fields["server.host"].replace(/\/$/, ""),
username: null,
status: {},
getStatus: null, // assigned later
getUserInfo: function(callback) {
this.getStatus(function(status) {
callback({
name: plugin.username,
anon: plugin.username ? plugin.username == "GUEST" : true
});
});
},
hasPermission: function(type, tiddler) {
var perms = tiddler.fields["server.permissions"];
if(perms) {
return perms.split(", ").contains(type);
} else {
return true;
}
}
};
config.defaultCustomFields = {
"server.type": tiddler.getServerType(),
"server.host": plugin.host,
"server.workspace": workspace
};
// modify toolbar commands
config.shadowTiddlers.ToolbarCommands = config.shadowTiddlers.ToolbarCommands.
replace("syncing ", "revisions syncing ");
config.commands.saveTiddler.isEnabled = function(tiddler) {
return plugin.hasPermission("write", tiddler) && !tiddler.isReadOnly();
};
config.commands.deleteTiddler.isEnabled = function(tiddler) {
return !readOnly && plugin.hasPermission("delete", tiddler);
};
// hijack option macro to disable username editing
var _optionMacro = config.macros.option.handler;
config.macros.option.handler = function(place, macroName, params, wikifier,
paramString) {
if(params[0] == "txtUserName") {
params[0] = "options." + params[0];
var self = this;
var args = arguments;
args[0] = $("<span />").appendTo(place)[0];
plugin.getUserInfo(function(user) {
config.macros.message.handler.apply(self, args);
});
} else {
_optionMacro.apply(this, arguments);
}
};
// hijack isReadOnly to take into account permissions and content type
var _isReadOnly = Tiddler.prototype.isReadOnly;
Tiddler.prototype.isReadOnly = function() {
return _isReadOnly.apply(this, arguments) ||
!plugin.hasPermission("write", this);
};
var getStatus = function(callback) {
if(plugin.status.version) {
callback(plugin.status);
} else {
var self = getStatus;
if(self.pending) {
if(callback) {
self.queue.push(callback);
}
} else {
self.pending = true;
self.queue = callback ? [callback] : [];
var _callback = function(context, userParams) {
var status = context.serverStatus || {};
for(var key in status) {
if(key == "username") {
plugin.username = status[key];
config.macros.option.propagateOption("txtUserName",
"value", plugin.username, "input");
} else {
plugin.status[key] = status[key];
}
}
for(var i = 0; i < self.queue.length; i++) {
self.queue[i](plugin.status);
}
delete self.queue;
delete self.pending;
};
adaptor.getStatus({ host: plugin.host }, null, _callback);
}
}
};
(plugin.getStatus = getStatus)(); // XXX: hacky (arcane combo of assignment plus execution)
})(jQuery);
//}}}
//{{{
TiddlyWiki.prototype.reverseLookup = function(lookupField,lookupValue,lookupMatch,sortField)
{
var results = [];
this.forEachTiddler(function(title,tiddler) {
var f = !lookupMatch;
var values;
if(["links", "tags"].contains(lookupField)) {
values = tiddler[lookupField];
} else {
var accessor = TiddlyWiki.standardFieldAccess[lookupField];
if(accessor) {
values = [ accessor.get(tiddler) ];
} else {
values = tiddler.fields[lookupField] ? [tiddler.fields[lookupField]] : [];
}
}
for(var lookup=0; lookup<values.length; lookup++) {
if(values[lookup] == lookupValue)
f = lookupMatch;
}
if(f)
results.push(tiddler);
});
if(!sortField)
sortField = "title";
return this.sortTiddlers(results,sortField);
};
//}}}
!Summary
The shadow tiddler OptionsPanel is used as the contents of the options panel slider in the right-hand sidebar.
!Default Contents
{{{
These [[InterfaceOptions]] for customising [[TiddlyWiki]] are saved in your browser
Your username for signing your edits. Write it as a [[WikiWord]] (eg [[JoeBloggs]])
<<option txtUserName>>
<<option chkSaveBackups>> [[SaveBackups]]
<<option chkAutoSave>> [[AutoSave]]
<<option chkRegExpSearch>> [[RegExpSearch]]
<<option chkCaseSensitiveSearch>> [[CaseSensitiveSearch]]
<<option chkAnimate>> [[EnableAnimations]]
----
Also see [[AdvancedOptions]]
}}}
See [[Hijacking]]...
!Summary
By default, the TabMoreShadowed shadow tiddler defines the default contents of the {{{Shadows}}} tab in the [[Sidebar]] and calls the [[list macro|list]] which outputs a list of all shadow tiddlers, e.g. tiddlers with predefined fallback contents.
!Default Contents
{{{
<<list shadowed>>
}}}
[[Macros]] provide dynamic functions in TiddlyWiki.
<<slider chkCoreMacrosOverview Macro##CORE "Core Macros" "Click to see a list of all core macros..." >> are disitributed with a standard TiddlyWiki -- many more macros are provided by third-party plugins.
Macros are executed when the tiddler containing the macro call is rendered. To use a macro, simply add it in your wikitext using the following markup:
{{{<<macroName [parameters]>>}}}/%
!CORE
Her's a list of all [[Core Macros]] and their description...
<<get ##Description filter:"[tag[Core Macros]][sort[title]]" table category:Macro>>
!END%/
!Description
This macro outputs a list of all tags in this TiddlyWiki whereas clicking on a tag opens a popup listing all tiddlers for the corresponding tag. Compare to [[tag]] macro.
!Usage
{{{
<<allTags>>
}}}
<<allTags>>
Plugins enhancing search...
Not only thanks to its open source nature, TiddlyWiki is all about its community. The most active place for discussion are the <<slider chkCommunity "Discussion Groups" "TiddlyWiki Discussion Groups">>
!Summary
This prototype function of the Date class returns the hours using a 12 hour clock.
!Signature
{{{Date.prototype.getHours12 = function() {} }}}
!Returns
''integer:'' the date's hours
!Arguments
none
!Example
{{{
var date = new Date();
// Sun Sep 29 2013 09:37:06 GMT+0200 (CET)
date.getHour12();
}}}
''returns:'' {{{4}}}
/*
* jQuery Autocomplete plugin 1.1
*
* Copyright (c) 2009 Jörn Zaefferer
*
* Dual licensed under the MIT and GPL licenses:
* http://www.opensource.org/licenses/mit-license.php
* http://www.gnu.org/licenses/gpl.html
*
* Revision: $Id: jquery.autocomplete.js 15 2009-08-22 10:30:27Z joern.zaefferer $
*/
//{{{
(function($){$.fn.extend({autocomplete:function(urlOrData,options){var isUrl=typeof urlOrData=="string";options=$.extend({},$.Autocompleter.defaults,{url:isUrl?urlOrData:null,data:isUrl?null:urlOrData,delay:isUrl?$.Autocompleter.defaults.delay:10,max:options&&!options.scroll?10:150},options);options.highlight=options.highlight||function(value){return value;};options.formatMatch=options.formatMatch||options.formatItem;return this.each(function(){new $.Autocompleter(this,options);});},result:function(handler){return this.bind("result",handler);},search:function(handler){return this.trigger("search",[handler]);},flushCache:function(){return this.trigger("flushCache");},setOptions:function(options){return this.trigger("setOptions",[options]);},unautocomplete:function(){return this.trigger("unautocomplete");}});$.Autocompleter=function(input,options){var KEY={UP:38,DOWN:40,DEL:46,TAB:9,RETURN:13,ESC:27,COMMA:188,PAGEUP:33,PAGEDOWN:34,BACKSPACE:8};var $input=$(input).attr("autocomplete","off").addClass(options.inputClass);var timeout;var previousValue="";var cache=$.Autocompleter.Cache(options);var hasFocus=0;var lastKeyPressCode;var config={mouseDownOnSelect:false};var select=$.Autocompleter.Select(options,input,selectCurrent,config);var blockSubmit;$.browser.opera&&$(input.form).bind("submit.autocomplete",function(){if(blockSubmit){blockSubmit=false;return false;}});$input.bind(($.browser.opera?"keypress":"keydown")+".autocomplete",function(event){hasFocus=1;lastKeyPressCode=event.keyCode;switch(event.keyCode){case KEY.UP:event.preventDefault();if(select.visible()){select.prev();}else{onChange(0,true);}break;case KEY.DOWN:event.preventDefault();if(select.visible()){select.next();}else{onChange(0,true);}break;case KEY.PAGEUP:event.preventDefault();if(select.visible()){select.pageUp();}else{onChange(0,true);}break;case KEY.PAGEDOWN:event.preventDefault();if(select.visible()){select.pageDown();}else{onChange(0,true);}break;case options.multiple&&$.trim(options.multipleSeparator)==","&&KEY.COMMA:case KEY.TAB:case KEY.RETURN:if(selectCurrent()){event.preventDefault();blockSubmit=true;return false;}break;case KEY.ESC:select.hide();break;default:clearTimeout(timeout);timeout=setTimeout(onChange,options.delay);break;}}).focus(function(){hasFocus++;}).blur(function(){hasFocus=0;if(!config.mouseDownOnSelect){hideResults();}}).click(function(){if(hasFocus++>1&&!select.visible()){onChange(0,true);}}).bind("search",function(){var fn=(arguments.length>1)?arguments[1]:null;function findValueCallback(q,data){var result;if(data&&data.length){for(var i=0;i<data.length;i++){if(data[i].result.toLowerCase()==q.toLowerCase()){result=data[i];break;}}}if(typeof fn=="function")fn(result);else $input.trigger("result",result&&[result.data,result.value]);}$.each(trimWords($input.val()),function(i,value){request(value,findValueCallback,findValueCallback);});}).bind("flushCache",function(){cache.flush();}).bind("setOptions",function(){$.extend(options,arguments[1]);if("data"in arguments[1])cache.populate();}).bind("unautocomplete",function(){select.unbind();$input.unbind();$(input.form).unbind(".autocomplete");});function selectCurrent(){var selected=select.selected();if(!selected)return false;var v=selected.result;previousValue=v;if(options.multiple){var words=trimWords($input.val());if(words.length>1){var seperator=options.multipleSeparator.length;var cursorAt=$(input).selection().start;var wordAt,progress=0;$.each(words,function(i,word){progress+=word.length;if(cursorAt<=progress){wordAt=i;return false;}progress+=seperator;});words[wordAt]=v;v=words.join(options.multipleSeparator);}v+=options.multipleSeparator;}$input.val(v);hideResultsNow();$input.trigger("result",[selected.data,selected.value]);return true;}function onChange(crap,skipPrevCheck){if(lastKeyPressCode==KEY.DEL){select.hide();return;}var currentValue=$input.val();if(!skipPrevCheck&¤tValue==previousValue)return;previousValue=currentValue;currentValue=lastWord(currentValue);if(currentValue.length>=options.minChars){$input.addClass(options.loadingClass);if(!options.matchCase)currentValue=currentValue.toLowerCase();request(currentValue,receiveData,hideResultsNow);}else{stopLoading();select.hide();}};function trimWords(value){if(!value)return[""];if(!options.multiple)return[$.trim(value)];return $.map(value.split(options.multipleSeparator),function(word){return $.trim(value).length?$.trim(word):null;});}function lastWord(value){if(!options.multiple)return value;var words=trimWords(value);if(words.length==1)return words[0];var cursorAt=$(input).selection().start;if(cursorAt==value.length){words=trimWords(value)}else{words=trimWords(value.replace(value.substring(cursorAt),""));}return words[words.length-1];}function autoFill(q,sValue){if(options.autoFill&&(lastWord($input.val()).toLowerCase()==q.toLowerCase())&&lastKeyPressCode!=KEY.BACKSPACE){$input.val($input.val()+sValue.substring(lastWord(previousValue).length));$(input).selection(previousValue.length,previousValue.length+sValue.length);}};function hideResults(){clearTimeout(timeout);timeout=setTimeout(hideResultsNow,200);};function hideResultsNow(){var wasVisible=select.visible();select.hide();clearTimeout(timeout);stopLoading();if(options.mustMatch){$input.search(function(result){if(!result){if(options.multiple){var words=trimWords($input.val()).slice(0,-1);$input.val(words.join(options.multipleSeparator)+(words.length?options.multipleSeparator:""));}else{$input.val("");$input.trigger("result",null);}}});}};function receiveData(q,data){if(data&&data.length&&hasFocus){stopLoading();select.display(data,q);autoFill(q,data[0].value);select.show();}else{hideResultsNow();}};function request(term,success,failure){if(!options.matchCase)term=term.toLowerCase();var data=cache.load(term);if(data&&data.length){success(term,data);}else if((typeof options.url=="string")&&(options.url.length>0)){var extraParams={timestamp:+new Date()};$.each(options.extraParams,function(key,param){extraParams[key]=typeof param=="function"?param():param;});$.ajax({mode:"abort",port:"autocomplete"+input.name,dataType:options.dataType,url:options.url,data:$.extend({q:lastWord(term),limit:options.max},extraParams),success:function(data){var parsed=options.parse&&options.parse(data)||parse(data);cache.add(term,parsed);success(term,parsed);}});}else{select.emptyList();failure(term);}};function parse(data){var parsed=[];var rows=data.split("\n");for(var i=0;i<rows.length;i++){var row=$.trim(rows[i]);if(row){row=row.split("|");parsed[parsed.length]={data:row,value:row[0],result:options.formatResult&&options.formatResult(row,row[0])||row[0]};}}return parsed;};function stopLoading(){$input.removeClass(options.loadingClass);};};$.Autocompleter.defaults={inputClass:"ac_input",resultsClass:"ac_results",loadingClass:"ac_loading",minChars:1,delay:400,matchCase:false,matchSubset:true,matchContains:false,cacheLength:10,max:100,mustMatch:false,extraParams:{},selectFirst:true,formatItem:function(row){return row[0];},formatMatch:null,autoFill:false,width:0,multiple:false,multipleSeparator:", ",highlight:function(value,term){return value.replace(new RegExp("(?![^&;]+;)(?!<[^<>]*)("+term.replace(/([\^\$\(\)\[\]\{\}\*\.\+\?\|\\])/gi,"\\$1")+")(?![^<>]*>)(?![^&;]+;)","gi"),"<strong>$1</strong>");},scroll:true,scrollHeight:180};$.Autocompleter.Cache=function(options){var data={};var length=0;function matchSubset(s,sub){if(!options.matchCase)s=s.toLowerCase();var i=s.indexOf(sub);if(options.matchContains=="word"){i=s.toLowerCase().search("\\b"+sub.toLowerCase());}if(i==-1)return false;return i==0||options.matchContains;};function add(q,value){if(length>options.cacheLength){flush();}if(!data[q]){length++;}data[q]=value;}function populate(){if(!options.data)return false;var stMatchSets={},nullData=0;if(!options.url)options.cacheLength=1;stMatchSets[""]=[];for(var i=0,ol=options.data.length;i<ol;i++){var rawValue=options.data[i];rawValue=(typeof rawValue=="string")?[rawValue]:rawValue;var value=options.formatMatch(rawValue,i+1,options.data.length);if(value===false)continue;var firstChar=value.charAt(0).toLowerCase();if(!stMatchSets[firstChar])stMatchSets[firstChar]=[];var row={value:value,data:rawValue,result:options.formatResult&&options.formatResult(rawValue)||value};stMatchSets[firstChar].push(row);if(nullData++<options.max){stMatchSets[""].push(row);}};$.each(stMatchSets,function(i,value){options.cacheLength++;add(i,value);});}setTimeout(populate,25);function flush(){data={};length=0;}return{flush:flush,add:add,populate:populate,load:function(q){if(!options.cacheLength||!length)return null;if(!options.url&&options.matchContains){var csub=[];for(var k in data){if(k.length>0){var c=data[k];$.each(c,function(i,x){if(matchSubset(x.value,q)){csub.push(x);}});}}return csub;}else
if(data[q]){return data[q];}else
if(options.matchSubset){for(var i=q.length-1;i>=options.minChars;i--){var c=data[q.substr(0,i)];if(c){var csub=[];$.each(c,function(i,x){if(matchSubset(x.value,q)){csub[csub.length]=x;}});return csub;}}}return null;}};};$.Autocompleter.Select=function(options,input,select,config){var CLASSES={ACTIVE:"ac_over"};var listItems,active=-1,data,term="",needsInit=true,element,list;function init(){if(!needsInit)return;element=$("<div/>").hide().addClass(options.resultsClass).css("position","absolute").appendTo(document.body);list=$("<ul/>").appendTo(element).mouseover(function(event){if(target(event).nodeName&&target(event).nodeName.toUpperCase()=='LI'){active=$("li",list).removeClass(CLASSES.ACTIVE).index(target(event));$(target(event)).addClass(CLASSES.ACTIVE);}}).click(function(event){$(target(event)).addClass(CLASSES.ACTIVE);select();input.focus();return false;}).mousedown(function(){config.mouseDownOnSelect=true;}).mouseup(function(){config.mouseDownOnSelect=false;});if(options.width>0)element.css("width",options.width);needsInit=false;}function target(event){var element=event.target;while(element&&element.tagName!="LI")element=element.parentNode;if(!element)return[];return element;}function moveSelect(step){listItems.slice(active,active+1).removeClass(CLASSES.ACTIVE);movePosition(step);var activeItem=listItems.slice(active,active+1).addClass(CLASSES.ACTIVE);if(options.scroll){var offset=0;listItems.slice(0,active).each(function(){offset+=this.offsetHeight;});if((offset+activeItem[0].offsetHeight-list.scrollTop())>list[0].clientHeight){list.scrollTop(offset+activeItem[0].offsetHeight-list.innerHeight());}else if(offset<list.scrollTop()){list.scrollTop(offset);}}};function movePosition(step){active+=step;if(active<0){active=listItems.size()-1;}else if(active>=listItems.size()){active=0;}}function limitNumberOfItems(available){return options.max&&options.max<available?options.max:available;}function fillList(){list.empty();var max=limitNumberOfItems(data.length);for(var i=0;i<max;i++){if(!data[i])continue;var formatted=options.formatItem(data[i].data,i+1,max,data[i].value,term);if(formatted===false)continue;var li=$("<li/>").html(options.highlight(formatted,term)).addClass(i%2==0?"ac_even":"ac_odd").appendTo(list)[0];$.data(li,"ac_data",data[i]);}listItems=list.find("li");if(options.selectFirst){listItems.slice(0,1).addClass(CLASSES.ACTIVE);active=0;}if($.fn.bgiframe)list.bgiframe();}return{display:function(d,q){init();data=d;term=q;fillList();},next:function(){moveSelect(1);},prev:function(){moveSelect(-1);},pageUp:function(){if(active!=0&&active-8<0){moveSelect(-active);}else{moveSelect(-8);}},pageDown:function(){if(active!=listItems.size()-1&&active+8>listItems.size()){moveSelect(listItems.size()-1-active);}else{moveSelect(8);}},hide:function(){element&&element.hide();listItems&&listItems.removeClass(CLASSES.ACTIVE);active=-1;},visible:function(){return element&&element.is(":visible");},current:function(){return this.visible()&&(listItems.filter("."+CLASSES.ACTIVE)[0]||options.selectFirst&&listItems[0]);},show:function(){var offset=$(input).offset();element.css({width:typeof options.width=="string"||options.width>0?options.width:$(input).width(),top:offset.top+input.offsetHeight,left:offset.left}).show();if(options.scroll){list.scrollTop(0);list.css({maxHeight:options.scrollHeight,overflow:'auto'});if($.browser.msie&&typeof document.body.style.maxHeight==="undefined"){var listHeight=0;listItems.each(function(){listHeight+=this.offsetHeight;});var scrollbarsVisible=listHeight>options.scrollHeight;list.css('height',scrollbarsVisible?options.scrollHeight:listHeight);if(!scrollbarsVisible){listItems.width(list.width()-parseInt(listItems.css("padding-left"))-parseInt(listItems.css("padding-right")));}}}},selected:function(){var selected=listItems&&listItems.filter("."+CLASSES.ACTIVE).removeClass(CLASSES.ACTIVE);return selected&&selected.length&&$.data(selected[0],"ac_data");},emptyList:function(){list&&list.empty();},unbind:function(){element&&element.remove();}};};$.fn.selection=function(start,end){if(start!==undefined){return this.each(function(){if(this.createTextRange){var selRange=this.createTextRange();if(end===undefined||start==end){selRange.move("character",start);selRange.select();}else{selRange.collapse(true);selRange.moveStart("character",start);selRange.moveEnd("character",end);selRange.select();}}else if(this.setSelectionRange){this.setSelectionRange(start,end);}else if(this.selectionStart){this.selectionStart=start;this.selectionEnd=end;}});}var field=this[0];if(field.createTextRange){var range=document.selection.createRange(),orig=field.value,teststring="<->",textLength=range.text.length;range.text=teststring;var caretAt=field.value.indexOf(teststring);field.value=orig;this.selection(caretAt,caretAt+textLength);return{start:caretAt,end:caretAt+textLength}}else if(field.selectionStart!==undefined){return{start:field.selectionStart,end:field.selectionEnd}}};})(jQuery);
//}}}
!Summary
This prototype function of the [[TiddlyWiki.class]] retrieves a filtered array of [[tiddler objects|Tiddler.class]] in the store matching a filter expression.
!Signature
{{{TiddlyWiki.prototype.filterTiddlers = (filter) {} }}}
!Returns
array[tiddlers]: tiddlers matching the filter
!Arguments
;1. (string) filter
:a [[filter expression|filters]]
!Example
{{{
// two filter elements
store.filterTiddlers("[tag[mish]] [tag[mash]]")
}}}
''returns:'' tiddlers tagged with "mish" or "mash".
{{{
// two filter steps
store.filterTiddlers("[tag[mish]] | [tag[mash]]")
}}}
''returns:'' any tiddler tagged with "mish" and of these, any tagged with "mash"
!Summary
This prototype function of the Date class returns the am / pm indicator for a given date object.
!Signature
{{{Date.prototype.getAmPm = function() {} }}}
!Returns
''string:'' either ''am'' or ''pm''
!Arguments
none
!Example
{{{
var date = new Date();
// Sun Sep 29 2013 09:37:06 GMT+0200 (CET)
date.getAmPm();
}}}
''returns:'' {{{'am'}}}
This term is introduced in [[wikipedia|http://en.wikipedia.org/wiki/Transclusion]] as:
> In computer science, transclusion is the inclusion of a document or part of a document into another document by reference.
In TiddlyWiki, the tiddler macro can be used to embed the entire content, sections or slices of one tiddler into another tiddler.
!!"""Parametric Transclusion"""
Using the {{{with:}}} parameter in the tiddler macro, placeholders {{{$1..$9}}} in the transcluded contents are replaced with the specified value.
!!!Example
''Tiddler: Prince Hamlet''
{{{<<tiddler [[QuoteTemplate]] with: "Alas poor Yorick" "Shakespeare">>}}}
''Tiddler: ~QuoteTemplate''
{{{
<<<
$1
<<<
{{{$2}}}
}}}
Using the [[tiddler macro]] as in the tiddler ''Prince Hamlet'' above the output will be...
<<<
Alas poor Yorick
<<<
{{{Shakespeare}}}
!!!"""Editing Transcluded Contents"""
* [[TiddlerWithEditPlugin|http://tiddlywiki.squize.org/#TiddlerWithEditPlugin]] adds "double-click to edit source" capabilities to the core Tiddler macro
* [[EditTiddlerPlugin|http://www.tiddlytools.com/#EditTiddlerPlugin]] embeds an "edit" link in tiddler content to invoke edit on any specified tiddler title
!!"""StyleSheet Transclusion"""
In StyleSheet tiddlers, the following references are treated like import statements; whereas the contents of the referenced tiddler, section or slice is included as [[CSS]] code:
;tiddler
:» {{{[[Tiddler Title]]}}}
:» imports the entire tiddler
;section
:» {{{[[Tiddler Title##Some Section]]}}}
:» imports a tiddler section
;slice
:» {{{[[Tiddler Title##Some Section}}}
:» imports a tiddler slice
!!"""Transcluded HTML Scripts"""
(from Eric in [[google group|http://groups.google.com/group/tiddlywiki/browse_thread/thread/c4aa71ecb0f7d4cf/7e2272e3bc4593eb?#7e2272e3bc4593eb]])
{{{
Transclusions can be used generate program- driven output, embedded in specific
tiddler content (like an inline script or a plugin-defined macro).
Transclusions are invoked by using the
<<tiddler TiddlerName with: param param param ...>>
syntax. The 'param' values are automatically inserted in place of
any 'substitution markers' ("$1" through "$9") that are embedded in the
transcluded content. This allows you to use the transclusion as if it was a
macro function: passing in parameter values and generating enhanced output in
response.
Some transclusions are simple substitutions, allowing you to use an abbreviated
syntax to render pre-formatted blocks of content, like this:
<<tiddler ShowQuotation with: [[...quote...]] [[author]]>>
where ShowQuotation contains:
$2 wrote:
{{{
$1
}}}
Transclusions can do much more than simply insert a few values into a
pre-defined format. By using a combination of 'hidden sections' and some
cleverly written 'evaluated parameters' invoked from the <<tiddler>> macro, it
is possible to build some complex programmed behaviors
into a transcluded tiddler.
However, while macros and inline scripts can use virtually any javascript coded
logic you can imagine, transclusions only contain standard TW syntax, without
relying upon installation of any supporting plugins (i.e.,
InlineJavascriptPlugin). Although this limits their abilities somewhat, there
are still a wide variety of programmatically-generated output and/or behaviors
that they can produce.
In fact, when possible, I have been converting many of my previously written
TiddlyTools inline scripts into 'transclusions', in order to completely
eliminate their dependence on InlineJavascriptPlugin. By using only TW native
syntax, it allows these former scripts to work properly and consistently,
regardless of whether they are installed in an empty TW document or one that
has been highly customized with lots of plugins.
For the current listing of 'transclusions' available on TiddlyTools, see:
http://www.TiddlyTools.com#txtCatalogTab:transclusions
}}}
The following questions and answers are mostly contributed from the [[Discussion Groups]] and hopefully help you with your TiddlyWiki project.
For a reference of questions and answers dedicated to TiddlySpace, check out the @faq TiddlySpace.
{{faqlist{
;Basics
:» [[What is TiddlyWiki?]]
:» [[What can I do with TiddlyWiki?]]
:» [[What do I need to run TiddlyWiki?]]
:» [[Can I use TiddlyWiki as a multi-user/collaborative/server based wiki?]]
;Getting Started
:» [[Getting your own TiddlyWiki file]]
:» [[Configuring your browser to allow saves to disk]]
:» [[I put my TiddlyWiki file on my web server and I can't save]]
;Using TiddlyWiki
:» [[How can I make TiddlyWiki save itself when I save a tiddler?]]
:» [[Add Menu Item]]
:» [[Special Characters and Symbols|Adding Special characters and symbols to TiddlyWiki content]]
:» [[Create Tiddler]]
:» [[Delete Tiddler]]
:» [[TiddlyWiki on the iPhone|Does TiddlyWiki work on an iPhone?]]
:» [[Change where backups are saved]]
:» [[Editing and saving a tiddler]]
:» [[Finding A Tiddler]]
:» [[How to deactivate automatic WikiWords?]]
:» [[How do I link to a tiddler without a wiki word name?]]
:» [[How do I make searching work better?|Finding A Tiddler]]
:» [[Insert a Picture]]
:» [[Is there a WYSIWYG version of TiddlyWiki?]]
:» [[Keyboard Shortcuts]]
:» [[Naming a TiddlyWiki]]
:» [[How do I persist cookie options in the long run?|Persistent Options]]
:» [[Resize Image]]
:» [[Saving the file]]
:» [[Tags]]
:» [[TiddlyWiki Markup]]
:» [[URL Parameters|Startup Parameters]]
:» [[What is a tiddler?|Tiddler]]
:» [[What is a wiki word?|WikiWord]]
:» [[Where can I get nightly builds of the TiddlyWiki trunk?]]
:» [[How do I know what version I'm running?]]
:» [[Broken links in Firefox]]
;Troubleshooting
:» [[How to manually upgrade TiddlyWiki?]]
:» [[TiddlyWiki won't save changes in Firefox?]]
:» [[How big can my file get before it gets too slow/doesn't work?|PerformanceIssues]]
:» [[How can I edit my UserName?]]
:» [[I keep getting "A script is making this page run slow" in Firefox]]
:» [[Import stopped working. How can I import my TiddlyWiki into the latest TiddlyWiki?]]
:» [[My settings don't get saved]]
:» [[Special characters are not displaying correctly]]
:» [[Lots of spaces get changed to one space|PreserveSpaces]]
:» [['Permission denied to call method XMLHttpRequest.open' when using UploadPlugin or ImportTiddlers]]
:» [[Getting "failed to save" in FF or "Permission Denied" in IE?]]
:» [[Why won't chrome save my options (cookies)?]]
;Mobile
:» [[How to get TiddlyFox running on Android?]]
;Configuration
:» [[Can I make it only show one tiddler at a time like a regular wiki?]]
:» [[Can I use MediaWiki, Twiki or Trac markup instead of TiddlyWiki Markup?]]
:» [[How do I change the date format for a new journal entry?]]
:» [[How do I change the default date formats for core macros?]]
:» [[How do I change how a tiddler looks?]]
:» [[How do I change how tiddler editing looks?]]
:» [[How do I change my default options?|http://tiddlywiki.com/#PersistentOptions]]
:» [[How do I change the colours and the fonts?]]
:» [[How do I change the layout of my TiddlyWiki?]]
:» [[How do I change the RSS behaviour, so that changing a tiddler creates a new RSS post]]
:» [[How do I have a different tiddler toolbar for web users?]]
:» [[How do I right-justify some text in a tiddler?]]
:» [[How do I justify all the text in every tiddler?]]
:» [[Shadow Tiddlers|ShadowTiddler]]
;Customization
:» [[Where do I store my created plugin?]]
:» [[How to create a dynamic MainMenu?]]
:» [[How to display different layouts for diferent tiddlers?|Alternative Tiddler Layouts]]
;Tips and Tricks
:» [[How do I right-justify some text in a tiddler?]]
:» [[How do I justify all the text in every tiddler?]]
:» [[How do I make my table cells vertically aligned?]]
:» [[How can I avoid all text being selected when I edit a tiddler?]]
:» [[How can I display my UserName somewhere?]]
:» [[How can I encrypt some of my data?]]
:» [[How can I export tiddlers and tiddler contents?|Export]]
:» [[How can I make a "home" button that opens just the default tiddlers?]]
:» [[How can I use my logo as the SiteTitle but still have text in the html page title?]]
:» [[How to have multiple journal entries per day?]]
;Design
:» [[How can I center an element?]]
:» [[How can I prevent trailing linebreaks to custom css blocks?]]
;Macros
:» [[What is a macro?]]
:» [[What macros are built in to TiddlyWiki?|Core Macros]]
:» [[What about commands?|ToolbarCommands...]]
;Plugins
:» [[How do I install a plugin?|Plugins]]
:» [[What is a plugin?|Plugins]]
:» [[Where do I find plugins?|http://customize.tiddlyspace.com]]
;For Developers
:» [[How do I use WikiText in CSS, JavsScript or HTML Code?]]
:» [[TiddlyWiki Development Spaces]]
;GTD - ''G''etting ''T''hings ''D''one
:» [[What is GTD?]]
:» [[Can I use TiddlyWiki for GTD?]]
}}}<<listfiltr>>
A [[SiteIcon|SiteIcon tiddler]]@glossary helps provide some identity to your space. Ideally it'd be a square and a minimum of 48*48 pixels size. You can upload your site icon using the uploader below.
<<binaryUploadPublic title:SiteIcon>>
The getRecursiveTiddlerText method of a [[store object|TiddlyWiki.class]] returns the source code of a tiddler with links replaced with their contents. That is, if two tiddlers are defined like so:
'''tiddler1'''
{{{
Hello, [[tiddler2]].
}}}
'''tiddler2'''
{{{
world
}}}
executing
{{{
getRecursiveTiddlerText('tiddler1', '', 1)
}}}
returns ''Hello world.'' This method expects three parameters in order:
* the title of the tiddler to retrieve
* default text to return if the tiddler does not exist
* the maximum depth of links to follow
<<allTags excludeLists>><<listfiltr>>
A standard TiddlyWiki comes with a number of predefined [[shadow tiddlers|ShadowTiddler]] interpreted by TiddlyWiki as cascading style sheets, aka [[css|http://www.w3schools.com/css]]. These include...
| !Shadow Tiddler | !Description |h
|[[StyleSheetColors]] |default color styles |
|[[StyleSheetLayout]] |default layout styles |
|[[StyleSheetLocale]] |locale-specific styles |
|[[StyleSheetPrint]] |default print styles |
|[[StyleSheet]] |the tiddler for your custom styles; run after all others|
''Note'': The color scheme of a TiddlyWiki is defined using [[Slices]] in the shadow tiddler called [[ColorPalette]].
Like all shadow tiddlers you can simply overwrite the default styles provided by these StyleSheets or add them if your customizations went awry.
Some plugins also provide default styles in the form of a shadow tiddlers whose names usually begin with [[StyleSheet]] followed by he name of the plugin.
/***
|''Name''|<...>|
|''Description''|<...>|
|''Author''|FND|
|''Version''|<#.#.#>|
|''Status''|<//unknown//; @@experimental@@; @@beta@@; //obsolete//; stable>|
|''Source''|http://devpad.tiddlyspot.com/#<...>|
|''CodeRepository''|http://svn.tiddlywiki.org/Trunk/contributors/FND/|
|''License''|[[BSD|http://www.opensource.org/licenses/bsd-license.php]]|
|''CoreVersion''|2.5.0|
|''Requires''|<...>|
|''Keywords''|<...>|
***/
//{{{
(function($) {
var macro = config.macros.randomTiddler = {
locale: {
label: "random",
tooltip: "display a random tiddler"
},
handler: function(place, macroName, params, wikifier, paramString, tiddler) {
var excludeTag = params[0] || "excludeLists";
var btn = createTiddlyButton(place, this.locale.label,
this.locale.tooltip, function() {});
btn.onclick = null; // XXX: hacky, but createTiddlyButton wouldn't add href otherwise
$(btn).data("excludeTag", excludeTag).click(this.onClick);;
},
onClick: function() {
var btn = $(this);
var excludeTag = btn.data("excludeTag");
var tiddlers = store.getTiddlers();
macro.displayRandomTiddler(tiddlers, excludeTag);
},
displayRandomTiddler: function(tiddlers, excludeTag) {
var i = Math.floor(Math.random() * tiddlers.length);
var tid = tiddlers[i];
if(!tid.tags.contains(excludeTag)) {
story.displayTiddler(place, tid);
} else {
this.displayRandomTiddler(tiddlers); // XXX: risks infinite recursion
}
}
};
})(jQuery);
//}}}
!Summary
By default, the TabMoreMissing shadow tiddler defines the contents of the {{button{Missing}}} tab in the [[Sidebar]] and contains a call to the [[list macro|list]] which outputs all tiddlers that have links to them but are undefined.
!Default Contents
{{{
<<list missing>>
}}}
Filters used by [[store.filterTiddlers()]] follow a grammar that can be described using http://en.wikipedia.org/wiki/EBNF:
{{{
filter := filterStep {'|' filterStep }
filterStep := '[' filterElements ']', {'[' filterElements ']'}
filterElements := filterElement, {filterElement}
filterElement := '['TiddlerName']' | tag'['TagName']' | sort'['SortField']' | limit'['NoOfResults']'
}}}
Another way of expressing this, without the (in this case) slightly confusing EBNF syntax, might be:
A filter string is of the form:
{{{
// only one filterStep is required
filterStep | filterStep ...
}}}
where filterStep is of the form:
{{{
// only one filterElements is required
[filterElements] [filterElements] ...
}}}
where filterElements is one or more of the following:
{{{
[TiddlerName]
tag[TagName]
sort[SortField]
limit[NoOfResults]
}}}
!Example
{{{
store.filterTiddlers("[tag[blog post]][sort[-modified]][limit[10]]")
}}}
''returns:'' any tiddler tagged "blog post", limited to the 10 most recently edited tiddlers.
!Allowed types of filterElement
|filter|meaning|
|[text]|refers to a single tiddler with title "text"|
|{{{[text text]}}}|refers to a single tiddler with title "text text"|
|tag[tag]|refers to any tiddler tagged with "tag"|
|tag[a tag]|refers to any tiddler tagged with "{{{[[a tag]]}}}"|
|sort[+field] or [sort[field]]|sorts any results already collected in ascending order by "field"|
|sort[-field]|sorts and results already collected in descending order by "field"|
|limit[integer]|limits the results array to contain no more than "integer" tiddlers|
!Multiple filterElements and filterSteps
#Multiple ''filterElements'' are combined by concatenating the results from each ''filterElements''.
#Multiple ''filterStep'', on the other hand, are evaluated in succession, with the results of each ''filterStep'' used as the tiddler set for the next ''filterStep''.
<<tiddler "Best Practices">>
!Summary
By default, the shadow tiddler PluginManager contains nothing but the command to display the plugin manager.
!Default Contents
{{{
<<plugins>>
}}}
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html;charset=utf-8">
<title>Account</title>
<link href="/bags/common/tiddlers/profile.css" type='text/css' rel='stylesheet' >
<link href="/bags/common/tiddlers/admin.css" type='text/css' rel='stylesheet' >
<link href="/bags/common/tiddlers/jquery-ui.custom.css" type='text/css' rel='stylesheet' >
</head>
<body>
<div id="container">
<div class="main section">
<a class="app" href="/">home</a>
<div class="left">
<div id="siteiconArea">
<h2>User Icon</h2>
<div>
<img id="siteicon" class="siteicon">
<form id="upload" method="POST" enctype="multipart/form-data">
<input type="hidden" name="title" value="SiteIcon" />
<input type="hidden" name="tags" value="excludeLists">
<input type="hidden" name="csrf_token" class="csrf" />
<input type="file" name="file" accept="image/*" />
<input type="submit" value="upload" />
</form>
<div id="dropzone">Drop file here
<img class="notloading" src="/bags/common/tiddlers/ajax-loader.gif" alt="submitting SiteIcon" />
</div>
</div>
</div>
<h2>Find Space</h2>
<form class="spaceSearch">
<input class="inputBox" type="text" placeholder="find space" />
<a href="http://docs.tiddlyspace.com/What%20is%20a%20Space%3F" class="help"
title="What is a space?">What is a space?</a>
<button>view all</button>
</form>
<div class='list-container'>
You are a member of the following spaces:
<ul class='ts-space-search'>
</ul>
</div>
<h2>Create New Space</h2>
<form class="ts-spaces">
<input class="inputBox" type="text" name="spacename" placeholder="space name"><span class="hostSuffix">.tiddlyspace.com</span>
<input type="submit" value="Create Space" />
</form>
</div>
<div class="right">
<h2>Change Password</h2>
<form class="ts-password">
<input class="inputBox" placeholder="existing password" type="password" name="password">
<input class="inputBox" placeholder="new password" type="password" name="new_password">
<input class="inputBox" placeholder="new password" type="password" name="new_password_confirm">
<input type="submit" value="Change password">
</form>
<h2>OpenID</h2>
<h3>Why OpenID?</h3>
<a href="http://openid.net/"><img src="/bags/common/tiddlers/openid.png" alt="openid" ></a><br />
Use just one username and password across hundreds of OpenID-enabled sites.<br />
It's an open standard.<br />
<a href="http://openid.net/what/">learn more</a>
<ul class="ts-identities"></ul>
<form class="ts-openid" target="_top">
<div>
Add an openid:
</div>
<input class="inputBox" type="text" name="openid" placeholder="your openid" />
<input type="submit" value="Register" />
<a href="http://openid.net/get-an-openid/" class="help"
title="What is an open id?">What is an open id?</a>
</form>
</div>
<div class="clear"></div>
</div>
</div>
<script src="/bags/common/tiddlers/backstage.js"></script>
<script src='/bags/common/tiddlers/jquery.js'></script>
<script src='/bags/tiddlyspace/tiddlers/chrjs'></script>
<script src='/bags/common/tiddlers/chrjs.space'></script>
<script src='/bags/common/tiddlers/chrjs.users'></script>
<script src='/bags/common/tiddlers/chrjs.identities'></script>
<script src="/bags/common/tiddlers/jquery-ui.custom.js"></script>
<script src='/bags/common/tiddlers/jquery-form.js'></script>
<script src="/bags/common/tiddlers/siteiconupload.js"></script>
<script src='/bags/common/tiddlers/ts.js'></script>
<script src="/status.js"></script>
<script type="text/javascript">
/*
* jQuery UI Autocomplete HTML Extension
*
* Copyright 2010, Scott González (http://scottgonzalez.com)
* Dual licensed under the MIT or GPL Version 2 licenses.
*
* http://github.com/scottgonzalez/jquery-ui-extensions
*/
(function( $ ) {
var proto = $.ui.autocomplete.prototype,
initSource = proto._initSource;
function filter( array, term ) {
var matcher = new RegExp( $.ui.autocomplete.escapeRegex(term), "i" );
return $.grep( array, function(value) {
return matcher.test( $( "<div>" ).html( value.label || value.value || value ).text() );
});
}
$.extend( proto, {
_initSource: function() {
if ( this.options.html && $.isArray(this.options.source) ) {
this.source = function( request, response ) {
response( filter( this.options.source, request.term ) );
};
} else {
initSource.call( this );
}
},
_renderItem: function( ul, item) {
return $( "<li></li>" )
.data( "item.autocomplete", item )
.append( $( "<a></a>" )[ this.options.html ? "html" : "text" ]( item.label ) )
.appendTo( ul );
}
});
})( jQuery );
/***
_accounts application specific javascript
***/
var link;
ts.init(function(ts) {
if(ts.user.anon) { // redirect to homepage when user not logged in
window.location = ts.getHost();
} else if(ts.user.name === ts.currentSpace){
initSiteIconUpload(ts.user.name);
} else {
link = $("<a />").attr("href", ts.getHost(ts.user.name) + "/_account").text("Change User Icon");
$("#siteiconArea div").empty().append(link);
}
$(".hostSuffix").text("." + ts.getHost("").split("//")[1]);
ts.getSpaces(function(spaces) {
$("<div class='info' />").text("You have " + spaces.length + " spaces.").insertBefore($(".spaceSearch")[0]);
$("form.spaceSearch input").autocomplete({
html: true,
source: function(req, response) {
ts.getSpaces(function(spaces) {
var selected = [];
for(var i = 0; i < spaces.length; i++) {
var space = spaces[i];
if(space.name.indexOf(req.term) > -1) {
var host = ts.getHost(space.name) ;
var img = host + "/SiteIcon";
selected.push({
value: space.name,
label: '<a href="' + host + '" target="_parent" class="autocompleteLink"><img src="' + img + '" style="height:24px;width:auto;max-height:24px;max-width:24px;"/>' + space.name + '</a>'
});
}
}
response(selected);
});
},
select: function(event, ui) {
window.top.location = ts.getHost(ui.item.value);
}
});
var $ul = $('.ts-space-search');
$.each(spaces, function(i, space) {
$ul.append($('<li/>').html($('<a/>').attr('href', space.uri)
.text(space.name)));
});
$('form.spaceSearch button').click(function(ev) {
$('.list-container').slideToggle('fast');
ev.preventDefault();
return false;
});
});
});
if(window != window.top) {
$("html").addClass("iframeMode");
$("a").live("click",function(ev) {
$(ev.target).attr("target", "_parent");
});
}
</script>
<!--[if lt IE 8]>
<script type="text/javascript" src="/bags/common/tiddlers/json2.js"></script>
<![endif]-->
</body>
</html>
!Summary
This <<tag global>> function renders renders a link that performs an action when clicked. It takes eight optional parameters.
!Signature
{{{createTiddlyButton(parent, text, tooltip, action, className, id, accessKey, attribs)}}}
!Returns
DOM reference: to the created [[External Link]]@tiddlywiki
!Arguments
;1. parent
: the DOM element where the button will be placed.
;2. text
: the text displayed as the button text.
;3. tooltip
: the tooltip displayed onmouseover.
;4. action
: the function executed when the button is clicked.
;5. className
: the css class(es) applied to the button.
;6. id
: the button's element id.
;7. accessKey
: a key that activates the button when typed.
;8. attribs
: an object with attributes applied to the button element.
!Example
{{{
createTiddlyButton(
place,
'click me!',
'Please click!',
config.macros.foo.buttonClick,
'button theClickButton'
);
}}}
''returns:'' {{button theClickButton{Click me!}}} « a reference to this DOM element
<html>
<head>
<title>Bulk Deletion Application</title>
<link rel="stylesheet" href="/bags/common/tiddlers/profile.css" type="text/css">
<script src="/bags/common/tiddlers/jquery.js" type="text/javascript" charset="utf-8"></script>
</head>
<body>
<div id="container">
<div id="header">
<h1>Bulk Deletion Application</h1>
</div>
<div class="main section">
Please take care when using this space as it can delete everything in your private and public bags. To use simply select the tiddlers you want to delete and click the delete all button.
<form id="filter" style="display:none;">
<p>Note you can filter this list using <a href="http://tweb-filters.tiddlyspace.com/GettingStarted">tiddlyweb filters</a>.</p>
<h2>Filter this list:</h2>
<input name="value" type='text' placeholder='select=tag:systemConfig'>
<button>Apply Filter</button>
</form>
<h2>Select tiddlers to delete</h2>
<table id='bulk'>
</table>
</div>
</div>
<script type='text/javascript'>
var space = window.location.host.split(".")[0];
var tableObj = {};
var url = "/recipes/" + space + "_private/tiddlers";
var hash = window.location.hash;
if(hash.indexOf("?") === 1) {
url += hash.substr(1, hash.length);
}
$("#filter").submit(onSubmit).show();
var onSubmit = function(ev) {
var filterVal = $("#filter [name=value]").val();
if(filterVal.indexOf("?") === 0) {
filterVal = filterVal.substr(1, filterVal.length);
}
window.location.hash = "#?" + filterVal;
window.location.reload();
ev.preventDefault();
};
if(window.location.hash.indexOf("#?") > -1) {
$("#filter [name=value]").val(window.location.hash.substr(2));
}
$("#filter button").click(onSubmit);
$.ajax({ url: url,
dataType: "json", success: function(tiddlers) {
var table = $("#bulk")[0];
$("<tr><th>Title</th><th>Status</th><th>Select <input type='checkbox' class='batchSelect' /></th></tr>").appendTo(table);
$(".batchSelect").click(function(ev) {
var ch = $(ev.target).attr("checked") ? true : false;
$("input.tidCheckBox:visible").attr("checked", false).each(function(i, el) {
$(el).attr("checked", ch);
});
});
$("<button />").text("delete all selected tiddlers").insertBefore(table).click(function(ev) {
if(!confirm("DELETE all the tiddlers that have been selected before? Be warning that this is irreversable!")) {
return;
}
var tiddlers = [];
$("input.tidCheckBox:checked:visible").each(function(i, el) {
var tid = $(el).data("tiddler");
if(tid) {
tiddlers.push(tid);
}
});
function deletetid(tid) {
$.ajax({ url: "/bags/" + tid.bag + "/tiddlers/" + encodeURIComponent(tid.title),
type: "DELETE",
success: function(r) {
var el = tableObj[tid.title];
$(el).animate({ opacity: 0}, {
complete: function(el) {
$(this).remove();
}
});
}
});
}
for(var i = 0; i < tiddlers.length; i++) {
var tid = tiddlers[i];
deletetid(tid);
}
});
for(var i = 0; i < tiddlers.length; i++) {
var tiddler = tiddlers[i];
if(tiddler.bag.indexOf(space) === 0) {
var row = $("<tr />").appendTo(table)[0];
$("<td />").text(tiddler.title).appendTo(row);
var status = tiddler.bag.split("_")[1];
$("<td />").text(status).appendTo(row);
var deletecol = $("<td />").appendTo(row)[0];
tableObj[tiddler.title] = row;
$("<input />").addClass("tidCheckBox").attr("type", "checkbox").data("tiddler", tiddler).appendTo(deletecol);
}
}
}
});
</script>
</body>
</html>
!Summary
This prototype function of the [[TiddlyWiki.class]] removes a tiddler from the TiddlyWiki. It wil notify the functions set as listeners via [[store.addNotification()]] and set the dirty flag. If a tiddler by that title does not exist it returns silently.
!Signature
{{{TiddlyWiki.prototype.removeTiddler = function(title) {} }}}
!Returns
undefined
!Arguments
;1. (string) title
:the title of the tiddler to be deleted
!Example
{{{
store.removeTiddler('Foo');
}}}
''result:'' removes the tiddler called ''Foo''
the following methods prevent superfluous trailing linebreaks when using custom [[CSS Formatting]]...
!Method 1
{{{
{{foo{
this is a test
}}}{{bar{
this is a test
}}}
}}}
!Method 2
{{{
{{foo{
this is a test
}}}/%
%/{{bar{
this is a test
}}}
}}}
!Method 3
{{{
{{foo{ this creates a span }}}
}}}
Source: http://multicolumn.tiddlyspot.com/#StyleSheet%20MaloStyleSheet%20%5B%5BTiddlerLayout%20test%5D%5D
If a dom element has a refresh attribute that matches a definition in config.refresher it will run the corresponding refresh functions
by default there are refreshers for "link", [[tiddler|config.refreshers.tiddler]], "content" and "macro"
[[five.tiddlywiki.com|http://five.tiddlywiki.com]] -- the next generation TiddlyWiki, currently under heavy development, leveraging [[HTML5]]
<<tiddler Images>>
TiddlyWiki's architecture for interacting with servers allows it to be plugged into a wide variety of servers.
This is done through the addition of plugins containing custom server adaptors.
Server adaptors are designed to allow for UseCases like importing tiddlers, loading missing tiddlers on the fly and synchronizing changes with a server.
Separate macros and core extensions implement such features by accessing the facilities provided by server adaptors.
*[[ccTiddly|http://svn.tiddlywiki.org/Trunk/contributors/SimonMcManus/adaptors/ccTiddlyAdaptorPlugin.js]]
* [[ConfabbNotes|http://svn.tiddlywiki.org/Trunk/contributors/PhilHawksworth/adaptors/ConfabbNotesAdaptorPlugin.js]]
* [[Confluence|http://svn.tiddlywiki.org/Trunk/contributors/MartinBudden/adaptors/ConfluenceAdaptorPlugin.js]]
* [[DAV|http://svn.tiddlywiki.org/Trunk/contributors/MartinBudden/adaptors/DavAdaptorPlugin.js]]
* [[FacebookFriends|http://svn.tiddlywiki.org/Trunk/contributors/SimonMcManus/adaptors/FacebookFriendsAdaptorPlugin.js]]
*[[FacebookNews|http://svn.tiddlywiki.org/Trunk/contributors/SimonMcManus/adaptors/FacebookNewsAdaptorPlugin.js]]
* [[JSP Wiki|http://svn.tiddlywiki.org/Trunk/contributors/MartinBudden/adaptors/JSPWikiAdaptorPlugin.js]]
* [[MediaWiki|http://svn.tiddlywiki.org/Trunk/contributors/MartinBudden/adaptors/MediaWikiAdaptorPlugin.js]]
* [[RawText|http://svn.tiddlywiki.org/Trunk/association/adaptors/RawTextAdaptor.js]]
* [[RSS|http://svn.tiddlywiki.org/Trunk/contributors/JonathanLister/adaptors/RSSAdaptor.js]]
*[[Socialtext|http://svn.tiddlywiki.org/Trunk/contributors/MartinBudden/adaptors/SocialtextAdaptorPlugin.js]]
* [[Synchrotron|http://svn.tiddlywiki.org/Trunk/contributors/MartinBudden/adaptors/synchrotronAdaptorPlugin.js]]
*[[TiddlyWeb|https://github.com/tiddlyweb/tiddlywebwikiclient]]
* [[Trac|http://svn.tiddlywiki.org/Trunk/contributors/FND/adaptors/TracAdaptor.js]]
* [[TWiki|http://svn.tiddlywiki.org/Trunk/contributors/MartinBudden/adaptors/TWikiAdaptorPlugin.js]]
* [[Twitter|http://svn.tiddlywiki.org/Trunk/contributors/FND/adaptors/TwitterAdaptor.js]]
* [[WikispacesSOAP|http://svn.tiddlywiki.org/Trunk/contributors/SaqImtiaz/verticals/POLS250/common/plugins/WikispacesSoapAdaptorPlugin.js]]
* [[Wordpress|http://svn.tiddlywiki.org/Trunk/contributors/MartinBudden/adaptors/WordpressAdaptorPlugin.js]]
*[[ZiddlyWiki|http://svn.tiddlywiki.org/Trunk/contributors/MartinBudden/adaptors/WordpressAdaptorPlugin.js]]
!!See Also
* [[ServerAdaptorMechanism]]
//Getting Things Done// or short //GTD// is...
> a powerful work-life management system and book by David Allen that transforms personal overwhelm and overload into an integrated system of stress-free productivity.
For more information see...
:» [[Wikipedia/GTD|http://en.wikipedia.org/wiki/Getting_Things_Done]]
:» [[David Allen's website|http://www.davidco.com/what_is_gtd.php What is GTD?]]
:» [[Can I use TiddlyWiki for GTD?]]
Tiddlers that have been redirected tag to <<tag REDIRECTED>>.
/***
|''Name''|TiddlyTagCloudPlugin|
|''Author''|Jon Robson|
|''Version''|0.3.11|
!Usage
{{{ <<tagcloud>> }}} creates a tag cloud of all content.
<<tagcloud filter:"[is[local]]" exclude:excludeLists exclude:excludeSearch exclude:excludePublisher>>
!Parameters
exclude: name a tag you want to exclude from the tag cloud.
filter: provide a filter to run the tag cloud on a subset of tiddlers see SiteInfo@filters and [[filters syntax]]@docs
threshold:2 - will ignore any tags that occur less than 2 times.
sortOrder: <-,+,""> - sort the resulting tags in descending, ascending or no order
***/
//{{{
(function($) {
var stylesheet = "StyleSheetTagCloud";
config.shadowTiddlers[stylesheet] = ['.tagcloudTag { display: inline-block; border : none; margin-right: 8px; '].join("\n");
store.addNotification(stylesheet, refreshStyles);
var macro = config.macros.tagcloud = {
locale: {
tooltip: "see the %0 occurrences of %1"
},
cache: {},
options: {
fontSize: {
small: 10,
large: 48,
},
threshold: 1,
sortOrder: "+"
},
_cleanup: function() {
for(var i in macro.cache) {
if($(i).length === 0) {
delete macro.cache[i];
}
}
},
handler: function(place, macroName, params, wikifier, paramString, tiddler) {
var id = "tagcloud"+Math.random();
var container = $("<div />").attr("params", paramString).addClass("tagcloud").
attr("id", id).appendTo(place)[0];
macro.refresh(container);
},
refresh: function(container) {
macro._cleanup();
var tags, tag;
var locale = macro.locale;
var paramString = $(container).attr("params");
var args = paramString.parseParams("anon")[0];
var exclude = args.exclude || [];
var tiddlers = args.filter ? store.filterTiddlers(args.filter[0]) : store.getTiddlers();
var count = {};
var lookup = {};
var options = macro.options;
var threshold = args.threshold ? parseInt(args.threshold[0], 10) : options.threshold;
for(var i = 0; i < tiddlers.length; i++) {
var tiddler = tiddlers[i];
tags = tiddler.tags;
for(var j = 0; j < tags.length; j++) {
tag = tags[j];
if(!exclude.contains(tag)) {
lookup[tag] = lookup[tag] || [];
lookup[tag].push(tiddler);
if(!count[tag]) {
count[tag] = 1;
} else {
count[tag] += 1;
}
}
}
}
tags = [];
var largest, smallest, c;
for(var k in count) {
tags.push(k);
if(count[k] < threshold) {
delete count[k];
}
}
var sort = options.sortOrder;
tags = tags.sort(function(i, j) {
if(sort == "+") {
return i < j ? -1 : 1;
} else if(sort == "-") {
return i < j ? 1 : -1;
} else {
return 0;
}
});
for(var l in count) {
if(true) {
c = count[l];
if(!largest) {
largest = c;
} else if(c > largest) {
largest = c;
}
if(!smallest) {
smallest = c;
} else if(c < smallest) {
smallest = c;
}
}
}
var id = $(container).attr("id");
macro.cache[id] = lookup;
for(var l = 0; l < tags.length; l++) {
var tag = tags[l];
if(true) {
c = count[tag];
if(c) {
var size = macro.determineFontSize({ largest: largest, smallest:smallest, occurrences: c });
var btn = createTagButton(container,"[_tagcloud[%0-:-%1]]".format(id, tag),
null,tag,locale.tooltip.format(c, tag));
$(btn).addClass("tagcloudTag").attr("tag", tag).css({ "font-size": size + "px" }).
addClass("button size%0".format(size)).click(function(ev) {
var tag = $(ev.target).attr("tag");
window.setTimeout(function() {
var items = $(".popup li a");
var lastLink = items[items.length - 1];
$(lastLink).text("Open tag " + tag).attr("tiddlylink", tag);
}, 10);
});
// the last line is rather hacky but gets the required result of making it possible to open the tag
}
}
}
},
determineFontSize: function(args) {
var options = macro.options;
var deltaFontSize = options.fontSize.large - options.fontSize.small;
var delta = args.occurrences / (args.largest - args.smallest + 1);
return options.fontSize.small + parseInt(delta * deltaFontSize, 10);
}
};
config.filters._tagcloud = function(results, match) {
var args = match[3] ? match[3].split("-:-") : false;
if(args) {
var id = args[0];
var lookup = macro.cache[id] || {};
var tag = args[1];
var tiddlers = lookup[tag] || [];
return tiddlers;
} else {
return [];
}
};
})(jQuery);
//}}}
!Summary
The shadow tiddler StyleSheetColors contains CSS definitions related to the color of page elements. ''DO NOT EDIT THIS TIDDLER'', instead make your changes in the StyleSheet shadow tiddler.
ColorPalette
StyleSheet
SiteSubtitle
GettingStarted
SiteTitle
MainMenu
SiteIcon
DefaultTiddlers
ViewTemplate
PageTemplate
SideBarOptions
EditTemplate
SiteInfo
SideBarTabs
ToolbarCommands
[[TiddlySpot.com|http://tiddlyspot.com]] has been one of the early providers for hosting TiddlyWiki and much contributed to engaging the community. For more information, check out the [[TiddlySpot FAQ|http://faq.tiddlyspot.com]].
/***
|''Name''|??Theme|
|''Source''|http://??|
|''Version:''|0.1|
|''Author:''|Name|
|''Date:''|date|
|''License:''|link to license|
|''Comments:''|Please make comments at http://groups.google.nl/group/TiddlyWiki|
|''~CoreVersion:''|2.6.x|
|''Type''|CSS|
|''Description''|a ''~TiddlyWiki'' theme: http://??|
|''PageTemplate:''|##PageTemplate|
|''ViewTemplate:''|##ViewTemplate|
|''EditTemplate:''|##EditTemplate|
|''StyleSheet:''|##StyleSheet|
***/
!PageTemplate
<!--{{{-->
<!--}}}-->
!ViewTemplate
<!--{{{-->
<!--}}}-->
!EditTemplate
<!--{{{-->
<!--}}}-->
!StyleSheet
/*{{{*/
/*}}}*/
<<tiddler Toolbar>>
<<<
;[[TEMPLATES]]
:» some templates used with the [[<<list>> macro|list]] in [[TiddlyWiki.org]]
<<<
<<<
;[[PLUGIN TEMPLATE]]
:» a template to be used for plugins
<<<
<<<
!"""Dedicated Documentation Plugins"""
; OrgDocPlugin
:» <<tiddler "OrgDocPlugin::Description">>
; MorePlugin
:» <<tiddler "MorePlugin::Description">>
; TemplateTransclusionPlugin
:» <<tiddler "TemplateTransclusionPlugin::Description">>
!"""Included Plugins"""
; [[LinkifyConfig]]
:» automatically links matched tiddler titles
; [[ListFiltrPlugin]]
:» quickly filters lists, e.g. [[FAQ]], [[Glossary]], [[Quick Search]]
<<<
<<<
;Binary / Image Upload
:<<binaryUpload edit:title>>
<<<
While browsers for iOS, Android & Co. display TiddlyWiki sites on the Internet quite well, all those devices do not allow to save edits in TiddlyWiki on your phone.
However, the following dedicated apps provide editing support for TiddlyWiki on mobilde devices...
|table100|k
|vertical-align:middle; !Operating<br>System | !App |>|>|>|h
|~| !Name | !Devices | !Dropbox |h
|vertical-align:middle;!Android|[[AndTidWiki|https://market.android.com/details?id=de.mgsimon.android.andtidwiki]]|all | yes |
|~|[[Firefox + TiddlyFox|How to get TiddlyFox running on Android?]]|all | yes |
|vertical-align:middle;!iOS|[[TWMobile|http://itunes.apple.com/gb/app/twmobile/id381945222?mt=8]]|iPad | yes |
|~|[[TWEdit|http://itunes.apple.com/gb/app/twedit/id409607956?mt=8]]|iPhone, iPad, iPod Touch | yes |
|~|[[tiddlyNotes|http://itunes.apple.com/us/app/tiddlynotes-lite/id465933435?mt=8]]|iPhone, iPad, iPod Touch | yes |
{{annotation{
''Note:'' These apps are produced by independent third parties not associated with [[TiddlyWiki.com]] or UnaMesa.
}}}
The title and subtitle of your space are visible to visitors and are also displayed in your browser's tabs. Click on the SiteTitle and SiteSubtitle tiddler links below to make changes.
* [[SiteTitle]]
* [[SiteSubtitle]]
To register as a new user in TiddlySpace visit [[TiddlySpace.com|http://tiddlyspace.com/register]].
A DOM reference points to an element in the DOM.
[[Bag]] is a name used in TiddlyWeb for a collection of uniquely named [[tiddlers|Tiddler]].
Each [[bag|Bag]] has a separate [[Policy]] for [[Access Control]] by [[Users|User]]. A bag may also have a description field, typically containing text stating the purpose of the bag.
A TiddlySpace [[space|Space]] has a pair of [[Public]] and [[Private]] bags. [[Users|User]] can create additional bags for a [[space|Space]] and manage the corresponding policies via the [[TiddlySpace API]].
The SiteInfo tiddler is a special [[tiddler|Tiddler]] that can be used to provide a public description on [[space|Space]].
It can just contain text but also tags and [[extended fields|Custom Fields]]. It is designed to describe a space to a newcomer and to be used by plugins.
For example, a space tagged ''"""plugin"""'' will be listed as a plugin space, one called ''"""theme"""'' will be listed as a theme space.
The idea behind its conception was first discussed [[here|http://groups.google.com/group/tiddlyweb/browse_thread/thread/34e6ac1ef870c7e6]].
[[Welcome]]
Tiddlers hidden from default lists:
{{fancyTimeline{
<<timeline
server.bag
10000000
[[YYYY.0MM.0DD]]
filter:"[tag[excludeLists]] [sort[title]]"
template:"TEMPLATES##EXCLUDE+LIST"
groupTemplate:"TEMPLATES##EXCLUDE+LIST+GROUP"
>>
}}}
{{annotation{
<<tag DEV "Developer Info">>: For the class documentation see Tiddler.class!
}}}
Either in the context of [[changing the default date formats|How do I change the default date formats for core macros?]] for core [[macros|Macros]] like [[today]], [[newJournal]], [[timeline]] and [[view]] or by using the corresponding date format parameters you can define a combination of ordinary text and special ''patterns'' substituted that will eventually with formatted with date values:
|!Pattern|!Description|!Example|
|{{{DDD}}}|weekday as text|<<today DDD>>|
|{{{ddd}}}|weekday as short text|<<today ddd>>|
|{{{DD}}}|day of month|<<today DD>>|
|{{{0DD}}}|day of month w/ leading zero|<<today 0DD>>|
|{{{DDth}}}|day of month w/ suffix|<<today DDth>>|
|{{{WW}}}|week number, see [[ISO-8601|http://de.wikipedia.org/wiki/ISO_8601]]|<<today WW>>|
|{{{WW}}}|week number w/ leading zero|<<today 0WW>>|
|{{{MMM}}}|month as text|<<today MMM>>|
|{{{mmm}}}|month as short text|<<today mmm>>|
|{{{MM}}}|month as number|<<today MM>>|
|{{{0MM}}}|month as number w/leading 0|<<today 0MM>>|
|{{{YYYY}}}|full year|<<today YYYY>>|
|{{{YYYY}}}|year, two digits|<<today YY>>|
|{{{wYYYY}}}|full year for current week|<<today wYYYY>>|
|{{{wYYYY}}}|year for current week, two digits|<<today wYY>>|
|{{{hh}}}|hours|<<today hh>>|
|{{{0hh}}}|hours w/ leading zero|<<today 0hh>>|
|{{{hh12}}}|hours in 12 hours cycle|<<today hh12>>|
|{{{0hh12}}}|hours in 12 hours cycle /w leading zero|<<today 0hh12>>|
|{{{mm}}}|minutes|<<today mm>>|
|{{{0mm}}}|minutes w/ leading zero|<<today 0mm>>|
|{{{ss}}}|seconds|<<today ss>>|
|{{{ss}}}|seconds w/ leading zero|<<today ss>>|
|{{{am}}} or {{{pm}}}|lower case am/pm indicator|<<today pm>>|
|{{{AM}}} or {{{PM}}}|upper case AM/PM indicator|<<today PM>>|
!!!Examples
;<nowiki>DDth MMM YYYY</nowiki>
:<<today "DDth MMM YYYY">>
;<nowiki>DDth mmm 0hh:0mm:0ss</nowiki>
:<<today "DDth mmm 0hh:0mm:0ss">>
[[r4tw|http://simonbaird.com/r4tw/]] is a collection of Ruby classes for manipulating [[TiddlyWiki]] files.
[[tiddlywiki_cp|http://rubyforge.org/projects/tiddlywikicp/]] is a Ruby gem based on ''r4tw'', providing a library and command-line interface to create tiddlers from files and vice versa.
!!See Also
* [[Dev:PyTiddlyWiki]]
<<tiddler Links>>
!Description
The [[edit]] macro is used __exclusively__ in the shadow tiddler called EditTemplate to render an input element for a tiddler field.
!Usage
;input field
:» {{{<div class='editor' macro='edit text'></div>}}}
:* creates a simple input field
;textarea
:» {{{<div class='editor' macro='edit text 10'></div>}}}
:* creates a textarea with 10 lines height
:* does not limit on the number of lines of text that can be entered
Also see section ''Basic Viewing & Editing'' in [[Custom Fields]]...
/***
|''Name''|TiddlySpaceBackstage|
|''Version''|0.8.0|
|''Description''|Provides a TiddlySpace version of the backstage and a homeLink macro|
|''Status''|@@beta@@|
|''Contributors''|Jon Lister, Jon Robson, Colm Britton|
|''Source''|http://github.com/TiddlySpace/tiddlyspace/raw/master/src/plugins/TiddlySpaceBackstage.js|
|''Requires''|TiddlySpaceConfig ImageMacroPlugin TiddlySpaceViewTypes|
!StyleSheet
.tiddler .error.annotation .button{
display: inline-block;
}
#backstageArea {
z-index: 49;
color: white;
background-color: black;
background: -webkit-gradient(linear,left bottom,left top,color-stop(0, #222),color-stop(0.5, #333),color-stop(1, #555));
background: -moz-linear-gradient(center bottom,#222 0%, #333 50%, #555 100%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#ff555555, endColorstr=#ff222222);
-ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#ff555555, endColorstr=#ff222222)";
height: 25px;
padding: 0;
}
#backstageButton {
overflow: hidden;
}
#backstageButton #backstageShow,
#backstageButton #backstageHide {
margin: 0px;
padding: 0px;
}
#backstageButton #backstageShow:hover,
#backstageButton #backstageHide:hover {
background: none;
color: none;
}
#backstageButton img,
#backstageButton svg {
width: 24px;
height: 24px;
}
#messageArea {
top: 50px;
}
#backstageToolbar {
position: relative;
}
#backstageArea a {
padding: 0px;
margin-left: 0px;
color: white;
background: none;
}
#backstageArea a:hover {
background-color: white;
}
#backstage ol,
#backstage ul {
padding: auto;
}
#backstageButton a {
margin: 0;
}
.backstagePanelBody ul {
padding: 5px;
margin: 5px;
}
#backstage #backstagePanel {
margin-left: 5%;
padding: 0em;
margin-right: 5%;
}
#backstageToolbar a {
position: relative;
}
#backstageArea a.backstageSelTab,
#backstageToolbar .backstageTask {
line-height: 25px;
color: #767676;
}
.backstageTask .externalImage,
.backstageTask .image {
display: inline;
}
#backstageToolbar a span {
z-index: 2;
}
a.backstageTask {
display: inline;
margin-left: 1em !important;
}
.backstagePanelBody .button {
display: inline-block;
margin-right: 10px;
}
.backstagePanelBody {
margin: 0 0 0 0.6em;
padding: 0.4em 0.5em 1px 0.5em;
}
#backstage table {
margin: auto;
}
#backstage .wizard table {
border: 0px;
margin: 0;
}
#backstage div li.listLink {
border: 0px;
width: 78%;
font-size: 0.7em;
}
#backstage div li.listTitle {
font-weight: bold;
text-decoration: underline;
font-size: 1em;
background: #ccc;
width: 100%;
}
#backstage fieldset {
border: solid 1px [[ColorPalette::Background]];
}
#backstage .viewer table,#backstage table.twtable {
border: 0px;
}
#backstageToolbar img {
padding: 0;
}
#backstage .wizard,
#backstage .wizardFooter {
background: none;
}
.viewer td, .viewer tr, .twtable td, .twtable tr {
border: 1px solid #eee;
}
#backstage .inlineList ul li {
background-color: [[ColorPalette::Background]];
border: solid 1px [[ColorPalette::TertiaryMid]];
display: block;
float: left;
list-style: none;
margin-right: 1em;
padding: 0.5em;
}
.backstageClear, .inlineList form {
clear: both;
display: block;
margin-top: 3em;
}
.tiddlyspaceMenu {
text-align: center;
}
span.chunkyButton {
display: inline-block;
padding: 0;
margin: 0;
border: solid 2px #000;
background-color: #04b;
}
span.chunkyButton a.button, span.chunkyButton a:active.button {
white-space: nowrap;
font-weight: bold;
font-size: 1.8em;
color: #fff;
text-align: center;
padding: 0.5em 0.5em;
margin: 0;
border-style: none;
display: block;
}
span.chunkyButton:hover {
background-color: #014;
}
span.chunkyButton a.button:hover {
border-style: none;
background: none;
color: #fff;
}
#backstage .unpluggedSpaceTab .wizard,
.unpluggedSpaceTab .wizard {
background: white;
border: 2px solid #CCC;
padding: 5px;
}
.syncKey .keyItem {
border: 1px solid black;
display: inline-block;
margin: 0.2em;
padding: 0.1em 0.1em 0.1em 0.1em;
}
.keyHeading {
font-size: 2em;
font-weight: bold;
margin: 0.4em 0em -0.2em;
}
.unpluggedSpaceTab .putToServer,
.unpluggedSpaceTab .notChanged {
display: none;
}
.tiddlyspaceMenu ul {
margin: 0;
padding: 0;
}
.tiddlyspaceMenu ul li {
list-style: none;
}
.unsyncedChanges .unsyncedList {
display: block;
}
.unsyncedList {
display: none;
}
!Code
***/
//{{{
(function ($) {
var name = "StyleSheet" + tiddler.title;
config.shadowTiddlers[name] = "/*{{{*/\n%0\n/*}}}*/".
format(store.getTiddlerText(tiddler.title + "##StyleSheet")); // this accesses the StyleSheet section of the current tiddler (the plugin that contains it)
store.addNotification(name, refreshStyles);
if (!config.extensions.tiddlyweb.status.tiddlyspace_version) { // unplugged
config.extensions.tiddlyweb.status.tiddlyspace_version = "<unknown>";
config.extensions.tiddlyweb.status.server_host = {
url:config.extensions.tiddlyweb.host }; // TiddlySpaceLinkPlugin expects this
}
var disabled_tasks_for_nonmembers = ["tiddlers", "plugins", "batch", "sync"];
var tweb = config.extensions.tiddlyweb;
var tiddlyspace = config.extensions.tiddlyspace;
var currentSpace = tiddlyspace.currentSpace.name;
var imageMacro = config.macros.image;
if (config.options.chkBackstage === undefined) {
config.options.chkBackstage = false;
}
// Set up Backstage
config.tasks = {};
config.tasks.status = {
text:"status",
tooltip:"TiddlySpace Info",
content:"<<tiddler Backstage##Menu>>"
};
config.tasks.tiddlers = {
text:"tiddlers",
tooltip:"tiddlers control panel",
content:"<<tiddler Backstage##BackstageTiddlers>>"
};
config.tasks.plugins = {
text:"plugins",
tooltip:"Manage installed plugins",
content:"<<tiddler Backstage##Plugins>>"
};
config.tasks.batch = {
text:"batch",
tooltip:"Batch manage public/private tiddlers",
content:"<<tiddler Backstage##BatchOps>>"
};
config.tasks.tweaks = {
text:"tweaks",
tooltip:"Tweak TiddlyWiki behaviors",
content:"<<tiddler Backstage##Tweaks>>"
};
config.tasks.exportTiddlers = {
text:"import/export",
tooltip:"Import/export tiddlers from/to a TiddlyWiki",
content:"<<tiddler Backstage##ImportExport>>"
};
config.tasks.sync = {
text:"sync",
tooltip:"Check Sync status",
content:"<<tiddler Backstage##SpaceUnplugged>>"
};
if (window.location.protocol === "file:") {
config.unplugged = true;
}
config.backstageTasks = ["status", "tiddlers", "plugins",
"batch", "tweaks", "exportTiddlers", "sync"];
config.messages.backstage.prompt = "";
// initialize state
var _show = backstage.show;
backstage.show = function () {
// selectively hide backstage tasks and tabs based on user status
var tasks = $("#backstageToolbar .backstageTask").show();
var bs = backstage.tiddlyspace;
if (!config.unplugged) {
tweb.getUserInfo(function (user) {
if (user.anon) {
jQuery.each(disabled_tasks_for_nonmembers, function (i, task) {
var taskIndex = config.backstageTasks.indexOf(task);
if (taskIndex !== -1) {
config.backstageTasks.splice(taskIndex, 1);
}
});
config.messages.memberStatus = bs.locale.loggedout;
} else {
config.messages.memberStatus = readOnly ?
bs.locale.nonmember : bs.locale.member;
}
});
} else {
config.messages.memberStatus = bs.locale.unplugged;
}
// display backstage
return _show.apply(this, arguments);
};
if (readOnly) {
jQuery.each(disabled_tasks_for_nonmembers, function (i, task) {
var taskIndex = config.backstageTasks.indexOf(task);
if (taskIndex !== -1) {
config.backstageTasks.splice(taskIndex, 1);
}
});
}
var tasks = config.tasks;
var commonUrl = "/bags/common/tiddlers/%0";
backstage.tiddlyspace = {
locale:{
member:"You are a member of this space.",
nonmember:"You are not a member of this space.",
loggedout:"You are currently logged out of TiddlySpace.",
unplugged:"You are unplugged."
},
showButton:function () {
var showBtn = $("#backstageShow")[0];
var altText = $(showBtn).text();
$(showBtn).empty();
imageMacro.renderImage(showBtn, "backstage.svg",
{ altImage:commonUrl.format("backstage.png"), alt:altText});
},
hideButton:function () {
var hideBtn = $("#backstageHide")[0];
var altText = $(hideBtn).text();
$(hideBtn).empty();
imageMacro.renderImage(hideBtn, "close.svg",
{ altImage:commonUrl.format("close.png"), alt:altText, width:24, height:24 });
}
};
var _init = backstage.init;
backstage.init = function () {
_init.apply(this, arguments);
var init = function (user) {
var bs = backstage.tiddlyspace;
bs.showButton();
bs.hideButton();
};
tweb.getUserInfo(init);
};
var home = config.macros.homeLink = {
locale:{
linkText:"your home space"
},
handler:function (place) {
var container = $("<span />").appendTo(place)[0];
tweb.getUserInfo(function (user) {
if (!user.anon && user.name !== currentSpace) {
createSpaceLink(container, user.name, null, home.locale.linkText);
}
});
}
};
config.macros.exportSpace = {
handler:function (place, macroName, params) {
var filename = params[0] ||
"/tiddlers.wiki?download=%0.html".format(currentSpace);
$('<a class="button">download</a>').// XXX: i18n
attr("href", filename).appendTo(place);
}
};
}(jQuery));
//}}}
From the [[Glossary|WikiWord]]...
<<<
<<tiddler WikiWord>>
<<<
In conventional wikis, this notation is also referred to as [[CamelCase|http://en.wikipedia.org/wiki/CamelCase]] and used to name individual pages. Used in the content, a WikiWord automatically creates a link to the page called WikiWord. Clicking such a link opens that page or -- if it doesn't exist yet -- an editor to create it.
A standard TiddlyWiki uses WikiWords as titles, especially for predefined [[shadow tiddlers|ShadowTiddler]].
!!"""Disabling WikiWords"""
If you don't want SomeWord to be a WikiWord, escape it by prefixing it with a tilde (~), e.g. {{{~SomeWord}}} renders as ~SomeWord.
For globaly deactivating WikiWords, see [[How to deactivate automatic WikiWords?]]...
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
<<tiddler Blockquotes>>
See [[TiddlyWiki Core]]...
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
Someone has tagged a tiddler tagging here for review...
Check tiddlers with the tag <<tag DELETE>> for deletion...
/***
|''Name''|ImageMacroPlugin|
|''Version''|0.9.4|
|''Description''|Allows the rendering of svg images in a TiddlyWiki|
|''Author''|Osmosoft|
|''License''|[[BSD|http://www.opensource.org/licenses/bsd-license.php]]|
|''Notes''|Currently only works in modern browsers (not IE)|
|''Requires''|BinaryTiddlersPlugin|
!Usage
{{{<<image SVG>>}}} will render the text of the tiddler with title SVG as an SVG image (but not in ie where it will fail silently)
!!Parameters
width/height: specify width/height parameters
link: make the image link to a given location
tiddlyLink: link to a tiddler
!Notes
Binary tiddlers in TiddlyWeb when passed through the wikifier will be shown as images.
eg. {{{<<view text wikified>>}}} on a binary tiddler will show the image.
{{{<<view fieldname image>>}}}
will render the value of the tiddler field 'fieldname' as an image. This field can contain a tid
{{{<<image SiteIcon>>}}}
will create an image tag where the tiddler has content type beginning image and not ending +xml
will attempt to create svg object in other scenarios
{{{<<image /photos/x.jpg>>}}}
will create an image tag with src /photos/x.jpg as long as there is not a tiddler called /photos/x.jpg in
which case it will render that tiddler as an image. Note for the case of svg files it will attempt to render as an svg if possible via the image
tag. It doesn't embed the svg in the dom for security reasons as svg code can contain javascript.
!Code
***/
//{{{
(function($) {
var macro = config.macros.image = {
shim: "/bags/common/tiddlers/shim",
ieVersion: config.browser.isIE ? parseInt(config.browser.ieVersion[1], 10) : false,
svgns: "http://www.w3.org/2000/svg",
xlinkns: "http://www.w3.org/1999/xlink",
svgAvailable: document.implementation.hasFeature("http://www.w3.org/TR/SVG11/feature#BasicStructure", "1.1"),
_fixPrefix: 1,
_external_cache: {},
_image_tag_cache: {},
_image_dimensions: {},
locale: {
badImage: "This image cannot be displayed."
},
handler: function(place, macroName, params, wikifier, paramString, tiddler){
var imageSource = params[0];
// collect named arguments
var args = macro.getArguments(paramString, params);
this.renderImage(place, imageSource, args);
},
init: function() {
var startupImages = store.getTaggedTiddlers("systemImage");
var place = $("<div />").attr("id", "systemImageArea").appendTo("body").hide()[0];
for(var i = 0; i < startupImages.length; i++) {
var image = startupImages[i];
macro.renderImage(place, image.title, { idPrefix: "" });
}
var data = new Image();
data.onload = function() {
// note ie 8 only supports data uris up to 32k so cannot be relied on
macro.supportsDataUris = this.width != 1 || this.height != 1 ? false : true;
macro.supportsDataUris = macro.ieVersion && macro.ieVersion < 9 ? false : macro.supportsDataUris;
};
data.onerror = data.onload;
data.src = "data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///ywAAAAAAQABAAACAUwAOw==";
},
refreshImage: function(src) {
var elements = macro._image_tag_cache[src] ? macro._image_tag_cache[src] : [];
if(macro._image_dimensions[src]) {
macro._image_dimensions[src] = false;
}
for(var i = 0; i < elements.length; i++) {
var el = $(elements[i]);
var newSrc = "%0?nocache=%1".format(src, Math.random());
el.attr("src", newSrc); // force reload
}
},
isBinaryImageType: function(contentType) {
return (contentType && contentType.indexOf("image") === 0 &&
contentType.indexOf("+xml") != contentType.length - 4) ? true : false;
},
isImageTiddler: function(tiddler) {
return macro.isSVGTiddler(tiddler) || macro.isBinaryImageTiddler(tiddler);
},
isSVGTiddler: function(tiddler) {
var type = tiddler ? tiddler.fields['server.content-type'] : false;
return type == "image/svg+xml";
},
isBinaryImageTiddler: function(tiddler) {
return macro.isBinaryImageType(tiddler.fields['server.content-type']);
},
renderImage: function(place, imageSource, options) {
var imageTiddler = store.getTiddler(imageSource);
var container;
var classes = ["image"];
if(options.link) {
classes = classes.concat(["imageLink", "externalLink"]);
container = $("<a />").attr("href", options.link).appendTo(place)[0];
} else if(options.tiddlyLink) {
classes.push("imageLink");
container = createTiddlyLink(place, options.tiddlyLink, false);
} else {
container = $("<span />").appendTo(place)[0];
}
$(container).addClass(classes.join(" "));
options = options ? options : {};
if(imageTiddler && macro.isBinaryImageTiddler(imageTiddler)) { // handle the case where we have an image url
return macro._renderBinaryImageTiddler(container, imageTiddler, options);
} else if(imageTiddler){ // handle the case where we have a tiddler
return macro._renderSVGTiddler(container, imageTiddler, options);
} else { // we have a string representing a url
return macro._renderBinaryImageUrl(container, imageSource, options);
}
},
_renderAlternateText: function(container, options) {
var img;
var src = options.src || "";
if(options.width && options.height) {
img = $("<img />").attr("src", src).addClass("svgImageText").attr("width", options.width).
attr("height", options.height).appendTo(container);
}
var alt = options.alt;
if(img && alt) {
img.attr("alt", alt).attr("title", alt);
} else if(alt) {
$(container).addClass("svgImageText").text(alt);
}
macro._image_tag_cache[src] = img;
},
_renderSVGTiddler: function(place, tiddler, options) {
if(!options) {
options = {};
}
merge(options, { tiddler: tiddler, fix: true});
if(macro.svgAvailable) {
this._importSVG(place, options); // display the svg
} else if(options.altImage) {
var image = options.altImage;
delete options.altImage;
this._renderBinaryImageUrl(place, image, options);
} else {
this._renderAlternateText(place, options); // instead of showing the image show the alternate text.
}
},
_renderBinaryImageTiddler: function(place, tiddler, options) {
var resourceURI;
var fields = tiddler.fields;
if(fields["server.type"] == "tiddlyweb") { // construct an accurate url for the resource
resourceURI = "%0/%1/tiddlers/%2".format(config.defaultCustomFields["server.host"],
fields["server.workspace"], encodeURI(fields["server.title"]));
} else { // guess the url for the resource
resourceURI = tiddler.title;
}
var ctype = fields["server.content-type"] || tiddler.type;
var text = tiddler.text;
if(macro.supportsDataUris && ctype && text.indexOf("<html") == -1) {
var uri = "data:%0;base64,%1".format(ctype, text);
options.src = resourceURI;
return macro._renderBinaryImageUrl(place, uri, options);
} else if(options.src) {
return macro._renderBinaryImageUrl(place, options.src, options);
} else {
return macro._renderBinaryImageUrl(place, resourceURI, options);
}
},
_renderImageTag: function(container, src, width, height, options) {
var img;
img = $("<img />").appendTo(container);
if(height) {
img.attr("height", height);
}
if(width) {
img.attr("width", width);
}
if(macro.ieVersion && macro.ieVersion < 7 && macro.shim && options.ie6png) {
$(img).css({width: userW, height: userH,
filter: "progid:DXImageTransform.Microsoft.AlphaImageLoader(src='%0', sizingMethod='scale')".format(src)
}).attr("src", macro.shim);
} else {
img.attr("src", src);
}
if(!macro._image_tag_cache[options.srcUrl]) {
macro._image_tag_cache[options.srcUrl] = [];
}
img = $(img).addClass(options.imageClass)[0];
macro._image_tag_cache[options.srcUrl].push(img);
return img;
},
_getDimensions: function(realDimensions, reqDimensions, preserve) {
var w = realDimensions.width;
var h = realDimensions.height;
var reqh = reqDimensions.height;
var reqw = reqDimensions.width;
var finalw = w, finalh = h;
var ratiow = reqw / w, ratioh = reqh / h;
var scaledw = ratioh * w;
var scaledh = ratiow * h;
if(!reqw && reqh) {
finalw = scaledw;
finalh = reqh;
} else if(reqw && !reqh) {
finalw = reqw;
finalh = scaledh;
} else if(reqh && reqw) {
var preserveWidth = w > h ? true : false;
if(preserve) {
if(preserveWidth && scaledh < reqh) {
finalh = scaledh;
finalw = reqw;
} else {
finalh = reqh;
finalw = scaledw;
}
} else {
finalw = reqw;
finalh = reqh;
}
}
return { width: parseInt(finalw, 10), height: parseInt(finalh, 10) };
},
_renderBinaryImageUrl: function(container, src, options) {
var srcUrl = options.src ? options.src : src;
srcUrl = srcUrl.indexOf("/") === -1 ? "/%0".format(srcUrl) : srcUrl; // for IE.
var image_dimensions = macro._image_dimensions[srcUrl];
var image = new Image(); // due to weird scaling issues where you use just a width or just a height
var createImageTag = function(dimensions, error) {
if(error) {
var altImage = options.altImage;
if(altImage) {
delete options.altImage;
macro._renderBinaryImageUrl(container, altImage, options);
} else {
options.src = src;
macro._renderAlternateText(container, options);
}
} else {
var dim = macro._getDimensions(dimensions, {
width: options.width, height: options.height }, options.preserveAspectRatio);
options.srcUrl = srcUrl;
macro._renderImageTag(container, src, dim.width, dim.height, options);
}
};
if(!image_dimensions) {
image.onload = function() {
var dimensions = { width: image.width, height: image.height};
macro._image_dimensions[srcUrl] = dimensions;
createImageTag(dimensions);
};
image.onerror = function() {
createImageTag(null, true);
};
image.src = src;
} else {
createImageTag(image_dimensions);
}
},
_generateIdPrefix: function(){
return "twsvgfix_" + (this._fixPrefix++).toString() + "_";
},
_fixSVG: function(childNodes, idPrefix) {
var urlPattern = /url\(\#([^\)]*)\)*/ig;
var fixes = [
{ attr: "id", pattern: /^(.*)$/ig },
{ attr: "href", namespace: macro.xlinkns, pattern: /^#(.*)$/ig }
];
var url_fixes = ["filter", "fill", "mask", "stroke", "style"];
for(var i = 0; i < url_fixes.length; i++) {
fixes.push({ attr: url_fixes[i], pattern: urlPattern });
}
for(var t = 0; t < childNodes.length; t++) {
var node = childNodes[t];
for(var a = 0; a < fixes.length; a++) {
var fix = fixes[a];
var attr = fix.attr;
var ns = fix.namespace || "";
if(node.hasAttributeNS && node.hasAttributeNS(ns, attr)) {
var v = node.getAttributeNS(ns, attr);
fix.pattern.lastIndex = 0;
var match = fix.pattern.exec(v);
if(match) {
// Make sure replacement string doesn't contain any single dollar signs
var toReplace = match[1];
if(toReplace.indexOf(idPrefix) !== 0 && toReplace.indexOf("twglobal_") !== 0) {
var replacement = (idPrefix + toReplace).replace("$", "$$$$");
v = v.replace(match[1], replacement);
}
node.setAttributeNS(ns, attr,v);
}
}
}
var children = node.childNodes;
if(children.length > 0) {
this._fixSVG(children, idPrefix);
}
}
},
_importSVG: function(place, options){
options = options ? options : {};
var svgDoc, tiddlerText = options.tiddler.text;
if (window.DOMParser) {
svgDoc = new DOMParser().parseFromString(tiddlerText, "application/xml").documentElement;
var idPrefix = options.idPrefix || this._generateIdPrefix();
this._fixSVG([svgDoc], idPrefix);
var el = document.importNode(svgDoc, true);
var svgHolder = document.createElementNS(macro.svgns,"svg");
var width = options.width;
var height = options.height;
if(width || height) {
if(width && height) { // set view box of containing svg element based on the svg viewbox and width and height.
var viewBox = el.getAttribute("viewBox");
var topLeft = "0 0";
if(viewBox) {
topLeft = viewBox.replace(/([0-9]*) +([0-9]*) +([0-9]*) +([0-9]*) */gi,"$1 $2");
}
svgHolder.setAttributeNS(macro.svgns, "viewBox", "0 0 %0 %1".format(width, height));
} else {
if(!width) {
width = el.getAttribute("width");
}
if(!height) {
height = el.getAttribute("height");
}
}
svgHolder.setAttribute("width", width);
svgHolder.setAttribute("height", height);
el.setAttribute("width", "100%");
el.setAttribute("height", "100%");
svgHolder.setAttribute("class", "svgImage svgIcon %0".format(options.imageClass || ""));
svgHolder.appendChild(el);
place.appendChild(svgHolder);
}
else {
var existing = el.className ? el.className.baseVal : "";
el.setAttribute("class","svgImage %0".format(existing));
place.appendChild(el);
}
// if a tiddler attribute is set this is read as a link
$("[tiddler], [tiddlyLink]", place).attr("refresh", "link").click(function(ev) {
var tiddler = $(ev.target).attr("tiddlyLink");
if(tiddler) {
story.displayTiddler(ev.target, tiddler);
}
});
}
},
getArguments: function(paramString, params) {
var args = paramString.parseParams("name", null, true, false, true)[0];
var options = {};
for(var id in args) {
if(true) {
var p = args[id];
if(id == "def") {
options[id] = p;
} else {
options[id] = p[0];
}
}
}
var width = isNaN(params[1]) ? false : parseInt(params[1], 10);
var height = isNaN(params[2]) ? false : parseInt(params[2], 10);
options.width = macro.lookupArgument(options, "width", width);
options.height = macro.lookupArgument(options, "height", height);
options.preserveAspectRatio = args.preserveAspectRatio &&
args.preserveAspectRatio[0] == "yes" ? true : false;
options.tiddlyLink = macro.lookupArgument(options, "tiddlyLink", false);
options.link = macro.lookupArgument(options, "link", false);
return options;
},
lookupArgument: function(args, id, ifEmpty) {
return args[id] ? args[id] : ifEmpty;
}
};
// update views
var _oldwikifiedview = config.macros.view.views.wikified;
// update wikifier to check tiddler type before rendering
merge(config.macros.view.views, {
wikified: function(value, place, params, wikifier, paramString, tiddler) {
if(macro.isImageTiddler(tiddler) && params[0] == "text") {
var newplace = $("<div />").addClass("wikifiedImage").appendTo(place)[0];
macro.renderImage(newplace, tiddler.title, { alt: macro.locale.badImage });
} else {
_oldwikifiedview.apply(this, arguments);
}
},
image: function(value, place, params, wikifier, paramString, tiddler) {
// a field can point to another tiddler whereas text is the current tiddler.
var title = params[0] == "text" ? tiddler.title : value;
var args = macro.getArguments(paramString, params);
macro.renderImage(place, title, args);
}
});
config.shadowTiddlers.StyleSheetImageMacro = [".wikifiedImage svg, .wikifiedImage .image { width: 80%; }",
".svgImageText { background-color:[[ColorPalette::Error]]; color:#ddd; display: inline-block; }",
"span.svgImageText { display: inline-block; overflow: hidden; }"
].join("");
store.addNotification("StyleSheetImageMacro", refreshStyles);
})(jQuery);
//}}}
/***
|''Name''|MySearchPlugin|
|''Description''|displays search results as a simple list of matching tiddlers. Allows you to define a filter to limit search results to a certain subset.|
|''Authors''|FND, Jon Robson|
|''Version''|0.3.3|
!Code
***/
//{{{
if(typeof(config.options.txtSearchFilter) === 'undefined') {
config.options.txtSearchFilter = "[is[local]]";
}
config.optionsDesc.txtSearchFilter = "Provide a filter to be run on any search query";
if(!config.extensions) { config.extensions = {}; }
config.extensions.SimpleSearchPlugin = {
heading: "Search Results",
containerId: "searchResults",
btnCloseLabel: "close",
btnCloseTooltip: "dismiss search results",
btnCloseId: "search_close",
btnOpenLabel: "open all",
btnOpenTooltip: "open all search results",
btnOpenId: "search_open",
displayResults: function(matches, query) {
story.refreshAllTiddlers(true); // update highlighting within story tiddlers
var el = document.getElementById(this.containerId);
query = '"""' + query + '"""'; // prevent WikiLinks
if(el) {
jQuery(el).empty();
} else { //# fallback: use displayArea as parent
var container = document.getElementById("displayArea");
el = document.createElement("div");
el.id = this.containerId;
el = container.insertBefore(el, container.firstChild);
}
var msg = "!" + this.heading + "\n";
var preamble = "''" + config.macros.search.successMsg.format(matches.length.toString(), query) + ":''";
if(matches.length > 0) {
msg += preamble + "\n";
this.results = [];
for(var i = 0 ; i < matches.length; i++) {
this.results.push(matches[i].title);
msg += "* [[" + matches[i].title + "]]\n";
}
} else {
msg += "''" + config.macros.search.failureMsg.format([query]) + "''"; // XXX: do not use bold here!?
}
createTiddlyButton(el, this.btnCloseLabel, this.btnCloseTooltip, config.extensions.SimpleSearchPlugin.closeResults, "button", this.btnCloseId);
if(matches.length > 0) { // XXX: redundant!?
createTiddlyButton(el, this.btnOpenLabel, this.btnOpenTooltip, config.extensions.SimpleSearchPlugin.openAll, "button", this.btnOpenId);
}
wikify(msg, el);
var links = [preamble];
for(var i = 0; i < matches.length; i++) {
links.push("[[" + matches[i].title + "]]")
}
config.shadowTiddlers.MyLastSearch = links.join("\n");
},
closeResults: function() {
var el = document.getElementById(config.extensions.SimpleSearchPlugin.containerId);
jQuery(el).remove();
config.extensions.SimpleSearchPlugin.results = null;
highlightHack = null;
},
openAll: function(ev) {
story.displayTiddlers(null, config.extensions.SimpleSearchPlugin.results);
return false;
}
};
// override Story.search()
Story.prototype.search = function(text, useCaseSensitive, useRegExp) {
highlightHack = new RegExp(useRegExp ? text : text.escapeRegExp(), useCaseSensitive ? "mg" : "img");
var matches = store.search(highlightHack, null, "excludeSearch");
var q = useRegExp ? "/" : "'";
config.extensions.SimpleSearchPlugin.displayResults(matches, q + text + q);
};
// override TiddlyWiki.search() to sort by relevance
TiddlyWiki.prototype.search = function(searchRegExp, sortField, excludeTag, match) {
var candidates = store.filterTiddlers(config.options.txtSearchFilter);
var primary = [];
var secondary = [];
var tertiary = [];
var quaternary = [];
for(var t = 0; t < candidates.length; t++) {
var tiddler = candidates[t];
if(tiddler.title.search(searchRegExp) != -1) {
primary.push(tiddler);
} else if(tiddler.tags.join(" ").search(searchRegExp) != -1) {
secondary.push(tiddler);
} else if(tiddler.text.search(searchRegExp) != -1) {
tertiary.push(tiddler);
} else {
for(var j in tiddler.fields) {
if(tiddler.fields[j] && typeof(tiddler.fields[j]) === 'string' && tiddler.fields[j].search(searchRegExp) != -1) {
quaternary.push(tiddler);
break;
}
}
}
}
var results = primary.concat(secondary).concat(tertiary).concat(quaternary);
if(sortField) {
results.sort(function(a, b) {
return a[sortField] < b[sortField] ? -1 : (a[sortField] == b[sortField] ? 0 : +1);
});
}
return results;
};
//}}}
In a standard TiddlyWiki, the TabMoreMissing shadow tiddler shows all tiddlers that have links to them but are undefined using the [[list macro|list]] and is displayed as the {{button{More}}} tab in the [[Sidebar]].
!Summary
This prototype function of the Date class returns the days suffix in English, i.e. ''th'', ''rd'', ''st''.
!Signature
{{{Date.prototype.getHours12 = function() {} }}}
!Returns
''integer:'' the date's hours
!Arguments
none
!Example
{{{
var date = new Date();
// Sun Sep 29 2013 09:37:06 GMT+0200 (CET)
date.daySuffix();
}}}
''returns:'' {{{th}}}
/*{{{*/
Background: #fff
Foreground: #003366
PrimaryPale: #e8f1f9
PrimaryLight: #90bfe5
PrimaryMid: #398cd1
PrimaryDark: #091b29
SecondaryPale: #e8f1f9
SecondaryLight: #90bfe5
SecondaryMid: #398cd1
SecondaryDark: #091b29
TertiaryPale: #f9f9f9
TertiaryLight: #aaa
TertiaryMid: #888
TertiaryDark: #222
Error: #f88
ColorPaletteParameters: HSL([248|6], [0.67|0.53|0.43|0.06],[0.31|0.5|0.85|0.99])
/*}}}*/
<<tiddler "Persistent Options">>
!Description
The [[list macro|list]] outputs a list of tiddlers for a certain list-type.
!Usage
{{{
<<list
<list-type>
template: [[My List Template Tiddler]]
emptyMessage: "No matching tiddler found..."]
>>
}}}
The following parameters can be defined...
| !Parameter | !Description |width:200px; !Default |h
|<list-type> |always the __first__ parameter, the list-type defines what kind of list is generated which, e.g.:<br><<tiddler "list##TYPES">>|{{{<none>}}}<br>interpreted as {{{all}}}|
|''template''|a reference to a tiddler or """tiddler section""" defining how each item in the resulting list is displayed<br><br>''Example:''<br>To also display the author for each list item create a template tiddler with the following text:<br>{{{<<view title link>> by <<view modified link>>}}}<br>Then reference to this tiddler using the {{{template}}} parameter.|{{{<<view title link>>}}}<br>See [[view macro|view]]|
|''emptyMessage''|defines the wiki text displayed when the resulting list is empty||
!Example
The last five modified plugins:
{{{<<list filter "[tag[systemConfig]] [sort[-modified]] [limit[5]]">>}}}
<<list filter "[tag[systemConfig]] [sort[-modified]] [limit[5]]">>{{annotation{
''Note'': The sequence for filter parameters does matter, i.e. use {{{sort}}} before {{{limit}}} and everything else before either, otherwise you would fetch a defined number of arbitrary tiddlers which are only then matched or sorted.
}}}/%
!TYPES
;"""all"""
:list all tiddlers:
:{{{<<list all>>}}}
;"""filter"""
:list tiddlers matching a given [[filter criteria|Filters]], e.g. all [[Plugins]]:
:{{{<<list filter [tag[systemConfig]]>>}}}
;"""missing"""
:list tiddlers that have links to them but are not defined:
:{{{<<list missing>>}}}
;"""orphans"""
:list tiddlers that are not linked to from any other tiddlers:
:{{{<<list orphans>>}}}
;"""shadowed"""
:list [[Shadow Tiddlers]] that come with TiddlyWiki:
:{{{<<list shadowed>>}}}
;"""touched"""
:list tiddlers that have been modified locally since the wiki has loaded:
:{{{<<list touched>>}}}
!END%/
The single-file paradigm was at the heart of the original design of [[TiddlyWiki]]. It therefore was not designed for multi-user collaboration which makes concurrent editing a challenging issue.
However, there are various solutions enabling TiddlyWiki to be used as a collaborative platform.
! Overview
Server-side solutions for [[TiddlyWiki]] provide ubiquitous access to hosted TiddlyWiki documents, and potentially enable multi-user collaboration on a single TiddlyWiki document.
There are a number of solutions, each suited to specific needs:
| !Name | !Description | !Requirements | !Multi-User Support | !Revision History | !Status |h
|[[TiddlyWeb]] |the most advanced server-side for TiddlyWiki with a robust [[HTTP API]] with [[Bags]], [[Recipes]], [[Profiles]] and more and the technological basis for TiddlySpace|Python |yes |yes |actively developed and maintained |
|[[TiddlySpace]] |TiddlySpace is both, a website providing a collaborative environment for TiddlyWiki as well as a package for TiddlyWeb that allows you to run your own TiddlySpace instance|Python |yes |yes |actively developed and maintained |
|[[GieWiki|https://code.google.com/p/giewiki]] |Hopes to include all the features you would expect in a community wiki engine, runs on Google App Engine |Python, [[Google App Engine SDK|http://code.google.com/intl/da/appengine/downloads.html]] |yes |yes |actively developed |
|[[TiddlyHome|http://tiddlyhome.bidix.info]]|TiddlyHome provides an infrastructure for a multi-user and multi-site TiddlyWiki hosting service based on UploadPlugin. |PHP |yes |yes |actively maintained |
|[[version control systems|http://en.wikipedia.org/wiki/Revision_control]] (e.g. Subversion, Git, Mercurial) |since version 2.2, TiddlyWiki is very much suitable to be used in conjunction with regular version control systems | |yes (to a limited extent) |yes | |
|[[ccTiddly]] | |PHP and MySQL |yes |yes |? |
|[[Coral]] | |Java | | |? |
|[[MiniTiddlyServer]] | |PHP |no |no (regular TiddlyWiki backups only) |abandoned |
|[[MyWiki|http://aasted.org/wiki/]] |Needs no database. Works out of box. |PHP |No |No |Abandoned. Last version in 2004|
|[[PrinceTiddlyWiki]] | | | | |abandoned |
|[[PhpTiddlyWiki]] ([[fixed version|http://www.borism.net/2009/03/18/server-side-tiddlywiki-with-php-easy/]]) | |PHP | | |abandoned |
|[[ServerLockPlugin]] |prevent overwriting changes (simultaneous editing) when using a TiddlyWiki document stored on a remote server |PHP |yes (prevents simultaneous editing) |no (regular TiddlyWiki backups only) |? |
|[[TiddlyLock]] |prevent overwriting changes (simultaneous editing) when using a TiddlyWiki document over a shared network drive |network share |yes (prevents simultaneous editing)|no (regular TiddlyWiki backups only) |? |
|[[UploadPlugin]] |upload TiddlyWiki document |PHP |no |no (regular TiddlyWiki backups only) |actively maintained |
|[[WebDavPlugin]] |save TiddlyWiki to [[WebDav|http://en.wikipedia.org/wiki/WebDAV]] directory |[[WebDAV-enabled server||http://en.wikipedia.org/wiki/WebDAV]] |no |no (regular TiddlyWiki backups only) |? |
|[[ZiddlyWiki]] | |Python, Zope |yes |yes |irregularly maintained |
|[[Tiddly on Tahoe|http://allmydata.org/trac/tiddly_on_tahoe]]|[[Tahoe-LAFS|https://tahoe-lafs.org]] is a decentralized, secure storage grid; the result is a Server-Independent Wiki |[[tahoe-lafs|http://allmydata.org/trac/tiddly_on_tahoe]] | no | ? | ? |
|[[ProjectWiki|http://github.com/diclophis/projectwiki/tree/master]]|a prototype server-side savable TiddlyWiki| PHP | ? | ? | ? |
! Hosting Services
;[[TiddlySpace]]
:» based on TiddlyWeb
;[[TiddlySpot]]
:» based on UploadPlugin
;[[TiddlyHome 2.0|http://tiddlyhome2.bidix.info]]
:» a php based store for TiddlyWiki
! See Also
* [[I put my TiddlyWiki file on my web server and I can't save]]
* [[Can I use TiddlyWiki as a multi-user/collaborative/server based wiki?]]
/%
REMOVED FOR NOW
;[[TiddlyHost|http://tiddlyhost.appspot.com]]
: What is this ?!?
;[[LimeBits|http://www.limebits.com]]
:» host for """WebDAV-based""" open source applications -- [[using WebDAVSavingPlugin|http://www.limebits.com/apps/bitfinder/#url=/&tag=TiddlyWiki]]
: no instructions
: unavailable
%/
See [[version macro|version]]...
See http://www.mediawiki.org...
!References
<<references>>
{{annotation{
''Note:'' The old wiki is still accessible via [[web.archive.org|http://web.archive.org/web/20101129095145/http://tiddlywiki.org/wiki/Special:AllPages]].
}}}
This is tiddlywiki.org on the new platform "TiddlySpace".
Some information is already migrated from the old wikipedia but there is still a lot to do.
The old dot-org wikipedia was littered with spam and not well maintained so there are some benefits to move over to the TiddlySpace platform.
# cleanup during migration
# update of the information
# write and display examples in our own markup
''You can also contribute to this wiki!''
To do so, you need to signup for TiddlySpace.
If you signup you will get your own Tiddly"Space"Wiki (your first space-name is also your editor-name) where you can write and publish, private and public tiddlers.
You will also be able to contribute on this @tiddlywiki space. (every TiddlySpace member can).
After you signed-up you can login on TiddlySpace (via your own space or here) and start contributing.
;Some guidelines for this wiki:
* language is English (create other languages in other spaces...you can link them here)
* test/check content before posting
;Things you can do:
* migrate articles from the old wikipedia [[here|http://web.archive.org/web/20101129095145/http://tiddlywiki.org/wiki/Special:AllPages]] (but first please check if the information is still accurate and up to date -- if you are not sure about something, try to test or ask in the [[community forum|The community forum]], and adjust before publishing here)
* write new content
Don't know where to start?
Check your bookmarks in your browser...any links to articles in the old wikipedia? (might be good content!)
Dead links (from everywhere) to articles in the old wikipedia might be an indication that some info is missing here.
or...
...improve this tiddler...
!References
* in [[this google groups discussion|https://groups.google.com/forum/?fromgroups#!topic/tiddlywiki/wAW1pQABu8k]] it was announced to move the [[old MediaWiki documentation|http://web.archive.org/web/20101129095145/http://tiddlywiki.org/wiki/Special:AllPages]] here to TiddlySpace.
;Situation:
You have a TiddlyWiki file on your pc and want to share this as a website online. (by sending or linking the web-address (the "url"))
Meanwhile you also want to edit the same TiddlyWiki local and add content.
;One of the options is Dropbox
Dropbox is a cloudservice that can be used for synchronizations of folders between pc's.
The Dropbox functionality can both be used via a website and installed on you local computer (both Mac, Windows and Linux)
In the following guide you need to have Dropbox installed on your pc! (see ''Dropbox installation'' below)
Dropbox has many great features like sharing folders between users and other pc's...this guide will __only__ cover the usage of the ''public'' folder and TiddlyWiki to publish your local TiddlyWiki.
!!!Step 1
*Go to Dropbox and sign-up for an account.
*Download Dropbox and install it on your computer.
*Finish the installation settings so Dropbox is attached to the account you created.
!!!Step 2
*You will now have a Dropbox folder on your pc (depending where you installed it.. homefolder or desktop (all is ok))
*Inside the Dropbox are a number of pre-created folders.
!!!Step 3
*Open the "Public" folder inside the Dropbox-folder and create a folder ("tw" for example).
*Put (copy-paste or drag) a TiddlyWiki inside the "tw" folder you just created.
!!!Step 4
*Visit the Dropbox service online and login.
(now you can see the same document structure similar to your local Drobox folder)
*Go to the "Public" folder and open the "tw" folder you just created locally.
(since Dropbox synchronizes with your local folder the new "tw" folder should be there)
*Open the "tw" folder and locate the TiddlyWiki.
*The dialog (arrow on the right side) will give you the option for delete, move etc.
''The "public-url" is the link to your TiddlyWiki file over the internet.''
//(example image "copy public url")//
[img[dropbox.png]]
!!!Step 5 (the test)
Edit your local TiddlyWiki and check (reload page) the public url to see the changes.
!!!Dropbox installation
Visit this url: https://www.dropbox.com to sign-up for the service and to download Dropbox for local installation.
Watch the video to see more features about Dropbox.
!!!Downside of Dropbox urls
It is not possible to have nice domain-names instead of the Dropbox url's.
Your TiddlyWiki's will allway's have url's similar to:
{{{
http://dl.dropbox.com/u/YOUR_NUMBER/tw/empty.html
}}}
!!!Tip
Many TiddlyWiki users have a Dropbox to publish and share so called "minimal testcases" (MTC's) in the googlegroups (TiddlyWiki's where the "private" content is stripped of...only showing an issue)...so they can easily share ideas or issues.
Most wikis provide a simple syntax for editing structured wiki content as plain text based on a [[markup|TiddlyWiki Markup]] that is considerably simpler than that of HTML.
<<tiddler Wikification>>
Examples for wiki syntax are...
* [[TiddlyWiki Markup]]
* [[MediaWiki Markup|http://www.mediawiki.org/wiki/Help:Formatting]]
* [[Markdown Syntax|http://daringfireball.net/projects/markdown/syntax]]
*etc...
!"""Formatter Plugins"""
A number of formatter plugins allow you to use other markup languages and can be found here:
* [[Martin Budden's formatters|http://svn.tiddlywiki.org/Trunk/contributors/MartinBudden/formatters]] also on [[marginswiki.com|http://www.martinswiki.com/#Plugins]]
* [[FND's Formatters|http://svn.tiddlywiki.org/Trunk/contributors/FND/formatters]]
{{annotation{
''Note'': Documentation on installing and using other wiki formatters is a bit sparce. Try searching and asking in the [[google groups|https://groups.google.com/forum/?fromgroups#!searchin/tiddlywiki/formatter]].
}}}
''Answer''
TiddlyWiki is a little different to other Wikis you may have encountered before. Most wikis run on a server and the code to save your changes is server code. TiddlyWiki is different. It runs entirely in your web browser. All the code to save your changes is written in Javascript and contained in the TiddlyWiki file. To save changes your browser must be able to write to local disk using javascript. This means you can only edit and save changes to a TiddlyWiki file that is on a local disk. If you put your TiddlyWiki file on your web site any changes made to it can't be saved.
(TODO, explain the "HideEditFeaturesOverHttp" or link to explanation)
(This can be a useful way to publish a web site. You can edit and save your site to your local TiddlyWiki file on your local disk. When it's finished simply upload the file for the rest of the world to see).
The above information applies to a standard, off-the-shelf TiddlyWiki. However, there ''are'' some ways you can get an editable/saveable TiddlyWiki via the web.
'' Options for making TiddlyWiki editable/saveable via the web ''
There are a [[Multi-User Collaboration|number]] of [[Server-Side_Implementations|server-sides]] that make it possible to save over HTTP.
Alternatively, a hosted service like [[Tiddlyspot]] can be used for convenience.
[[Category:FAQ]]
[[Category:Getting Started]]
See [[Primitive Types]]...
!Summary
The shadow tiddler ImportTiddlers provides access to importing tiddlers.
!Default Contents
{{{
<<importTiddlers>>
}}}
<<importTiddlers>>
!Description
The gradient macro renders a vertical or horizontal gradient as a background to content.
!Usage
{{{
<<gradient direction start-color mid-color end-color>>
INNER CONTENT
>>
}}}
{{annotation{
''Note'': Notice how the INNER CONTENT directly follows the gradient macro and is closed with another pair of greater-than characters {{{>>}}}.
}}}
Use the following parameters...
| !Parameter | !Description |
|''direction''|either {{{vert}}} (vertical) or {{{horiz}}} (horizontal)|
|''start-color''|the color at which the gradient starts|
|''mid-color''|the color at the middle of the gradient, not required|
|''end-color''|the color at which the gradient ends|
|''INNER CONTENT''|the wiki text rendered inside the gradient|
{{annotation{
''Note'': Using a mid-color is not required. It is enough to define a start- and an end-color for the gradient.
}}}
!Example
{{{
<<gradient horiz #abc #fff>>
@@color:white;font-size:5em;padding:10px;display:block;A GRADIENT@@
>>
}}}
<<gradient horiz #abc #fff>>
@@color:white;font-size:5em;padding:10px;display:block;A GRADIENT@@
>>
@@color:darkred;display:block;padding:5px;background:#eee;Are you developing TiddlyWiki / TiddlySpace Plugins? Please help improve this documentation.
[[Learn more on how to contribute...|Contribute]].@@
This space provides developer documentation...
:about [[how TiddlyWiki works internally|Dev.Core]]
:about [[custom plugin development|Dev.Plugins]]
For an annotated reference to the source code, have a look at the [[Extracted Source Code]]...
Every TiddlyWiki or [[TiddlySpace|Space]] provides a [[Backstage Area]] usualle in the top right corner providing management tools.
In TiddlyWiki, the default Backstage Area gives you...
* a button to [[save changes|saveChanges]]
* a [[SynchronizationWizard]]
* an [[ImportWizard|ImportTiddlers...]]
* [[AdvancedOptions|AdvancedOptions...]]
* an [[UpgradeWizard]]
* a [[PluginManager|PluginManager...]]
In TiddlySpace the [[Backstage Area]] allows you to...
*manage your user account
*create new spaces
*include other spaces or remove included spaces
*add new members or remove members
*perform various actions related to content tiddlers
One of the standard fields of a tiddler is called tags which allow you to categorize tiddlers. Tagging makes most sense if a tiddler has a tag of a more abstract category to which it belongs, i.e. ''Apple'' would have a tag of ''Fruit''.
Tags therefore are not just individual words, e.g. <<tag "Core Macros">>.
In TiddlyWiki, tags are first class members and as such themselves tiddlers. In this way, an elaborate tagging hierarchy can be defined.
{{{
|cssClass|k
|!heading column 1|!heading column 2|h
|left aligned | right aligned|
| centered ||
|>|COLSPAN|
|ROWSPAN|color:red;red|
|~|color:green;green|
|>|footer™|f
|caption|c
}}}
!Summary
Cook is the build tool for [[TiddlyWiki]]. It utilizes [[recipes|Recipe]] to stitch together TiddlyWiki HTML files from their constituent chunks.
!External Resources
* [[Cook|http://trac.tiddlywiki.org/wiki/Cook]]
!See Also
* [[Ginsu]]
* [[Recipes|Recipe]]
* [[Chef]]
(function() {
var getCSRFToken = function(window) {
// XXX: should not use RegEx - cf.
// http://www.quirksmode.org/js/cookies.html
// https://github.com/TiddlySpace/tiddlyspace/commit/5f4adbe009ed4bda3ce39058a3fb07de1420358d
var regex = /^(?:.*; )?csrf_token=([^(;|$)]*)(?:;|$)/;
var match = regex.exec(document.cookie);
var csrf_token = null;
if (match && (match.length === 2)) {
csrf_token = match[1];
}
return csrf_token;
};
if (typeof config !== 'undefined' && config.extensions &&
config.extensions.tiddlyspace &&
config.extensions.tiddlyspace.getCSRFToken === null) {
config.extensions.tiddlyspace.getCSRFToken = getCSRFToken;
} else {
window.getCSRFToken = getCSRFToken;
}
})(window);
Toplevel classes provided by the TiddlyWiki core...
<<tiddler SiteTitle>> <<tiddler SiteSubtitle>>
!Description
The [[refreshDisplay]] helper macro outputs a button to redraw TiddlyWiki as currently displayed.
!Usage
{{{
<<refreshDisplay>>
}}}
<<refreshDisplay>>
See [[Finding A Tiddler]]...
!Description
The [[timeline]] macro allows to create a chronological list of recently edited tiddlers.
!Usage
{{{
<<timeline field maxlength dateformat template:title groupTemplate:title filter:filter>>
}}}
All macro parameters are optional:
| !Parameter | !Description |width:200px; !Default |h
|''"""field"""''|determines the field used as the basis for the list, usually {{{modified}}} or {{{created}}}|{{{modified}}}|
|''maxlength''|an integer that limits the maximum number of tiddlers in the list||
|''dateformat''|a [[date format string|DateFormats]] for the format of dates||
|''template''|a reference to a tiddler or tiddler section used as the template for list entries|{{{<<view title link>>}}}|
|''groupTemplate''|a reference to a tiddler or tiddler section used as the template for grouping entries in the list with {{{%0}}} being the name of the field that is displayed and {{{%1}}} being a rendered date based on the [[date format|DateFormats]], see parameter ''dateformat'' above|{{{<<view %0 date '%1'>>}}}|
|''filter''|a [[filter|Filters]] used to filter the tiddlers relevant for the list||
!Examples
{{{<<timeline created 5>>>}}}
:{{annotation{
<<timeline created 5>>
}}}
{{{<<timeline modified 5>>}}}
:{{annotation{
<<timeline modified 5>>
}}}
!Summary
Use four dashes on a line or the HTML tag {{{<hr>}}} to produce a horizontal rule.
!Markup
{{{
before
----
after
}}}
or
{{{
before<hr>after
}}}
''Displays as:''
before
----
after
The optional ''init()'' function of a TiddlyWiki macro is automatically invoked by the TW core during the [[startup process]], but ''after'' all the plugins have been loaded.
{{{
config.macros.MacroName={
init: function() {
...
// your init code
...
},
handler: function(place, macroName, params, wikifier, paramString, tiddler){
}
}
}}}
There are numerous ways to stage your TiddlyWiki. You can, in fact, use it to create your own website.
!Hosting Services
Good places to work with TiddlyWiki online are...
;TiddlySpace
:» your number one place for TiddlyWiki based collaboration
;TiddlySpot
:» hosting TiddlyWiki made as simple as it gets
;TiddlyHoster
:» use the power of TiddlyWeb to manage tiddlers with bags, profiles and policies
;Web Hosting
:» Do you have a webserver or access to shared webhosting? Well, its actually quite simple using an [[FTP|http://en.wikipedia.org/wiki/File_Transfer_Protocol]] programm like [[FileZilla|http://filezilla-project.org]] to upload your TiddlyWiki and external files like images in some subfolder to your webspace.
!Cloud Storage
It is quite simple to stage your TiddlyWiki using [[Dropbox|SimpleDropboxPublishing]] or similar services, like Box.net, ~SkyDrive, etc...
!Email
That's right. If you're a singe-file purist in the TiddlyVerse you might as well just email a TiddlyWiki to someone and share all the information and dynamic features instantly. If you also use images in folders along with it, zip it up, and spread the word.
From the [[Glossary]]...
<<<
<<tiddler Option>>
<<<
Does your browser tend to forget your settings or do you use TiddlyWiki in different places? Then read [[Changing Default Options]] or [[Persistent Options]] on how to make your settings permanent.
From [[Wikipedia|http://en.wikipedia.org/wiki/CSS]]...
<<<
[[Cascading Style Sheets (CSS)|http://en.wikipedia.org/wiki/CSS]] is a style sheet language used for describing the presentation semantics (the look and formatting) of a document written in a markup language. Its most common application is to style web pages written in HTML and XHTML, but the language can also be applied to any kind of XML document, including plain XML, SVG and XUL.
<<<
The presentational style in terms of layout, design & typography in TiddlyWiki entirely rely on [[CSS]] with a structural basis rooted in [[HTML]].
!Summary
This prototype function of the [[TiddlyWiki.class]] removes all tiddlers from a store and clears its dirty flag.
{{annotation{
This function may be deprecated / unused.
}}}
!Signature
{{{TiddlyWiki.prototype.clear = function() {} }}}
!Returns
undefined
!Arguments
none
!Example
{{{
store.clear();
}}}
does as instructed
<<tiddler Tables>>
Many thanks to the following contributors for keeping TiddlyWiki.org up to date:
{{inlineList{
<<groupBy modifier groupTemplate:Templates##Faces exclude:None>>
}}}
Get yourself in the above list by contributing to this page!
Custom macros are not part of the [[TiddlyWiki core|Core Macros]]. Instead they are written by user, or simply copied and reused from another site or repository.
Much of the power of TiddlyWiki <<version>> lies in the ease with which users can create macros and [[Plugins]] to customize their wikis, and share them with each other.
Information on how to write a custom macro can be found in @TiddlyWikiDev.
See [[TiddlyLink]]...
See [[Plugin StyleSheets]]...
!Summary
Start a line using exclamation marks to create headings.
!Markup
{{{
!Heading Level 1
!!Heading Level 2
!!!Heading Level 3
!!!!Heading Level 4
!!!!!Heading Level 5
!!!!!!Heading Level 6
}}}
!Heading Level 1
!!Heading Level 2
!!!Heading Level 3
!!!!Heading Level 4
!!!!!Heading Level 5
!!!!!!Heading Level 6
See [[Wikifier.class]]...
!Description
The [[view macro|view]] is a powerful macro that allows you to output the value of a tiddler field and format them.
!Usage
In general, the [[view macro|view]] is used in the shadow tiddler called ViewTemplate, e.g.:
{{{
<div class='viewer' macro='view text wikified'></div>
}}}
To use it in wiki text, use...
{{{
<<view field mode>>
}}}
The first parameter is the field which you want to output, e.g.:
* title
* text
* created
* modified
* ##sectionName
* ::sliceName
''Note:''
* The field {{{tags}}} cannot be used.
* If you use {{{##sectionName}}} or {{{::sliceName}}} with the wikified parameter, it's possible to produce endless loops. So ''be carefull''!
The second parameter defines the output mode in which the value of the field is rendered.
|!Mode|!Description|width:300px;!Example|
|link|renders the value as a link|{{{<<view title link>>}}}<br/>- <<view title link>>|
|text|renders the value exactly as stored|{{{<<view modified text>>}}}<br/>{{{<<view modified text>>}}}|
|date|outputs the field value as a date with an optional third parameter being the [[date format|DateFormats]], e.g. for the fields {{{created}}} or {{{modified}}}.|{{{<<view created date>>}}}<br /><<view created date>><br/>{{{<<view modified date "YYYY">>}}}<br><<view modified date "YYYY">>|
|wikified|outputs the field value as wikitext with an optional third parameter that can be used for formatting; {{{%0}}} corresponds to the field value. <br/><br/>''Note:'' the placeholder starts with {{{%}}} in contrast to a placeholder used by the [[tiddler macro|tiddler]] which start with {{{$}}} |{{{<<view "server.bag" wikified "//%0//">>}}}<br/><<view "server.bag" wikified "//%0//">>|
The [[space|Space]] created for a [[user|User]] when [[registering|Register]] with [[TiddlySpace]] is called the users' [[Home Space]].
A [[Home Space]] has the same name as the [[user|User]] and is used by the system to store user information, such as their [[avatar|SiteIcon]].
''Note:'' It is possible for a [[user|User]] to [[add another user as a member|Add Member]] to their [[Home Space]] which eventually also allows for a [[user|User]] to remove themselves or be removed from their own [[Home Space]].
In a standard TiddlyWiki, how a tiddler is displayed is determined by the shadow tiddler called ViewTemplate.
See [[Alternative Tiddler Layouts]] if you wonder [[How to display different layouts for diferent tiddlers?]]
@@Please do not modify this tiddler; it was created automatically upon space creation.@@
!Summary
This <<tag global >> function renders a link to an external web page.
!Signature
{{{function createExternalLink(place,url,label){} }}}
!Returns
DOM reference: to the created [[External Link]]@tiddlywiki
!Arguments
;place
:the DOM element to render into
;url
:the target URL
;label
:the pretty label for the link
!Example
{{{
createExternalLink(place,'http://tiddlywiki.com','TiddlyWiki.com');
}}}
''returns:'' [[TiddlyWiki.com|http://tiddlywiki.com]] « a reference to this DOM element
/***
<<tiddler zzConfig...>>
***/
//{{{
//uncomment to enable evaluated parameters
//config.evaluateMacroParameters = "full";
//}}}
See [[TiddlyFox]]...
[[TiddlyWiki|http://tiddlywiki.com]] is a single-file wiki containing all the features of a [[wiki|http://en.wikipedia.org/wiki/WikiWikiWeb]] such as layout, styles, code and functionality for editing, saving, tagging and searching content.
In its basic form of a single html file it's highly portable -- so you can email it, put it on a web server or take it with you on a usb stick.
The following lists possible things to work on...
;[[Documentation Sources|DOC - Documentation Sources]]
:» lists topics that need to be analyzed for which content may need to be reviewed or created
;tiddlers tagged <<tag REVIEW>>
:» are tiddlers that may need improvements
;tiddlers tagged <<tag DELETE>>
:» have been flagged for deletion
;tiddlers tagged <<tag html>>
:» are used for the [[html representation|html]] of [[TiddlyWiki.org]]
;tiddlers tagged <<tag REDIRECTED>>
:» now point to a different tiddler; may later be resolved differently
;[[excludeLists]] / [[excludeSearch]]
:tiddlers hidden from default lists or search
;best practises
:» collect ideas for desirable structures and content of [[this wiki|Welcome]]@tiddlyspace
;missing contents?
:» referenced, yet not existing... <<tag excludeMissing>>
Extensions to the primitive {{{String}}} type in JavaScript...
<<list filter [startsWith[title,String.]][sort[title]]>>
The view mode refers to the mode of viewing a tiddler.
By default, how a tiddler is displayed is defined by one of the shadow tiddlers that control the layout of TiddlyWiki called [[ViewTemplate]].
/*!
|''Name:''|NiceTaggingPlugin|
|''Description:''|Creates a nicer interface for adding and removing TiddlyWiki. Ideal for tiddly novices. |
|''Version:''|0.6.6|
|''Date:''|October 2010|
|''Source:''|http://svn.tiddlywiki.org/Trunk/contributors/JonRobson/plugins/niceTagging/plugins/NiceTaggingPlugin.js|
|''Author:''|Jon Robson|
|''License:''|[[BSD open source license]]|
|''CoreVersion:''|2.3|
|''Dependencies:''||
!Usage
{{{<<niceTagger tags>>}}} or {{{<<niceTagger field>>}}}
!!Additional Parameters
splitOn: <character>
valuesSource: <tiddler title>
textcase: <lower>
!StyleSheet
.tip {font-style:italic;font-weight:bold;}
input.dp-applied {width: 140px; float: left;}
.niceTagger input {width:200px; float:left;}
.deleter {color:red; font-weight:bold; padding:2px; cursor:pointer;}
.ac_results {padding: 0px;border: 1px solid black;background-color: white;overflow: hidden;z-index: 99999;}
.ac_results ul {width: 100%;list-style-position: outside;list-style: none;padding: 0;margin: 0;}
.ac_results li {margin: 0px;padding: 2px 5px;cursor: default;display: block;font: menu;font-size: 12px;line-height: 16px;overflow: hidden;}
.ac_loading {background: white url('indicator.gif') right center no-repeat;}
.niceTaggerAdder input {width:auto; display: inline;}
.ac_odd {background-color: #eee;}
.ac_over {background-color: #0A246A;color: white;}
*/
//{{{
(function($) {
config.shadowTiddlers.NiceTaggingStyle = store.getTiddlerText(tiddler.title + "##StyleSheet");
store.addNotification("NiceTaggingStyle", refreshStyles);
String.prototype.toJSON = function(){
var namedprms = this.parseParams(null, null, true);
var options ={};
for(var i=0; i < namedprms.length;i++){
var nameval = namedprms[i];
if(nameval.name) {
options[nameval.name] = nameval.value;
}
}
return options;
};
var macro = config.macros.niceTagger = {
lingo:{
add: "add"
},
twtags: {},
initialised:{},
init: function(field){
field = !field ? 'tags' : field;
if(this.initialised[field]){
if(field == 'tags') {
var numTags = store.getTags();
if(numTags.length == this.twtags[field].length) {
return;
}
} else {
return;
}
}
var tiddlers= store.getTiddlers();
macro.twtags[field] = [];
var uniqueSuggestions = [];
for(var i=0; i < tiddlers.length; i++){
var tid = tiddlers[i];
var values;
if(field=='tags') {
values = tid.tags;
} else {
values= tid.fields[field];
values = values ? values : "";
values = values.readBracketedList();
}
for(var j=0; j < values.length; j++){
uniqueSuggestions.pushUnique(values[j]);
}
}
macro.twtags[field] = uniqueSuggestions;
this.initialised[field] =true;
},
save: function(title, field, listvalues, place, autosavechanges) {
var tiddler = store.getTiddler(title);
var tiddlerEl = story.getTiddler(title);
var valueToSave;
valueToSave = String.encodeTiddlyLinkList(listvalues);
var el = $("[edit=%0]".format([field]), tiddlerEl);
if(el.length === 0) {
el = $("<input />").attr("type", "hidden").attr("edit", field).appendTo(place);
}
el.val(valueToSave);
var dummy = new Tiddler(title);
if(field == "tags") {
dummy.tags = listvalues;
} else {
dummy.fields[field] = valueToSave;
}
return dummy;
},
refreshFieldDisplay: function(place, tiddler, field) {
var container = $(".niceTagger", place);
container.empty();
var values;
if(!field || field == 'tags') {
values = tiddler.tags;
} else {
values = tiddler.fields[field] ? tiddler.fields[field].readBracketedList() : [];
}
for(var t = 0; t < values.length; t++){
var tag = values[t];
$("<span />").addClass("tag").text(tag).appendTo(container);
$("<span />").addClass("deleter").text("x").attr("deletes", escape(tag)).appendTo(container);
}
$(".deleter", place).click(function(ev){
var todelete = $(ev.target).attr("deletes");
var newValues = [];
for(var i = 0; i < values.length; i++){
var value = values[i];
if(escape(value) != todelete) {
newValues.push(value);
}
}
tiddler = macro.save(tiddler.title, field, newValues, place, tiddler.autosavechanges);
macro.refreshFieldDisplay(place, tiddler, field);
});
},
saveNewValue: function(tiddler, field, value, container, splitChar) {
var tiddlerEl = story.getTiddler(tiddler.title);
var editEl = $("[edit=%0]".format([field]), tiddlerEl);
var adder = $(".niceTaggerAdder input[type=text]", container);
var saveThis;
if(editEl.length > 0) {
saveThis = editEl.val() || "";
saveThis = saveThis.readBracketedList();
} else {
if(field == 'tags') {
saveThis = tiddler.tags;
} else {
var val = tiddler.fields[field];
val = val ? val : "";
saveThis = val.readBracketedList();
}
}
value = typeof(value) == 'string' ? value.trim() : value;
if(value.length === 0) {
return;
}
var newValues;
if(splitChar && value && value.indexOf(splitChar) != -1){
newValues = value.split(splitChar);
} else {
newValues = [value];
}
for(var i = 0; i < newValues.length;i++){
var svalue = newValues[i];
saveThis.pushUnique(svalue);
}
tiddler = macro.save(tiddler.title, field, saveThis, container, tiddler.autosavechanges);
macro.refreshFieldDisplay(container, tiddler, field);
$(adder).val("");
},
getSuggestionsFromTiddler: function(srcTiddler, textcase){
var suggestions = [];
if(srcTiddler){
var src = store.getTiddler(srcTiddler);
var text = src.text;
var tempdiv = document.createElement("div");
wikify(text, tempdiv, null, src);
var html = $(tempdiv).html();
suggestions = html.split(/<br\/?>/gi);
}
var finalSuggestions = [];
for(var i=0; i < suggestions.length; i++){
var val = suggestions[i].trim();
if(textcase && textcase == "lower") {
val = val.toLowerCase();
}
finalSuggestions.pushUnique(val);
}
return finalSuggestions;
},
removeFromList: function(list,removeList){
var uniqueSuggestions = [];
for(var i=0; i < list.length; i++){
var s =list[i];
if(s && typeof(s) == 'string'){
if(uniqueSuggestions.indexOf(s) ==-1 && removeList.indexOf(s) ==-1){
uniqueSuggestions.push(s);
}
}
}
return uniqueSuggestions;
},
handler: function(place,macroName,params,wikifier,paramString,tiddler) {
var options = paramString.toJSON();
var args = paramString.parseParams("anon")[0];
if(options.autoSaveChanges) {
tiddler.autosavechanges = true;
}
if(!options.field) {
options.field = args.anon ? args.anon[0] : "tags";
}
this.init(options.field);
var container = $("<div />").addClass("niceTaggerContainer").attr("field", options.field).
appendTo(place)[0];
var displayer = $("<div />").addClass("niceTagger").appendTo(container)[0];
macro.refreshFieldDisplay(container, tiddler, options.field);
var tagplace = $("<div />").addClass("niceTaggerAdder").appendTo(container)[0];
var splitChar = options.splitOn;
var adder;
if($().autocomplete){
params = paramString.parseParams("anon", null, true, false, false);
var textcase = getParam(params, "case");
var srcTiddler = getParam(params, "valuesSource");
var suggestions;
if(srcTiddler) {
suggestions = macro.getSuggestionsFromTiddler(srcTiddler, textcase);
} else {
suggestions = [];
}
var tagsoff = getParam(params,"nostoretags");
if(!tagsoff) {
suggestions = suggestions.concat(macro.twtags[options.field]);
}
var ignoreList = paramString.parseParams("exclude", null, true, false, true);
if(ignoreList && ignoreList[0] && ignoreList[0].exclude) {
ignoreList = ignoreList[0].exclude;
} else {
ignoreList = ["excludeList"];
}
suggestions = macro.removeFromList(suggestions, ignoreList);
var addtaghandler = function(v) {
macro.saveNewValue(tiddler, options.field, $(v).val(), container, splitChar);
};
$("<input type='text' name=\""+options.field+"\" value=\"\"/>").autocomplete(suggestions,{ matchContains: true, selectFirst:false }).result(addtaghandler).appendTo(tagplace);
adder = $("input", tagplace)[0];
} else {
adder = document.createElement("input");
tagplace.appendChild(adder);
}
$(adder).keypress(function (ev) {
ev.stopPropagation();
if(ev.which == 13){
var results = $(".ac_over",".ac_results"); //is anything highlighted in autocomplete plugin ?
var value;
if(results.length === 0) {
value = $(ev.target).val();
} else {
value = $(results[0]).val();
}
macro.saveNewValue(tiddler, options.field, value, container, splitChar);
}
});
var addbutton = document.createElement("input");
addbutton.type = "button";
addbutton.value = macro.lingo.add;
addbutton.className = "adder";
tagplace.appendChild(addbutton);
$(addbutton).click(function(e){
var val = $(adder).val() || "";
macro.saveNewValue(tiddler, options.field, val, container, splitChar);
});
}
};
_setTiddlerField = Story.prototype.setTiddlerField;
Story.prototype.setTiddlerField = function(title, value, mode, field) {
var tiddler = store.getTiddler(title) || new Tiddler(title);
var container = $(".niceTaggerContainer[field=%0]".format([field]),
story.getTiddler(title));
if(container.length > 0) {
macro.saveNewValue(tiddler, field, value, container[0]);
} else {
_setTiddlerField.apply(this, arguments);
}
};
})(jQuery); //end alias
//}}}
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xl="http://www.w3.org/1999/xlink" version="1.1" viewBox="301 225 48 52"
width="30" height="30">
<g stroke="none" stroke-opacity="1" stroke-dasharray="none" fill="none" fill-opacity="1">
<g>
<path d="M 333.00003 234 L 306 258.75003 L 301.5 270 L 312.75 265.50003 L 339.75 240.74998 Z M 337.5 229.50002
L 335.24988 231.75008 L 341.99997 238.50003 L 344.24997 236.24995 Z M 342 225.00003 L 339.74988 227.25009
L 346.5 234.00005 L 348.75 231.75003 Z M 301.5 273.9719 C 301.5 273.9719 309.59888 277.99927 317.70013 273.97183
C 325.80066 269.94437 341.99997 276.65686 341.99997 276.65686 L 341.99997 273.97195
C 341.99997 273.97195 325.80014 267.2594 317.70013 271.28687 C 309.6 275.31451 301.5 271.28683 301.5 271.28683 Z"
fill="#101010" class="glyph"/>
</g>
</g>
</svg>
!Description
The [[message]] macro is used in shadow tiddlers like the EditTemplate to recursively lookup and output a context related string from the core JavaScript.
!Usage
{{{
<span macro='message views.editor.tagPrompt'></span>
}}}
Enclosed in {{{<html>..</html>}}} the above renders as:
<<<
<html><span macro='message views.editor.tagPrompt'></span></html>
<<<
/***
|''Name''|OrgDocPlugin|
|''Author''|Tobias Beer|
|''Version''|1.0|
|''Description''|Shows annotations for plugins and shadows which point to the corresponding documentation tiddler.|
!Usage
Add to ViewTemplate...
{{{
<div macro='orgDoc'></div>
}}}
!Code
***/
//{{{
config.macros.orgDoc = {
local: {
msgIntro: "This is a [[%0|%1]].",
msgGoTo: " You may find documentation for it at [[%0|%1]]",
msgMissing: " Unfortunately, there is no documentation yet at [[%0]]",
txtPLUGIN: 'plugin',
txtSHADOW: 'shadow tiddler'
},
handler: function (place, macroName, params, wikifier, paramString, tiddler) {
var
tid = tiddler.title,
url = window.location.href,
source = /^(http\:\/\/tiddlywiki.org|http\:\/\/tiddlywiki.tiddlyspace.com)/,
match = null != source.exec(url),
isShadow = config.shadowTiddlers[tid] != null,
type = isShadow ? 'SHADOW' : (
tiddler.tags && tiddler.tags.contains('systemConfig') ?
'PLUGIN' :
null
),
doc = tid + '...',
docTid = store.getTiddler(doc);
if (!type) return;
wikify(
"\n{{annotation{\n''Note:'' " +
this.local.msgIntro.format([
this.local['txt' + type],
(
(match ? '' : 'http://tiddlyWiki.org/#') +
(type == 'PLUGIN' ? 'Plugins' : 'ShadowTiddler')
)
]) +
this.local['msg' + (docTid ? 'GoTo' : 'Missing')].format([
match ?
doc :
('TiddlyWiki.Org|http://tiddlywiki.org#' + encodeURIComponent(String.encodeTiddlyLink('[[' + doc + ']]')))
]) +
"\n}}}\n",
place
);
}
}
//}}}
TiddlyWiki core code has been migrated to GitHub and can be found at http://github.com/tiddlywiki/tiddlywiki
Various plugins and support code is still in the older Subversion repository at http://svn.tiddlywiki.org.
//{{{
(function($){
var macro = config.macros.originalSource = {
handler: function(place, macroName, params, wikifier, paramString, tiddler){
if(tiddler.fields['info_source']) {
wikify("Original Source: %0".format(tiddler.fields['info_source']), place);
}
}
};
})(jQuery);
//}}}
The TiddlyWiki class represents an entire TiddlyWiki. It is normally instantiated once when the page is first loaded into the global [[store]] object. It has one notable property, ''dirty'', which is a boolean representing whether the TiddlyWiki contains unsaved changes.
!Store Functions
{{functions{<<list filter [startsWith[title,store.]][sort[title]] template:Templates##Function>>}}}<<listfiltr>>
!More Functions
* [[getMissingLinks|TiddlyWiki.prototype.getMissingLinks]]: retrieves a list of missing links
* [[getRecursiveTiddlerText|TiddlyWiki.prototype.getRecursiveTiddlerText]]: retrieves tiddler source code, replacing links with source code
* [[getReferringTiddlers|TiddlyWiki.prototype.getReferringTiddlers]]: finds tiddlers that refer to a particular tiddler
* [[getShadowed|TiddlyWiki.prototype.getShadowed]]: returns an array of all shadow tiddlers available
* [[getTags|TiddlyWiki.prototype.getTags]]: retrieves a list of all tags used in the TiddlyWiki
* [[getTiddlers|TiddlyWiki.prototype.getTiddlers]]: returns all tiddlers sorted by a criteria
* [[isDirty|TiddlyWiki.prototype.isDirty]]: returns whether there are unsaved changes to the TiddlyWiki
* [[isShadowTiddler|TiddlyWiki.prototype.isShadowTiddler]]: returns whether a tiddler is shadowed
* [[loadFromDiv|TiddlyWiki.prototype.loadFromDiv]]: initializes a TiddlyWiki from saved HTML
* [[.notify|TiddlyWiki.prototype.notify]]: invoke notification handlers for a tiddler
* [[notifyAll|TiddlyWiki.prototype.notifyAll]]: invoke all notification handlers
* [[resumeNotifications|TiddlyWiki.prototype.resumeNotifications]]: resumes update notifications
* [[saveTiddler|TiddlyWiki.prototype.saveTiddler]]: saves changes to a tiddler
* [[search|TiddlyWiki.prototype.search]]: search for tiddlers whose source code contains a string
* [[setDirty|TiddlyWiki.prototype.setDirty]]: sets the TiddlyWiki's dirty flag
* [[setTiddlerTag()|TiddlyWiki.prototype.setTiddlerTag()]]: set or remove a tag for a tiddler
* [[suspendNotifications()|TiddlyWiki.prototype.suspendNotifications]]: halt update notifications
* [[tiddlerExists|TiddlyWiki.prototype.tiddlerExists]]: returns whether a tiddler exists
See ShadowTiddler...
<<slider chkTimelineModified Timeline##MODIFIED "by Modified Date...">>
<<slider chkTimelineCreated Timeline##CREATED "by Created Date...">>/%
!MODIFIED
><<timeline "modified" template:"TEMPLATES##MODIFIER">><<listfiltr>>
!CREATED
><<timeline "created" template:"TEMPLATES##EXCLUDE+LIST">><<listfiltr>>
!END%/
!Summary
In a standard TiddlyWiki, the TabTags shadow tiddler outputs all tags of a TiddlyWiki using the [[allTags]] macro and is displayed as the {{button{Tags}}} tab in the right sidebar.
!Default Contents
{{{
<<allTags excludeLists>>
}}}
The ''getTags'' method that belongs to the ''store'' object is used to return a list of all the tags used in your tiddlywiki and the number of times each is used.
It takes one optional parameter, an array of all the tags you wish to exclude from the returned results.
You can use it without excluding some tags like so:
{{{
store.getTags();
}}}
This will return something like this:
{{{
[["command", 1], ["concept", 3], ["Developer Tools", 5], ["excludeLists", 74], ["excludeMissing", 7], ["excludePublisher", 1], ["excludeSearch", 72], ["global", 3], ["method", 17], ["store", 4], ["story", 4], ["systemConfig", 39], ["tiddler", 3], ["tiddlywiki api", 1]]
}}}
To filter out certain tags use it like this:
{{{
store.getTags(["excludeLists", "excludeSearch", "excludePublisher", "excludeMissing", "systemConfig"]);
}}}
This will return something like this:
{{{
[["command", 1], ["concept", 3], ["Developer Tools", 5], ["global", 3], ["method", 17], ["store", 4], ["story", 4], ["tiddler", 3], ["tiddlywiki api", 1]]
}}}
!Summary
This <<tag global>> function loops over all ancestors of a given root while running the refresh handler for those that have a [[refresh attribute defined|dom element refresh attribute]].
!Signature
{{{function refreshElements(root, changeList) {} }}}
!Returns
undefined
!Arguments
;1. root
:the DOM node of which all ancestors are inspected
;2. changeList
:a list of tiddler names that have changed<br>{{annotation{
''Warning:'' If changeList is not provided then all tiddlers will be refreshed which could trigger lots of unnecessary refreshes.
}}}
!Example
~tbd~
!Summary
In a standard TiddlyWiki, the TabAll shadow tiddler outputs all tiddlers of a TiddlyWiki using the [[list macro|list]] and is displayed as the {{button{All}}} tab in the right sidebar.
!Default Contents
{{{
<<list all>>
}}}
To enable editing of the Tiddlywikis in...
'' Internet Explorer ''
'''Have to add an image here'''
* In IE, choose Tools > Internet Options
* Go to the Security tab and select "Local Intranet" Zone
* Click Default Level (to clear the Custom Level settings)
* Set the Security level to Low
* Close all open browsers
* You can now edit the wiki
Also Try:
If TiddlyWiki has been downloaded using Internet Explorer on Windows XP with Service Pack 2 and stored on an NTFS-formatted drive, any attempts to save changes will usually fail with the following error message:
It's not possible to save changes. Possible reasons include:
- your browser doesn't support saving (Firefox, Internet Explorer, Safari and Opera all work if properly configured)
- the pathname to your TiddlyWiki file contains illegal characters
- the TiddlyWiki HTML file has been moved or renamed
The solution is to right-click on the TiddlyWiki HTML file and choose Properties. If the file is blocked, there will be an Unblock button on the resulting property sheet, which will remove the protection and allow the file to be saved.
'' Safari / Opera ''
The updated [[TiddlySaver|http://www.tiddlywiki.com/#TiddlySaver]] Java applet permits TiddlyWiki to save changes from Safari & Opera, eliminating the Java Policy step <br>
<br>
URL: http://www.tiddlywiki.com/#TiddlySaver <br>
Filename: TiddlySaver.jar <br>
File Type: Java applet <br>
Location: Saved in the same directory as the TiddlyWiki file <br>
Note: TiddlySaver.jar is signed by UnaMesa Association, their certificate is signed by Thawte Code Signing CA intermediate certificate & is chained to the Thawte Premium Server CA root certificate. The first time this applet runs, allow the browser to trust the certificate chain to be able to use the applet, even if the certificate is indicated as valid <br>
<br>
Note that there is no longer any need for a .java.policy file <br>
<br>
Ensure that if a backup directory is specified in AdvancedOptions, which does not exist, TiddlySaver will not run; due to a software bug <br>
<br>
Appreciation for the original TiddlySaver code: Andrew Gregory <br>
Appreciation for arranging the certificate magic: BidiX
'' Opera Portable Edition ''
... cannot save. It cannot use TiddlySaver.jar, because it does not support Java.
'' Opera on Ubuntu ''
If your version of Ubuntu doesn't currently have Java installed, when you try to save changes you will receive a message that reads like the following:
<localhost>
It's not possible to save changes. Possible reasons include:
- your browser doesn't support saving (Firefox, Internet Explorer, Safari and Opera all work if properly configured)
- the pathname to your TiddlyWiki file contains illegal characters
- the TiddlyWiki HTML file has been moved or renamed
To fix this:
#[[Download java|https://help.ubuntu.com/community/Java]].
#Then update Opera to use the new Java libraries. [[Source Instructions|http://ubuntuforums.org/showthread.php?t=69275]]
##First find the java library using "locate libjava.so".
##In Opera, enable Java, set the "Java Options" folder to the java library folder.
#Finally, reboot Opera.
When you next try to save changes, you will be greeted by a permissions dialog to allow saving. You should now be able to save your changes!
'' See Also ''
* [[It's not possible to save changes]]
[[Category:FAQ]]
[[Category:Getting Started]]
[[Category:Browser Issues]]
Open MainMenu for editing. Position the cursor where the item is to appear and type in the name of the tiddler. If the tiddler's name is a WikiWord it will work automatically as a link. If not, insert two square brackets either side of the tiddler name: <code><nowiki>[[tiddler name]]</nowiki></code>.
Close MainMenu. You should now see the new item displayed.
For the default JavaScript date functions are, see...
http://www.w3schools.com/jsref/jsref_obj_date.asp
Below are extensions in Tiddlywiki on the primitive {{{Date}}} type...
<<list filter [startsWith[title,Date.]][sort[title]]>>
/***
|Name|InlineJavascriptPlugin|
|Source|http://www.TiddlyTools.com/#InlineJavascriptPlugin|
|Documentation|http://www.TiddlyTools.com/#InlineJavascriptPluginInfo|
|Version|1.9.6|
|Author|Eric Shulman|
|License|http://www.TiddlyTools.com/#LegalStatements|
|~CoreVersion|2.1|
|Type|plugin|
|Description|Insert Javascript executable code directly into your tiddler content.|
''Call directly into TW core utility routines, define new functions, calculate values, add dynamically-generated TiddlyWiki-formatted output'' into tiddler content, or perform any other programmatic actions each time the tiddler is rendered.
!!!!!Documentation
>see [[InlineJavascriptPluginInfo]]
!!!!!Revisions
<<<
2010.12.15 1.9.6 allow (but ignore) type="..." syntax
|please see [[InlineJavascriptPluginInfo]] for additional revision details|
2005.11.08 1.0.0 initial release
<<<
!!!!!Code
***/
//{{{
version.extensions.InlineJavascriptPlugin= {major: 1, minor: 9, revision: 6, date: new Date(2010,12,15)};
config.formatters.push( {
name: "inlineJavascript",
match: "\\<script",
lookahead: "\\<script(?: type=\\\"[^\\\"]*\\\")?(?: src=\\\"([^\\\"]*)\\\")?(?: label=\\\"([^\\\"]*)\\\")?(?: title=\\\"([^\\\"]*)\\\")?(?: key=\\\"([^\\\"]*)\\\")?( show)?\\>((?:.|\\n)*?)\\</script\\>",
handler: function(w) {
var lookaheadRegExp = new RegExp(this.lookahead,"mg");
lookaheadRegExp.lastIndex = w.matchStart;
var lookaheadMatch = lookaheadRegExp.exec(w.source)
if(lookaheadMatch && lookaheadMatch.index == w.matchStart) {
var src=lookaheadMatch[1];
var label=lookaheadMatch[2];
var tip=lookaheadMatch[3];
var key=lookaheadMatch[4];
var show=lookaheadMatch[5];
var code=lookaheadMatch[6];
if (src) { // external script library
var script = document.createElement("script"); script.src = src;
document.body.appendChild(script); document.body.removeChild(script);
}
if (code) { // inline code
if (show) // display source in tiddler
wikify("{{{\n"+lookaheadMatch[0]+"\n}}}\n",w.output);
if (label) { // create 'onclick' command link
var link=createTiddlyElement(w.output,"a",null,"tiddlyLinkExisting",wikifyPlainText(label));
var fixup=code.replace(/document.write\s*\(/gi,'place.bufferedHTML+=(');
link.code="function _out(place,tiddler){"+fixup+"\n};_out(this,this.tiddler);"
link.tiddler=w.tiddler;
link.onclick=function(){
this.bufferedHTML="";
try{ var r=eval(this.code);
if(this.bufferedHTML.length || (typeof(r)==="string")&&r.length)
var s=this.parentNode.insertBefore(document.createElement("span"),this.nextSibling);
if(this.bufferedHTML.length)
s.innerHTML=this.bufferedHTML;
if((typeof(r)==="string")&&r.length) {
wikify(r,s,null,this.tiddler);
return false;
} else return r!==undefined?r:false;
} catch(e){alert(e.description||e.toString());return false;}
};
link.setAttribute("title",tip||"");
var URIcode='javascript:void(eval(decodeURIComponent(%22(function(){try{';
URIcode+=encodeURIComponent(encodeURIComponent(code.replace(/\n/g,' ')));
URIcode+='}catch(e){alert(e.description||e.toString())}})()%22)))';
link.setAttribute("href",URIcode);
link.style.cursor="pointer";
if (key) link.accessKey=key.substr(0,1); // single character only
}
else { // run script immediately
var fixup=code.replace(/document.write\s*\(/gi,'place.innerHTML+=(');
var c="function _out(place,tiddler){"+fixup+"\n};_out(w.output,w.tiddler);";
try { var out=eval(c); }
catch(e) { out=e.description?e.description:e.toString(); }
if (out && out.length) wikify(out,w.output,w.highlightRegExp,w.tiddler);
}
}
w.nextMatch = lookaheadMatch.index + lookaheadMatch[0].length;
}
}
} )
//}}}
// // Backward-compatibility for TW2.1.x and earlier
//{{{
if (typeof(wikifyPlainText)=="undefined") window.wikifyPlainText=function(text,limit,tiddler) {
if(limit > 0) text = text.substr(0,limit);
var wikifier = new Wikifier(text,formatter,null,tiddler);
return wikifier.wikifyPlain();
}
//}}}
// // GLOBAL FUNCTION: $(...) -- 'shorthand' convenience syntax for document.getElementById()
//{{{
if (typeof($)=='undefined') { function $(id) { return document.getElementById(id.replace(/^#/,'')); } }
//}}}
Some say, the TiddlyVerse is a place where magical things happen and [[tiddlers|Tiddler.class]] come together to form a virtual representation of whatever your dreams desire.
!Description
The saveChanges macro generates a button to save all changes to disk -- in a standard TiddlyWiki it is displayed in the SideBarOptions tiddler in the right sidebar.
!Parameters
{{{<<saveChanges [label] [tooltip]>>}}}
Introduced with TiddlyWiki v2.4, the optional parameters define the button's label and tooltip.
!Usage
{{{
<<saveChanges 'Save Now!' 'Click here to save this TiddlyWiki now!'>>
}}}
<<saveChanges 'Save Now!' 'Click here to save this TiddlyWiki now!'>>
The store is an instantiance of the [[TiddlyWiki.class]] and used to access, manipulate and create tiddlers.
> Your best bet is to upload them and maintain them on tiddlyspace.com
People use several approaches for distributing TiddlyWiki plugins:
- Publish at tiddlyspace
- Publish on github
- Publish on your own site (eg tiddlytools.com)
- Publish on [[tiddlyspot|http://www.tiddlyspot.com]]
TiddlyHub didn't really take off; it doesn't really achieve much more
than doing a Google search.
The most important thing is probably to announce your plugin in a
message to the group.
See [[Finding A Tiddler]]...
!Description
The [[option]] macro renders inputs for editing option cookies, e.g.
*checkboxes for boolean cookies
*input fields for text cookies
!Usage
{{{
UserName: <<option txtUserName>>
}}}
UserName: <<option txtUserName>>
{{{
<<option chkAutoSave>> Auto save changes?
}}}
<<option chkAutoSave>> Auto save changes?
I just started using this tonight and decided to save it. Got the above and did google searches and mess with my internet sites and all that crud.
Then I took a minute and thought, it's a .html file. Let's try saving it from File > Save As in IE and renaming it. So I did that and named it "test." I then opened test.html with "Open With" in IE from where I saved it and did a couple changes, then I saved it using the "save" feature in the "backstage" shortcut in the upper right. It saved this time. I went and looked in the folder where "test.html" was saved and it saved it how tiddlywiki claimed they name saved files: test.eightnumbers.morenumbers
I closed IE and then opened test.numbers.numbers and it opened and it had kept my changes.
My guess is that the "empty" file that they sent to get started with is not working correctly or maybe you just need to do this anyways.
Hope this helps someone.
!Summary
This prototype function of the [[Story]] class returns the DOM element id of the tiddler element.
!Signature
{{{Story.prototype.tiddlerId = function(title) {} }}}
!Returns
''string:'' the DOM element ID of the tiddler in the story column
!Arguments
;1. title
:the tiddler name
!Example
{{{
story.tiddlerId('getOrphans()');
}}}
''returns:'' 'tiddlergetOrphans()'
In TiddlySpace, the following bubble appears on every [[Tiddler]].
The number inside it represents the number of spaces that __you__ follow which have a tiddler that goes by the same name:
:[img[FollowingBubble.png]]
It is primarily used as a way to collaborate on a given subject.
!Summary
This function of the <<tag Tiddler "Tiddler Class">> returns an array of strings corresponding to [[TiddlyLinks|TiddlyLink]]@tiddlywiki present in the tiddler text. Use instead of accessing the links property directly.
!Signature
{{{Tiddler.prototype.getLinks = function() {} }}}
!Returns
array[string]: titles of all [[TiddlyLinks|TiddlyLink]]@tiddlywiki in a tiddler text
!Arguments
none
!Example
{{{
var tiddlerObj = store.getTiddler('Functions');
tiddlerObj.getLinks();
}}}
''returns:'' an array of all [[TiddlyLinks|TiddlyLink]]@tiddlywiki in the tiddler [[Functions]], e.g. {{{["TiddlyWiki Core"]}}}
''Deprecated'': Did output the same SynchronizationWizard as in the [[Backstage Area]].
!Description
The [[slider]] macro provides button that allows to toggle the visibility of [[transclusion|transcluded]] content of some tiddler in another tiddler.
!Usage
{{{
<<slider chkUniqueCookieName tiddler label tooltip>>
}}}
The following macro parameters are required...
| !Parameter | !Description |h
|''chkUniqueCookieName''|use the first parameter to define a unique cookie name starting with {{{chk}}} in which the toggle state is saved for this slider; the state is reapplied when the tiddler is reopened |
|''"""tiddler"""''|a reference to a tiddler-title, -section or slice to be content of the slider|
|''label''|the title for the slider button|
|''tooltip''|the tooltip for the slider button|
!Example:
{{{
<<slider
chkSliderGettingStarted
[[GettingStarted]]
"Getting Started"
"Show getting started info...">>
}}}
<<slider chkSliderGettingStarted [[GettingStarted]] "Getting Started" "Show getting started info...">>
!Using Hidden Sections In The Same Tiddler
If you want to have both the slider and the target content in the same tiddler, you can use [[hidden sections|http://tiddlywiki.org/#%5B%5BHidden%20Text%5D%5D]], e.g.
<<slider
chkHiddenStuff
"slider##HIDDEN"
Hidden!
"Click to show hidden stuff..."
>>
{{{
<<slider
chkHiddenStuff
"slider##HIDDEN"
"Hidden Stuff"
"Click to show hidden stuff..."
>>/%
!HIDDEN
hidden slider content
!END%/
}}}
|~ViewToolbar|+editTiddler +cloneTiddler > fields refreshTiddler changeToPublic changeToPrivate revisions permalink references jump closeOthers < closeTiddler|
|~EditToolbar|+saveTiddler saveDraft -cancelTiddler deleteTiddler|
|~RevisionToolbar|> fields revert|
TiddlyWiki currently does not extend this primitive type of JavaScript.
A TiddlyLink is the term used for an internal link from one tiddler to another.
| !Mode | !Description |width:220px; !Markup |width:100px; !Example |h
| ''WikiWord''|words in CamelCase are automatically rendered as a TiddlyLink|{{{TiddlyWiki}}}|[[TiddlyWiki]]|
| ''Title''|especially needed when tiddler titles contain blanks.|{{{[[A Tiddler]]}}}|[[A Tiddler]]|
| ''Pretty Link''|when the flow of your text requires to change the wording|{{{[[great wiki|TiddlyWiki]]}}}|[[great wiki|TiddlyWiki]]|
Also see [[External Link]]...
!Summary
In the shadow tiddlerSiteTitle you can define the title of your TiddlyWiki.
!Default Contents
{{{
TiddlyWiki
}}}
!TiddlySpace
In TiddlySpace the SiteTitle is by default set to the name of your newly created space.
!Summary
You can render text monospaced text, e.g. using the font //Courier//, while preserving line breaks and not applying WikiText formating or turning WikiWords into links.
!!"""Monospaced Text Block"""
<html><pre>
{{{
Some plain text including WikiLinks
}}}
</pre></html>''Displays as:'' a HTML <pre> element
{{{
Some plain text including WikiLinks
}}}
<<<
''Note:'' Code blocks are displayed using a white-space 'as-is', fixed-width font without no word-wrapping -- displayed in a box.
<<<
!!"""Monospaced Inline Text"""
Alternatively, you can also display monospaced text __inline__ by wrapping the text in three braces <html><code>{{{...}}}</code></html>:
<html><pre>{{{inline //code//}}}</pre></html>''Displays as:'' a HTML <code> element
{{{inline //code//}}}
<<<
''Note:'' Inline code uses a white-space 'collapsed', word-wrapped, fixed-width font.
<<<
!"""Monospaced Code Blocks"""
In order to display processed code as monospaced blocks in tiddlers, the wiki markup needs to be escaped using the respective language's comments syntax. While this is not necessary for a plugin to function properly, it makes the wikified tiddler contents generally look more appealing and readable from the TiddlyWiki UI.
;HTML Code
:» e.g. in PageTemplate, ViewTemplate or EditTemplate
:{{sub{
{{{
<!--{{{-->
[HTML code]
<!--}}}-->
}}}
}}}
;CSS Code
:» e.g. in StyleSheets
:{{sub{
{{{
/*{{{*/
[CSS code]
/*}}}*/
}}}
}}}
;JavaScript Code
:» e.g. in [[Plugins]], i.e. tiddlers tagged <<tag systemConfig>>
:{{sub{
{{{
//{{{
[JavaScript code]
//}}}
}}}
}}}
!!Also see...
*[[Using WikiMarkup in CSS, JavsScript or HTML Code|Comment Formatting]]
*[[Comment Formatting|Comment Formatting]]
*[[Suppressing Formatting]]
!Summary
Use the [[store|TiddlyWiki.class]] function [[setTiddlerTag()|TiddlyWiki.prototype.setTiddlerTag()]] to set or remove a tag for a tiddler.
!Signature
{{{TiddlyWiki.prototype.setTiddlerTag = function(title,status,tag) {} }}}
!Returns
undefined
!Arguments
;1. (string) title
:» the tiddler title
;2. (boolean) status
:» true = set tag | false = remove tag
;3. (string) tag
:» the tag to be set
!Example
{{{
store.setTiddlerTag('SomeToDo',true,'#done');
}}}
''result:'' the tag {{{#done}}} is set for tiddler {{{SomeToDo}}}
Another example:
{{{
var toggleTagBasedOnFoo = function(tiddler, tag){
store.setTiddlerTag(tiddler, config.options.chkFoo, tag);
}
}}}
''result:'' sets a {{{tag}}} on a {{{tiddler }}} depending on the state of the checkbox option {{{chkFoo}}}.
!Best Practice
Each time {{{setTiddlerTag()}}} is called, it triggers a //notify// event for the changed tiddler, which causes re-rendering of any content depending on the changed tiddler.
Therefore, when programatically setting or removing a number of tags, temporarily block notification of changes in order to defer re-rendering until all tag changes are completed using:
{{{
store.suspendNotifications();
store.setTiddlerTag(...);
store.setTiddlerTag(...);
store.resumeNotifications();
store.notify("SomeTitle",true);
}}}
<<<
''Note:'' After calling {{{resumeNotifications()}}} invoke {{{store.notify("SomeTitle",true)}}} in order to re-render the current page display for affected tiddlers due to the changed tag values.
<<<
|cssClass|k
|!heading column 1|!heading column 2|h
|left aligned | right aligned|
| centered ||
|>|COLSPAN|
|ROWSPAN|color:red;red|
|~|color:green;green|
|>|footer™|f
|caption|c
A number of TiddlyWiki adaptations have been developed specially for this purpose...
|!Name|!Author|!Link|h
|mGSD|Simon Baird|http://mgsd.tiddlyspot.com|
|tbGTD|Tobias Beer|http://tbGTD.tiddlyspot.com|
|dGSD|David Szego|http://thinkcreatesolve.biz|
|d³|Tom Otvos|http://www.dcubed.ca|
Also see [[What is GTD?]]...
/***
|''Name:''|ExamplePlugin|
|''Description:''|To demonstrate how to write TiddlyWiki plugins|
|''Version:''|2.0.3|
|''Date:''|Sep 22, 2006|
|''Source:''|http://www.tiddlywiki.com/#ExamplePlugin|
|''Author:''|JeremyRuston -- jeremy (at) osmosoft (dot) com|
|''License:''|[[BSD open source license]]|
|''~CoreVersion:''|2.1.0|
***/
//{{{
//The code goes here...
//}}}
Plugins are a core feature of TiddlyWiki and...
* are optional modules extending the functionality of TiddlyWiki containing JavaScript
* are tagged <<tag systemConfig>> which TiddlyWiki interprets as "Please, run my code when the wiki loads!"
* typically provide macros or functions later triggered, e.g. by being calling from the tiddler text when a tidder is opened
* are mostly written by third-party developers and released under an open-source license
!"""Installing Plugins"""
[[Ideally|Plugin Installation]], to install a plugin, [[import|Importing]] it from its original location into your TiddlyWiki. You can, however, also copy and paste a plugin into a new tiddler.
{{annotation{
Note: In order to be processed on startup, plugins need to be tagged <<tag systemConfig>>.
}}}
!"""Executing Plugins"""
Plugins are loaded and run by TiddlyWiki upon startup in alpha-numeric, case-sensitive order by tiddler title, i.e. A-Z precedes a-z.
!!!Plugin Dependencies
Plugins support the use of a ''Requires'' [[slice]]. For a plugin which contains such a slice, the plugins listed as required are loaded first, regardless of the sort order of the titles.
Object detection can be used for [[strict dependency handling|Best Practices]].
!Example
If PluginA requires PluginB to be loaded first, it should contain the following directive:
{{{
|Requires|PluginB|
}}}
This will force an override of the normal load sequence and ensure that PluginB is loaded before PluginA is processed.
! See Also
* <<tag plugins>>
* [[Plugin Installation]]
* [[Plugin Repositories]]
* [[Plugin Questions]]
* [[Macros]]
* [[Best Practices]]
<<tiddler Markup>>
!Summary
The shadow tiddler GettingStarted by default contains information about how to start using TiddlyWiki and is referenced from your [[MainMenu|MainMenu__shadow]] and loaded on startup via [[DefaultTiddlers|DefaultTiddlers__shadow]].
!Customization
You can overwrite it with any contents you desire or change the tiddler [[DefaultTiddlers|DefaultTiddlers__shadow]] in order to define other tiddlers for startup.
!Considerations
A good use for it is to explain what your TiddlyWiki is about, especially when you plan on redistributing it or showcase your own [[plugins|Plugin]] and [[macros|Macro]].
!Summary
Retrieves the full text, a section or slice of a tiddler. Also fetches shadow tiddler contents. Also see [[Section Transclusion]].
!Signature
{{{TiddlyWiki.prototype.getTiddlerText = (title, defaultText) {} }}}
!Returns
text: the content, if existing, otherwise __null__
!Arguments
;1. (string) title
:the ''tiddler title'', or reference to a ''tiddler##section'' or ''tiddler::slice''
;2. (string) defaultText
:what to return, when nothing found
!Example
{{{
store.getTiddlerText('store.getTiddlerText()##Signature','Not there?');
}}}
''returns:'' <html><pre>"{{{TiddlyWiki.prototype.getTiddlerText = (title, defaultText) {} }}}"</pre></html>
!Summary
This <<tag global>> function applies the CSS of a StyleSheet tiddler by adding a {{{<style>}}} element to the DOM, replacing any {{{<style>}}} element previously created for this StyleSheet tiddler -- its title serving as the unique element id.
!Signature
{{{function setStylesheet(s, id, doc) {} }}}
!Returns
undefined
!Arguments
;1. s
:a string containing the CSS to be applied
;2. id
:the id for the created <style> DOM element
;3. doc
:the document to which to apply all of this -- defaults to the current document
!Example
{{{
setStylesheet('.alert{color:red;}','MakeItRedAlready');
}}}
''result:'' appends a {{{<style>}}} element to the DOM on-the-fuly turning any...<br>{{{<span class="alert">Oh no!</span>}}} into...<br>@@color:red;Oh No!@@
!Description
The tabs macro lets you create tab interfaces such as the one used for the timeline in the sidebar.
!Usage
{{{
<<tabs
txtUniqueCookieName
title
tooltip
reference
title
tooltip
reference
...
>>
}}}
The parameters for the tabs macro are used in a dedicated sequence...
{{annotation{
''Important:'' If any of these parameter values require blanks, enclose them in """'single quotes', "double quotes", or [[double square brackets]]""".
}}}
| !Parameter | !Description |
|''txtUniqueCookieName''|use the first parameter to define a unique cookie name starting with {{{txt}}} in which the name of the currently opened tab is stored; this tab is reopened when the tiddler is reopened|
|tab params|for each desired tab, provide the following three paramaters in this order...<<tiddler tabs##PARAMETERS>>|
!Example
{{{
<<tabs
txtFavouriteMacros
tag
"Information on the tag macro..."
tag
tags
"Information on the tags macro..."
tags
allTags
"Information on the allTags> macro..."
allTags
>>
}}}
<<tabs
txtFavouriteMacros
tag
"Information on the tag macro..."
tag
tags
"Information on the tags macro..."
tags
allTags
"Information on the allTags> macro..."
allTags
>>/%
!PARAMETERS
;title
:the title for the tab
;tooltip
:the tooltip for the tab
;reference
:a reference to a tiddler-title, -section or -slice the content of which are displayed in the tab
!END%/
Something broke in your TiddlyWiki or TiddlySpace?
Use the {{{#start:safe}}} paramifier to start TiddlyWiki with all plugins disabled.
The following functions are implemented in the ''global'' namespace...
{{functions{<<list filter [tag[global]][sort[title]] template:Templates##Function>>}}}<<listfiltr>>
|''Name:''|TagSearchPlugin|
|''Description:''|Provides a drop down listing current tags and others to be set. Based on [[x-tagger|http://tbgtd.tiddlyspot.com/#x-tagger]] which in turn was once based on [[TaggerPlugin|http://tw.lewcid.org/#TaggerPlugin]].|
|''Author:''|[[Tobias Beer]]|
|''Version:''|1.2.0 (2010-10-10)|
|''Documentation:''|http://tagsearch.tiddlyspot.com|
|''Source:''|http://tagsearch.tiddlyspot.com/#TagSearchPlugin|
|''~TiddlyWiki:''|Version 2.5 or better|
!Summary
This prototype function of the [[TiddlyWiki.class]] loops through all tiddlers in the store to find those with ''lookupField'' set to ''lookupValue''; ''lookupField'' can be a standard or custom field of a tiddler.
!Signature
{{{
TiddlyWiki.prototype.reverseLookup =
function(lookupField, lookupValue, lookupMatch, sortField) {}
}}}
!Returns
array[tiddlers]: an array of matching tiddler objects
!Arguments
;1. (string) lookupField
:the field being accessed
;2. (dynamic) lookupValue
:the value being matched
;3. (boolean) lookupMatch
:when set to true, returns all the tiddlers where ''lookupField'' matches ''lookupValue''
:when set to false, returns all the tiddlers where ''lookupField'' does not match ''lookupValue''
;4. (string) sortField
:the field b which to sort, if given (defaults to "title")
!Example
{{{
store.reverseLookup("tags","excludeLists",false,"title");
}}}
''returns:'' all tiddlers not tagged excludeLists sorted by title
While all is pure text in a TiddlyWiki, it may be helpful to understand it as a simple database where each tiddler is a record with a set of...
;[[Standard Fields|Standard Field]]
:» generated by the TiddlyWiki core
;[[Custom Fields|Custom Field]]
:» created by plugins
:» or manually edited by an author
!Summary
Opens a tiddler in the story column with a given template, similar to [[story.createTiddler()]] except that the newly-displayed tiddler is animated opening, and the browser window scrolls to display it.
!Signature
{{{
Story.prototype.displayTiddler =
function(srcElement, tiddler, template, animate, unused, customFields, toggle, animationSrc)
}}}
!Returns
DOM reference: the opened tiddler
!Arguments
;1. (DOM reference) srcElement
:(mandatory) reference to element from which this one is being opened
:required but may be //null// if the tiddler already exists
:may be the strings "bottom" and "top" to place the newly created tiddler at the bottom or top of the story
;2. (string) tiddler
:(mandatory) the title of the tiddler to be displayed
;3. (string) template
:(optional) the template to be used for display, either the constant [[DEFAULT_VIEW_TEMPLATE|ViewTemplate]] or [[DEFAULT_EDIT_TEMPLATE|EditTemplate]]
:* when null or undefined the current template is used — if there is none, defaults to to [[DEFAULT_VIEW_TEMPLATE|ViewTemplate]]
:if the tiddler is already displayed but with a different, it is switched to the specified template
:if the tiddler does not exist, and if server hosting custom fields were provided, then an attempt is made to retrieve the tiddler from the server
;4. (boolean) animate
:whether or not to animate displaying the tiddler
;5. (boolean) slowly
: ''REMOVED!:'' whether to animate slowly when holding the Shift, Option, or Alt key when clicking a tiddler link
;6. (object) customFields
:an optional object of ''key:value'' pairs to be assigned as tiddler fields (for edit templates)
:passed down to [[story.refreshTiddlers()]] when already open
;7. (boolean) toggle
:when {{{true}}} toggles the display of the tiddler — opens when closed, closes when open
;8. (DOM reference) animationSrc
:(optional) specifies the element which is to act as the start of the animation, otherwise the ''srcElement'' is used to trigger [[anim.startAnimating()]]
!Example
{{{
story.displayTiddler(null, 'AdvancedOptions');
}}}
''result:'' opens the AdvancedOptions shadow tiddler
{{{
story.displayTiddler("bottom", "Foo", DEFAULT_EDIT_TEMPLATE);
}}}
''result:'' opens the tiddler ''Foo'' with the default edit template at the bottom
{{annotation{
''Heads Up:'' Please consider [[Who Does What?|DOC - Work In Progress]] when you consider moving (considerable parts of these) sources to [[TiddlyWiki.org]]!
}}}
There may still be some open topics around [[migrating the old TiddlyWiki documentation to this space|About the old and the new wikis]]. To start, check out the [[Main Page content from old wiki]].
The inclusion to @tiddlywikidev might as well be removed, once it is complete enough...
Other external sources that can nurture this space...
* [[TiddlyWiki.com|http://tiddlywiki.com]] -- see http://tiddlywiki-com.tiddlyspace.com
* [[TiddlyWiki [email protected]|http://hoster.peermore.com/bags/tiddlywiki-reference/tiddlers.wiki]]
* [[TWHelp|http://twhelp.tiddlyspot.com]]
* [[TiddlerToddler|http://tiddlertoddler.tiddlyspot.com]]
* [[TiddlyWikiGuides.org|http://tiddlywikiguides.org]]
* [[TiddlyWikiTutorial@blogjones|http://www.blogjones.com/TiddlyWikiTutorial.html]]
* [[TiddlyWiki For The Rest Of Us|http://www.giffmex.org/twfortherestofus.html]]
* and of course, the [[Discussion Groups]]
!Done
Sources that [[have been merged / migrated|DOC - Log]] here...
*2011-02-11: @WikiText
*2011-02-11: @tiddlywiki-com-ref
(function($, tw) {
var bag,
host,
form,
space,
owner,
publicPolicy,
privatePolicy;
function guestView() {
$(".policy-view")
.addClass("disabled")
.find("input, button")
.attr("disabled", "disabled");
$(".guest-view").show();
}
function policyView() {
var $pview = $(".policy-view");
$(".policy-view section h3 strong").text(space);
form = $(".policy-view form");
var porp = $(".policy-view").attr("data-privacy");
$("button.public", $pview).click(function() {
if($pview.hasClass("private")) {
$pview
.removeClass("private")
.addClass("public")
.attr("data-privacy", "public");
fetchPolicy("public");
}
});
$("button.private", $pview).click(function() {
if($pview.hasClass("public")) {
$pview
.removeClass("public")
.addClass("private")
.attr("data-privacy", "private");
fetchPolicy("private");
}
});
fetchPolicy(porp);
setFormHandlers(form);
}
function fetchPolicy(type, callback) {
bag = new tw.Bag(space + "_" + type, host);
bag.get(function(resource, status, xhr) {
// on success
owner = resource.policy.owner;
populateForm(resource.policy);
if(callback) {
callback();
}
}, function(xhr, error, exc) {
// error occurred
console.log("error fetching");
console.log(xhr, error, exc);
});
}
function savePolicy(policy, successCB, errorCB) {
console.log(policy);
bag.policy = $.extend(bag.policy, policy);
console.log(bag.policy);
bag.put(function(resource, status, xhr) {
// success
if(successCB) {
successCB(resource, status, xhr);
}
}, function(xhr, error, exc) {
// error
if(errorCB) {
errorCB(xhr, error, exc);
}
});
}
function populateForm(policy) {
form.find("#readinput")
.val( policy.read.join(",") )
.attr( "data-original", policy.read.join(",") );
form.find("#writeinput")
.val( policy.write.join(",") )
.attr( "data-original", policy.write.join(",") );
form.find("#deleteinput")
.val( policy["delete"].join(",") )
.attr( "data-original", policy["delete"].join(",") );
form.find("#manageinput")
.val( policy.manage.join(",") )
.attr( "data-original", policy.manage.join(",") );
form.find("#acceptinput")
.val( policy["accept"].join(",") )
.attr( "data-original", policy["accept"].join(",") );;
form.find("#createinput")
.val( policy.create.join(",") )
.attr( "data-original", policy.create.join(",") );
}
function setFormHandlers(form) {
form.find(".reset").click(function(e) {
e.preventDefault();
// reset the field values to their original
form.find("input").each(function(i,el) {
var $el = $(el);
$el.val( $el.attr("data-original") );
});
});
form.find(".submit").click(function(e) {
e.preventDefault();
var newpolicy = {
owner: owner
};
form.find("input").each(function(i, el) {
var $el = $(el),
name = $el.attr("name"),
val = $el.val();
newpolicy[name] = (val === "") ? [] : val.replace(/ /g,'').split(",");
})
savePolicy(newpolicy, function(r,s,x){
console.log(s);
}, function(x,er,ex) {
console.log(er);
});
});
// input focusing
form.find("input").focus(function(e){
$(e.target).addClass("editing");
}).blur(function(e){
var $me = $(e.target);
$me.removeClass("editing");
if($me.val() !== $me.attr("data-original")) {
$me.addClass("changed");
}
});
}
/*
* Start up, establishing if the current user has the power to edit.
*/
function init() {
$.ajaxSetup({
beforeSend: function(xhr) {
xhr.setRequestHeader("X-ControlView", "false");
}
});
var url = '/status',
devHost = false;
if (window.location.href.match(/^file:/)) {
// for dev
url = '/status';
devHost = true;
}
$.ajax({
dataType: 'json',
url: url,
success: function(data) {
//space = data.space.name || "policymaker";
space = (data.space) ? data.space.name : "policymaker";
host = '/';
if (devHost) {
host = data.server_host.scheme + '://'
+ space + '.' + data.server_host.host + '/';
}
if (data.username === 'GUEST') {
guestView();
} else {
$.ajax({
url: host + 'spaces/' + space + '/members',
success: policyView,
error: guestView,
});
}
}
});
}
init();
})(jQuery, tiddlyweb);
Below is a list of templates for use via transclusion:
!FAQ
[[« back to FAQ|FAQ]]
!RAQUO
» <<view title link>>
!MODIFIER
» <<view title link>> -- by ''@<<view modifier>>'' | """created""" ''<<view created date "DD. MMM YYYY">>''
!EXCLUDE+LIST
» <<view title link>> -- """modified""" ''<<view modified date "DD. MMM YYYY">>'' by ''@<<view modifier>>''
!EXCLUDE+LIST+GROUP
bag: <<view server.bag text>>
!PAGE+INCOMPLETE
{{annotation{
This page is still incomplete. Please help improve the article and discuss it in the [[google groups|groups.google.com/group/tiddlywiki/]].
}}}
Click the "new tiddler" button towards the top right of the screen to write something in your space. You'll need to give it a title, some content and, optionally, some tags that will help you identify it later.
!Stuck for ideas?
Not sure what to write about? Not sure what to keep in your space? Other people use ~TiddlySpace for almost anything. How about some of the following:
* [[Save interesting sites|http://bookmarks.tiddlyspace.com]], images or articles from around the web so that you can refer back to them.
* [[Record your family tree|http://familytree.tiddlyspace.com]], store notes on long lost relatives or ancestors and map their relationship to you.
* [[Make up a pocketbook|http://pocketbook.tiddlyspace.com]] to store some useful information in, then print it out, [[fold it up|http://www.pocketmod.com/]], and take it with you.
* [[Plan your holiday|http://the-web-is-your-oyster.tiddlyspace.com/]], record where you're planning to go, note down places of interest and refer back to it later.
* [[Create a mindmap|http://mindmaps.tiddlyspace.com/]] to visualise your inner thoughts and see how they relate to each other.
* [[Set up a questionnaire|http://questionnaire.tiddlyspace.com/]] and get all your friends to answer it.
If you don't like any of those ideas, you can still use this space directly to keep notes and link them together, make a todo list and keep track of everything you're doing, or any one of a hundred million other things.
Still stuck? Check out the @featured space for more suggestions.
You can also [[socialise with others|How to socialise]].
TiddlyFox is an extension for Mozilla Firefox created by [[Jeremy Ruston]] which enables TiddlyWiki documents loaded from a file:/// URI to save changes in a TiddlyWiki back to the local filesystem.
!Installation
Download and install the latest revision of TiddlyFox by clicking on the following link while in Firefox:
https://github.com/TiddlyWiki/TiddlyFox/blob/master/tiddlyfox.xpi
You can also install TiddlyFox form Mozilla's official addon library. However, this version typically lags behind the latest release:
https://addons.mozilla.org/en-US/firefox/addon/tiddlyfox
Surprisingly, you can also install TiddlyFox on the mobile version of Firefox for Android. Mozilla has done a good job to let a Firefox add-on to support both desktop and mobile platforms with just one .xpi.
!Background
Due to security issues, Firefox15 and above no longer support the use of the *privileged* file I/O functions needed by TiddlyWiki to save a local file. As a result, attempting to save from Firefox 15+ will produce the error you saw. Tiddlyfox restores the file I/O support for TiddlyWiki.
!Working with TiddlyFox
Whenever you open a TiddlyWiki document with TiddlyFox installed, you will be asked to confirm whether or not file saving should be permitted (OK/Cancel). Pressing OK allows TiddlyFox to provide file I/ O for the current document. TiddlyFox remembers that choice and applies it each time that document is opened, so that you only see the confirmation message the first time. Pressing Cancel bypasses the TiddlyFox addon and loads the document without support for file I/O (and thus, no saving of changes). If you press Cancel, TiddlyFox will ask for confirmation again the next time you open the document.
<<tiddler Code>>
/***
|''Name''|TiddlySpaceViewTypes|
|''Version''|0.6.0|
|''Status''|@@beta@@|
|''Description''|Provides TiddlySpace specific view types|
|''Author''|Jon Robson|
|''Source''|http://github.com/TiddlySpace/tiddlyspace/raw/master/src/plugins/TiddlySpaceViewTypes.js|
|''Requires''|TiddlySpaceConfig TiddlySpaceTiddlerIconsPlugin|
!Usage
Provides replyLink, spaceLink and SiteIcon view types.
!!SiteIcon view parameters
* labelPrefix / labelSuffix : prefix or suffix the label with additional text. eg. labelPrefix:'modified by '
* spaceLink: if set to "yes" will make any avatars link to the corresponding space. {{{<<originMacro spaceLink:yes>>}}}
!Code
***/
//{{{
(function($) {
var tiddlyspace = config.extensions.tiddlyspace;
var originMacro = config.macros.tiddlerOrigin;
var tweb = config.extensions.tiddlyweb;
config.macros.view.replyLink = {
locale: {
label: "Reply to this tiddler"
}
};
var _replyButtons = [];
var _replyInitialised, _replyScriptLoaded;
config.macros.view.views.replyLink = function(value, place, params, wikifier,
paramString, tiddler) {
var valueField = params[0];
var imported;
if(valueField == "title") { // special casing for imported tiddlers
var localTitle = tiddler.title;
var serverTitle = tiddler.fields["server.title"];
if(serverTitle && localTitle != serverTitle) {
value = serverTitle ? serverTitle : localTitle;
imported = true;
}
} else {
title = tiddler[valueField] ? tiddler[valueField] : tiddler.fields[valueField];
}
var args = paramString.parseParams("anon")[0];
var label = (args.label) ? args.label : config.macros.view.replyLink.locale.label;
var space;
if(tiddler) {
var bag = tiddler.fields["server.bag"];
space = tiddlyspace.resolveSpaceName(bag);
}
var container = $('<span class="replyLink" />').appendTo(place)[0];
tweb.getUserInfo(function(user) {
if ((!user.anon) && ((space && user.name != space &&
user.name != tiddlyspace.currentSpace.name) || imported)) {
var link = $("<a />")
.text(config.macros.view.replyLink.locale.label)
.appendTo(container)[0];
if(typeof(createReplyButton) === "undefined") {
_replyButtons.push(link);
}
if(_replyInitialised) {
createReplyButton(link);
} else if(!_replyScriptLoaded) {
_replyScriptLoaded = true;
$.getScript("/bags/common/tiddlers/_reply-button.js",
function() {
_replyInitialised = true;
for(var i = 0; i < _replyButtons.length; i++) {
createReplyButton(_replyButtons[i]);
}
_replyButtons = [];
});
}
}
});
};
config.macros.view.views.spaceLink = function(value, place, params, wikifier,
paramString, tiddler) {
var spaceName = tiddlyspace.resolveSpaceName(value);
var isBag = params[0] == "server.bag" && value === spaceName ? true : false;
var args = paramString.parseParams("anon")[0];
var titleField = args.anon[2];
var labelField = args.labelField ? args.labelField[0] : false;
var label;
if(labelField) {
label = tiddler[labelField] ? tiddler[labelField] : tiddler.fields[labelField];
} else {
label = args.label ? args.label[0] : false;
}
var title = tiddler[titleField] ? tiddler[titleField] : tiddler.fields[titleField];
var link = createSpaceLink(place, spaceName, title, label, isBag);
if(args.external && args.external[0] == "no") {
$(link).click(function(ev) {
var el = $(ev.target);
var title = el.attr("tiddler");
var bag = el.attr("bag");
var space = el.attr("tiddlyspace");
bag = space ? space + "_public" : bag;
if(title && bag) {
ev.preventDefault();
tiddlyspace.displayServerTiddler(el[0], title,
"bags/" + bag);
}
return false;
});
}
};
config.macros.view.views.SiteIcon = function(value, place, params, wikifier,
paramString, tiddler) {
var options = originMacro.getOptions(paramString);
if(!tiddler || value == "None") { // some core tiddlers lack modifier
value = false;
}
var field = params[0];
if(field == "server.bag") {
options.notSpace = !originMacro._isSpace(value);
}
tiddlyspace.renderAvatar(place, value, options);
};
})(jQuery);
//}}}
Versions of TiddlyWiki before and including 2.6.3 are known to have an issue with the upgrade function. To upgrade these versions you will need to download an empty latest version of TiddlyWiki and import your content into it using the "import" function in the backstage. See [[Upgrading from TiddlyWiki version 2.6.3 or before]].
(function($, tw) {
var bag,
form,
space,
owner,
publicPolicy,
privatePolicy;
function guestView() {
$(".policy-view")
.addClass("disabled")
.find("input, button")
.attr("disabled", "disabled");
$(".guest-view").show();
}
function policyView() {
var $pview = $(".policy-view");
$pview.find("section h3 strong").text(space);
form = $pview.find("form");
function selectPolicy(newType) {
var oldType = (newType === "public") ? "private" : "public";
if($pview.hasClass( oldType )) {
$pview
.removeClass( oldType )
.addClass( newType )
.data("privacy", newType);
fetchPolicy( newType );
}
}
$("button.public", $pview).click(function() {
selectPolicy( "public" );
return false;
});
$("button.private", $pview).click(function() {
selectPolicy( "private" );
return false;
});
fetchPolicy( $pview.data("privacy") );
setFormHandlers(form);
}
function fetchPolicy(type, callback) {
bag = new tw.Bag(space + "_" + type, "/");
bag.get(function(resource, status, xhr) {
// on success
owner = resource.policy.owner;
populateForm(resource.policy);
if(callback) {
callback();
}
}, function(xhr, error, exc) {
// error occurred
console.log("error fetching");
console.log(xhr, error, exc);
});
}
function savePolicy(policy, successCB, errorCB) {
console.log(policy);
bag.policy = $.extend(bag.policy, policy);
console.log(bag.policy);
bag.put(function(resource, status, xhr) {
// success
if(successCB) {
successCB(resource, status, xhr);
}
}, function(xhr, error, exc) {
// error
if(errorCB) {
errorCB(xhr, error, exc);
}
});
}
function populateForm(policy) {
form.find("#readinput")
.val( policy.read.join(",") )
.attr( "data-original", policy.read.join(",") );
form.find("#writeinput")
.val( policy.write.join(",") )
.attr( "data-original", policy.write.join(",") );
form.find("#deleteinput")
.val( policy["delete"].join(",") )
.attr( "data-original", policy["delete"].join(",") );
form.find("#manageinput")
.val( policy.manage.join(",") )
.attr( "data-original", policy.manage.join(",") );
form.find("#acceptinput")
.val( policy["accept"].join(",") )
.attr( "data-original", policy["accept"].join(",") );;
form.find("#createinput")
.val( policy.create.join(",") )
.attr( "data-original", policy.create.join(",") );
}
function setFormHandlers(form) {
form.find(".reset").click(function(e) {
e.preventDefault();
// reset the field values to their original
form.find("input").each(function(i,el) {
var $el = $(el);
$el.val( $el.attr("data-original") );
});
});
form.find(".submit").click(function(e) {
e.preventDefault();
var newpolicy = {
owner: owner
};
form.find("input").each(function(i, el) {
var $el = $(el),
name = $el.attr("name"),
val = $el.val();
newpolicy[name] = (val === "") ? [] : val.replace(/ /g,'').split(",");
})
savePolicy(newpolicy, function(r,s,x){
console.log(s);
}, function(x,er,ex) {
console.log(er);
});
});
// input focusing
form.find("input").focus(function(e){
$(e.target).addClass("editing");
}).blur(function(e){
var $me = $(e.target);
$me.removeClass("editing");
if($me.val() !== $me.attr("data-original")) {
$me.addClass("changed");
}
});
}
/*
* Start up, establishing if the current user has the power to edit.
*/
function init() {
$.ajaxSetup({
beforeSend: function(xhr) {
xhr.setRequestHeader("X-ControlView", "false");
}
});
$.ajax({
dataType: 'json',
url: '/status',
success: function(data) {
//space = data.space.name || "policymaker";
space = (data.space) ? data.space.name : "policymaker";
if (data.username === 'GUEST') {
guestView();
} else {
$.ajax({
url: '/spaces/' + space + '/members',
success: policyView,
error: guestView,
});
}
}
});
}
init();
})(jQuery, tiddlyweb);
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xl="http://www.w3.org/1999/xlink" version="1.1" viewBox="78 222 60 60"
width="30" height="30">
<g stroke="none" stroke-opacity="1" stroke-dasharray="none" fill="none" fill-opacity="1">
<g>
<path d="M 107.92718 244.14815 L 86.651474 222.89253 L 78.85206 230.69925 L 100.120415 251.9476 L 78.774 273.27396
L 86.57342 281.08075 L 107.927216 259.74707 L 129.39981 281.19946 L 137.19922 273.39267 L 115.73397 251.94763
L 137.121155 230.58054 L 129.32175 222.77374 Z" fill="black" class="glyph"/>
</g>
</g>
</svg>
The current UserName in TiddlyWiki is stored via Javascript at...
{{{
config.options.txtUserName
}}}
To display the UserName, e.g. in the SiteTitle or SiteSubtitle, you can use the [[core|Core Macros]] [[message]] macro via...
{{{
<<message "config.options.txtUserName">>
}}}
If you want to be able to edit the UserName, see [[How can I edit my UserName?]]...
!Alternative Methods
<<tabs
txtDisplayUserName
WikifyPlugin
"Displaying the UserName using WikifyPlugin..."
"How can I display my UserName somewhere?##WikifyPlugin"
InlineJavascriptPlugin
"Displaying the UserName using InlineJavascriptPlugin..."
"How can I display my UserName somewhere?##InlineJavascriptPlugin"
Transclusion
"Displaying the UserName using Transclusion..."
"How can I display my UserName somewhere?##Transclusion"
>>/%
!WikifyPlugin
Using [[WikifyPlugin|http://www.TiddlyTools.com/#WikifyPlugin]] from [[Eric Shulman / TiddlyTools|http://www.TiddlyTools.com/#WikifyPlugin]] you can write...
{{{
<<wikify "%0" {{config.options.txtUserName}}>>
}}}
!InlineJavascriptPlugin
Using [[InlineJavascriptPlugin|http://www.tiddlytools.com/#InlineJavascriptPlugin]] you can write:
{{{
<script>return config.options.txtUserName;</script>
}}}
!Transclusion
Create a tiddler named ''"""ShowValue"""'' containing nothing but...
{{{
$1
}}}
Then use [[transclusion|Transclusion]] entering the following where you want to display the UserName:
{{{
<<tiddler ShowValue with:{{config.options.txtUserName}}>>
}}}
{{annotation{
''Note:'' You can reuse the tiddler ''"""ShowValue"""'' with all kinds of expressions following the {{{with:}}} delimiter.
}}}<<tiddler EVAL>>
!END%/
{{annotation{
''Important'': As of ''05. Sep, 2013'' all links to Martin's work are broken! Also, these plugins have been in alpha-state throughout their existence and must be considered outdated.
}}}
You can with Martin's new plugin support for diffrent markups. See:
http://www.martinswiki.com/#MediaWikiFormatterPlugin for MediaWiki markup
and http://www.martinswiki.com for other markup.
See also [[google groups discussion|http://groups.google.com/group/TiddlyWikiDev/browse_thread/thread/a8b1e3cc62ae9268/53149b6d2b5c3427]].
See [[Deleting A Tiddler]]...
Each tiddler instance has the following properties...
|!Property|!Description|
|color:red;''Important:'' Do not set the properties of a tiddler instance manually, use the [[tiddler.set()|Tiddler.prototype.set()]] method!|>|
|title|a string with the tiddler's name|
|text|the source code of the tiddler|
|modifier|a string with the modifier of the tiddler's name|
|modified|a Date object corresponding to when the tiddler was last changed|
|links|an array of strings, one per link in the tiddler's source code|
|tags|an array of strings, one per tag assigned to the tiddler|
|created|a Date object corresponding to when the tiddler was created|
|creator|a string with the creator of the tiddler's name (TW core 2.6)|
|linksUpdated|a boolean corresponding to whether the links property is up-to-date|
Click on 'new tiddler' (top right-hand menu). A new tiddler will open.
To name the tiddler, type over the words 'new tiddler' in the top text box.
Enter the tiddler's contents into the main text box.
Click on Done (grey menu at top right of tiddler).
To add the tiddler to the menuu, see [[Add Menu Item]].
<<tiddler [[Comment Formatting]]>>
The //createTiddler// method of the Story.class opens a tiddler on the page. If a tiddler by the requested name doesn't exist, it appears ready to edit. This method takes four parameters:
* the overall parent DOM element to display the tiddler inside.
* the DOM element inside the first parameter to display directly after. A null value places it at the end of the entire element.
* the title of the tiddler to display.
* the template to use to display the tiddler. It should be either the constant //~DEFAULT_VIEW_TEMPLATE// or //~DEFAULT_EDIT_TEMPLATE//.
This method returns the newly created DOM element.
TiddlyWiki bookmarklets are small chunks of JavaScript that you can save as bookmarks in your browser.
When you open a bookmarklet in the context of an open TiddlyWiki, it acts as a plugin run by the browser without being stored in TiddlyWiki itself. This can be very convenient, as you can use a bookmarklet on any TiddlyWiki without a need to install a plugin in each one.
!"""Saving A Bookmarklet"""
To save a bookmarklet, simply add it to the Favourites or Bookmarks in your browser. To keep things tidy, add them to a dedicated folder for TiddlyWiki bookmarklets.
!"""Bookmarklet Sources"""
*[[TiddlyTools.com/#InstantBookmarklets|http://tiddlytools.com/#InstantBookmarklets]] by ''Eric Shulman''
*[[TiddlyWiki.com/#TiddlyBookmarklets|http://tiddlywiki.com/#TiddlyBookmarklets]] by ''Jeremy Ruston''
*[[Lewcid.org/tiddlywiki-bookmarklets on web.archives.org|http://goo.gl/dGDPf]] by ''Saq Imtiaz''
!"""Bookmarklet Reference"""
Simply add the {{bookmarklet{green links}}} to your browsers bookmarks.
!!!"""Bookmarklets Loading Remote Plugins On-Demand""" -- """by""" [[Eric Shulman|http://www.tiddlytools.com/#InstantBookmarklets]]
*<html><a
class="bookmarklet"
onclick="
try { if (version.extensions.ImportTiddlersPlugin!=undefined) {
clearMessage();
try {window.story.displayTiddler(null,'ImportTiddlers');} catch(e) {window.story.displayTiddler(null,'ImportTiddlers');}
displayMessage('ImportTiddlersPlugin is already installed.');
return false;
} } catch(e){;}
var s=document.createElement('script');
s.src='http://svn.tiddlywiki.org/Trunk/contributors/EricShulman/plugins/ImportTiddlersPlugin.js';
s.onerror=function() {
clearMessage();
displayMessage('Could not load ImportTiddlersPlugin from');
displayMessage(this.src,this.src);
};
s.onload=function() {
clearMessage();
{window.story.displayTiddler(null,'ImportTiddlers');}
try { eval(store.getTiddlerText('ImportTiddlersPluginConfig','')); }
catch(e) { displayMessage(e.description||e.toString()); }
displayMessage('ImportTiddlersPlugin has been loaded from');
displayMessage(this.src,this.src);
};
s.onreadystatechange=function() /* for IE */
{ if(this.readyState=='complete') this.onload(); };
document.getElementsByTagName('head')[0].appendChild(s);
return false;"
onmouseover="
this.href='javascript:void(eval(decodeURIComponent(%22(function(){try{('
+encodeURIComponent(encodeURIComponent(this.onclick))
+')()}catch(e){alert(e.description?e.description:e.toString())}})()%22)))';"
title="Load ImportTiddlersPlugin from svn.TiddlyWiki.org repository"
href="javascript:void(eval(decodeURIComponent(%22(function(){try{(function%2520onclick(event)%2520%257B%250A%250A%2509try%2520%257B%2520if%2520(version.extensions.ImportTiddlersPlugin!%253Dundefined)%2520%257B%250A%2509%2509clearMessage()%253B%250A%2509%2509try%2520%257Bwindow.story.displayTiddler(null%252C'ImportTiddlers')%253B%257D%2520catch(e)%2520%257Bwindow.story.displayTiddler(null%252C'ImportTiddlers')%253B%257D%250A%2509%2509displayMessage('ImportTiddlersPlugin%2520is%2520already%2520installed.')%253B%250A%2509%2509return%2520false%253B%250A%2509%257D%2520%257D%2520catch(e)%257B%253B%257D%250A%2509var%2520s%253Ddocument.createElement('script')%253B%250A%2509s.src%253D'http%253A%252F%252Fsvn.tiddlywiki.org%252FTrunk%252Fcontributors%252FEricShulman%252Fplugins%252FImportTiddlersPlugin.js'%253B%250A%2509s.onerror%253Dfunction()%2520%257B%250A%2509%2509clearMessage()%253B%250A%2509%2509displayMessage('Could%2520not%2520load%2520ImportTiddlersPlugin%2520from')%253B%250A%2509%2509displayMessage(this.src%252Cthis.src)%253B%250A%2509%257D%253B%250A%2509s.onload%253Dfunction()%2520%257B%2520%250A%2509%2509clearMessage()%253B%250A%2509%2509%257Bwindow.story.displayTiddler(null%252C'ImportTiddlers')%253B%257D%250A%2509%2509try%2520%257B%2520eval(store.getTiddlerText('ImportTiddlersPluginConfig'%252C''))%253B%2520%257D%250A%2509%2509catch(e)%2520%257B%2520displayMessage(e.description%257C%257Ce.toString())%253B%2520%257D%250A%2509%2509displayMessage('ImportTiddlersPlugin%2520has%2520been%2520loaded%2520from')%253B%250A%2509%2509displayMessage(this.src%252Cthis.src)%253B%250A%2509%257D%253B%250A%2509s.onreadystatechange%253Dfunction()%2520%2520%252F*%2520for%2520IE%2520*%252F%250A%2509%2509%257B%2520if(this.readyState%253D%253D'complete')%2520this.onload()%253B%2520%257D%253B%250A%2509document.getElementsByTagName('head')%255B0%255D.appendChild(s)%253B%250A%2509return%2520false%253B%250A%250A%257D)()}catch(e){alert(e.description?e.description:e.toString())}})()%22)))">
ImportTiddlersPlugin</a>
</html> -- plugin by [[Eric Shulman|http://www.tiddlytools.com]]
*<html><a
class="bookmarklet"
onclick="
try { if (version.extensions.TiddlerTweakerPlugin!=undefined) {
clearMessage();
try {$6;} catch(e) {window.story.displayTiddler(null,'TiddlerTweaker');}
displayMessage('TiddlerTweakerPlugin is already installed.');
return false;
} } catch(e){;}
var s=document.createElement('script');
s.src='http://svn.tiddlywiki.org/Trunk/contributors/EricShulman/plugins/TiddlerTweakerPlugin.js';
s.onerror=function() {
clearMessage();
displayMessage('Could not load TiddlerTweakerPlugin from');
displayMessage(this.src,this.src);
};
s.onload=function() {
clearMessage();
{window.story.displayTiddler(null,'TiddlerTweaker');}
try { eval(store.getTiddlerText('$7','')); }
catch(e) { displayMessage(e.description||e.toString()); }
displayMessage('TiddlerTweakerPlugin has been loaded from');
displayMessage(this.src,this.src);
};
s.onreadystatechange=function() /* for IE */
{ if(this.readyState=='complete') this.onload(); };
document.getElementsByTagName('head')[0].appendChild(s);
return false;"
onmouseover="
this.href='javascript:void(eval(decodeURIComponent(%22(function(){try{('
+encodeURIComponent(encodeURIComponent(this.onclick))
+')()}catch(e){alert(e.description?e.description:e.toString())}})()%22)))';"
title="Load TiddlerTweakerPlugin from svn.TiddlyWiki.org repository"
href="javascript:;">
TiddlerTweakerPlugin</a>
</html> -- plugin by [[Eric Shulman|http://www.tiddlytools.com]]
*<html><a
class="bookmarklet"
onclick="
try { if (Story.prototype.rearrangeTiddlersHijack_refreshTiddler!=undefined) {
clearMessage();
try {$6;} catch(e) {window.story.forEachTiddler(function(t,e){window.story.refreshTiddler(t,null,true)}); window.refreshDisplay();}
displayMessage('RearrangeTiddlersPlugin is already installed.');
return false;
} } catch(e){;}
var s=document.createElement('script');
s.src='http://www.TiddlyTools.com/plugins/RearrangeTiddlersPlugin.js';
s.onerror=function() {
clearMessage();
displayMessage('Could not load RearrangeTiddlersPlugin from');
displayMessage(this.src,this.src);
};
s.onload=function() {
clearMessage();
{window.story.forEachTiddler(function(t,e){window.story.refreshTiddler(t,null,true)}); window.refreshDisplay();}
try { eval(store.getTiddlerText('$7','')); }
catch(e) { displayMessage(e.description||e.toString()); }
displayMessage('RearrangeTiddlersPlugin has been loaded from');
displayMessage(this.src,this.src);
};
s.onreadystatechange=function() /* for IE */
{ if(this.readyState=='complete') this.onload(); };
document.getElementsByTagName('head')[0].appendChild(s);
return false;"
onmouseover="
this.href='javascript:void(eval(decodeURIComponent(%22(function(){try{('
+encodeURIComponent(encodeURIComponent(this.onclick))
+')()}catch(e){alert(e.description?e.description:e.toString())}})()%22)))';"
title="Load RearrangeTiddlersPlugin from www.TiddlyTools.com"
href="javascript:;">
RearrangeTiddlersPlugin</a>
</html> -- plugin by [[Eric Shulman|http://www.tiddlytools.com]]
*<html><a
class="bookmarklet"
onclick="
try { if (version.extensions.YourSearchPlugin!=undefined) {
clearMessage();
try {$6;} catch(e) {window.refreshPageTemplate();}
displayMessage('YourSearchPlugin is already installed.');
return false;
} } catch(e){;}
var s=document.createElement('script');
s.src='http://tiddlywiki.abego-software.de/archive/YourSearchPlugin/latest/YourSearchPlugin.js';
s.onerror=function() {
clearMessage();
displayMessage('Could not load YourSearchPlugin from');
displayMessage(this.src,this.src);
};
s.onload=function() {
clearMessage();
{window.refreshPageTemplate();}
try { eval(store.getTiddlerText('$7','')); }
catch(e) { displayMessage(e.description||e.toString()); }
displayMessage('YourSearchPlugin has been loaded from');
displayMessage(this.src,this.src);
};
s.onreadystatechange=function() /* for IE */
{ if(this.readyState=='complete') this.onload(); };
document.getElementsByTagName('head')[0].appendChild(s);
return false;"
onmouseover="
this.href='javascript:void(eval(decodeURIComponent(%22(function(){try{('
+encodeURIComponent(encodeURIComponent(this.onclick))
+')()}catch(e){alert(e.description?e.description:e.toString())}})()%22)))';"
title="Load YourSearchPlugin from tiddlywiki.abego-software.de"
href="javascript:;">
YourSearchPlugin</a>
</html> -- plugin by [[Udo Borowski|http://tiddlywiki.abego-software.de]]
*<html><a
class="bookmarklet"
onclick="
try { if (config.macros.firefoxPrivileges!=undefined) {
clearMessage();
try {backstage.switchTab('firefoxPrivileges');} catch(e) {config.macros.firefoxPrivileges.onload();}
displayMessage('Firefox Privilege Manager is already installed.');
return false;
} } catch(e){;}
var s=document.createElement('script');
s.src='http://svn.tiddlywiki.org/Trunk/contributors/XavierVerges/plugins/FirefoxPrivilegesPlugin.js';
s.onerror=function() {
clearMessage();
displayMessage('Could not load Firefox Privilege Manager from');
displayMessage(this.src,this.src);
};
s.onload=function() {
clearMessage();
{config.macros.firefoxPrivileges.onload();}
try { eval(store.getTiddlerText('$7','')); }
catch(e) { displayMessage(e.description||e.toString()); }
displayMessage('Firefox Privilege Manager has been loaded from');
displayMessage(this.src,this.src);
};
s.onreadystatechange=function() /* for IE */
{ if(this.readyState=='complete') this.onload(); };
document.getElementsByTagName('head')[0].appendChild(s);
return false;"
onmouseover="
this.href='javascript:void(eval(decodeURIComponent(%22(function(){try{('
+encodeURIComponent(encodeURIComponent(this.onclick))
+')()}catch(e){alert(e.description?e.description:e.toString())}})()%22)))';"
title="Load Firefox Privilege Manager from svn.TiddlyWiki.org repository"
href="javascript:void(eval(decodeURIComponent(%22(function(){try{(function%2520onclick(event)%2520%257B%250A%250A%2509try%2520%257B%2520if%2520(config.macros.firefoxPrivileges!%253Dundefined)%2520%257B%250A%2509%2509clearMessage()%253B%250A%2509%2509try%2520%257Bbackstage.switchTab('firefoxPrivileges')%253B%257D%2520catch(e)%2520%257Bconfig.macros.firefoxPrivileges.onload()%253B%257D%250A%2509%2509displayMessage('Firefox%2520Privilege%2520Manager%2520is%2520already%2520installed.')%253B%250A%2509%2509return%2520false%253B%250A%2509%257D%2520%257D%2520catch(e)%257B%253B%257D%250A%2509var%2520s%253Ddocument.createElement('script')%253B%250A%2509s.src%253D'http%253A%252F%252Fsvn.tiddlywiki.org%252FTrunk%252Fcontributors%252FXavierVerges%252Fplugins%252FFirefoxPrivilegesPlugin.js'%253B%250A%2509s.onerror%253Dfunction()%2520%257B%250A%2509%2509clearMessage()%253B%250A%2509%2509displayMessage('Could%2520not%2520load%2520Firefox%2520Privilege%2520Manager%2520from')%253B%250A%2509%2509displayMessage(this.src%252Cthis.src)%253B%250A%2509%257D%253B%250A%2509s.onload%253Dfunction()%2520%257B%2520%250A%2509%2509clearMessage()%253B%250A%2509%2509%257Bconfig.macros.firefoxPrivileges.onload()%253B%257D%250A%2509%2509try%2520%257B%2520eval(store.getTiddlerText('%25247'%252C''))%253B%2520%257D%250A%2509%2509catch(e)%2520%257B%2520displayMessage(e.description%257C%257Ce.toString())%253B%2520%257D%250A%2509%2509displayMessage('Firefox%2520Privilege%2520Manager%2520has%2520been%2520loaded%2520from')%253B%250A%2509%2509displayMessage(this.src%252Cthis.src)%253B%250A%2509%257D%253B%250A%2509s.onreadystatechange%253Dfunction()%2520%2520%252F*%2520for%2520IE%2520*%252F%250A%2509%2509%257B%2520if(this.readyState%253D%253D'complete')%2520this.onload()%253B%2520%257D%253B%250A%2509document.getElementsByTagName('head')%255B0%255D.appendChild(s)%253B%250A%2509return%2520false%253B%250A%250A%257D)()}catch(e){alert(e.description?e.description:e.toString())}})()%22)))">
Firefox Privilege Manager</a>
</html> -- plugin by [[Xavier Vergés|http://firefoxprivileges.tiddlyspot.com]]
*<html><a
class="bookmarklet"
onclick="
try { if (window.jash!=undefined) {
clearMessage();
try {$6;} catch(e) {window.jash.close();}
displayMessage('Jash (JAvascript SHell) is already installed.');
return false;
} } catch(e){;}
var s=document.createElement('script');
s.src='http://www.billyreisinger.com/jash/source/latest/Jash.js';
s.onerror=function() {
clearMessage();
displayMessage('Could not load Jash (JAvascript SHell) from');
displayMessage(this.src,this.src);
};
s.onload=function() {
clearMessage();
{window.jash.close();}
try { eval(store.getTiddlerText('$7','')); }
catch(e) { displayMessage(e.description||e.toString()); }
displayMessage('Jash (JAvascript SHell) has been loaded from');
displayMessage(this.src,this.src);
};
s.onreadystatechange=function() /* for IE */
{ if(this.readyState=='complete') this.onload(); };
document.getElementsByTagName('head')[0].appendChild(s);
return false;"
onmouseover="
this.href='javascript:void(eval(decodeURIComponent(%22(function(){try{('
+encodeURIComponent(encodeURIComponent(this.onclick))
+')()}catch(e){alert(e.description?e.description:e.toString())}})()%22)))';"
title="Load Jash (JAvascript SHell) from www.billyreisinger.com/jash"
href="javascript:;">
Jash (JAvascript SHell)</a>
</html> -- console by [[Billy Reisinger|http://www.billyreisinger.com/jash]]
!!!"""TiddlyWiklets""" by [[Eric Shulman|http://TiddlyTools.com#InstantBookmarklets]]
*<html><a
class="bookmarklet"
onclick="
var c=document.getElementById('contentWrapper'); if (!c) return;
for (var i=0; i<c.childNodes.length; i++)
if (hasClass(c.childNodes[i],'header')) { var h=c.childNodes[i]; break; }
if (!h) return;
config.options.chkHideSiteTitles=h.style.display!='none';
h.style.display=config.options.chkHideSiteTitles?'none':'block';
saveOptionCookie('chkHideSiteTitles');
return false;"
onmouseover="
this.href='javascript:void(eval(decodeURIComponent(%22(function(){try{('
+encodeURIComponent(encodeURIComponent(this.onclick))
+')()}catch(e){alert(e.description?e.description:e.toString())}})()%22)))';"
title="show/hide SiteTitle and SiteSubtitle (header) content"
href="javascript:void(eval(decodeURIComponent(%22(function(){try{(function%2520onclick(event)%2520%257B%250A%250A%2509var%2520c%253Ddocument.getElementById('contentWrapper')%253B%2520%2520if%2520(!c)%2520return%253B%250A%2509for%2520(var%2520i%253D0%253B%2520i%253Cc.childNodes.length%253B%2520i%252B%252B)%250A%2509%2509if%2520(hasClass(c.childNodes%255Bi%255D%252C'header'))%2520%257B%2520var%2520h%253Dc.childNodes%255Bi%255D%253B%2520break%253B%2520%257D%250A%2509if%2520(!h)%2520return%253B%250A%2509config.options.chkHideSiteTitles%253Dh.style.display!%253D'none'%253B%250A%2509h.style.display%253Dconfig.options.chkHideSiteTitles%253F'none'%253A'block'%253B%250A%2509saveOptionCookie('chkHideSiteTitles')%253B%250A%2509return%2520false%253B%250A%250A%257D)()}catch(e){alert(e.description?e.description:e.toString())}})()%22)))">
▲ Toggle Site Titles</a>
</html>
*<html><a
class="bookmarklet"
onclick="
var co=config.options;
var opt='chkShowLeftSidebar';
var show=co[opt]=!co[opt];
var mm=document.getElementById('mainMenu');
var da=document.getElementById('displayArea');
if (mm) {
mm.style.display=show?'block':'none';
da.style.marginLeft=show?'':'1em';
}
saveOptionCookie(opt);
var labelShow=co.txtToggleLeftSideBarLabelShow||'►';
var labelHide=co.txtToggleLeftSideBarLabelHide||'◄';
if (this.innerHTML==labelShow||this.innerHTML==labelHide)
this.innerHTML=show?labelHide:labelShow;
this.title=(show?'hide':'show')+' left sidebar';
var sm=document.getElementById('storyMenu');
if (sm) config.refreshers.content(sm);
return false;"
onmouseover="
this.href='javascript:void(eval(decodeURIComponent(%22(function(){try{('
+encodeURIComponent(encodeURIComponent(this.onclick))
+')()}catch(e){alert(e.description?e.description:e.toString())}})()%22)))';"
title="hide left sidebar"
href="javascript:void(eval(decodeURIComponent(%22(function(){try{(function%2520onclick(event)%2520%257B%250A%250A%2509var%2520co%253Dconfig.options%253B%250A%2509var%2520opt%253D'chkShowLeftSidebar'%253B%250A%2509var%2520show%253Dco%255Bopt%255D%253D!co%255Bopt%255D%253B%250A%2509var%2520mm%253Ddocument.getElementById('mainMenu')%253B%250A%2509var%2520da%253Ddocument.getElementById('displayArea')%253B%250A%2509if%2520(mm)%2520%257B%250A%2509%2509mm.style.display%253Dshow%253F'block'%253A'none'%253B%250A%2509%2509da.style.marginLeft%253Dshow%253F''%253A'1em'%253B%250A%2509%257D%250A%2509saveOptionCookie(opt)%253B%250A%2509var%2520labelShow%253Dco.txtToggleLeftSideBarLabelShow%257C%257C'%25E2%2596%25BA'%253B%250A%2509var%2520labelHide%253Dco.txtToggleLeftSideBarLabelHide%257C%257C'%25E2%2597%2584'%253B%250A%2509if%2520(this.innerHTML%253D%253DlabelShow%257C%257Cthis.innerHTML%253D%253DlabelHide)%2520%250A%2509%2509this.innerHTML%253Dshow%253FlabelHide%253AlabelShow%253B%250A%2509this.title%253D(show%253F'hide'%253A'show')%252B'%2520left%2520sidebar'%253B%250A%2509var%2520sm%253Ddocument.getElementById('storyMenu')%253B%250A%2509if%2520(sm)%2520config.refreshers.content(sm)%253B%250A%2509return%2520false%253B%250A%250A%257D)()}catch(e){alert(e.description?e.description:e.toString())}})()%22)))">
◄ Toggle Left Sidebar</a>
</html>
*<html><a
class="bookmarklet"
onclick="
var co=config.options;
var opt='chkShowRightSidebar';
var show=co[opt]=!co[opt];
var sb=document.getElementById('sidebar');
var da=document.getElementById('displayArea');
if (sb) {
sb.style.display=show?'block':'none';
da.style.marginRight=show?'':'1em';
}
saveOptionCookie(opt);
var labelShow=co.txtToggleRightSideBarLabelShow||'◄';
var labelHide=co.txtToggleRightSideBarLabelHide||'►';
if (this.innerHTML==labelShow||this.innerHTML==labelHide)
this.innerHTML=show?labelHide:labelShow;
this.title=(show?'hide':'show')+' right sidebar';
var sm=document.getElementById('storyMenu');
if (sm) config.refreshers.content(sm);
return false;"
onmouseover="
this.href='javascript:void(eval(decodeURIComponent(%22(function(){try{('
+encodeURIComponent(encodeURIComponent(this.onclick))
+')()}catch(e){alert(e.description?e.description:e.toString())}})()%22)))';"
title="show right sidebar"
href="javascript:void(eval(decodeURIComponent(%22(function(){try{(function%2520onclick(event)%2520%257B%250A%250A%2509var%2520co%253Dconfig.options%253B%250A%2509var%2520opt%253D'chkShowRightSidebar'%253B%250A%2509var%2520show%253Dco%255Bopt%255D%253D!co%255Bopt%255D%253B%250A%2509var%2520sb%253Ddocument.getElementById('sidebar')%253B%250A%2509var%2520da%253Ddocument.getElementById('displayArea')%253B%250A%2509if%2520(sb)%2520%257B%250A%2509%2509sb.style.display%253Dshow%253F'block'%253A'none'%253B%250A%2509%2509da.style.marginRight%253Dshow%253F''%253A'1em'%253B%250A%2509%257D%250A%2509saveOptionCookie(opt)%253B%250A%2509var%2520labelShow%253Dco.txtToggleRightSideBarLabelShow%257C%257C'%25E2%2597%2584'%253B%250A%2509var%2520labelHide%253Dco.txtToggleRightSideBarLabelHide%257C%257C'%25E2%2596%25BA'%253B%250A%2509if%2520(this.innerHTML%253D%253DlabelShow%257C%257Cthis.innerHTML%253D%253DlabelHide)%2520%250A%2509%2509this.innerHTML%253Dshow%253FlabelHide%253AlabelShow%253B%250A%2509this.title%253D(show%253F'hide'%253A'show')%252B'%2520right%2520sidebar'%253B%250A%2509var%2520sm%253Ddocument.getElementById('storyMenu')%253B%250A%2509if%2520(sm)%2520config.refreshers.content(sm)%253B%250A%2509return%2520false%253B%250A%250A%257D)()}catch(e){alert(e.description?e.description:e.toString())}})()%22)))">
► Toggle Right Sidebar</a>
</html>
*<html><a
class="bookmarklet"
onclick="
var opt='chkAnimate';
config.macros.option.propagateOption(opt,'checked',!config.options[opt],'input');
displayMessage('Animation effects are: '+(config.options[opt]?'ON':'OFF'));
return false;"
onmouseover="
this.href='javascript:void(eval(decodeURIComponent(%22(function(){try{('
+encodeURIComponent(encodeURIComponent(this.onclick))
+')()}catch(e){alert(e.description?e.description:e.toString())}})()%22)))';"
title="enable/disable animation effects"
href="javascript:void(eval(decodeURIComponent(%22(function(){try{(function%2520onclick(event)%2520%257B%250A%250A%2509var%2520opt%253D'chkAnimate'%253B%250A%2509config.macros.option.propagateOption(opt%252C'checked'%252C!config.options%255Bopt%255D%252C'input')%253B%250A%2509displayMessage('Animation%2520effects%2520are%253A%2520'%252B(config.options%255Bopt%255D%253F'ON'%253A'OFF'))%253B%250A%2509return%2520false%253B%250A%250A%257D)()}catch(e){alert(e.description?e.description:e.toString())}})()%22)))">
∞ Toggle Animation Effects</a>
</html>
*<html><a
class="bookmarklet"
onclick="
window.setFullScreen(!config.options.chkFullScreen); // toggle setting
this.innerHTML=!config.options.chkFullScreen?'◊ - Toggle fullscreen ON':'◊ - Toggle fullscreen OFF'; // set command text
return false;"
onmouseover="
this.href='javascript:void(eval(decodeURIComponent(%22(function(){try{('
+encodeURIComponent(encodeURIComponent(this.onclick))
+')()}catch(e){alert(e.description?e.description:e.toString())}})()%22)))';"
title="FULLSCREEN: toggle sidebars and page header"
href="javascript:void(eval(decodeURIComponent(%22(function(){try{(function%2520onclick(event)%2520%257B%250A%250A%2509window.setFullScreen(!config.options.chkFullScreen)%253B%2520%252F%252F%2520toggle%2520setting%250A%2509this.innerHTML%253D!config.options.chkFullScreen%253F'%25E2%2597%258A%2520-%2520Toggle%2520fullscreen%2520ON'%253A'%25E2%2597%258A%2520-%2520Toggle%2520fullscreen%2520OFF'%253B%2520%252F%252F%2520set%2520command%2520text%250A%2509return%2520false%253B%250A%250A%257D)()}catch(e){alert(e.description?e.description:e.toString())}})()%22)))">
◊ Toggle Fullscreen ON</a>
</html>
*<html><a
class="bookmarklet"
onclick="
config.options.chkHideTiddlerTitles=!config.options.chkHideTiddlerTitles;
var show=config.options.chkHideTiddlerTitles?'none':'block';
setStylesheet('.tiddler .title, .tiddler .subtitle { display:'+show+'; }','toggleTiddlerTitles')"
title="show/hide tiddler titles"
href="javascript:;">
T Toggle Tiddler Titles</a>
</html>
*<html><a
class="bookmarklet"
onclick="
config.options.chkHideTiddlerTags=!config.options.chkHideTiddlerTags;
var show=config.options.chkHideTiddlerTags?'none':'block';
setStylesheet('.tiddler .tagged { display:'+show+'; }','toggleTiddlerTags');"
title="show/hide tiddler tags"
href="javascript:;">
# Toggle Tiddler Tags</a>
</html>
*<html><a
class="bookmarklet"
onclick="
story.closeAllTiddlers(); restart(); refreshPageTemplate();
return false;" onmouseover="
this.href='javascript:void(eval(decodeURIComponent(%22(function(){try{('
+encodeURIComponent(encodeURIComponent(this.onclick))
+')()}catch(e){alert(e.description?e.description:e.toString())}})()%22)))';"
title="Restart initial page content WITHOUT RELOADING!"
href="javascript:;">
⌂ Home</a>
</html>
*<html><a
class="bookmarklet"
onclick="
story.forEachTiddler(function(t,e){story.refreshTiddler(t,null,true)});
refreshDisplay();
return false;" onmouseover="
this.href='javascript:void(eval(decodeURIComponent(%22(function(){try{('
+encodeURIComponent(encodeURIComponent(this.onclick))
+')()}catch(e){alert(e.description?e.description:e.toString())}})()%22)))';"
title="Redisplay current page content WITHOUT RESTARTING!"
href="javascript:void(eval(decodeURIComponent(%22(function(){try{(function%2520onclick(event)%2520%257B%250A%250A%2509story.forEachTiddler(function(t%252Ce)%257Bstory.refreshTiddler(t%252Cnull%252Ctrue)%257D)%253B%250A%2509refreshDisplay()%253B%250A%2520%2509return%2520false%253B%250A%257D)()}catch(e){alert(e.description?e.description:e.toString())}})()%22)))">
≈ Refresh Current Display</a>
</html>
*<html><a
class="bookmarklet"
onclick="
if(typeof version==undefined||version.title!='TiddlyWiki')
{alert(document.location.href+'\n\nis not a TiddlyWiki document');return false;}
var ver=version.major+'.'+version.minor+'.'+version.revision;
var tids=window.store.getTiddlers('modified').reverse();
var plugins=window.store.getTaggedTiddlers('systemConfig','modified').reverse();
var msg='TiddlyWiki version: '+ver
+'\nDocument modified: '+document.lastModified
+'\nLast tiddler changed: '+tids[0].title
+'\n\nThere are a total of '+tids.length+' tiddlers,'
+' including '+plugins.length+' plugins:\n\n';
var fmt='YYYY.0MM.0DD 0hh:0mm:0ss'
msg+=plugins.map(function(t){return t.modified.formatString(fmt)+' | '+t.title;}).join('\n');
alert(msg);
return false;" onmouseover="
this.href='javascript:void(eval(decodeURIComponent(%22(function(){try{('
+encodeURIComponent(encodeURIComponent(this.onclick))
+')()}catch(e){alert(e.description?e.description:e.toString())}})()%22)))';"
title="Show TiddlyWiki version, filedate and tiddler summary"
href="javascript:void(eval(decodeURIComponent(%22(function(){try{(function%2520onclick(event)%2520%257B%250A%250A%2509if(typeof%2520version%253D%253Dundefined%257C%257Cversion.title!%253D'TiddlyWiki')%250A%2509%2509%257Balert(document.location.href%252B'%255Cn%255Cnis%2520not%2520a%2520TiddlyWiki%2520document')%253Breturn%2520false%253B%257D%250A%2509var%2520ver%253Dversion.major%252B'.'%252Bversion.minor%252B'.'%252Bversion.revision%253B%250A%2509var%2520tids%253Dwindow.store.getTiddlers('modified').reverse()%253B%250A%2509var%2520plugins%253Dwindow.store.getTaggedTiddlers('systemConfig'%252C'modified').reverse()%253B%250A%2509var%2520msg%253D'TiddlyWiki%2520version%253A%2520'%252Bver%250A%2509%2509%252B'%255CnDocument%2520modified%253A%2520'%252Bdocument.lastModified%250A%2509%2509%252B'%255CnLast%2520tiddler%2520changed%253A%2520'%252Btids%255B0%255D.title%250A%2509%2509%252B'%255Cn%255CnThere%2520are%2520a%2520total%2520of%2520'%252Btids.length%252B'%2520tiddlers%252C'%250A%2509%2509%252B'%2520including%2520'%252Bplugins.length%252B'%2520plugins%253A%255Cn%255Cn'%253B%250A%2509var%2520fmt%253D'YYYY.0MM.0DD%25200hh%253A0mm%253A0ss'%250A%2509msg%252B%253Dplugins.map(function(t)%257Breturn%2520t.modified.formatString(fmt)%252B'%2520%257C%2520'%252Bt.title%253B%257D).join('%255Cn')%253B%250A%2509alert(msg)%253B%250A%2520%2509return%2520false%253B%250A%250A%257D)()}catch(e){alert(e.description?e.description:e.toString())}})()%22)))">
[i] Show TiddlyWiki Document Info</a>
</html>
*<html><a
class="bookmarklet"
onclick="
// if removeCookie() function is not defined by TW core, define it here.
if (window.removeCookie===undefined) {
window.removeCookie=function(name) {
document.cookie = name+'=; expires=Thu, 01-Jan-1970 00:00:01 UTC; path=/;';
}
}
var opts=new Array(); var p=document.cookie.split('; ');
for (var i=0;i<p.length;i++){
var c=p[i]; var v=''; var pos=p[i].indexOf('=');
if (pos!=-1) { c=p[i].substr(0,pos); v=unescape(p[i].slice(pos+1)); }
if (config.options[c]!==undefined) opts.push(c);
} opts.sort();
var msg='There are '+opts.length+' option cookies:\n\n'+opts.join(', ');
msg+='\n\nPress OK to proceed, or press CANCEL to keep options unchanged';
if (!confirm(msg)) return false;
var msg='OK: reset all options at once, CANCEL: confirm each option, one at a time';
var quiet=confirm(msg);
for (var i=0;i<opts.length;i++)
if (quiet || confirm('Press OK to reset option: '+opts[i]))
removeCookie(opts[i]);
return false;" onmouseover="
this.href='javascript:void(eval(decodeURIComponent(%22(function(){try{('
+encodeURIComponent(encodeURIComponent(this.onclick))
+')()}catch(e){alert(e.description?e.description:e.toString())}})()%22)))';"
title="Clear all TiddlyWiki options stored in browser cookies (w/confirmation)"
href="javascript:;">
∗ Reset All Cookie Options</a>
</html>
*<html><a
class="bookmarklet"
onclick="
var msg='Are you sure you want to remove the change counters from these tiddlers:\n\n';
var t=store.getTiddlers('title'); var tids=[];
for (var i=0;i<t.length;i++) {
var v=store.getValue(t[i],'changecount');
if (v) { msg+=t[i].title+' ('+v+')\n'; tids.push(t[i]); }
}
msg+='\nPress OK to proceed';
if (!confirm(msg)) return false;
for (var i=0;i<tids.length;i++) tids[i].clearChangeCount();
displayMessage('Change counters have been reset to 0');
displayMessage('Don\'t forget to save your document!');
return false;"
onmouseover="
this.href='javascript:void(eval(decodeURIComponent(%22(function(){try{('
+encodeURIComponent(encodeURIComponent(this.onclick))
+')()}catch(e){alert(e.description?e.description:e.toString())}})()%22)))';"
title="remove change counters from all tiddlers in this document"
href="javascript:void(eval(decodeURIComponent(%22(function(){try{(function%2520onclick(event)%2520%257B%250A%250A%2509var%2520msg%253D'Are%2520you%2520sure%2520you%2520want%2520to%2520remove%2520the%2520change%2520counters%2520from%2520these%2520tiddlers%253A%255Cn%255Cn'%253B%250A%2509var%2520t%253Dstore.getTiddlers('title')%253B%2520var%2520tids%253D%255B%255D%253B%250A%2509for%2520(var%2520i%253D0%253Bi%253Ct.length%253Bi%252B%252B)%2520%257B%250A%2509%2509var%2520v%253Dstore.getValue(t%255Bi%255D%252C'changecount')%253B%250A%2509%2509if%2520(v)%2520%257B%2520msg%252B%253Dt%255Bi%255D.title%252B'%2520('%252Bv%252B')%255Cn'%253B%2520tids.push(t%255Bi%255D)%253B%2520%257D%250A%2509%257D%250A%2509msg%252B%253D'%255CnPress%2520OK%2520to%2520proceed'%253B%250A%2509if%2520(!confirm(msg))%2520return%2520false%253B%250A%2509for%2520(var%2520i%253D0%253Bi%253Ctids.length%253Bi%252B%252B)%2520tids%255Bi%255D.clearChangeCount()%253B%250A%2509displayMessage('Change%2520counters%2520have%2520been%2520reset%2520to%25200')%253B%250A%2509displayMessage('Don%255C't%2520forget%2520to%2520save%2520your%2520document!')%253B%250A%2509return%2520false%253B%250A%250A%257D)()}catch(e){alert(e.description?e.description:e.toString())}})()%22)))">
∅ Reset Tiddler Change Counters</a>
</html>
*<html><a
class="bookmarklet"
onclick="
if(typeof version==undefined||version.title!='TiddlyWiki')
{alert(document.location.href+'\n\nis not a TiddlyWiki document');return false;}
window.saveToClipboard=function(success,params,txt,url,xhr) {
function copy(out) {
if(window.Components) { // FIREFOX
netscape.security.PrivilegeManager.enablePrivilege('UniversalXPConnect');
var id='@mozilla.org/widget/clipboardhelper;1';
var clip=Components.classes[id].getService(Components.interfaces.nsIClipboardHelper);
clip.copyString(out);
} else if(window.clipboardData) { // IE
window.clipboardData.setData('text',out);
} else if(document.execCommand) { // CHROME, SAFARI, IE6
var ta=document.createElement('textarea');
ta.style.position='absolute';
ta.style.left='-100%';
document.body.appendChild(ta);
ta.value=out; ta.select();
document.execCommand('Copy',false,null);
document.body.removeChild(ta);
} else throw('cannot access clipboard');
}
var pos=locateStoreArea(txt||'');
if(success&&pos) {
displayMessage(txt.length+' bytes read, adding new/revised tiddlers...');
var out=updateOriginal(txt,pos,url);
} else {
if (!confirm('cannot load source file.\ncopy tiddler \x22store area\x22 only?')) return;
var pre='<!--POST-SHADOWAREA-->\n<div id=\x22storeArea\x22>\n';
var post='</div>/n<!--POST-STOREAREA-->\n';
var out=pre+store.allTiddlersAsHtml()+post;
}
var msg=out.length+' bytes copied to ';
try { copy(out); msg+='clipboard'; }
catch(e) { // FALLBACK
alert('Sorry, direct clipboard access is not currently available.\n\n'
+'The output will be displayed in another browser tab/window.\n'
+'Select the entire text there and copy/paste into a local file');
var t='<html><body><pre>'+out.htmlEncode()+'</pre></body></'+'html>';
var w=window.open(); var d=w.document; d.open(); d.write(t); d.close();
msg+='another tab/window';
}
displayMessage(msg);
}
var url=document.location.href;
clearMessage(); displayMessage('loading TiddlyWiki code from'); displayMessage(url);
if (document.location.protocol!='file:') loadRemoteFile(url, window.saveToClipboard);
else window.saveToClipboard(true,null,loadOriginal(getLocalPath(url)),url,null);
return false;"
onmouseover="
this.href='javascript:void(eval(decodeURIComponent(%22(function(){try{('
+encodeURIComponent(encodeURIComponent(this.onclick))
+')()}catch(e){alert(e.description?e.description:e.toString())}})()%22)))';"
title="save current document to clipboard"
href="javascript:void(eval(decodeURIComponent(%22(function(){try{(function%2520onclick(event)%2520%257B%250A%250A%2509if(typeof%2520version%253D%253Dundefined%257C%257Cversion.title!%253D'TiddlyWiki')%250A%2509%2509%257Balert(document.location.href%252B'%255Cn%255Cnis%2520not%2520a%2520TiddlyWiki%2520document')%253Breturn%2520false%253B%257D%250A%250A%2509window.saveToClipboard%253Dfunction(success%252Cparams%252Ctxt%252Curl%252Cxhr)%2520%257B%250A%2509%2509function%2520copy(out)%2520%257B%250A%2509%2509%2509if(window.Components)%2520%257B%2520%252F%252F%2520FIREFOX%250A%2509%2509%2509%2509netscape.security.PrivilegeManager.enablePrivilege('UniversalXPConnect')%253B%250A%2509%2509%2509%2509var%2520id%253D'%2540mozilla.org%252Fwidget%252Fclipboardhelper%253B1'%253B%250A%2509%2509%2509%2509var%2520clip%253DComponents.classes%255Bid%255D.getService(Components.interfaces.nsIClipboardHelper)%253B%250A%2509%2509%2509%2509clip.copyString(out)%253B%250A%2509%2509%2509%257D%2520else%2520if(window.clipboardData)%2520%257B%2520%252F%252F%2520IE%250A%2509%2509%2509%2509window.clipboardData.setData('text'%252Cout)%253B%250A%2509%2509%2509%257D%2520else%2520if(document.execCommand)%2520%257B%2520%252F%252F%2520CHROME%252C%2520SAFARI%252C%2520IE6%250A%2509%2509%2509%2509var%2520ta%253Ddocument.createElement('textarea')%253B%250A%2509%2509%2509%2509ta.style.position%253D'absolute'%253B%250A%2509%2509%2509%2509ta.style.left%253D'-100%2525'%253B%250A%2509%2509%2509%2509document.body.appendChild(ta)%253B%250A%2509%2509%2509%2509ta.value%253Dout%253B%2520ta.select()%253B%250A%2509%2509%2509%2509document.execCommand('Copy'%252Cfalse%252Cnull)%253B%250A%2509%2509%2509%2509document.body.removeChild(ta)%253B%250A%2509%2509%2509%257D%2520else%2520throw('cannot%2520access%2520clipboard')%253B%250A%2509%2509%257D%250A%2509%2509var%2520pos%253DlocateStoreArea(txt%257C%257C'')%253B%250A%2509%2509if(success%2526%2526pos)%2520%257B%250A%2509%2509%2509displayMessage(txt.length%252B'%2520bytes%2520read%252C%2520adding%2520new%252Frevised%2520tiddlers...')%253B%250A%2509%2509%2509var%2520out%253DupdateOriginal(txt%252Cpos%252Curl)%253B%250A%2509%2509%257D%2520else%2520%257B%250A%2509%2509%2509if%2520(!confirm('cannot%2520load%2520source%2520file.%255Cncopy%2520tiddler%2520%255Cx22store%2520area%255Cx22%2520only%253F'))%2520return%253B%250A%2509%2509%2509var%2520pre%253D'%253C!--POST-SHADOWAREA--%253E%255Cn%253Cdiv%2520id%253D%255Cx22storeArea%255Cx22%253E%255Cn'%253B%250A%2509%2509%2509var%2520post%253D'%253C%252Fdiv%253E%252Fn%253C!--POST-STOREAREA--%253E%255Cn'%253B%250A%2509%2509%2509var%2520out%253Dpre%252Bstore.allTiddlersAsHtml()%252Bpost%253B%250A%2509%2509%257D%250A%2509%2509var%2520msg%253Dout.length%252B'%2520bytes%2520copied%2520to%2520'%253B%250A%2509%2509try%2509%2520%257B%2520copy(out)%253B%2520msg%252B%253D'clipboard'%253B%2520%257D%250A%2509%2509catch(e)%2520%257B%2520%252F%252F%2520FALLBACK%250A%2509%2509%2509alert('Sorry%252C%2520direct%2520clipboard%2520access%2520is%2520not%2520currently%2520available.%255Cn%255Cn'%250A%2509%2509%2509%2509%252B'The%2520output%2520will%2520be%2520displayed%2520in%2520another%2520browser%2520tab%252Fwindow.%255Cn'%250A%2509%2509%2509%2509%252B'Select%2520the%2520entire%2520text%2520there%2520and%2520copy%252Fpaste%2520into%2520a%2520local%2520file')%253B%250A%2509%2509%2509var%2520t%253D'%253Chtml%253E%253Cbody%253E%253Cpre%253E'%252Bout.htmlEncode()%252B'%253C%252Fpre%253E%253C%252Fbody%253E%253C%252F'%252B'html%253E'%253B%250A%2509%2509%2509var%2520w%253Dwindow.open()%253B%2520var%2520d%253Dw.document%253B%2520d.open()%253B%2520d.write(t)%253B%2520d.close()%253B%250A%2509%2509%2509msg%252B%253D'another%2520tab%252Fwindow'%253B%250A%2509%2509%257D%250A%2509%2509displayMessage(msg)%253B%250A%2509%257D%250A%2509var%2520url%253Ddocument.location.href%253B%250A%2509clearMessage()%253B%2520displayMessage('loading%2520TiddlyWiki%2520code%2520from')%253B%2520displayMessage(url)%253B%250A%2509if%2520(document.location.protocol!%253D'file%253A')%2520loadRemoteFile(url%252C%2520window.saveToClipboard)%253B%250A%2509else%2520window.saveToClipboard(true%252Cnull%252CloadOriginal(getLocalPath(url))%252Curl%252Cnull)%253B%250A%2520%2509return%2520false%253B%250A%250A%257D)()}catch(e){alert(e.description?e.description:e.toString())}})()%22)))">
∑ Save Current StoreArea Contents To Clipboard</a>
</html>
!!!"""Bookmarklets For Editing"""
;<html><a
class="bookmarklet"
href="javascript:(function(){if(window.version&&window.version.title=='TiddlyWiki'){readOnly=false;if(window.backstage){if(!backstage.button)backstage.init();backstage.show();}config.options.chkAnimate=false;refreshDisplay();}})()">
EnableEdit</a>
</html> -- by [[Saq Imtiaz|http://goo.gl/dGDPf]]
:enables editing for an online TiddlyWiki without the need to reload while also disabling animations, and enabling the backstage area
;<html><a
class="bookmarklet"
href="javascript:(function(){if(window.version&&window.version.title=='TiddlyWiki'){var g=prompt('Enter the desired user name',config.options.txtUserName);var t=store.getTiddlers();store.suspendNotifications();for(var i=0;i<t.length;i++)t[i].modifier=g;store.resumeNotifications();story.refreshAllTiddlers();}})()">
SetUserName</a>
</html> -- by [[Saq Imtiaz|http://goo.gl/dGDPf]]
:changes the ''modifier'' field for all tiddlers to the specified value
;<html><a
class="bookmarklet"
href="javascript:(function(){if(window.version&&window.version.title=='TiddlyWiki'){var oldTag=prompt('Enter the tag to rename','oldTag');var newTag=prompt('Rename tag '+oldTag+' to:','newTag');var t=store.getTaggedTiddlers(oldTag);store.suspendNotifications();for(var i=0;i<t.length;i++){t[i].tags.remove(oldTag);t[i].tags.pushUnique(newTag);}store.resumeNotifications();refreshDisplay();}})()">
RenameTag</a>
</html> -- by [[Saq Imtiaz|http://goo.gl/dGDPf]]
:renames all occurrences of a specified tag
;<html><a
class="bookmarklet"
href="javascript:void(eval(decodeURIComponent("(function()%257B%250A%2509if(window.version%2520%2526%2526%2520window.version.title%2520%253D%253D%2520'TiddlyWiki')%257B%250A%2509%2509var%2520tag%2520%253D%2520prompt('Delete%2520tiddlers%2520with%2520the%2520tag%253A'%252C'')%253B%250A%2509%2509store.suspendNotifications()%253B%250A%2509%2509var%2520t%2520%253D%2520store.getTaggedTiddlers(tag)%253B%250A%2509%2509for(var%2520i%253D0%253Bi%253Ct.length%253Bi%252B%252B)%250A%2509%2509%2509store.removeTiddler(t%255Bi%255D.title)%253B%250A%2509%2509store.resumeNotifications()%253B%250A%2509%2509refreshDisplay()%253B%2509%2509%250A%2509%257D%250A%257D)()")))">
DeleteAllTagged</a>
</html> -- by [[Saq Imtiaz|http://goo.gl/dGDPf]]
:deletes all tiddlers with a specified tag
;<html><a
class="bookmarklet"
href="javascript:void(eval(decodeURIComponent("(function()%257Bif(window.version%2526%2526window.version.title%253D%253D'TiddlyWiki')%257Bvar%2520shadow%253Dprompt('View%2520the%2520shadow%2520tiddler%2520called%253A')%253Bvar%2520w%253Dwindow.open()%253Bw.document.open()%253Bw.document.write('%253Chtml%253E%253Cbody%253E')%253Bw.document.write('%253Cpre%253E'%252Bconfig.shadowTiddlers%255Bshadow%255D.htmlEncode()%252B'%253C%252Fpre%253E')%253Bw.document.write('%253C%252Fbody%253E%253C%252Fhtml%253E')%253Bw.document.close()%253B%257D%257D)()")))">
ViewShadow</a>
</html> -- by [[Saq Imtiaz|http://goo.gl/dGDPf]]
:displays the default contents of a shadow tiddler
!!!"""Bookmarklets For Rescue And Maintenance"""
;<html><a
class="bookmarklet"
href="javascript:(function(){if(window.version&&window.version.title=='TiddlyWiki'){for(var n in config.shadowTiddlers){store.suspendNotifications();store.removeTiddler(n);store.resumeNotifications();refreshAll();}}})()">
NukeShadows</a>
</html> -- by [[Saq Imtiaz|http://goo.gl/dGDPf]] / aka '"""Scrub Shadow Tiddlers"""' by [[Jeremy Ruston|http://tiddlywiki.com/#TiddlyBookmarklets]]
:restores all shadow tiddlers to their default values; handy when you’ve gone mad with PageTemplate customisations and your TiddlyWiki document won’t display properly
;<html><a
class="bookmarklet"
href="javascript:(function(){if(window.version&&window.version.title=='TiddlyWiki'){window.location.hash='start:safe';window.location.reload(true);}})()">
SafeMode</a>
</html> -- by [[Saq Imtiaz|http://goo.gl/dGDPf]]
:reloads the current document in safe mode
;<html><a
class="bookmarklet"
href="javascript:(function(){if(window.version&&window.version.title=='TiddlyWiki'){window.location.hash='start:safe';window.location.reload(true);for(var n in config.shadowTiddlers){store.suspendNotifications();store.removeTiddler(n);store.resumeNotifications();refreshAll();}}})()">
SuperSafeMode</a>
</html> -- by [[Saq Imtiaz|http://goo.gl/dGDPf]]
:reloads the current document in safe mode and resets all shadow tiddlers, see ''NukeShadows''
;<html><a
class="bookmarklet"
href="javascript:void(eval(decodeURIComponent("(function()%257BC%253Ddocument.cookie.split(%2522%253B%2520%2522)%253Bfor(d%253D%2522.%2522%252Blocation.host%253Bd%253Bd%253D(%2522%2522%252Bd).substr(1).match(%252F%255C..*%2524%252F))for(sl%253D0%253Bsl%253C2%253B%252B%252Bsl)for(p%253D%2522%252F%2522%252Blocation.pathname%253Bp%253Bp%253Dp.substring(0%252Cp.lastIndexOf('%252F')))for(i%2520in%2520C)if(c%253DC%255Bi%255D)%257Bdocument.cookie%253Dc%252B%2522%253B%2520domain%253D%2522%252Bd.slice(sl)%252B%2522%253B%2520path%253D%2522%252Bp.slice(1)%252B%2522%252F%2522%252B%2522%253B%2520expires%253D%2522%252Bnew%2520Date((new%2520Date).getTime()-1e11).toGMTString()%257D%257D)()%250A")))">
NukeAllCookies</a>
</html> -- by [[Saq Imtiaz|http://goo.gl/dGDPf]]
:deletes all cookies for the current document
;<html><a
class="bookmarklet"
href="javascript:(function(){if(window.version&&window.version.title=='TiddlyWiki'){store.forEachTiddler(function(title,tiddler){tiddler.fields={};});refreshDisplay();}})()">
ScrubTiddlerFields</a>
</html>-- by [[Jeremy Ruston|http://tiddlywiki.com/#TiddlyBookmarklets]]
:deletes all extended fields from a TiddlyWiki
!!!"""Miscellaneous Bookmarklets"""
;<html><a
class="bookmarklet"
href="javascript:(function(){if(window.version&&window.version.title=='TiddlyWiki'){alert('TiddlyWiki version: '+version.major+'.'+version.minor+'.'+version.revision+(version.beta?' (beta '+version.beta+')':'')+'\nLast modified: '+document.lastModified);}})()">
TiddlyInfo</a>
</html> -- by [[Saq Imtiaz|http://goo.gl/dGDPf]]
:displays the current document’s version number and """last-modified""" date
;<html><a
class="bookmarklet"
href="javascript:void(eval(decodeURIComponent("(function()%257Bif(window.version%2526%2526window.version.title%253D%253D'TiddlyWiki')%257Bvar%2520w%253Dwindow.open()%253Bw.document.open()%253Bw.document.write('%253Chtml%253E%253Cbody%253E%253Cpre%253E')%253Bw.document.write(store.allTiddlersAsHtml().htmlEncode())%253Bw.document.write('%253C%252Fpre%253E%253C%252Fbody%253E%253C%252Fhtml%253E')%253Bw.document.close()%253B%257D%257D)()")))">
RescueRawTWContent</a>
</html> -- by [[Jeremy Ruston|http://jermolene.wordpress.com/2007/05/05/tiddlybookmarklets11111111]]
:opens a new window containing the raw content of the current document
;<html><a
class="bookmarklet"
href="javascript:void(eval(decodeURIComponent("(function()%257Bif(window.version%2526%2526window.version.title%253D%253D'TiddlyWiki')%257Bvar%2520title%253Dprompt('Tiddler%2520to%2520view%2520as%2520html%253A')%253Bvar%2520t%253Dstore.getTiddler(title)%253Bvar%2520stat%253DwikifyStatic(t.text%252Cnull%252Ct)%253Bvar%2520w%253Dwindow.open()%253Bw.document.open()%253Bw.document.write('%253Chtml%253E%253Cbody%253E')%253Bw.document.write('%253Cpre%253E'%252Bstat.htmlEncode()%252B'%253C%252Fpre%253E')%253Bw.document.write('%253C%252Fbody%253E%253C%252Fhtml%253E')%253Bw.document.close()%253B%257D%257D)()")))">
ViewTiddlerAsHtml</a>
</html> -- by [[Saq Imtiaz|http://goo.gl/dGDPf]]
:displays a tiddler as raw HTML
;<html><a
class="bookmarklet"
href="javascript:void(eval(decodeURIComponent("%250A%2509if(window.version%2520%2526%2526%2520window.version.title%2520%253D%253D%2520'TiddlyWiki')%257B%250A%2509%2509var%2520title%2520%253D%2520prompt('Tiddler%2520to%2520view%2520as%2520JavaScript%2520string%253A')%253B%250A%2509%2509var%2520text%2520%253D%2520store.getTiddlerText(title).replace(%252F%2522%252Fg%252C'%255C%255C%2522').split(%2522%255Cn%2522).join('%255C%255Cn%2522%252B%255Cn%2520%2522')%253B%250A%2509%2509var%2520w%253Dwindow.open()%253B%250A%2509%2509w.document.open()%253B%250A%2509%2509w.document.write('%253Chtml%253E%253Cbody%253E')%253B%250A%2509%2509w.document.write('%253Cpre%253E'%252Btext.htmlEncode()%252B'%253C%252Fpre%253E')%253B%250A%2509%2509w.document.write('%253C%252Fbody%253E%253C%252Fhtml%253E')%253B%250A%2509%2509w.document.close()%253B%2509%2509%250A%2509%257D")))">
ViewTiddlerAsJs</a>
</html> -- by [[Saq Imtiaz|http://goo.gl/dGDPf]]
:displays a tiddler as a JavaScript string, e.g. for developers to use as shadow tiddler
;<html>
<a
class="bookmarklet"
href="javascript:(function(){
if (window.version && window.version.title == 'TiddlyWiki') {
var t = 'Plugins used:\n';
var p = store.getTaggedTiddlers('systemConfig');
for (var i = 0; i < p.length; i++) {
var n = store.getTiddlerSlice(p[i].title, 'Name');
var u = store.getTiddlerSlice(p[i].title, 'Source');
t += (n ? n : p[i].title) + (u ? ' - ' + u : '') + ' ' + p[i].text.length / 1024 + 'kb' + '\n';
}
var w = window.open();
var d = w.document;
d.open();
d.write('<html><body>');
d.write('<pre>' + t.htmlEncode() + '</pre>');
d.write('</body></'+'html>');
d.close();
}
})()">
ExportPluginList</a>
</html> -- by [[Saq Imtiaz|http://goo.gl/dGDPf]]
:exports a list of plugins installed in the current document
The ToolbarCommands shadow tiddler allows you to configure the [[commands|ToolbarCommands...]] by default displayed in a toolbar in the upper right area of a tiddler allowing you to inspect and interact with a tiddler.
<<<
[[ToolbarCommands]]
<<tiddler ToolbarCommands>>
<<<
Both the TiddlyWiki and the TiddlySpace core provide a number of commands, others are provided by plugins.
!Command Prefixes
A toolbar command can have the following prefixes...
|!Prefix|!Description|h
| {{{-}}} |invoked when the ESC key is pressed whilst in a text input field;<br>by default used to cancel the editing of a tiddler in EditMode|
| {{{+}}} |it will be invoked when you double-click on a tiddler;<br>by default used with the editTiddler command in ViewMode to trigger EditMode|
If you don't want to use either functionality, remove the prefixes and use the toolbar commands normally.
<<<
''Caution:''
When using these prefixes, make sure you fully understand what will happen, e.g. putting {{{+}}} before the {{{deleteTiddler}}} command will delete a tiddler every time you double click on it
<<<
!Expanding and Collapsing
The toolbar can be partially collapsed. Use the separators {{{<}}} and {{{>}}} to specify where exactly the {{button{more »}}} and {{button{« less}}} buttons will be rendered in order to expand and collapse the toolbar into its full state.
<<<
In TiddlySpace, instead of expanding and collapsing the toolbar a button is used providing you with a popup of those commands that are by default hidden.
<<<
!Command Reference
The following provides a list of toolbar commands made available by the TiddlyWiki or TiddlySpace core or certain plugins...
|!Command|!Description|>|!Available In|!Provided By|
|~|~|!ViewMode|!EditMode|~|
|>|>|>|>|!TiddlyWiki Core Commands|
|{{{cancelTiddler}}}|Leaves EditMode without saving changes| / | Default | TiddlyWiki Core |
|{{{closeTiddler}}}|Closes this tiddler| Default | Optional |TiddlyWiki Core |
|{{{closeOthers}}}|Closes all other tiddlers except this one| Default | Optional | TiddlyWiki Core |
|{{{deleteTiddler}}}|Deletes the current tiddler| Optional | Default |TiddlyWiki Core |
|{{{editTiddler}}}|Opens the tiddler in [[EditMode]]| Default | / |TiddlyWiki Core |
|{{{fields}}}|Opens a field viewer popup listing all tiddler fields| Default | Optional |TiddlyWiki Core |
|{{{jump}}}|Opens a popup that allows to jump to any of the open tiddlers| Default | Optional |TiddlyWiki Core |
|{{{permalink}}}|Sets the browsers address bar to provide a reference opening the current tiddler on startup| Default | Optional |TiddlyWiki Core |
|{{{references}}}|Shows the references of a tiddler in terms of other Tiddlers linking to the current one| Default | Optional |TiddlyWiki Core |
|{{{refreshTiddler}}}|Refreshes the display of the current tiddler| Default | / |TiddlyWiki Core |
|{{{saveTiddler}}}|Saves the current tiddler and leaves edit mode| / | Default |TiddlyWiki Core |
|>|>|>|>|!TiddlySpace Commands|
|{{{changeToPublic}}}|Turns a private tiddler into a public tiddler| Default | / |TiddlySpace Core|
|{{{changeToPrivate}}}|Turns a public tiddler into a private tiddler| Default | / |TiddlySpace Core|
|{{{revisions}}}|Shows the edit history as revisions of a tiddler| Default | / |TiddlySpace Core|
|{{{saveDraft}}}|Saves the current edit as a draft to a tiddler| / | Default |TiddlySpace Core|
|{{{revert}}}|Reverts to this revision of a tiddler|>| only for ~RevisionToolbar |TiddlySpace Core|
|>|>|>|>|!Plugin Commands|
|>|>|>|>|to be done|
!Interactive Delete
Open the tiddler for editing, then click the delete command in te toolbar at the top right of a tiddler.
!~TrashPlugin
Consider installing [[TrashPlugin|http://ido-xp.tiddlyspot.com/#TrashPlugin]] by [[Ido Magal|TrashPlugin|http://ido-xp.tiddlyspot.com/#TrashPlugin]] which allow to undo a deletion. Empty the trash regularly since you cannot reuse a tiddler name before it's finally deleted.
!Deleting Tiddler That Is Tag
Consider installing [[RenameTagsPlugin|http://mptw.tiddlyspot.com/#RenameTagsPlugin]] from [[Simon Baird|http://monkeygtd.blogspot.com]]. It will prompt you whether or no you will also "Remove tag from N tiddlers?".
!Batch Delete
Deleting multiple tiddlers can be greatly simplified using either [[TiddlerTweakerPlugin|http://www.TiddlyTools.com/#TiddlerTweakerPlugin]] or [[ExportTiddlersPlugin|http://www.TiddlyTools.com/#ExportTiddlersPlugin]] by [[Eric Shulman|http://www.TiddlyTools.com]] or the [[Bookmarklet]] [[DelleteAllTagged]], a small piece of JavaScript code, that can be saved and run as a bookmark.
''Source'': [[google discussion group|http://groups.google.com/group/tiddlywiki/browse_thread/thread/a8922becd1f29938]] (Måns Mårtensson)
!Description
The following [[script|Scripts]] allows to convert lists to WikiLinks.
!Code
{{{
<script label="L2W" title="convert list to wikilinks">
var here=story.findContainingTiddler(place);
if (!here) return;
var title=here.getAttribute("tiddler");
var tid=store.getTiddler(title);
var t=store.getTiddlerText(tiddler.title) ;
var target = store.getTiddler(tiddler.title) ;
var txt='[['+tid.text.split('\n').join(']]\n[[')+']]';
store.saveTiddler
(tid.title,tid.title,txt,tid.modifier,tid.modified,tid.tags,tid.fields);
</script>
}}}
!Instructions
Paste a line-seperated list into a tiddler then "run" the script on the list to get double bracketed list items.
This section provides an overview of terminology used with TiddlyWiki...
|table100|k
|>| last updated from @glossary on 31, January 2013 |
|width:50%; !TiddlyWiki Terms | !TiddlySpace Terms |
|<<list filter [tag[Glossary]]>><<listfiltr>>|<<list filter "[tag[TiddlySpace Glossary]]">><<listfiltr>>|
/%
@GLOSSARY HAS BEEN UNINCLUDED ON 06.02.2013 FROM THIS SPACE TO HAVE MORE CONCEPTUAL FREEDOM IN @TIDDLYWIKI.
THE FOLLOWING TERMS FORM @GLOSSARY WERE EITHER CHANGED, REMOVED OR IGNORED...
;[[Discoursive]]
:context?!?
;EditTemplate Tiddler
:no references
:too specific
:dead links
;[[Following]]
:replaced by [[Follow]]
;[[glossary]]
:replaced by [[Glossary]]
:and [[TiddlySpace Glossary]]
;[[Including]]
:replaced by [[Include]]
;SiteInfo Tiddler
:replaced with SiteInfo
;[[TiddlySpace Discussion]]
:not a term
:changed to [[Discussion Groups]]
;[[ViewTemplate Tiddler]]:[
:no references
:too specific
:dead links
!END%/
To help contribute at [[TiddlyWiki.org|http://tiddlywiki.org]], please consider...
:» [[TiddlyWiki.org|CC - TiddlyWiki.org]]
:» [[Documentation Sources|CC - Documentation Sources]]
:» [[Stuff That Needs Reviewing|REVIEW]]
:» [[Who Does What?|CC - Who Does What]]
:» [[Deleting Tiddlers|CC - Deleting Tiddlers]]
:» [[Documentation Tools|CC - Documentation Tools]]
:» [[Finally Done|CC - Finally Done]]
Some macros render a button or link which performs a dedicated action when clicked...
<<get ##Description filter:[tag[Button]] format:'!!![[%1]]
<<<
%0
<<<'>>
You can center an element horizontally by wrapping it in a class while applying the css {{{margin: 0 auto}}}.
!Example
The following illustrates two ways for centering tables...
!!!Using a [[class wrapper|CSS Formatting]]
;Output
:{{x{
{{centered{
|table|cell|
}}} }}}
;Markup
:{{x{
<html><pre>
{{centered{
|table|cell|
}}}</pre></html>}}}
;[[StyleSheet...]]
:{{x{
<html><pre>
.viewer .centered table{
margin:0 auto;
}
</pre></html>}}}
!!!Using a [[table class|Tables]]
;Output
:{{x{
|centered|k
|table|cell|
}}}
;Markup
:{{x{
<html><pre>
|centered|k
|table|cell|
</pre></html>}}}
;[[StyleSheet...]]
:{{x{
<html><pre>
.viewer table.centered{
margin:0 auto;
}
</pre></html>}}}
This behaviour requires a plugin to be installed. Install SinglePageModePlugin from http://tiddlytools.com. See [[How do I install a plugin?]] for more info.
/***
|''Name''|ErrorHandlerPlugin|
|''Version''|0.4.3|
|''Author''|Jon Robson|
|''Description''|Localised tiddler save errors including edit conflict resolution.|
|''CoreVersion''|2.6.1|
|''Requires''|TiddlySpaceConfig|
***/
//{{{
(function($) {
var tiddlyspace = config.extensions.tiddlyspace;
var currentSpace = tiddlyspace.currentSpace.name;
tiddlyspace.getLocalTitle = function(title, workspace, suffix) {
var endsWith = config.extensions.BinaryTiddlersPlugin.endsWith;
if(!suffix) {
var isPublic = endsWith(workspace, "_public");
suffix = tiddlyspace.resolveSpaceName(workspace);
if(currentSpace == suffix) {
suffix = isPublic ? "public" : "private";
} else {
suffix = "@%0".format(suffix);
}
}
return "%0 *(%1)*".format(title, suffix);
};
var sssp = config.extensions.ServerSideSavingPlugin;
var msgs = config.messages.editConflict = {
loading: "Loading..",
resolve: "[[Edit Conflict]]@glossary: this tiddler may have been changed by someone else.",
reviewDiff: "review (recommended)",
reviewDiffTooltip: "review changes made to this tiddler",
reviewDiffError: "error retrieving revision.",
save: "overwrite",
saveTooltip: "make this revision the top revision of this tiddler",
discard: "cancel",
discardTooltip: "undo changes to this tiddler and get most recent version",
diffTitle: "%0",
diffFieldTitle: "%0 - fields",
diffTextTitle: "%0 - text",
updating: "updating your version...",
diffHeader: ["Review the changes that have been made whilst you were editing this tiddler. ",
"Fold relevant changes back into your version.\n",
"{{removed{Red}}} highlight shows content removed. ",
"{{added{Green}}} highlight shows content added.\n"].join(""),
diffTextHeader: "View changes in text",
diffFieldsHeader: "View changes in fields"
};
var plugin = config.extensions.errorHandler = {
diffTags: ["excludeLists", "excludeMissing", "excludeSearch"],
displayMessage: function(message, tiddler, context) {
var desc = context && context.httpStatus ? context.statusText :
sssp.locale.connectionError;
var reportArea = plugin.reportError(tiddler.title);
var msg = $("<div />").appendTo(reportArea);
if(message == "saveConflict") {
wikify(msgs.resolve, msg[0]);
var choiceArea = $("<div />").appendTo(reportArea)[0];
plugin.editConflictHandler(choiceArea, tiddler);
} else {
msg.text(sssp.locale[message].format(tiddler.title, desc));
}
},
editConflictHandler: function(container, tiddler) {
var title = tiddler.title;
var myrev = tiddler.fields["server.page.revision"];
// note user now needs to edit, fix problem and save.
// TODO: make sure this gets reset in save callback
store.getTiddler(title).fields["server.page.revision"] = "false";
var diffBtn = createTiddlyButton(container, msgs.reviewDiff, msgs.reviewDiffTooltip, function(ev) {
var title = $(ev.target).data("title");
plugin.displayDiff(ev.target, store.getTiddler(title), myrev);
});
var saveBtn = createTiddlyButton(container, msgs.save, msgs.saveTooltip, function(ev) {
var title = $(ev.target).data("title");
var tid = store.saveTiddler(store.getTiddler(title));
autoSaveChanges(null, [tid]);
});
var ignoreBtn = createTiddlyButton(container, msgs.discard, msgs.discardTooltip, function(ev) {
var title = $(ev.target).text(msgs.updating).data("title");
plugin.resetToServerVersion(store.getTiddler(title));
});
$([diffBtn, ignoreBtn, saveBtn]).data("title", title);
},
getDiffTiddlerTexts: function(diffText) {
var chunks = diffText.split("\n \n");
if(chunks.length < 2) {
return [chunks[0], ""];
} else {
var diffFieldsText = "{{diff{\n%0\n}}}".format(chunks[0]);
diffText = '{{diff{\n%0\n}}}'.format(chunks.splice(1, chunks.length).join("\n"));
return [diffText, diffFieldsText];
}
},
makeDiffTiddler: function(title, diff) {
var newTiddler = new Tiddler(title);
var tags = plugin.diffTags;
newTiddler.text = msgs.loading;
newTiddler.fields.doNotSave = true;
newTiddler.tags = diff ? tags.concat(["diff"]) : tags;
newTiddler = store.saveTiddler(newTiddler);
$.extend(store.getTiddler(title).fields,
config.defaultCustomFields); // allow option to save it
return newTiddler;
},
displayDiff: function(src, tiddler, latestRevision) {
var adaptor = tiddler.getAdaptor();
var title = tiddler.title;
var ts = new Date().formatString("0hh:0mm:0ss");
var suffix = "edit conflict %0".format(ts);
var diffTitle = tiddlyspace.getLocalTitle(msgs.diffTitle.format(title), "", suffix);
var diffTextTitle = tiddlyspace.getLocalTitle(msgs.diffTextTitle.format(title), "", suffix);
var diffFieldsTitle = tiddlyspace.getLocalTitle(msgs.diffFieldTitle.format(title), "", suffix);
plugin.makeDiffTiddler(diffTextTitle, true);
plugin.makeDiffTiddler(diffFieldsTitle, true);
var newTiddler = plugin.makeDiffTiddler(diffTitle, false);
newTiddler.text = ['%0\n<<slider chkViewDiffText "%1" "%2">>\n',
'<<slider chkViewDiffField "%3" "%4">>'].join("").
format(msgs.diffHeader, diffTextTitle, msgs.diffTextHeader,
diffFieldsTitle, msgs.diffFieldsHeader);
store.saveTiddler(newTiddler);
var callback = function(r) {
var text = plugin.getDiffTiddlerTexts(r);
store.getTiddler(diffTextTitle).text = text[0];
store.getTiddler(diffFieldsTitle).text = text[1];
story.refreshTiddler(diffTitle, null, true);
};
var workspace = "bags/%0".format(tiddler.fields["server.bag"]);
ajaxReq({
type: "get",
dataType: "text",
url: "/diff?format=unified&rev1=%0/%1/%2&rev2=%0/%1".format(workspace, title, latestRevision),
success: callback,
error: function() {
displayMessage(msgs.reviewDiffError);
}
});
story.displayTiddler(src, diffTitle);
},
resetToServerVersion: function(tiddler) {
var adaptor = tiddler.getAdaptor();
var ctx = {
host: tiddler.fields["server.host"],
workspace: "bags/" + tiddler.fields["server.bag"]
};
adaptor.getTiddler(tiddler.title, ctx, null, function(context) {
store.saveTiddler(context.tiddler);
story.refreshTiddler(tiddler.title);
store.setDirty(false);
});
},
reportError: function(title) {
var el = story.getTiddler(title);
if(!el) {
el = story.displayTiddler(null, title);
}
return $("<div />").addClass("error annotation").prependTo(el)[0];
}
};
sssp.reportFailure = function(message, tiddler, context) {
config.options.chkViewDiffText = config.options.chkViewDiffText === undefined ?
true : config.options.chkViewDiffText;
config.options.chkViewDiffFields = config.options.chkViewDiffFields || false;
plugin.displayMessage(message, tiddler, context);
};
})(jQuery);
//}}}
ControlView is the mechanism which TiddlySpace employs to prevent the serving of content from other [[spaces|Space]] which would otherwise be available via [[recipes|Recipe]] and [[bags|Bag]] sharing the same TiddlyWeb instance.
Without ControlView, it would be possible to construct a URI to serve content from {{{evilspace}}} which //appeared// to belong to the {{{goodspace}}} domain, e.g.:
<<<
http://goodspace.tiddlyspace.com/recipes/evilspace_public/tiddlers/all_good_is_evil
<<<
/***
|''Name''|ParamParserMacro|
|''Author''|[[Tobias Beer|http://tobibeer.tiddlyspace.com]]|
|''Version''|1.0|
|''Description''|Displays how TiddlyWiki parses macro parameters.|
|''Source''|http://paramparser.tiddlyspace.com#ParamParserMacro|
|''~CoreVersion''|2.6.1|
|''Documentation''|See below...|
''Note:'' Parameter evaluation may be turned off in a TiddlySpace!
!Usage
Use the {{{<<params>>}}} macro with parameters of your choice to see how TiddlyWiki would parse them.
{{{
<<params
foo
[[bar]]
{{'baz'}}
foo:bar
baz:[[mumble]]
bar:'keeper'
bar:"tender"
isTrue:{{!false}}
>>
}}}
<<params
foo
[[bar]]
{{'baz'}}
foo:bar
baz:[[mumble]]
bar:'keeper'
bar:"tender"
isTrue:{{!false}}
>>
!Code
***/
//{{{
(function($){
config.macros.params = {
handler: function(place, macroName, params, wikifier, paramString, tiddler) {
var e, i, iColon, key, px = {},
p = paramString.parseParams('anon',null,true),
e = paramString.checkEval('foo',null,true),
checkEval = /^(\{\{)(.*)(\}\})$/,
out =
"|>|>|>|>|>| !Params Array |\n" +
"| !# | !params[#-1] " +
"|min-width:60px; !type " +
"|min-width:60px; !evaluated? " +
"|min-width:60px; !key "+
"|min-width:60px; !value |\n";
console.log(params);
for(i=0; i< params.length; i++) {
v = params[i];
iColon = v.indexOf(':');
key = p[0]['anon'] && p[0]['anon'].contains(v) ? null : v.substr(0, iColon);
if(key){
if(px[key] == undefined )
px[key] = 0;
else
px[key] = px[key] + 1;
}
out +=
"| " + (i+1) + " |" +
"{{{ " + v + " }}}| " +
(key ? "named" : "simple") + " | " +
(e[i] == 0 ? "no" : ( e[i] == 1 ? "yes" :
"<html>" +
"<a title='Evaluation may have failed because parameter evaluation is disabled, e.g. in TiddlySpace.' " +
"href='http://tiddlywiki.org/#%5B%5BEvaluated%20Parameters%5D%5D' " +
"target='_blank' class='externalLink'>" +
"failed" +
"</a>" +
"</html>"
)) + " |" +
(key ? key : "") + " |" +
(key ? p[0][key][px[key]] : v ) + "|\n";
}
if(!i)out += "|>|>|>|>|>|//empty// |\n";
out +=
"|>|>|>|>|>|! Params parsed using...|\n" +
"|>|>|>|>|>|padding:5px 20px; [[" +
"p = paramString.parseParams('anon', null, true); |" +
"http://tiddlywikidev.tiddlyspace.com/#String.prototype.parseParams()" +
"]] |\n";
i=0;
out +=
"|>|>|>|>|>|!Simple Parameters|\n" +
"|>|>|>|>|>|padding:5px 20px; as stored in array {{{p[0]['anon']}}} |\n";
$.each(p[0], function(key, val){
if(key == 'anon'){
i++;
for (var v=0; v < val.length; v++){
out += "| ''[" + v + "] = ''|>|>|>|>|{{{" + val[v] + "}}}|\n";
}
}
});
if(!i)out += "|>|>|>|>|>|//none// |\n";
i=0;
out +=
"|>|>|>|>|>|!Named Parameters|\n" +
"|>|>|>|>|>|padding:5px 20px; fetched using [[" +
"var fooVal = getParam(p,'foo',''); |" +
"http://tiddlywikidev.tiddlyspace.com/#getParam()" +
"]] |\n";
$.each(p[0], function(key, val){
if(key != 'anon'){
i++;
out += "| ''" + key + " = ''|>|>|>|>|{{{" + getParam(p,key,'') + "}}}";
if( val.length > 1 ) {
out +=
"<br><br>There actually are multiple values for parameter ''" + key + "''!<br>"+
"If you -- as a developer -- want to support this,<br>" +
"do not use {{{" + key + "Val = getParam(p, '" + key + "', '');}}}.<br><br>" +
"Rather retrieve all values using<br>" +
"{{{" + key + "Arr = p[0]['" + key + "'];}}}.<br><br>" +
"Then, access your values like this:"
for (var v=0; v < val.length; v++){
out += "<br>''" + key + "Arr[" + v + "] = ''{{{" + val[v] + "}}}";
}
}
out += "|\n";
}
});
if(!i)out += "|>|>|>|>|>|//none// |\n";
out +="|>|>|>|>|>|!parsed paramString|\n"+
"| ''p = ''|>|>|>|>|" +
"<html><code style='white-space:pre'>" +
JSON.stringify(p, undefined, 2).replace(/\n/mg,"</code><br /><code style='white-space:pre'>") +
"</code></html>|\n";
wikify(out,place);
$('table',place).last().find('td').css('vertical-align','top');
}
};
// Based on parseParams... only purpose is to check if params are evaluated
// Parse a space-separated string of name:value parameters
// The result is an array of objects:
// result[0] = object with a member for each parameter name, value of that member being an array of values
// result[1..n] = one object for each parameter, with 'name' and 'value' members
String.prototype.checkEval = function(defaultName,defaultValue,allowEval,noNames,cascadeDefaults) {
var count=0;
var evaluated=[];
var parseToken = function(match,p) {
var n;
if(match[p]) // Double quoted
n = match[p];
else if(match[p+1]) // Single quoted
n = match[p+1];
else if(match[p+2]) // Double-square-bracket quoted
n = match[p+2];
else if(match[p+3]) // Double-brace quoted
{
try {
n = match[p+3];
if(allowEval && config.evaluateMacroParameters != "none") {
if(config.evaluateMacroParameters == "restricted") {
if(window.restrictedEval) {
n = window.restrictedEval(n);
evaluated.push(1);
}else{
evaluated.push(2);
}
} else {
n = window.eval(n);
evaluated.push(1);
}
}else{
evaluated.push(2);
}
} catch(ex) {
evaluated.push(2);
}
}
else if(match[p+4]) // Unquoted
n = match[p+4];
else if(match[p+5]) // empty quote
n = "";
return n;
};
var r = [{}];
var dblQuote = "(?:\"((?:(?:\\\\\")|[^\"])+)\")";
var sngQuote = "(?:'((?:(?:\\\\\')|[^'])+)')";
var dblSquare = "(?:\\[\\[((?:\\s|\\S)*?)\\]\\])";
var dblBrace = "(?:\\{\\{((?:\\s|\\S)*?)\\}\\})";
var unQuoted = noNames ? "([^\"'\\s]\\S*)" : "([^\"':\\s][^\\s:]*)";
var emptyQuote = "((?:\"\")|(?:''))";
var skipSpace = "(?:\\s*)";
var token = "(?:" + dblQuote + "|" + sngQuote + "|" + dblSquare + "|" + dblBrace + "|" + unQuoted + "|" + emptyQuote + ")";
var re = noNames ? new RegExp(token,"mg") : new RegExp(skipSpace + token + skipSpace + "(?:(\\:)" + skipSpace + token + ")?","mg");
var match;
do {
match = re.exec(this);
if(match) {
var n = parseToken(match,1);
var v = parseToken(match,8);
if(v == null && defaultName) {
v = n;
n = defaultName;
} else if(v == null && defaultValue) {
v = defaultValue;
}
r.push({name:n,value:v});
if(cascadeDefaults) {
defaultName = n;
defaultValue = v;
}
}
if(evaluated.length == count) evaluated.push(0);
count++;
} while(match);
return evaluated;
};
if(window.location.href.indexOf('http://paramparser.tiddlyspace.com') >= 0)
config.evaluateMacroParameters = "full";
})(jQuery);
//}}}
Versions of TiddlyWiki before and including 2.6.3 are known to have an issue with the upgrade function. To upgrade these versions you will need to download an empty latest version of TiddlyWiki and import your content into it using the "import" function in the backstage.
# Download http://www.tiddlywiki.com/empty.zip (the latest TiddlyWiki version is in there).
# Make a copy of empty.html and either place it in the same directory as the TiddlyWiki you want to upgrade or give it the same name of the TiddlyWiki you want to upgrade and place it in a different directory.
# Load your new empty latest version of TiddlyWiki.
# Go to the backstage area and select import.
# Select the TiddlyWiki you want to have upgraded.
# Import everything from the old TiddlyWiki into this new latest version of TiddlyWiki.
# Save your changed TiddlyWiki and reload it.
# Should work.
This is inverse of the normal way of upgrading: instead of upgrading the core of your TiddlyWiki you are adding all the non-core content of your current TiddlyWiki into a new latest core of TiddlyWiki.
Once you have upgraded your TiddlyWiki to version 2.6.4 or later you will be able to upgrade to subsequent versions in the normal manner.
<<tiddler "TiddlyWiki Internals">>
!Best Pracices
;[[Plugin Template]]
:a plugin template -- your's too should look like it before releasing to the general public
;[[Hijacking Functions|Hijacking]]
:replacing core or other functions with custom code...
;[[Parsing Parameters|Macro Parameters]]
:[[ParamParser|ParamParserMacro]] explains how TiddlyWiki evaluates parameters...
;[[Mario's Tips & Videos @HowTo-Plugin-Creation|http://howto-plugin-creation.tiddlyspace.com/]] """///""" [[the youtube playlist|https://www.youtube.com/watch?v=J5tq5xv0FHU&list=PL19F78517CB1EDC08&feature=view_all]] """///""" [[his youtube channel|https://www.youtube.com/user/pmariojo]]
:<<slider chkMariosVids "Dev.Plugins##MARIO" "Click to see the list of videos..." "Click me..."
>>
;[[ShowObject|http://tiddlytools.com/#ShowObject]]
:this transclusion by Eric Shulman allows to display the underlying core code of an object
/%
!MARIO
» [[How to Setup a TiddlyWiki Development Space|http://www.youtube.com/watch?v=J5tq5xv0FHU]]
» [[How TiddlyWiki Plugins Work|http://www.youtube.com/watch?v=XEXIIs16yto]]
» [[How to Debug a Plugin|http://www.youtube.com/watch?v=h3NjTLQXWRc]]
» [[Why Inline Scripts should be Plugins|http://www.youtube.com/watch?v=Hc6IPovgvbo]]
» [[From Inline Script to Plugin|http://www.youtube.com/watch?v=6u7-GdAsukw]]
!END%/
! Code Structure
{{annotation{The samples provided here are merely suggestions, not strictly-enforced regulations.}}}
!! Namespacing
Plugins' functions should be registered in the {{{config.extensions}}} namespace (built in from v2.5):
{{{
config.extensions.SamplePlugin = {
sampleFunction: function() {
/* ... */
}
};
}}}
Similarly, functions specific to a certain macro or toolbar should be attached to the {{{config.macros}}} or {{{config.commands}}} object, respectively:
{{{
config.macros.SampleMacro = {
handler: function(place, macroName, params, wikifier, paramString, tiddler) {
/* ... */
}
};
config.commands.sampleCommand = {
handler: function(event, src, title) {
/* ... */
}
};
}}}
Overview of common TiddlyWiki namespaces:
* {{{config.extensions}}}: [[DevPlugins]]
* {{{config.macros}}}: [[DevMacros]]
* {{{config.commands}}}: [[DevToolbarCommands]]
* {{{config.paramifiers}}}: [[DevParamifiers]]
* {{{config.formatters}}}: [[DevFormatters]]
* {{{config.adaptors}}}: [[DevAdaptors]]
!! Documentation
Well-structured code simplifies readability and maintainability. Commenting is an important part of structuring code.
There are two basic levels of comments:
* block comments ({{{/* [...] */}}})
* inline comments ({{{// [...]}}})
This distinction can be used to create a semantic and visual distinction between headers and annotations:
{{{
/*
** [section]
*/
// [function description]
function foo() {
// [procedure description]
var foo = bar; // [explanatory comment]
}
/* [sub-section] */
function bar() {
var foo = bar;
}
}}}
{{annotation{While CSS only provides syntax for block comments, the same principle can be applied to [[StyleSheets]].}}}
!Extending Core Functionality
Instead of ''overwriting'' core functions, [[hijacking|DevHijacking]] should be used whenever possible to add the desired functionality either before or after invoking the hijacked code (via the {{{apply(this,arguments);}}} method). This allows other plugins relying on these functions to continue to operate.
However, hijacking the function is not always possible, given the nature of the specific core function or the desired changes. In that case, it is important to clearly note in the respective plugin's documentation that installing the plugin may have adverse affects on other plugins installed in the same document.
! Declaring Global Functions
Function statements should be avoided within plugins. Function statements are of the form:
{{{
function foo() {
// ...
}
}}}
Because plugins' code is processed using {{{eval()}}}, certain browsers (e.g. IE7 and Safari 3) leave the function in {{{eval()}}}'s local scope.
The way around this is to use expressions to declare such functions as variables, ideally adding an explicit {{{window}}} prefix:
{{{
window.foo = function() {
// ...
}
}}}
This is especially relevant when overriding core functions that are declared using function statements, such as {{{displayMessage()}}}, event handlers, etc.
!Dependency Handling
While TiddlyWiki recognizes a ''Requires'' slice in plugins, this is only used to determine plugins' loading order and will not result in an error if the respective dependencies are not found in the document.
Strict dependency checking has to be implemented by the respective plugin itself. However, rather than checking for the respective plugin's name, object detection should be employed for maximum flexibility:
{{{
if(!window.foo) { //# "window" only required to prevent ReferenceError if "foo" is a global variable
throw "Missing dependency: Foo";
}
}}}
({{{foo}}} might be a property of TiddlyWiki's ''config'' namespace, e.g {{{config.extensions.SamplePlugin}}}
{{annotation{The {{{pluginInfo.log}}} array can be extended to add a message without stopping execution of the plugin:}}}
{{{
pluginInfo.log.push("lorem ipsum");
}}}
!Creating Aliases
Sometimes variable names can become very long - especially when using namespaces.
A closure (anonymous wrapper function) can be used to create a local scope in which local variables can be used as [[aliases|http://docs.jquery.com/Plugins/Authoring#Custom_Alias]], essentially providing "shortcuts" for accessing variables from the parent scope:
{{{
(function($) { //# set up local scope and jQuery alias
var plugin; //# alias
plugin = config.extensions.SamplePlugin = {
sampleMessage: "lorem ipsum",
sampleFunction: function() {
/* ... */
}
};
displayMessage(plugin.sampleMessage);
plugin.sampleFunction();
})(jQuery); //# end of local scope, passing in jQuery object
}}}
Here {{{$}}} is used as a local alias for {{{jQuery}}}. Similarly, {{{plugin}}} works as an alias for {{{config.extensions.SamplePlugin}}}.
!See also [[Dev:PluginSpecifications|http://oldwiki.tiddlywiki.org/wiki/Dev:Plugin_Specifications]]...
From the [[Glossary|Evaluated Parameter]]...
<<<
<<tiddler "Evaluated Parameter">>
<<<
To achieve this, use double braces{{{ {{code}} }}}to enclose the desired and tested JavaScript code -- the calcualted return value is then pass down to your macro, e.g.: {{{<<someMacro {{code}}>>}}}
!Example
For example, {{{<<tiddler {{ document.location.href }}>>}}} will try to display a tiddler by the same name as the address displayed in your browser address bar, i.e. {{{document.location.href}}} is evaluated via javascript and the result then passed down to the respective macro, in this case the [[tiddler macro|tiddler]].
![[Transclusion]]
Using the [[tiddler macro|tiddler]] with evaluated parameters is a form of [[parametric transclusion|Transclusion]].
!TiddlySpace
Due to security concerns, evaluated parameters are by default disabled on TiddlySpace.
{{alert{Caution!}}} To enable them nontheless, put this into a zzConfig tiddler tagged <<tag systemConfig>> and parameter evaluation for macros — especially the tiddler macro — will be reenabled:
{{{
config.evaluateMacroParameters = "full";
}}}
!Summary
In a standard TiddlyWiki, the MarkupPreHead shadow tiddler contains HTML and is inserted at the beginning of the {{{<head>}}} section of the TiddlyWiki HTML.
!Default Contents
<!--{{{-->
<link rel='alternate' type='application/rss+xml' title='RSS' href='index.xml' />
<!--}}}-->
!Use Cases
tbd
WikiText is a markup language that defines special text markup that must be used in order to produce a desired output, e.g. {{{__underline__}}} eventually being displayed as __underline__. TiddlyWiki uses its own [[TiddlyWiki Markup]] for [[formatting text|Formatting Text]].
For examples see...
<<list filter [tag[Formatting]]>>
!!Also see
;@WikiText
:a dedicated space for explaining [[TiddlyWiki Markup]]
Use the [[version macro|version]]:
{{{<<version>>}}}
<<version>>
!Feeling Adventurous?
You can also open the source code of your TiddlyWiki. Near the top is a section that looks like this:
>{{{major: 2, minor: 2, revision: 6, date: new Date("Oct 18, 2007")}}}
In this case, the version is {{{2.2.6}}}.
/***
|''Name''|TiddlySpaceTiddlerIconsPlugin|
|''Version''|0.8.10|
|''Status''|@@beta@@|
|''Author''|Jon Robson|
|''Description''|Provides ability to render SiteIcons and icons that correspond to the home location of given tiddlers|
|''Source''|http://github.com/TiddlySpace/tiddlyspace/raw/master/src/plugins/TiddlySpaceTiddlerIconsPlugin.js|
|''Requires''|TiddlySpaceConfig BinaryTiddlersPlugin ImageMacroPlugin TiddlySpacePublishingCommands|
!Notes
{{{<<tiddlerOrigin>>}}} shows the origin of the tiddler it is being run on.
In TiddlySpace terms this means it will determine whether the tiddler is external, public or private.
Where private it will analyse whether a public version exists and distinguish between the different scenarios.
If a tiddler is external, the SiteIcon of that external space will be shown
!Parameters
width / height : define a width or height of the outputted icon
label: if label parameter is set to yes, a label will accompany the icon.
!Code
***/
//{{{
(function($) {
if(!config.macros.image) {
throw "Missing dependency: ImageMacroPlugin";
}
var imageMacro = config.macros.image;
var tiddlyspace = config.extensions.tiddlyspace;
var tweb = config.extensions.tiddlyweb;
var cmds = config.commands;
var cmd = cmds.publishTiddler;
tiddlyspace.resolveSpaceName = function(value) {
var endsWith = config.extensions.BinaryTiddlersPlugin.endsWith;
if(value) {
value = value.indexOf("bags/") === 0 ? value.substr(5) : value;
value = value.indexOf("recipes/") === 0 ? value.substr(8) : value;
if(value.indexOf("@") === 0) {
value = value.substr(1);
}
if(endsWith(value, "_public")) {
value = value.substr(0, value.length - 7);
} else if(endsWith(value, "_private")) {
value = value.substr(0, value.length - 8);
}
value = value.toLowerCase();
}
return value;
};
tiddlyspace.renderAvatar = function(place, value, options) {
options = options ? options : {};
options.labelOptions = options.labelOptions ? options.labelOptions : { include: false, height: 48, width: 48 };
options.imageOptions = options.imageOptions ? options.imageOptions : {};
options.imageOptions.altImage = "/bags/common/tiddlers/defaultUserIcon";
var container = $('<div class="siteIcon" />').appendTo(place);
value = tiddlyspace.resolveSpaceName(value);
tweb.getStatus(function(status) {
var link, noLabel;
if(!value || value == config.views.wikified.defaultModifier ||
value == config.views.wikified.shadowModifier) {
var icon = config.views.wikified.shadowModifier == value ? "shadowIcon" : "missingIcon";
if(store.tiddlerExists(icon)) {
imageMacro.renderImage(container, icon, options.imageOptions);
} else {
noLabel = true;
}
} else {
var spaceURI;
if(value != tiddlyspace.currentSpace.name) {
spaceURI = options.notSpace ? tiddlyspace.getHost(status.server_host) :
tiddlyspace.getHost(status.server_host, value);
}
link = spaceURI ? $("<a />").attr("href", spaceURI) : $("<span />");
link.text(value);
var imageOptions = options.imageOptions;
if(options.spaceLink && !imageOptions.link) {
imageOptions.link = spaceURI;
}
var avatar = options.notSpace ? false : value;
var uri = tiddlyspace.getAvatar(status.server_host, avatar);
imageMacro.renderImage(container, uri, options.imageOptions);
if(!value) {
value = "tiddlyspace";
}
}
if(!noLabel && options.labelOptions.include) {
var prefix = $("<span />").text(options.labelOptions.prefix || "")[0];
var suffix = $("<span />").text(options.labelOptions.suffix || "")[0];
$('<div class="label" />').append(prefix).append(link).
append(suffix).appendTo(container);
}
});
if(value) {
var prefix = options.labelOptions.prefix || "";
var suffix = options.labelOptions.suffix || "";
var label = "%0%1%2".format(prefix, value, suffix);
$(container).attr("title", label);
}
};
var originMacro = config.macros.tiddlerOrigin = {
locale: {
"shadow": "shadow tiddler",
"missing": "missing tiddler",
"private": "private",
"unknown": "unknown state",
"public": "public",
"unsyncedPrivate": "unsynced and private",
"unsyncedPublic": "unsynced and public",
externalPrefix: "from ",
externalBagSuffix: " bag",
externalSuffix: " space",
publishPrivateDeletePrivate: "Are you sure you want to make this tiddler public?",
moveToPrivate: "Are you sure you want to make this tiddler private? Only members will be able to see it.",
pleaseWait: "please wait..",
keepPublic: "keep public",
cannotPublishDirtyTiddler: "The current tiddler is unsaved so cannot be published. Please save the tiddler first.",
keepPrivate: "keep private",
makePublic: "make public",
makePrivate: "make private"
},
handler: function(place, macroName, params,wikifier, paramString, tiddler){
var adaptor = tiddler.getAdaptor();
var btn = $("<div />").addClass("originButton").attr("params", paramString).
attr("refresh", "macro").attr("macroName", macroName).appendTo(place)[0];
$(btn).data("tiddler", tiddler);
originMacro.refresh(btn);
},
refresh: function(btn) {
$(btn).empty();
var paramString = $(btn).attr("params");
var tiddler = $(btn).data("tiddler");
var options = originMacro.getOptions(paramString);
var type = tiddlyspace.getTiddlerStatusType(tiddler);
originMacro.renderIcon(tiddler, type, btn, options);
},
getOptions: function(paramString) {
paramString = "%0 label:no width:48 height:48 spaceLink:yes preserveAspectRatio:yes".format(paramString);
var parsedParams = paramString.parseParams("name");
var params = parsedParams[0].name;
var options = {
labelOptions: originMacro._getLabelOptions(parsedParams),
imageOptions: imageMacro.getArguments(paramString, []),
noclick: parsedParams[0].interactive &&
parsedParams[0].interactive[0] == "no" ? true : false
};
if(!options.noclick) {
var spaceLink = parsedParams[0].spaceLink;
options.spaceLink = spaceLink && spaceLink[0] == "no" ? false : true;
} else {
options.spaceLink = false;
}
return options;
},
_getLabelOptions: function(parsedParams) {
parsedParams = parsedParams[0];
var includeLabel = !parsedParams.label || ( parsedParams.label && parsedParams.label[0] == "yes" );
var prefix = parsedParams.labelPrefix ? parsedParams.labelPrefix[0] : false;
var suffix = parsedParams.labelSuffix ? parsedParams.labelSuffix[0] : false;
return { include: includeLabel, suffix: suffix, prefix: prefix };
},
_isSpace: function(value) {
value = value ? value : "";
var endsWith = config.extensions.BinaryTiddlersPlugin.endsWith;
if(endsWith(value, "_private") || endsWith(value, "_public")) {
return true;
} else {
return false;
}
},
renderIcon: function(tiddler, type, button, options) {
var locale = originMacro.locale;
originMacro.annotateTiddler(button, type);
if(type != "external") {
originMacro.showPrivacyRoundel(tiddler, type, button,
options);
} else {
var prefix = options.labelOptions.prefix, suffix = options.labelOptions.suffix;
var space = tiddler.fields["server.bag"];
options.notSpace = !originMacro._isSpace(space);
options.labelOptions.prefix = prefix ? prefix : locale.externalPrefix;
options.labelOptions.suffix = suffix ? suffix : (options.notSpace ? locale.externalBagSuffix : locale.externalSuffix);
tiddlyspace.renderAvatar(button, space, options);
}
},
showPrivacyRoundel: function(thisTiddler, privacyType, button, options) {
// there is a public tiddler as well as the current tiddler!
// TODO: not this is not enough.. we also need to check if the public tiddler is the same as..
// .. the private tiddler to determine whether this is a draft
// use of hashes would be useful here.
$(button).empty();
var icon = "%0Icon".format(privacyType);
if(privacyType.indexOf("unsynced") === 0 && !store.tiddlerExists(icon)) {
icon = "unsyncedIcon";
}
if(privacyType == "shadow") {
if(!store.tiddlerExists(icon)) {
icon = "bags/tiddlyspace/tiddlers/SiteIcon";
}
}
if(privacyType == "missing" && !store.tiddlerExists(icon)) {
return; // the user is not making use of the missingIcon
} else {
imageMacro.renderImage(button, icon, options.imageOptions);
originMacro.showLabel(button, privacyType, options.labelOptions);
var cmd = originMacro.iconCommands[privacyType];
if(cmd && thisTiddler && !options.noclick) {
$(button).click(function(ev) {
cmd(ev, thisTiddler);
});
}
}
},
annotateTiddler: function(place, type) {
var tidEl = $(story.findContainingTiddler(place));
tidEl.
removeClass("private public external privateAndPublic privateNotPublic shadow").
addClass(type);
},
showLabel: function(button, type, options) {
var locale = originMacro.locale;
var label = options.label ? options.label : locale[type];
label = label ? label : locale.unknown;
if(options && options.include) {
$('<div class="roundelLabel" />').html(label).appendTo(button);
}
$(button).attr("title", label);
},
confirm: function(ev, msg, onYes, options) {
options = options ? options : {};
onYes = onYes ? onYes : function(ev) {};
var btn = $(".originButton", $(ev.target).parents())[0];
var popup = Popup.create(btn);
$(popup).addClass("confirmationPopup");
$("<div />").addClass("message").text(msg).appendTo(popup);
$("<button />").addClass("button").text(options.yesLabel || "yes").appendTo(popup).click(onYes);
$("<button />").addClass("button").text(options.noLabel || "no").click(function(ev) {
Popup.remove();
}).appendTo(popup);
Popup.show();
ev.stopPropagation();
return false;
},
alert: function(ev, msg) {
var popup = Popup.create(ev.target);
$(popup).addClass("confirmationPopup alert");
$("<div />").addClass("message").text(msg).appendTo(popup);
Popup.show();
ev.stopPropagation();
},
reportDirty: function(el) {
originMacro.alert(el, originMacro.locale.cannotPublishDirtyTiddler);
},
iconCommands: {
"public": function(ev, tiddler) {
if(!readOnly) {
var locale = originMacro.locale;
var msg = locale.moveToPrivate;
if(story.isDirty(tiddler.title)) {
originMacro.reportDirty(ev);
} else {
originMacro.confirm(ev, msg, function(ev) {
var target = $(ev.target);
var onComplete = function(info) {};
var privateBag = cmd.toggleBag(tiddler, "private");
cmd.moveTiddler(tiddler, {
title: tiddler.title,
fields: { "server.bag": privateBag }
}, onComplete);
}, { yesLabel: locale.makePrivate, noLabel: locale.keepPublic });
}
}
},
"private": function(ev, tiddler) {
if(!readOnly) {
var locale = originMacro.locale;
var adaptor = tiddler.getAdaptor();
var publishTo = tiddler.fields["publish.name"] || tiddler.title;
var workspace = "bags/%0".format(tiddler.fields["server.bag"]);
tiddler.fields["server.workspace"] = workspace;
var publicBag = cmd.toggleBag(tiddler, "public");
var msg;
msg = locale.publishPrivateDeletePrivate;
var title = tiddler.title;
var newTitle = publishTo || tiddler.title;
tiddler.fields["server.page.revision"] = "false";
store.addTiddler(tiddler);
if(story.isDirty(tiddler.title)) {
originMacro.reportDirty(ev);
} else {
originMacro.confirm(ev, msg, function(ev) {
var onComplete = function(info) {};
cmd.moveTiddler(tiddler, {
title: newTitle,
fields: { "server.bag": publicBag }
}, onComplete);
}, { yesLabel: locale.makePublic, noLabel: locale.keepPrivate });
}
}
}
}
};
})(jQuery);
//}}}
See [[Transclusion]]...
!Summary
This <<tag global>> function returns the first value of a given parameter or a default value when {{{null}}}.
!Signature
{{{function getParam(params, name, defaultValue) {} }}}
!Returns
string: the value of a named parameter
!Arguments
;1. params
:the parameters to be searched
;2. name
:the name of the parameter you want the first value of
;3. defaultValue
:the default value to return if no parameter of the given name can be found
!Example
Assume we had a macro to be called like this...
{{{
<<foo tag:"Some Tag">>
}}}
You can retrieve the value of the named parameter {{{tag}}} using...
{{{
px = paramString.parseParams("anon", null, false, false, false);
getParam(px,"tag"," ");
}}}
''returns:'' {{{'Some Tag'}}}
Also see [[String.prototype.parseParams()]]...
/***
|''Name''|ServerSideSavingPlugin|
|''Description''|server-side saving|
|''Author''|FND|
|''Version''|0.6.5|
|''Status''|stable|
|''Source''|http://svn.tiddlywiki.org/Trunk/association/plugins/ServerSideSavingPlugin.js|
|''License''|[[BSD|http://www.opensource.org/licenses/bsd-license.php]]|
|''CoreVersion''|2.5.3|
|''Keywords''|serverSide|
!Notes
This plugin relies on a dedicated adaptor to be present.
The specific nature of this plugin depends on the respective server.
!Revision History
!!v0.1 (2008-11-24)
* initial release
!!v0.2 (2008-12-01)
* added support for local saving
!!v0.3 (2008-12-03)
* added Save to Web macro for manual synchronization
!!v0.4 (2009-01-15)
* removed ServerConfig dependency by detecting server type from the respective tiddlers
!!v0.5 (2009-08-25)
* raised CoreVersion to 2.5.3 to take advantage of core fixes
!!v0.6 (2010-04-21)
* added notification about cross-domain restrictions to ImportTiddlers
!To Do
* conflict detection/resolution
* rename to ServerLinkPlugin?
* document deletion/renaming convention
!Code
***/
//{{{
(function($) {
readOnly = false; //# enable editing over HTTP
var plugin = config.extensions.ServerSideSavingPlugin = {};
plugin.locale = {
saved: "%0 saved successfully",
saveError: "Error saving %0: %1",
saveConflict: "Error saving %0: edit conflict",
deleted: "Removed %0",
deleteError: "Error removing %0: %1",
deleteLocalError: "Error removing %0 locally",
removedNotice: "This tiddler has been deleted.",
connectionError: "connection could not be established",
hostError: "Unable to import from this location due to cross-domain restrictions."
};
plugin.sync = function(tiddlers) {
tiddlers = tiddlers && tiddlers[0] ? tiddlers : store.getTiddlers();
$.each(tiddlers, function(i, tiddler) {
var changecount = parseInt(tiddler.fields.changecount, 10);
if(tiddler.fields.deleted === "true" && changecount === 1) {
plugin.removeTiddler(tiddler);
} else if(tiddler.isTouched() && !tiddler.doNotSave() &&
tiddler.getServerType() && tiddler.fields["server.host"]) { // XXX: server.host could be empty string
delete tiddler.fields.deleted;
plugin.saveTiddler(tiddler);
}
});
};
plugin.saveTiddler = function(tiddler) {
try {
var adaptor = this.getTiddlerServerAdaptor(tiddler);
} catch(ex) {
return false;
}
var context = {
tiddler: tiddler,
changecount: tiddler.fields.changecount,
workspace: tiddler.fields["server.workspace"]
};
var serverTitle = tiddler.fields["server.title"]; // indicates renames
if(!serverTitle) {
tiddler.fields["server.title"] = tiddler.title;
} else if(tiddler.title != serverTitle) {
return adaptor.moveTiddler({ title: serverTitle },
{ title: tiddler.title }, context, null, this.saveTiddlerCallback);
}
var req = adaptor.putTiddler(tiddler, context, {}, this.saveTiddlerCallback);
return req ? tiddler : false;
};
plugin.saveTiddlerCallback = function(context, userParams) {
var tiddler = context.tiddler;
if(context.status) {
if(tiddler.fields.changecount == context.changecount) { //# check for changes since save was triggered
tiddler.clearChangeCount();
} else if(tiddler.fields.changecount > 0) {
tiddler.fields.changecount -= context.changecount;
}
plugin.reportSuccess("saved", tiddler);
store.setDirty(false);
} else {
if(context.httpStatus == 412) {
plugin.reportFailure("saveConflict", tiddler);
} else {
plugin.reportFailure("saveError", tiddler, context);
}
}
};
plugin.removeTiddler = function(tiddler) {
try {
var adaptor = this.getTiddlerServerAdaptor(tiddler);
} catch(ex) {
return false;
}
var context = {
host: tiddler.fields["server.host"],
workspace: tiddler.fields["server.workspace"],
tiddler: tiddler
};
var req = adaptor.deleteTiddler(tiddler, context, {}, this.removeTiddlerCallback);
return req ? tiddler : false;
};
plugin.removeTiddlerCallback = function(context, userParams) {
var tiddler = context.tiddler;
if(context.status) {
if(tiddler.fields.deleted === "true") {
store.deleteTiddler(tiddler.title);
} else {
plugin.reportFailure("deleteLocalError", tiddler);
}
plugin.reportSuccess("deleted", tiddler);
store.setDirty(false);
} else {
plugin.reportFailure("deleteError", tiddler, context);
}
};
plugin.getTiddlerServerAdaptor = function(tiddler) { // XXX: rename?
var type = tiddler.fields["server.type"] || config.defaultCustomFields["server.type"];
return new config.adaptors[type]();
};
plugin.reportSuccess = function(msg, tiddler) {
displayMessage(plugin.locale[msg].format([tiddler.title]));
};
plugin.reportFailure = function(msg, tiddler, context) {
var desc = (context && context.httpStatus) ? context.statusText :
plugin.locale.connectionError;
displayMessage(plugin.locale[msg].format([tiddler.title, desc]));
};
config.macros.saveToWeb = { // XXX: hijack existing sync macro?
locale: { // TODO: merge with plugin.locale?
btnLabel: "save to web",
btnTooltip: "synchronize changes",
btnAccessKey: null
},
handler: function(place, macroName, params, wikifier, paramString, tiddler) {
createTiddlyButton(place, this.locale.btnLabel, this.locale.btnTooltip,
plugin.sync, null, null, this.locale.btnAccessKey);
}
};
// hijack saveChanges to trigger remote saving
var _saveChanges = saveChanges;
saveChanges = function(onlyIfDirty, tiddlers) {
if(window.location.protocol == "file:") {
_saveChanges.apply(this, arguments);
} else {
plugin.sync(tiddlers);
}
};
// override removeTiddler to flag tiddler as deleted -- XXX: use hijack to preserve compatibility?
TiddlyWiki.prototype.removeTiddler = function(title) { // XXX: should override deleteTiddler instance method?
var tiddler = this.fetchTiddler(title);
if(tiddler) {
tiddler.tags = ["excludeLists", "excludeSearch", "excludeMissing"];
tiddler.text = plugin.locale.removedNotice;
tiddler.fields.deleted = "true"; // XXX: rename to removed/tiddlerRemoved?
tiddler.fields.changecount = "1";
this.notify(title, true);
this.setDirty(true);
}
};
// hijack ImportTiddlers wizard to handle cross-domain restrictions
var _onOpen = config.macros.importTiddlers.onOpen;
config.macros.importTiddlers.onOpen = function(ev) {
var btn = $(resolveTarget(ev));
var url = btn.closest(".wizard").find("input[name=txtPath]").val();
if(window.location.protocol != "file:" && url.indexOf("://") != -1) {
var host = url.split("/")[2];
var macro = config.macros.importTiddlers;
if(host != window.location.host) {
btn.text(macro.cancelLabel).attr("title", macro.cancelPrompt);
btn[0].onclick = macro.onCancel;
$('<span class="status" />').text(plugin.locale.hostError).insertAfter(btn);
return false;
}
}
return _onOpen.apply(this, arguments);
};
})(jQuery);
//}}}
/***
|''Name''|GroupByPlugin|
|''Description''|Mimics allTags macro to provide ways of creating lists grouping tiddlers by any field|
|''Version''|0.6.1|
|''Author''|Jon Robson|
|''Status''|beta|
!Usage
{{{<<groupBy tags>>}}}
mimics allTags macro
{{{<<groupBy server.bag>>}}}
groups by the server.bag field (this version contains TiddlySpace specific code for turning a bag into a space name)
{{{groupBy modified dateFormat:"YYYY"}}}
group tiddlers by year.
{{{<<groupBy tags exclude:excludeLists exclude:systemConfig>>}}}
group tiddlers by tag but exclude the tags with values excludeLists and systemConfig
Within that group you can also exclude things by filter
{{{groupBy modifier filter:[tag[film]]}}}
will group tiddlers tagged with film by modifier.
***/
//{{{
(function($) {
var taglocale = config.views.wikified.tag;
var macro = config.macros.groupBy = {
locale: {
tooltip: "all tiddlers in group %0",
noTiddlers: "no tiddlers",
openAllText: taglocale.openAllText,
openAllTooltip: taglocale.openAllTooltip,
openTiddler: "open tiddler with title %0"
},
morpher: {
// TODO: note currently the following 2 morphers are TiddlySpace specific and probably should be in separate plugin
"server.workspace": function(value, options) {
return macro.morpher["server.bag"](value.replace("bags/", "").replace("recipes/", ""));
},
"server.bag": function(value, options) {
if(typeof(value) !== "string") {
return false;
} else if(value.indexOf("_public") === -1 && value.indexOf("_private") === -1) {
value = "*%0".format(value); // add star for non-space bags.
}
return value.replace("_public", "").replace("_private", "");
},
created: function(value, options) {
return value.formatString(options.dateFormat || "DD MMM YYYY");
},
modified: function(value, options) {
return macro.morpher.created(value, options);
}
},
handler: function(place, macroName, params, wikifier, paramString) {
var field = params[0] || "server.workspace";
var dateFormat = params[1] || "DD MMM YYYY";
var container = $("<div />").attr("macroName", macroName).addClass("groupBy").
attr("refresh", "macro").attr("fieldName", field).
attr("paramString", paramString).
attr("dateFormat", dateFormat).appendTo(place)[0];
macro.refresh(container);
},
isTypeArray: function(value) {
var valueType = typeof value;
if(valueType === "object" && typeof value.length === "number" &&
!(value.propertyIsEnumerable("length")) &&
typeof value.splice === "function") { //is Array
return true;
} else {
return false;
}
},
_onClickGroup: function(ev, options) {
var i, target = ev.target, locale = macro.locale;
var tiddlers = $(target).closest(".templateContainer").data("tiddlers");
var popup = $(Popup.create(target)).addClass("taggedTiddlerList")[0];
var value = $(target).attr("value");
var openAll = createTiddlyButton($("<li />").appendTo(popup)[0],
locale.openAllText.format(value), locale.openAllTooltip);
$(openAll).click(function(ev) {
story.displayTiddlers(ev.target, tiddlers);
return false;
});
var listBreak = $("<li />").addClass("listBreak").html("<div />").appendTo(popup);
for(i = 0; i < tiddlers.length; i++) {
var item = $("<li />").appendTo(popup)[0];
var template = store.getTiddlerText(options.template) || macro.template;
wikify(template, item, null, tiddlers[i]);
}
listBreak.clone().appendTo(popup);
$(createTiddlyLink($("<li />").appendTo(popup)[0], value, false)).
text(locale.openTiddler.format(value));
Popup.show();
ev.stopPropagation();
return false;
},
_refresh: function(container, tiddlers, options) {
var totalGroups = 0, locale = macro.locale, i, j;
var excludeValues = options.exclude;
var values = {}, value_ids = [];
var field = options.field;
var morpher = macro.morpher[field] || function(value) {
return value;
};
for(i = 0; i < tiddlers.length; i++) {
var tiddler = tiddlers[i];
var value = tiddler[field] || tiddler.fields[field];
value = macro.isTypeArray(value) ? value : [ value ];
for(j = 0; j < value.length; j++) {
var v = morpher(value[j], options);
if(v && $.inArray(v, excludeValues) === -1) {
totalGroups += 1;
if(!values[v]) {
values[v] = [];
}
values[v].push(tiddler);
value_ids.pushUnique(v);
}
}
}
var ul = $("<ul />").appendTo(container)[0];
if(totalGroups === 0) {
$("<li />").addClass("listTitle").text(locale.noTiddlers);
}
value_ids = value_ids.sort();
var groupTemplate = store.getTiddlerText(options.groupTemplate);
var onClick = function(ev) {
macro._onClickGroup(ev, options);
};
for(i = 0; i < value_ids.length; i++) {
var title = value_ids[i];
var info = getTiddlyLinkInfo(title);
tiddlers = values[title];
var btn = createTiddlyButton($("<li />").appendTo(ul)[0],
"%0 (%1)".format(title, tiddlers.length), locale.tooltip.format(title), null, info.classes);
if(groupTemplate) {
$(btn).empty();
wikify(groupTemplate, btn, null, tiddlers[0]);
}
$(btn).click(onClick).attr("value", title).attr("refresh", "link").attr("tiddlyLink", title);
$(btn).addClass("templateContainer").data("tiddlers", tiddlers);
}
},
refresh: function(container) {
container = $(container).empty();
var paramString = container.attr("paramString");
var args = paramString.parseParams("name", null, true, false, true)[0];
var options = { field: container.attr("fieldName"), dateFormat: container.attr("dateFormat"), exclude: args.exclude || [],
template: args.template ? args.template[0] : false, groupTemplate: args.groupTemplate ? args.groupTemplate[0] : "" };
var tiddlers = args.filter ? store.filterTiddlers(args.filter[0]) : store.getTiddlers("title");
macro._refresh(container, tiddlers, options);
},
template: "<<view title link>>"
};
}(jQuery));
//}}}
!Summary
[[Chef|http://chef.tiddlywiki.org]] provides a simple way to [[cook|Cook]] TiddlyWiki [[recipes|Recipe]].
!See Also...
* [[Cook]]
* [[Ginsu]]
* [[Recipes|Recipe]]
/***
|''Name''|TiddlySpaceFilters|
|''Description''|provide TiddlySpace-specific filter extensions|
|''Author''|Jon Robson|
|''Version''|0.6.1|
|''Status''|@@beta@@|
|''CoreVersion''|2.6.2|
|''Requires''|TiddlySpaceConfig|
|''License''|[[BSD|http://www.opensource.org/licenses/bsd-license.php]]|
!Usage
{{{
<<tsList Private>>
<<tsList Public>>
<<tsList Draft>>
}}}
!Code
***/
//{{{
(function($) {
var tiddlyspace = config.extensions.tiddlyspace;
var privateBag = tiddlyspace.getCurrentBag("private");
var publicBag = tiddlyspace.getCurrentBag("public");
config.filterHelpers = {
is: {
"private": function(tiddler) {
var bag = tiddler.fields["server.bag"];
return bag == privateBag;
},
"public": function(tiddler) {
var bag = tiddler.fields["server.bag"];
return bag == publicBag;
},
draft: function(tiddler) {
var fields = tiddler.fields;
var bag = fields["server.bag"];
return (privateBag == bag && fields["publish.name"]) ? true : false;
},
local: function(tiddler) {
return config.filterHelpers.is["public"](tiddler) ||
config.filterHelpers.is["private"](tiddler);
},
unsynced: function(tiddler) {
return tiddler ? tiddler.isTouched() : false;
}
}
};
config.filters.is = function(results, match) {
var candidates = store.getTiddlers("title");
var type = match[3];
for (var i = 0; i < candidates.length; i++) {
var tiddler = candidates[i];
var helper = config.filterHelpers.is[type];
if(helper && helper(tiddler)) {
results.pushUnique(tiddler);
}
}
return results;
};
})(jQuery);
//}}}
TiddlyWiki currently does not extend this primitive type of JavaScript.
/***
|''Name''|DiffFormatter|
|''Description''|highlighting of text comparisons|
|''Author''|FND|
|''Version''|0.9.0|
|''Status''|beta|
|''Source''|http://svn.tiddlywiki.org/Trunk/contributors/FND/formatters/DiffFormatter.js|
|''CodeRepository''|http://svn.tiddlywiki.org/Trunk/contributors/FND/|
|''License''|[[BSD|http://www.opensource.org/licenses/bsd-license.php]]|
|''Keywords''|formatting|
!Description
Highlights changes in a unified [[diff|http://en.wikipedia.org/wiki/Diff#Unified_format]].
!Notes
Based on Martin Budden's [[DiffFormatterPlugin|http://svn.tiddlywiki.org/Trunk/contributors/MartinBudden/formatters/DiffFormatterPlugin.js]].
!Usage
The formatter is applied to blocks wrapped in <html><code>{{{diff{..}}}</code></html> within tiddlers tagged with "diff".
!Revision History
!!v0.9 (2010-04-07)
* initial release; fork of DiffFormatterPlugin
!StyleSheet
.diff { white-space: pre; font-family: monospace; }
.diff ins, .diff del { display: block; text-decoration: none; }
.diff ins { background-color: #dfd; }
.diff del { background-color: #fdd; }
.diff .highlight { background-color: [[ColorPalette::SecondaryPale]]; }
!Code
***/
//{{{
(function() {
config.shadowTiddlers.StyleSheetDiffFormatter = store.getTiddlerText(tiddler.title + "##StyleSheet");
store.addNotification("StyleSheetDiffFormatter", refreshStyles);
var formatters = [{
name: "diffWrapper",
match: "^\\{\\{diff\\{\n", // XXX: suboptimal
termRegExp: /(.*\}\}\})$/mg,
handler: function(w) {
var el = createTiddlyElement(w.output, "div", null, "diff");
w.subWikifyTerm(el, this.termRegExp);
}
}, {
name: "diffRange",
match: "^(?:@@|[+\\-]{3}) ",
lookaheadRegExp: /^(?:@@|[+\-]{3}) .*\n/mg,
handler: function(w) {
createTiddlyElement(w.output, "div", null, "highlight").
innerHTML = "…";
this.lookaheadRegExp.lastIndex = w.matchStart;
var lookaheadMatch = this.lookaheadRegExp.exec(w.source);
if(lookaheadMatch && lookaheadMatch.index == w.matchStart) {
w.nextMatch = this.lookaheadRegExp.lastIndex;
}
}
}, {
name: "diffAdded",
match: "^\\+",
termRegExp: /(\n)/mg,
handler: function(w) {
var el = createTiddlyElement(w.output, "ins", null, "added");
w.subWikifyTerm(el, this.termRegExp);
}
}, {
name: "diffRemoved",
match: "^-",
termRegExp: /(\n)/mg,
handler: function(w) {
var el = createTiddlyElement(w.output, "del", null, "removed");
w.subWikifyTerm(el, this.termRegExp);
}
}
];
config.parsers.diffFormatter = new Formatter(formatters);
config.parsers.diffFormatter.format = "diff";
config.parsers.diffFormatter.formatTag = "diff";
})();
//}}}
!Summary
In a standard TiddlyWiki, the MarkupPreBody shadow tiddler contains HTML and is inserted at the beginning of the {{{<body>}}} section of the TiddlyWiki HTML file.
!Default Contents
''none''
!Use Cases
tbd
/***
|''Name''|EditTemplateFieldsPlugin|
|''Version''|0.3.3|
|''Status''|beta|
|''Author''|Jon Robson|
|''Description''|Provides editing of custom fields|
|''Requires''||
|''Source''||
!Usage
put {{{<div macro="editFields"></div>}}} into your EditTemplate.
!Todo
Support newlines in input boxes.
!Code
***/
//{{{
(function($) {
var editFields = config.macros.editFields = {
handler: function(place, macroName, params, wikifier, paramString, tiddler) {
var options = {
fields: params
};
this.createInterface(place, tiddler, options);
},
createInterface: function(place, tiddler, options) {
var whitelisted = ["changecount"];
var fieldContainer = $("<div class='tiddlerCustomFields' />").appendTo(place);
var included = [];
if(tiddler) {
for(var i in tiddler.fields) {
var val = tiddler.fields[i];
if(i.indexOf("server.") !== 0 && i.indexOf("_") !== 0 && typeof(val) == "string" && !whitelisted.contains(i)) {
this.addNewField(fieldContainer, i, val);
included.push(i);
}
}
}
for(var j = 0; j < options.fields.length; j++) {
var field = options.fields[j];
if(!included.contains(field)) {
this.addNewField(fieldContainer, field, "");
}
}
$("<button />").text("add new field").click(function() {
editFields.addNewField(fieldContainer, "", "");
}).appendTo(place);
},
addNewField: function(place, name, value) {
var container = $("<div />").appendTo(place);
var type = value.indexOf("\n") > -1 ? "textarea" : "text";
var valueInput = type == "text" ? $("<input type='text' />") : $("<textarea />");
valueInput.attr("edit", name).val(value).appendTo(container);
$("<button class='delete' />").text("delete").click(function(ev) {
var answer = confirm("Are you sure you want to remove this field?");
if(answer) {
var attr = $(this).attr("field");
$(this).parent().remove();
}
}).appendTo(container);
var nameInput = $("<input class='fieldName' type='text' />").val(name).
change(function(ev) {
var el = $(ev.target);
valueInput.attr("edit", el.val());
}).prependTo(container);
}
}
})(jQuery);
//}}}
The ''saveTiddler'' method of a [[store object|TiddlyWiki.class]] is typically called in response to the author clicking the '''done''' link after editing a tiddler.
This method takes six parameters:
* the old title of the tiddler
* the new title of the tiddler
* the tiddler's source code
* the name of the author
* the modification date
* the tags (as an array of strings).
This feeds directly into [[Tiddler]]'s [[set]] method, and does not save changes to the document on disk.
Extensions to the primitive {{{Array}}} type in JavaScript...
<<list filter [startsWith[title,Array.]][sort[title]]>>
!Summary
This <<tag global>> function renders an internal link to a tiddler.
!Signature
{{{createTiddlyLink(place, title, includeText, className, isStatic, linkedFromTiddler, noToggle) {} }}}
!Returns
DOM reference: to the created link
!Arguments
;1. (DOM reference) place
:where the link will be placed
;2. (string) title
:the tiddler title
;3. (string) includeText
:(optional) the pretty title to be show
;4. (string) className
:(optional) the css class name applied to the link
;5. (boolean) isStatic
:(optional) ?!?
;6. (string) linkedFromTiddler
:(optional) ?!?
;7. (boolean) noToggle
:(optional) ?!?
!Example
{{{
createTiddlyLink(place,'Foo');
}}}
''outputs:'' an internal link to tiddler 'Foo'
Using a standard TiddlyWiki the shadow tiddler ViewTemplate defines how an individual tiddler is displayed. You are not able to use alternative layouts for different tiddlers. All will show a title, some subtitle, a toolbar, etc... depending on how your ViewTemplate is set up.
To display different layouts for diferent tiddlers, you can use third-party plugins.
!"""TaggedTemplateTweak"""
[[TaggedTemplateTweak|http://www.TiddlyTools.com/#TaggedTemplateTweak]] by [[Eric Shulman / TiddlyTools|http://www.TiddlyTools.com]] allows you to create alternative templates, e.g. an ''"""AlternativeViewTemplate"""''.
If you then tag a tiddlers with "Alternative" (or even "alternative") the ''"""AlternativeViewTemplate"""'' will be used to display the tiddler instead of the ViewTemplate.
The same mechanism can also be used to create an alternative EditTemplate, e.g., e.g. ''"""AlternativeEditTemplate"""''.
Jeremy is the [[creator of TiddlyWiki|https://plus.google.com/u/1/109308865556494599029]].
http://tiddlywiki.com/#JeremyRuston
See [[Tiddler Templates]]...
/***
|''Name''|RefreshTiddlerCommand|
|''Version''|0.3.0|
***/
//{{{
(function($) {
var cmd = config.commands.refreshTiddler = {
text: "refresh",
locale: {
refreshing: "Refreshing tiddler..."
},
tooltip: "refresh this tiddler to be the one on the server",
handler: function(ev, src, title) {
var tiddler = store.getTiddler(title);
if(!tiddler) {
tiddler = new Tiddler(title);
merge(tiddler.fields, config.defaultCustomFields);
}
$(story.getTiddler(title)).find(".viewer").
empty().text(cmd.locale.refreshing);
var dirtyStatus = store.isDirty();
story.loadMissingTiddler(title, {
"server.workspace": tiddler.fields["server.recipe"] ? "recipes/" + tiddler.fields["server.recipe"] :
tiddler.fields["server.workspace"] || "bags/"+tiddler.fields["server.bag"],
"server.host": tiddler.fields["server.host"],
"server.type": tiddler.fields["server.type"]
}, function() {
store.setDirty(dirtyStatus);
});
}
};
})(jQuery);
//}}}
/*!**
|''Name''|ExtraFilters|
|''Author''|Jon Robson|
|''Version''|0.6.8|
|''Status''|@@experimental@@|
|''Requires''|TiddlySpaceFilters ImageMacroPlugin|
|''CodeRepository''|<...>|
|''License''|[[BSD|http://www.opensource.org/licenses/bsd-license.php]]|
!Notes
* Updates shadow tiddlers to known TiddlySpace shadow tiddlers
* adds the following filters
{{{
[is[tiddler]] - allows you to match all tiddlers - useful for applying the isnot filter (see later)
[is[image]] - returns only image tiddlers (e.g. png, jpeg, gif etc..)
[is[shadow]] - returns if the tiddler is a known shadow tiddler
[is[svg]] - returns only svg tiddlers
[is[tagged]] - returns tiddlers with tags
[isnot[image]] - filters result of previous filters for ones that are not images
[notag[<tag>]] - filters result of previous filters for ones without a tag
[nofield[<field>]] - check for absence of field or field value in previous filters
[has[<field or attribute>]] - match tiddlers which have a field or attribute set.
[and[<filter expression>]] - e.g.[and[tag:foo]] checks all tiddlers from previous filters for a tag foo.
[nobag[foo]] - removes any tiddlers previously returned by a previous filter that belong to the given bag
[is[open]]
[startsWith[title,Foo]] returns all tiddlers who's titles start with Foo.
}}}
***/
//{{{
(function($) {
Story.prototype.displayTiddler__ExtraFilters = Story.prototype.displayTiddler;
Story.prototype.displayTiddler = function() {
var res = Story.prototype.displayTiddler__ExtraFilters.apply(this, arguments);
$("[macroName=list]").each(function(i, el) {
config.macros.list.refresh(el);
});
return res;
};
Story.prototype.closeTiddler__ExtraFilters = Story.prototype.closeTiddler;
Story.prototype.closeTiddler = function() {
var res = Story.prototype.closeTiddler__ExtraFilters.apply(this, arguments);
$("[macroName=list]").each(function(i, el) {
config.macros.list.refresh(el);
});
return res;
};
config.shadowTiddlers.SiteIcon = "";
config.shadowTiddlers.SiteInfo = "";
config.shadowTiddlers.SystemSettings = "";
config.shadowTiddlers[config.extensions.tiddlyspace.currentSpace.name + "SetupFlag"] = "";
config.filterHelpers["is"].image = config.macros.image.isImageTiddler;
config.filterHelpers["is"].svg = config.macros.image.isSVGTiddler;
config.filterHelpers["is"].tiddler = function(tiddler) {
return tiddler ? true : false;
}
config.filterHelpers["is"].open = function(tiddler) {
return story.getTiddler(tiddler.title) ? true : false;
}
config.filterHelpers["is"].shadow = function(tiddler) {
return tiddler && tiddler.title && tiddler.title in config.shadowTiddlers ? true : false;
}
config.filterHelpers["is"].tagged = function(tiddler) {
return tiddler && tiddler.tags.length > 0 ? true : false;
};
config.filterHelpers["is"].external = function(tiddler) {
var endsWith = config.extensions.BinaryTiddlersPlugin.endsWith;
var fields = tiddler.fields;
var bag = fields["server.bag"] || "";
var local = config.filterHelpers["is"].local(tiddler);
if(!local && endsWith(bag, "_public") || bag.indexOf("_") === -1) {
return true;
} else {
return false;
}
};
config.filterHelpers["is"].privateAndExternal = function(tiddler) {
var endsWith = config.extensions.BinaryTiddlersPlugin.endsWith;
var fields = tiddler.fields;
var bag = fields["server.bag"] || "";
return !config.filterHelpers["is"].local(tiddler) && endsWith(bag, "_private");
};
config.filters.isnot = function(candidates, match) {
var type = match[3];
var results = [];
for (var i = 0; i < candidates.length; i++) {
var tiddler = candidates[i];
var helper = config.filterHelpers.is[type];
if(helper && !helper(tiddler)) {
results.pushUnique(tiddler);
}
}
return results;
};
config.filters.nobag = function(results, match) {
var bag = match[3];
var newResults = [];
for(var i = 0; i < results.length; i++) {
var tiddler = results[i];
if(tiddler.fields["server.bag"] !== bag) {
newResults.push(tiddler);
}
}
return newResults;
};
config.filters.linksTo = function(results, match) {
var name = match[3];
results = this.getTiddlers();
var newResults = [];
for(var i = 0; i < results.length; i++) {
var tiddler = results[i];
var links = tiddler.getLinks("title", "excludeLists");
if(links.contains(name)) {
newResults.push(tiddler);
}
}
return newResults;
};
config.filters.notag = function(results, match) {
var tag = match[3];
var newResults = [];
for(var i = 0; i < results.length; i++) {
var tiddler = results[i];
if(!tiddler.tags.contains(tag)) {
newResults.push(tiddler);
}
}
return newResults;
};
config.filters.nofield = function(results, match) {
var fieldname = match[3];
var newResults = [];
for(var i = 0; i < results.length; i++) {
var tiddler = results[i];
if(!tiddler.fields[fieldname]) {
newResults.push(tiddler);
}
}
return newResults;
};
config.filters.and = function(results, match) {
var args = match[3].split(":");
var negationMode = false;
var handler = args[0];
if(handler.indexOf("!") === 0) {
handler = handler.substr(1);
negationMode = true;
}
var value = args[1];
if(config.filters[handler]) {
var titles = [];
var matches = config.filters[handler].call(this, [], [null, null, handler, value]); // note some filters require second argument :(
for(var i = 0; i < matches.length; i++) {
titles.push(matches[i].title);
}
var newResults = [];
for(var i = 0; i < results.length; i++) {
var tid = results[i];
if(!negationMode && titles.contains(tid.title)) {
newResults.push(tid);
} else if(negationMode && !titles.contains(tid.title)) {
newResults.push(tid);
}
}
return newResults;
} else {
return results;
}
};
config.filters.has = function(results, match) {
var field = match[3];
var results = [];
this.forEachTiddler(function(title, tid) {
if(tid[field] || tid.fields[field]) {
results.push(tid);
}
});
return results;
};
config.filters.startsWith = function(results, match) {
var args = match[3].split(",");
var field, str;
if(args.length === 1) {
field = "title";
str = args[0]
} else {
field = args[0];
str = args[1];
}
var newResults = [];
// use this to keep the current store context
this.forEachTiddler(function(i, tid) {
var val = this.getValue(tid, field);
if(val && val.indexOf(str) === 0) {
newResults.push(tid);
}
})
return newResults;
}
var scanMacro = config.macros.tsScan;
config.filterHelpers.loadingTiddler = new Tiddler("Loading...");
config.filterHelpers.loadingTiddler.text = "loading...";
config.filterHelpers.loadingTiddler.fields["msg.loading"] = "loading...";
config.filterHelpers.url = {};
config.filters.url = function(results, match) {
var url = match[3];
var tiddlers = config.filterHelpers.url[url];
if(tiddlers) {
return tiddlers;
} else if(!status) {
config.filterHelpers.url[url] = [ config.filterHelpers.loadingTiddler ];
$.ajax({type:"get", url: url, dataType: "json", success: function(jstiddlers) {
var tiddlers = scanMacro._tiddlerfy(jstiddlers, {});
config.filterHelpers.url[url] = tiddlers;
refreshDisplay();
}, error: function() {
displayMessage("unable to connect to %0".format(url));
}
});
}
return config.filterHelpers.url[url];
};
}(jQuery));
//}}}
<<tiddler FAQ>>
!Summary
This tiddler explains how node.js is involved in the new build process.
!Details
tbd
/***
|Name:|HideWhenPlugin|
|Description:|Allows conditional inclusion/exclusion in templates|
|Version:|4.0.0|
|Date:|2010-09-09|
|Author:|Simon Baird, Tobias Beer|
|Source:|http://mptw.tiddlyspot.com/#HideWhenPlugin|
|License:|http://mptw.tiddlyspot.com/#TheBSDLicense|
For use in ViewTemplate and EditTemplate. Example usage:
{{{<div macro="showWhenTagged Task">[[TaskToolbar]]</div>}}}
{{{<div macro="showWhen tiddler.modifier == 'BartSimpson'"><img src="bart.gif"/></div>}}}
***/
//{{{
window.hideWhenLastTest = false;
window.removeElementWhen = function(test,place) {
window.hideWhenLastTest = test;
if(test){
removeChildren(place);
place.parentNode.removeChild(place);
}
};
(function(){
var s,show=false,f,fs={
When:'eval(paramString)',
WhenTagged:'tiddler.tags.containsAll(params)',
WhenTaggedAny:'tiddler.tags.containsAny(params)',
WhenTaggedAll:'tiddler.tags.containsAll(params)',
WhenExists:'store.tiddlerExists(params[0]) || store.isShadowTiddler(params[0])',
TitleIs:'tiddler.title == params[0]',
'"else"':'!window.hideWhenLastTest'
}
for(var f in fs){
do{
s=f=='"else"'?'':(show?'show':'hide');
eval('merge(config.macros,{\n'+s+f+':{\n'+
'handler:function(place,macroName,params,wikifier,paramString,tiddler){\n'+
'removeElementWhen('+(show?'!':'')+fs[f]+',place);\n'+
'}}});');
show=!show&&s!='';
}while(show);
}
})();
//}}}
Each [[space|Space]] is identified by a [[Space Name]] which may only contain lowercase letters, digits or hyphens.
The [[Space Name]] is unique to a TiddlySpace server, and is accessible on a subdomain of the server, e.g. on [[tiddlyspace.com|http://tiddlyspace.com]] the @glossary space can be reached at:
<<<
http://glossary.tiddlyspace.com
<<<
/***
|''Name''|TiddlyFileImporter|
|''Version''|0.3.8|
|''Author''|Ben Gillies|
|''Type''|plugin|
|''Description''|Upload a TiddlyWiki file to TiddlyWeb, and import the tiddlers.|
!Usage
Upload a TiddlyWiki file to TiddlyWeb, and import the tiddlers.
!Requires
tiddlyweb
tiddlywebplugins.reflector
!Code
***/
//{{{
(function($){
if(!version.extensions.TiddlyFileImporter)
{ //# ensure that the plugin is only installed once
version.extensions.TiddlyFileImporter = { installed: true };
}
config.macros.fileImport = {
reflectorURI: '/reflector?csrf_token=%0',
incorrectTypeError: 'Incorrect File Type. You must upload a TiddlyWiki',
uploadLabel: 'Upload',
uploadLabelPrompt: 'Import tiddlers from this TiddlyWiki',
step1FileText: 'File:',
step1PostText: 'In the next screen you will select the tiddlers to import.',
step1Title: 'Step 1: Pick a TiddlyWiki to import',
step1TypeChooser: 'Import From:',
step3Html: ['<input type="hidden" name="markList" />',
'<input type="hidden" checked="true" name="chkSync" />',
'<input type="hidden" name="chkSave" />',
'<input type="hidden" name="txtSaveTiddler" />'].join(),
handler: function(place, macroName, params, wikifier, paramString) {
var wizard = new Wizard();
wizard.createWizard(place, 'Import a TiddlyWiki');
this.restart(wizard);
},
restart: function(wizard) {
var me = config.macros.fileImport;
wizard.addStep(me.step1Title, ['<input type="hidden" ',
'name="markList" />'].join(""));
var markList = wizard.getElement('markList');
var uploadWrapper = document.createElement('div');
markList.parentNode.insertBefore(uploadWrapper, markList);
uploadWrapper.setAttribute('refresh', 'macro');
uploadWrapper.getAttribute('macroName', 'fileImport');
var iframeName = 'reflectorImporter' + Math.random().toString();
me.createForm(uploadWrapper, wizard, iframeName);
$(uploadWrapper).append('<p>' + me.step1PostText + '</p>');
wizard.setValue('serverType', 'tiddlyweb');
wizard.setValue('adaptor', new config.adaptors.file());
wizard.setValue('host', config.defaultCustomFields['server.host']);
wizard.setValue('context', {});
var iframe = $(['<iframe name="' + iframeName + '" ',
'style="display: none" />'].join("")).appendTo(uploadWrapper);
var onSubmit = function(ev) {
var uploadType = $('select[name=uploadtype]', wizard.formElem).val();
if (uploadType == "file") {
// set an onload ready to hijack the form
me.setOnLoad(uploadWrapper, wizard, iframe[0]);
wizard.importType = 'file';
wizard.formElem.submit();
} else {
var csrf_token = config.extensions.tiddlyspace.getCSRFToken();
$.ajax({
url: "%0/reflector?csrf_token=%1".format(
config.defaultCustomFields["server.host"], csrf_token),
type: "POST",
dataType: "text",
data: {
uri: $("input", ".importFrom", wizard.formElem).val()
},
success: function(data, txtStatus, xhr) {
wizard.POSTResponse = data;
me.importTiddlers(uploadWrapper, wizard);
},
error: function(xhr, txtStatus, error) {
displayMessage(["There was an error fetching the ",
'url: ', txtStatus].join(""));
me.restart(wizard);
}
});
return false;
}
};
wizard.setButtons([{
caption: me.uploadLabel,
tooltip: me.uploadLabelPrompt,
onClick: onSubmit
}]);
$(wizard.formElem).submit(function(ev) {
onSubmit(ev);
ev.preventDefault();
});
},
createForm: function(place, wizard, iframeName) {
var form = wizard.formElem;
var me = config.macros.fileImport;
form.action = me.reflectorURI.format(
config.extensions.tiddlyspace.getCSRFToken());
form.enctype = 'multipart/form-data';
form.encoding = 'multipart/form-data';
form.method = 'POST';
form.target = iframeName;
onSelectChange = function(e) {
var changeTo = $(this).val();
if (changeTo == "file") {
$(".importFrom").html('%0 <input type="file" name="file" />'.
format(me.step1FileText));
} else {
$(".importFrom").html('URL: <input type="text" name="uri" />'
+ ' Do you want <a target="_blank" href="http://faq.tiddlyspace.com/How%20do%20I%20include%2Fexclude%20spaces%3F">inclusion</a> instead?');
}
};
$(place).append('<span>%0</span>'.format(me.step1TypeChooser)).
append($(['<select name="uploadtype"><option value="file" selected="selected">file',
'<option value="uri">url</select>'].join("")).change(onSelectChange)).
append('<div class="importFrom">%0<input type="file" name="file" /></div>'.
format(me.step1FileText));
},
setOnLoad: function(place, wizard, iframe) {
var me = config.macros.fileImport;
var loadHandler = function() {
me.importTiddlers.apply(this, [place, wizard, iframe]);
};
iframe.onload = loadHandler;
completeReadyStateChanges = 0;
iframe.onreadystatechange = function() {
if (++(completeReadyStateChanges) == 5) {
loadHandler();
}
};
},
importTiddlers: function(place, wizard, iframe) {
var tmpStore = new TiddlyWiki();
var POSTedWiki = "";
if (wizard.importType == "file") {
try {
POSTedWiki= iframe.contentWindow
.document.documentElement.innerHTML;
} catch(e) {
displayMessage(config.macros.fileImport.incorrectTypeError);
config.macros.fileImport.restart(wizard);
return;
}
// now we are done, so remove the iframe
$(iframe).remove();
} else {
POSTedWiki = wizard.POSTResponse;
}
tmpStore.importTiddlyWiki(POSTedWiki);
var newTiddlers = tmpStore.getTiddlers();
var workspace = config.defaultCustomFields['server.workspace'];
var context = {
status: true,
statusText: 'OK',
httpStatus: 200,
adaptor: wizard.getValue('adaptor'),
tiddlers: newTiddlers
};
context.adaptor.store = tmpStore;
wizard.setValue('context', context);
wizard.setValue('workspace', workspace);
wizard.setValue('inFileImport', true);
config.macros.importTiddlers.onGetTiddlerList(context, wizard);
}
};
var _onGetTiddler = config.macros.importTiddlers.onGetTiddler;
config.macros.importTiddlers.onGetTiddler = function(context, wizard) {
if (wizard.getValue('inFileImport')) {
var me = config.macros.importTiddlers;
if(!context.status)
displayMessage("Error in importTiddlers.onGetTiddler: " + context.statusText);
var tiddler = context.tiddler;
var fields = tiddler.fields;
merge(fields, config.defaultCustomFields);
fields["server.workspace"] = wizard.getValue('workspace');
delete fields['server.permissions'];
delete fields['server.bag'];
fields['server.page.revision'] = 'false';
delete fields['server.recipe'];
fields.changecount = 1;
store.suspendNotifications();
store.saveTiddler(tiddler.title, tiddler.title, tiddler.text,
tiddler.modifier, tiddler.modified, tiddler.tags, tiddler.fields,
false, tiddler.created);
store.resumeNotifications();
var remainingImports = wizard.getValue("remainingImports")-1;
wizard.setValue("remainingImports",remainingImports);
if(remainingImports === 0) {
if(context.isSynchronous) {
store.notifyAll();
refreshDisplay();
}
wizard.setButtons([
{caption: me.doneLabel, tooltip: me.donePrompt, onClick: me.onClose}
],me.statusDoneImport);
autoSaveChanges();
}
} else {
_onGetTiddler.apply(this, arguments);
}
};
var _onCancel = config.macros.importTiddlers.onCancel;
config.macros.importTiddlers.onCancel = function(e)
{
var wizard = new Wizard(this);
if (!wizard.getValue('inFileImport')) {
return _onCancel.apply(this, arguments);
}
var place = wizard.clear();
config.macros.fileImport.restart(wizard);
return false;
};
var _step3Html = config.macros.importTiddlers.step3Html;
var _onGetTiddlerList = config.macros.importTiddlers.onGetTiddlerList;
config.macros.importTiddlers.onGetTiddlerList = function(context, wizard) {
var fileImport = config.macros.fileImport;
var importTiddlers = config.macros.importTiddlers;
if (wizard.getValue('inFileImport')) {
importTiddlers.step3Html = fileImport.step3Html;
} else {
importTiddlers.step3Html = _step3Html;
}
_onGetTiddlerList.apply(this, arguments);
};
})(jQuery);
//}}}
A [[TiddlySpace|Space]] comprises of two collections of [[tiddlers|Tiddler]]: a [[public|Public]] [[bag|Bag]] and a [[private|Private]] [[bag|Bag]].
Tiddlers in the public bag are visible to anyone who has access to the TiddlySpace server, in the case of [[tiddlyspace.com|http://tiddlyspace.com]] this is anyone on the Web.
Only a [[member|Member]] of the [[space|Space]] may alter a public tiddler.
{{annotation{
''Note:'' This default may be changed to more fine grained access control settings by a [[member|Member]] of a space using the TiddlyWeb [[HTTP API]].
}}}
/***
|''Name''|SimpleSearchPlugin|
|''Description''|displays search results as a simple list of matching tiddlers|
|''Authors''|FND|
|''Version''|0.4.1|
|''Status''|stable|
|''Source''|http://devpad.tiddlyspot.com/#SimpleSearchPlugin|
|''CodeRepository''|http://svn.tiddlywiki.org/Trunk/contributors/FND/plugins/SimpleSearchPlugin.js|
|''License''|[[Creative Commons Attribution-ShareAlike 3.0 License|http://creativecommons.org/licenses/by-sa/3.0/]]|
|''Keywords''|search|
!Description
The [[tiddler macro|tiddler]] allows you to embed (or [[transclude|Transclusion]]) the entire text, a section or a slice of some tiddler into the current tiddler.
!Usage
{{{
<<tiddler [TextReference]>>
}}}
The {{{TextReference}}} can be any of...
| !Reference | !Example |h
|a tiddler title |{{{<<tiddler SomeTiddler>>}}}|
|a tiddler section|{{{<<tiddler [[Some Tiddler##Some Section]]>>}}}|
|a tiddler slice|{{{<<tiddler "Some Tiddler::SliceName">>}}}|
{{annotation{
''Note:'' Notice the different ways for wrapping a macro parameter in quotes or double square-brackets.
}}}
!"""Parameterised Transclusion"""
You can create tiddlers as templates by using the placeholders {{{$1}}} to {{{$9}}} for the content that you want replaced during transclusion.
{{annotation{
''Note:'' Transclusion parameters start with a dollar sign ({{{$}}}) not with percent ({{{%}}}) as commonly used in JavaScript string functions.
}}}
Appending the {{{with:}}} parameter followed by the desired parameter values will replace the placeholders {{{$1}}} to {{{$9}}} with these values in the transcluded tiddler content.
!!!"""An Example For Parameterized Transclusion"""
Create a tiddler called MyTemplates containing this text:
<<<
{{{!What I like}}}
{{{I like //$1// in [[$2|https://www.google.com/search?q=$2]]!}}}
<<<
Use transclusion while passing down parameters {{{$1='pineapple'}}} and {{{$2='Piña Colada'}}} as follows:
{{{
<<tiddler [[MyTemplates##What I like]] with: "pineapple" "Piña Colada">>
}}}
''The Output:''
<<<
I like //pineapple// in [[Piña Colada|https://www.google.com/search?q=Piña Colada]]!
<<<
!Description
The [[upgrade]] macro outputs the same UpgradeWizard as in the Backstage Area...
!Usage
{{{
<<upgrade>>
}}}
<<upgrade>>
Prevent a WikiWord from automatically becoming a link by putting a tilde (~) in front of it, e.g.:
{{{
~FooBar
}}}
~FooBar
!"""Using DisableWikiLinksPlugin"""
The [[DisableWikiLinksPlugin|http://www.tiddlytools.com/#DisableWikiLinksPlugin]] gives several options to customize automatic WikiWord linking, such as disabling it completely or only for tiddlers which don't already exist. After importing the plugin, these options must be enabled manually in the DisableWikiLinksPlugin tiddler; it may also be necessary to close and re-open the TiddlyWiki browser page before using the plugin for the first time.
All options are off by default, so settings applied by one user/in one browser will not be active for others. If you want to ensure that your options are in effect for, say, Web viewers, you can create a tiddler, e.g. DisableWikiLinksDefault, with a [[systemConfig]] tag and content like this:
{{{
config.options.chkDisableWikiLinks=false;
config.options.chkAllowLinksFromShadowTiddlers=false;
config.options.chkDisableNonExistingWikiLinks=false;
config.options.txtDisableWikiLinksList="DisableWikiLinksList";
config.options.txtDisableWikiLinksTag="excludeWikiWords";
}}}
Set the values to the defaults you prefer (e.g. change "false" to "true").
'' See Also ''
* [[WikiWords]]
* [[Escaping#Wiki_Markup]]
[[Category:FAQ]]
[[Category:Using TiddlyWiki]]
Here we are -- on TiddlySpace -- more precisely, the @TiddlyWikiDev space.
!"""What is TiddlySpace?"""
=> http://tiddlyspace.com
To set the default text alignment for all tiddlers, put something like this into your [[StyleSheet tiddler]]:
.viewer {
text-align: justify;
}
that CSS rule will fully justify your tiddler text.
TiddlyWiki provides a number of settings that allow you to configure your user experience.
In a classic TiddlyWiki these can be found in the right sidebar in the [[OptionsPanel]] from which also points to the [[AdvancedOptions]] that are as well accessible in the [[Backstage Area]] under ''Tweaks''.
@@Please do not modify this tiddler; it was created automatically upon space creation.@@
!Summary
Find the index for an element in the elements of an array for which a given field has a certain value.
!Signature
{{{Array.prototype.findByField = function(field,value) {} }}}
!Returns
integer: the index of the element where field matches value
!Arguments
;1. field
:the field to find the index for
;2. value
:the value to match against the elements field
!Example
{{{
var ti = 'Some Tiddler',
tids = store.getTiddlers();
tids.findByField("title",ti);
}}}
''returns:'' {{{true}}} when there is a tiddler with s title of {{{Some Tiddler}}}
/***
|''Name''|TiddlySpaceConfig|
|''Version''|0.7.7|
|''Description''|TiddlySpace configuration|
|''Status''|stable|
|''Source''|http://github.com/TiddlySpace/tiddlyspace/raw/master/src/plugins/TiddlySpaceConfig.js|
|''CoreVersion''|2.6.1|
|''Requires''|TiddlyWebConfig ServerSideSavingPlugin TiddlyFileImporter|
!Code
***/
//{{{
(function($) {
var tweb = config.extensions.tiddlyweb;
var recipe = config.defaultCustomFields["server.workspace"].split("recipes/")[1];
var currentSpace; // assigned later
var disabledTabs = [];
var coreBags = ["system", "tiddlyspace"];
var systemSpaces = ["plugins", "info", "images", "theme"];
systemSpaces = $.map(systemSpaces, function(item, i) {
return "system-%0_public".format(item);
});
// hijack search macro to add custom attributes for mobile devices
var _search = config.macros.search.handler;
config.macros.search.handler = function(place, macroName, params) {
_search.apply(this, arguments);
$(".searchField:input", place).
attr({ autocapitalize: "off", autocorrect: "off" });
};
// arg is either a container name or a tiddler object
// if fuzzy is truthy, space may be inferred from workspace (for new tiddlers)
// returns space object or false
var determineSpace = function(arg, fuzzy) {
if(typeof arg == "string") { // container name
var space = split(arg, "_", "r");
return ["public", "private"].contains(space.type) ? space : false;
} else if(arg) { // tiddler
var container = determineContainer(arg, fuzzy);
return container ? determineSpace(container.name, fuzzy) : false;
} else {
return false;
}
};
// if fuzzy is truthy, container may be inferred from workspace for new tiddlers
// returns container object or false
var determineContainer = function(tiddler, fuzzy) { // TODO: expose?
var bag = tiddler.fields["server.bag"];
var recipe = tiddler.fields["server.recipe"]; // XXX: unused/irrelevant/redundant!?
if(bag) {
return { type: "bag", name: bag };
} else if(recipe) {
return { type: "recipe", name: recipe };
} else if(fuzzy) { // new tiddler
var workspace = tiddler.fields["server.workspace"];
if(workspace) {
var container = split(workspace, "/", "l");
return ["bags", "recipes"].contains(container.type) ? container : false;
} else {
return false;
}
} else {
return false;
}
};
// hijack removeTiddlerCallback to restore tiddler from recipe cascade -- TODO: move into TiddlyWebWiki?
var sssp = config.extensions.ServerSideSavingPlugin;
var _removeTiddlerCallback = sssp.removeTiddlerCallback;
sssp.removeTiddlerCallback = function(context, userParams) {
var title = context.tiddler.title;
var recipe = context.tiddler.fields["server.recipe"];
_removeTiddlerCallback.apply(this, arguments);
if(recipe) {
context.workspace = "recipes/" + recipe;
var callback = function(context, userParams) {
if(context.status) {
var dirty = store.isDirty();
store.saveTiddler(context.tiddler).clearChangeCount();
store.setDirty(dirty);
} else {
store.notify(title, true);
}
};
context.adaptor.getTiddler(title, context, null, callback);
}
};
// splits a string once using delimiter
// mode "l" splits at the first, "r" at the last occurrence
// returns an object with members type and name
var split = function(str, sep, mode) {
mode = mode == "r" ? "pop" : "shift"; // TODO: use +/-1 instead of "l"/"r"?
var arr = str.split(sep);
var type = arr.length > 1 ? arr[mode]() : null;
return { type: type, name: arr.join(sep) };
};
var plugin = config.extensions.tiddlyspace = {
currentSpace: determineSpace(recipe),
coreBags: coreBags.concat(systemSpaces),
determineSpace: determineSpace,
isValidSpaceName: function(name) {
return name.match(/^[a-z][0-9a-z\-]*[0-9a-z]$/) ? true : false;
},
getCurrentBag: function(type) {
return "%0_%1".format(currentSpace, type);
},
getCurrentWorkspace: function(type) {
return "bags/" + this.getCurrentBag(type);
},
// returns the URL for a space's avatar (SiteIcon) based on a server_host
// object and an optional space name
// optional nocors argument prevents cross-domain URLs from being generated
getAvatar: function(host, space, nocors) {
if(space && typeof space != "string") { // backwards compatibility -- XXX: deprecated
space = space.name;
}
var subdomain = nocors ? currentSpace : space;
host = host ? this.getHost(host, subdomain) : "";
var bag = space ? "%0_public".format(space) : "tiddlyspace";
return "%0/bags/%1/tiddlers/SiteIcon".format(host, bag);
},
// returns the URL based on a server_host object (scheme, host, port) and an
// optional subdomain
getHost: function(host, subdomain) {
if(host === undefined) { // offline
tweb.status.server_host = {}; // prevents exceptions further down the stack -- XXX: hacky workaround, breaks encapsulation
return null;
}
subdomain = subdomain ? subdomain + "." : "";
var url = "%0://%1%2".format(host.scheme, subdomain, host.host);
var port = host.port;
if(port && !["80", "443"].contains(port)) {
url += ":" + port;
}
return url;
},
disableTab: function(tabTiddler) {
if(typeof(tabTiddler) == "string") {
disabledTabs.push(tabTiddler);
} else {
for(var i = 0; i < tabTiddler.length; i++) {
plugin.disableTab(tabTiddler[i]);
}
}
},
checkSyncStatus: function(tiddler) {
if(tiddler) {
var title = typeof(tiddler) === "string" ? tiddler : tiddler.title;
var el = story.getTiddler(title) || false;
if(el) {
refreshElements(el);
}
}
},
isDisabledTab: function(tabTitle) {
var match = new RegExp("(?:\\[\\[([^\\]]+)\\]\\])", "mg").exec(tabTitle);
var tabIdentifier = match ? match[1] : tabTitle;
return disabledTabs.contains(tabIdentifier);
},
getCSRFToken: window.getCSRFToken || null // this may not have been processed yet
};
currentSpace = plugin.currentSpace.name;
tweb.serverPrefix = tweb.host.split("/")[3] || ""; // XXX: assumes root handler
tweb.getStatus(function(status) {
var url = plugin.getHost(status.server_host);
tweb.status.server_host.url = url;
config.messages.tsVersion = status.version;
});
if(window.location.protocol == "file:") {
// enable AutoSave by default
config.options.chkAutoSave = config.options.chkAutoSave === undefined ?
true : config.options.chkAutoSave;
} else {
// set global read-only mode based on membership heuristics
var indicator = store.getTiddler("SiteTitle") || tiddler;
readOnly = !(recipe.split("_").pop() == "private" ||
tweb.hasPermission("write", indicator));
// replace TiddlyWiki's ImportTiddlers due to cross-domain restrictions
if(config.macros.fileImport) {
$.extend(config.macros.importTiddlers, config.macros.fileImport);
}
}
// hijack saveChanges to ensure SystemSettings is private by default
var _saveChanges = saveChanges;
saveChanges = function(onlyIfDirty, tiddlers) {
if(tiddlers && tiddlers.length == 1 &&
tiddlers[0] && tiddlers[0].title == "SystemSettings") {
var fields = tiddlers[0].fields;
delete fields["server.recipe"];
fields["server.bag"] = plugin.getCurrentBag("private");
fields["server.workspace"] = plugin.getCurrentWorkspace("private");
}
return _saveChanges.apply(this, arguments);
};
// ensure backstage is always initialized
// required to circumvent TiddlyWiki's read-only based handling
config.macros.backstageInit = {
init: function() {
showBackstage = true;
}
};
// disable evaluated macro parameters for security reasons
config.evaluateMacroParameters = "none";
var _parseParams = String.prototype.parseParams;
String.prototype.parseParams = function(defaultName, defaultValue, allowEval,
noNames, cascadeDefaults) {
if(config.evaluateMacroParameters == "none") {
arguments[2] = false;
}
return _parseParams.apply(this, arguments);
};
var _tabsMacro = config.macros.tabs.handler;
config.macros.tabs.handler = function(place, macroName, params) {
var newParams = [params[0]]; // keep cookie name
for(var i = 1; i < params.length; i += 3) {
var tabTitle = params[i + 2];
if(!plugin.isDisabledTab(tabTitle)){
newParams = newParams.concat(params[i], params[i + 1], tabTitle);
}
}
_tabsMacro.apply(this, [place, macroName, newParams]);
};
// disable ControlView for XHRs by default
$.ajaxSetup({
beforeSend: function(xhr) {
xhr.setRequestHeader("X-ControlView", "false");
}
});
// TiddlyWeb adaptor currently still uses httpReq, which needs extra magic -- XXX: obsolete this!
var _httpReq = httpReq;
httpReq = function(type, url, callback, params, headers, data, contentType,
username, password, allowCache) {
headers = headers || {};
headers["X-ControlView"] = "false";
_httpReq.apply(this, arguments);
};
// register style sheet for backstage separately (important)
store.addNotification("StyleSheetBackstage", refreshStyles);
// option for default privacy setting
config.optionsDesc.chkPrivateMode = "Set your default privacy mode to private";
config.optionsSource.chkPrivateMode = "setting";
config.options.chkPrivateMode = config.options.chkPrivateMode || false;
saveSystemSetting("chkPrivateMode", true);
config.defaultCustomFields["server.workspace"] = plugin.
getCurrentWorkspace(config.options.chkPrivateMode ? "private" : "public");
config.paramifiers.follow = {
onstart: function(v) {
if(!readOnly) {
var bag = "%0_public".format(currentSpace);
story.displayTiddler(null, v, DEFAULT_EDIT_TEMPLATE, null, null,
"server.bag:%0 server.workspace:bags/%0".format(bag));
story.setTiddlerTag(v, "follow", 1);
story.focusTiddler(v, "text");
}
}
};
var fImport = config.macros.fileImport;
if(fImport) {
fImport.uploadTo = "Upload to: ";
var _createForm = config.macros.fileImport.createForm;
config.macros.fileImport.createForm = function(place, wizard, iframeName) {
var container = $("<div />").text(fImport.uploadTo).appendTo(place);
var select = $('<select name="mode" />').appendTo(container)[0];
$('<option value="private" selected>private</a>').appendTo(select);
$('<option value="public">public</a>').appendTo(select);
wizard.setValue("importmode", select);
_createForm.apply(this, [place, wizard, iframeName]);
};
var _onGet = config.macros.importTiddlers.onGetTiddler;
config.macros.importTiddlers.onGetTiddler = function(context, wizard) {
var type = $(wizard.getValue("importmode")).val();
var ws = plugin.getCurrentWorkspace(type);
wizard.setValue("workspace", ws);
_onGet.apply(this, [context, wizard]);
};
}
config.extensions.ServerSideSavingPlugin.reportSuccess = function(msg, tiddler) {
plugin.checkSyncStatus(tiddler);
msg = config.extensions.ServerSideSavingPlugin.locale[msg];
var link = "/" + encodeURIComponent(tiddler.title);
displayMessage(msg.format([tiddler.title]), link);
};
})(jQuery);
//}}}
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
Type the text for 'Configuration_Options'
<<tiddler Lists>>
{{{
!Template
<<view modifier spaceLink>> on <<view modified date>> at <<view server.bag spaceLink>>{{right{<<view modifier SiteIcon width:24 height:24 preserveAspectRatio:yes label:no>>}}}
<<<
<<view text wikified>>
<<<
!EndTemplate
}}}
See http://trac.tiddlywiki.org/wiki/Translations for a current list of translations, and information on how to do new translations.
See http://trac.tiddlywiki.org/browser/Trunk/association/locales/core to view the source code of existing translations.
See http://translations.tiddlyspace.com/ to view and get information on how to include translations on TiddlySpace.
See [[UTF-8]]...
A ''zzConfig'' or ''zzTweaks'', etc. is in fact a small plugin tiddler tagged <<tag systemConfig>> that you create to override ~TiddlyWiki defaults. It owes its name to the fact that plugins are loaded in alphabetical order, so zzSomething takes care of having it load last.
For details see [[Changing Default Options]].
Are you interested in contributing to the core development? Hop over to [[TiddlyWiki@GitHub|https://github.com/TiddlyWiki]], fork the master branch and start making pull requests.
For a basic description for tiddlers, see [[Tiddler Properties]]<<slider chkTiddlerProperties "Tiddler Properties" "»" "click to reveal tiddler properties">> and [[Tiddler]].
The [[Tiddler]] class represents a single tiddler. Instances of this class are created as the user creates tiddlers; they are not deleted if a user closes the corresponding tiddler in the story.
Changing an instantiated tiddler object does not affect the tiddler as saved by the author; to make changes to the tiddler that will be saved the next time the [[TiddlyWiki|TiddlyWiki.class]] is saved, call ''store.saveTiddler''.
!"""Tiddler Functions"""
<<list filter [startsWith[title,Tiddler.]][sort[title]]>>
!! Methods (docs need update)
* [[autoLinkWikiWords|Tiddler.prototype.autoLinkWikiWords]]: returns whether the tiddler should have WikiWords linked.
* [[changed|Tiddler.prototype.changed]]: a hook to be called after the Tiddler object has been modified.
* [[escapeLineBreaks|Tiddler.prototype.escapeLineBreaks]] and [[unescapeLineBreaks|Tiddler.unescapeLineBreaks]]: converts line breaks from textual and HTML representations.
* [[generateFingerprint|Tiddler.prototype.generateFingerprint]]: return a SHA-1 hash of the tiddler's text.
* [[getSubtitle|Tiddler.prototype.getSubtitle]]: returns a subtitle with author name and modification date.
* [[isTagged|Tiddler.prototype.isTagged]]: returns whether the tiddler has been assigned a specific tag.
* [[isReadOnly|Tiddler.prototype.isReadOnly]]: returns whether the tiddler can be edited.
* [[Tiddler.LoadFromDiv|Tiddler.prototype.loadFromDiv]]: instantiate a Tiddler from HTML.
* [[saveToDiv|Tiddler.prototype.saveToDiv]]: render HTML for storing the tiddler.
!! Modifying Tiddler Contents
Assigning contents directly to the ''tiddler.text'' property of a retrieved tiddler object *can* be tricky ([[link|http://groups.google.com/group/TiddlyWiki/browse_thread/thread/44edde8c58e99892]]).
Normally, the TW core functions, {{{store.saveTiddler()}}} or {{{tiddler.set()}}} (for low-level internal operations) are used to change the value in the tiddler data, and these functions trigger furtherprocessing, such as refreshing the display or even auto-saving the file in response to changes in tiddler content.
In addition, many plugins hijack these functions in order to add system-level extensions that are triggered whenever a tiddler is changed. Directly setting the value of {{{tiddler.text}}} completely bypasses these functions, preventing all add-on ''and'' core side-effects behaviors from being triggered.
!!How TiddlyWiki Stores Tiddlers
TiddlyWiki's saves each tiddler in the hidden store area in the following format:
{{{
<div title="tiddler title" modifier="author/editor" modified="YYYY0MM0DD0hh0mm" created="YYYY0MM0DD0hh0mm" tags="foo [[bar baz]]">
<pre>
Body of the tiddler
</pre>
</div>
}}}
[[UnaMesa|http://unamesa.org]] acts as the custodian of the [[open source|http://en.wikipedia.org/wiki/Open_source]] license for [[TiddlyWiki]]'s source code. [[Jeremy Ruston|JeremyRuston]] transferred the full copyright to UnaMesa before [[Osmosoft]]'s acquisition by [[BT]].
<<<
A non-profit, world-wide association of individuals from industry, academia, and ~NGOs, UnaMesa, provides free software tools and web services for schools, clinics, and other community organizations.
It acts as an R&D organization to meet its goal; "for every student, educator, patient, and caregiver to have access to the information they need when they need it."
<<<
{{source{...from [[about.unamesa.org|http://about.unamesa.org]]}}}
<<<
For UnaMesa, the TiddlyWiki project is part of a greater endeavor "to improve the interoperability of digital records, especially educational materials"
<<<
{{source{...from [[projects.unamesa.org|http://tiddlywiki.projects.unamesa.org]]}}}
<<<
UnaMesa operates at the intersection between open source, fair trade and social networks so that it can develop new models of trust and hold information for public benefit.
<<<
{{source{...from [[unamesa.org|http://www.unamesa.org/about/overview.pdf]]}}}
!!External Resources
[[UnaMesa Videos|http://vimeo.com/tag:unamesa]]
!!"""TiddlyWiki StakeHolders"""
<<list filter [tag[StakeHolders]]>>
Discussion around TiddlyWiki's core functions from a developers perspective.
You can bundle CSS in a plugin using the following mechanism taking advantage of [[Section Transclusion]]
To do this in your plugin, first include a section in a comment like so...
{{{
/*
!CSS
body { border: solid 1px black; }
!END*/
}}}
Be sure touse the {{{!END}}} heading to signal the end of the ''CSS'' section and thus the StyleSheet. Then include the following lines in your plugin code...
{{{
var name = "StyleSheet" + tiddler.title;
config.shadowTiddlers[name] = "/*{{{*/\n%0\n/*}}}*/".
format(store.getTiddlerText(tiddler.title + "##CSS"));
store.addNotification(name, refreshStyles);
}}}
This accesses the ''CSS'' section of the plugin tiddler and creates and registers a StyleSheet shadow tiddler for it, e.g. for a plugin tiddler called ''~FooPlugin'', the StyleSheet would be called ''~StyleSheetFooPlugin''.
!Summary
The shadow tiddler StyleSheet is intended for you to customise the look and feel of your TiddlyWiki using CSS such as...
{{{
.mainMenu {
color: red;
}
}}}
!Default Contents
''none''
!TiddlySpace
The default StyleSheet tiddler in TiddlySpace demonstrates how you can reference other StyleSheets tiddler the contents of which are then included in full ~, like that seen in TiddlySpace in the StyleSheetTiddlySpace
{{{
/*{{{*/
[[StyleSheetTiddlySpace]]
/*}}}*/
}}}
The [[TiddlySpace API]] is built on top of the TiddlyWeb HTTP API, which is described in the [[tiddlyweb documentation|http://tiddlyweb.peermore.com/wiki/#%5B%5BHTTP%20API%5D%5D]]. For example, you can [[click here|/tiddlers?select=tag:!excludeLists]] for a list of all tiddlers in this [[TiddlyWiki.org]] in their html representation.
Edit your PageTemplate tiddler. Also see http://tiddlythemes.com/
(to be expanded)
Need help? Please, browse the [[FAQ]], first.
There are a number of google discussion groups revolving around TiddlyWiki related topics.
!"""Main Discussion Groups"""
;[[TiddlyWiki Discussion Group|groups.google.com/group/tiddlywiki]]
:» most frequented user discussion group
:» how to use and achieve stuff in TiddlyWiki
:» troubleshooting
:» using plugins
;[[TiddlyWikiDev Discussion Group|groups.google.com/group/tiddlywikidev]]
:» plugin development
:» TiddlyWiki development
:» release and beta discussions
;[[TiddlySpace Discussion Group|groups.google.com/group/tiddlyspace]]
:» using TiddlySpace
:» how to and troubleshooting
:» TiddlySpace plugins
;[[TiddlyWeb Discussion Group|groups.google.com/group/tiddlyweb]]
:» development focus
:» release and beta discussions for TiddlyWeb
:» change management
!"""Other Discussion Groups"""
;[[TiddlyWikiFR Discussion Group|groups.google.com/group/tiddlywikifr]]
:» pour ceux entre vous qui aiment le TiddlyWiki
;[[TiddlyWiki GTD Discussion Group|https://groups.google.com/forum/?fromgroups=#!forum/tiddlywiki-gtd]]
:» a TiddlyWiki discussion group focussing on GTD
;[[TWMobileApp Discussion Group|groups.google.com/group/twmobileapp]]
:» around [[TWMobile|https://itunes.apple.com/de/app/twmobile/id381945222?mt=8]] -- TiddlyWiki for iOS
!More Communication Tools
;[[TiddlyWiki IRC Channel]]
:direct chat with community members and developers
Type the text for 'Read-Only_Mode'
deprecated as of 2.7.0
<<sync>>
There are numerous ways to get TiddlyWiki to display the way you want it to.
!"""Themes Repository"""
A few themes have been listed over time in the themes repository which provide empty [[TiddlyWikis|TiddlyWiki]] for you to start with...
http://themes.tiddlywiki.com
!"""How Themes Work"""
A TiddlyWiki theme basically is a set of [[shadow tiddlers|ShadowTiddler]] and [[style sheets|StyleSheets]], predefined tiddlers which may be bundled to a theme tiddler.
!Summary
The shadow tiddler AdvancedOptions provides access to several advanced options and accessible via the OptionsPanel in the [[Sidebar]] or the {{button{tweaks}}} command in the [[Backstage Area]] -- also see [[options macro|options]].
!Default Contents
{{{
<<options>>
}}}
<<options>>
You can use Javascript to dynamically calculate the value of a parameter which you actually want to pass down to a macro. This is called an evaluated parameter.
Extended HTML syntax is used in the [[Shadow Tiddlers|http://shadowtiddlers.tiddlyspace.com]] that define the structure and layout of a TW. The main shadow tiddlers are PageTemplate, EditTemplate, ViewTemplate.
It allows users to use TW macros and plugins within their TW document and not just in their tiddlers. An example from the ViewTemplate would be:
{{{
<div class='title' macro='view title text'></div>
}}}
More generically:
{{{
<... macro='macroName param param' ..>>
}}}
When encountered it is often interpreted by the [[wikify()]] method. When [[wikify()]] recognizes the embedded macro syntax, it calls on [[invokeMacro()]], which automatically sets a ''global'' window.tiddler variable to point to the current tiddler object that is being rendered. This enables the macro's parameter processing to use "evaluated parameters" that reference values within that tiddler object, like this:
{{{
<... someMacro ... {{tiddler.title}} ...>
}}}
@@Note: prior to TW2.4.3, you needed TiddlyTools' CoreTweaks #444, which added the global window.tiddler (and window.place) variables to the invokeMacro() function. Starting with TW2.4.3, this functionality was added to the core.@@
@@Note: for security reasons evaluated parameters were turned off in TiddlySpace@@
If and when the calculation and substitution of evaluated parameters is complete, invokeMacro then passes the parameter values onward for further rendering by the appropriate [[macro handler function|Macro Handler]]:
{{{
config.macros.someMacro.handler(place,tiddler,params,wikifier,paramString,tiddler)
}}}
For example in the view title example this would be:
{{{
config.macros.view.handler(place,tiddler,params,wikifier,paramString,tiddler)
}}}
Note: Typically, the tiddler parameter passed to the macro handler function is the same as the 'current tiddler' that is being rendered. However, when you use the "<<tiddler TiddlerName>>" macro to [[transclude]] content from other tiddlers, the //tiddler// param that is passed to any macros ''within the transcluded tiddler'' will reference that transcluded tiddler, rather than the outer //current// tiddler that is being rendered.
TiddlySpace keeps a revision history on all edits.
It is accessible by...
*clicking on the tiddler subtitle which contains the modified date
*using the ''revisions'' command under ''Show Additional Commands'' in the tiddler toolbar
|''ViewTemplate''|##TWDocViewTemplate|
|''EditTemplate''|##EditTemplate|
|''StyleSheet''|##StyleSheet|
!ViewTemplate
[[TWDocViewTemplate]]
!EditTemplate
[[EditTemplate]]
!StyleSheet
[[StyleSheet]]
TiddlyWiki's architecture for interacting with servers allows it to be plugged into a wide variety of servers. This is done through the addition of plugins containing custom server adaptors. Server adaptors are designed to allow things like importing tiddlers, loading missing tiddlers on the fly and synchronising changes with a server. Separate macros and core extensions implement such features by accessing the facilities provided by server adaptors.
Server adaptors are designed to use a familiar model akin to a device driver, adapting a standardised interface to whatever is required by the underlying server: [[WebDAV|http://en.wikipedia.org/wiki/Webdav]], ZiddlyWiki, [[MediaWiki|http://en.wikipedia.org/wiki/MediaWiki]], [[Socialtext|http://www.socialtext.com/]] or HTML scraping.
Many server architectures are [[REST|http://en.wikipedia.org/wiki/REST]] based, and TiddlyWiki server adaptors are particularly easy to create for common REST patterns. It is also possible to create TiddlyWiki server adaptors for severs with an [[XML-RPC|http://en.wikipedia.org/wiki/XML-RPC]] interface.
Server adaptors are registered by name in the global object {{{config.adaptors}}}. Each entry is a reference to an object constructor for that type of server adaptor. The adaptor object must implement the following methods:
* [[Adaptor.openHost]]
* [[Adaptor.openWorkspace]]
* [[Adaptor.getTiddler]]
* [[Adaptor.close]]
Additionally the adaptor may implement the following methods:
* [[Adaptor.getWorkspaceList]] (required to support the Import Tiddlers UseCase)
* [[Adaptor.getTiddlerList]] (required to support the Import Tiddlers UseCase)
* [[Adaptor.putTiddler]] (required to support the Sync UseCase)
* [[Adaptor.getTiddlerRevision]]
* [[Adaptor.getTiddlerRevisionList]]
The adaptor object is used through the life of a connection to a server; see [[ServerAdaptorConcepts]] for details. Many of the methods use an AsynchronousPattern of callbacks to deliver their results.
Custom formatters for the WikifierFormatterMechanism are often used alongside server adaptors to allow TiddlyWiki to display content in the native format of a server.
In TiddlyWiki you can implement scripts in JavaScript -- most of these are based on...
:» [[InlineJavascriptPlugin|Scripts]]
:» transclusion with evaluated parameters
<<list all>><<listfiltr>>
!Backstage Tabs
The following sample code adds the contents of [[SideBarOptions]] as a new backstage tab (called "myTab"):
{{{
config.tasks.myTab = {
text: "my custom tab",
tooltip: "A custom backstage tab",
content: "<<tiddler SideBarOptions>>"
};
config.backstageTasks.push("myTab");
}}}
!Command Buttons
In order to add a command button directly to the backstage bar, the ''action'' property should be used to reference a JavaScript function (no arguments are passed).
For example, the standard backstage button for ''Save'' is defined as follows:
{{{
save: {
text: "save",
tooltip: "Save your changes to this TiddlyWiki",
action: saveChanges
}
}}}
If the desired function does not have a convenient entry point, or if certain functions need arguments passed to them, an anonymous function declaration can be used as a "wrapper":
{{{
config.tasks.myTab = {
text: "username",
tooltip: "set your TiddlyWiki user name",
action: function() {
var newName = prompt("Please enter a new username:", config.options.txtUserName);
if(!newName || !newName.length)
return false; // canceled by user
config.options.txtUserName = newName;
saveOptionCookie("txtUserName");
}
};
config.backstageTasks.push("myTab");
}}}
!Other Elements
Adding content other than tabs or buttons to the backstage bar requires hijacking the [[backstage.init()]] function in order to render those elements directly into the ''backstageToolbar'' element.
{{annotation{
''Note'': While hijacking the core function is necessary for this purpose, it could corrupt the backstage if there is an error in the respective code. Since the backstage serves as a fallback mechnanism in case there are other problems, this should be used with caution.
}}}
For example, the following code adds the search box to the backstage toolbar (inside a container with the custom searchBox):
{{{
backstage.init_old = backstage.init;
backstage.init = function() {
var s = "{{searchBox{<<search>>}}}";
this.init_old.apply(this, arguments);
wikify(s, document.getElementById("backstageToolbar"));
};
}}}
!See Also
* [[Backstage Area]]
Apps are adaptations of TiddlyWiki which provide full blown applications, e.g. for...
*Notes
*Tasks and [[GTD|http://en.wikipedia.org/wiki/Getting_Things_Done]]
*[[PIM|http://en.wikipedia.org/wiki/Personal_information_management]]
*etc...
Unlike a TiddlyLink, an external link references an external source or website.
| !Mode | !Description |width:220px; !Markup |width:100px; !Example |h
| ''URL'' |a valid url is automatically rendered as an external link|{{{http://foo.com}}}|http://foo.com|
| ''Pretty Link'' |for links that need to be more readable or simply shorter|{{{[[foo|http://bar.com]]}}}|[[foo|http://bar.com]]|
Also see [[Internal Link|TiddlyLink]]...
<svg xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="100%" width="100%" version="1.1" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" viewBox="0 0 40 40"><metadata><rdf:RDF><cc:Work rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/><dc:title/></cc:Work></rdf:RDF></metadata><defs><linearGradient id="lG3826" x1="7.0996" gradientUnits="userSpaceOnUse" y1="18.829" gradientTransform="matrix(1.5858347,0,0,1.8078238,1098.1851,351.13716)" x2="1.5461" y2="-0.95166"><stop stop-color="#000" offset="0"/><stop stop-color="#9c9b99" offset="1"/></linearGradient><linearGradient id="lG3828" y2="372.44" gradientUnits="userSpaceOnUse" y1="375.7" x2="1111.7" x1="1097.7"><stop style="stop-color:#ac9393;" offset="0"/><stop style="stop-color:#c8b7b7;" offset="1"/></linearGradient></defs><g transform="translate(-1080.9375,-357.3329)"><path style="stroke-width:0;stroke-miterlimit:4;fill:url(#lG3826);" d="m1080.9,357.32,39.996-0.0426-0.01,40.008c-15.507-25.519-15.36-25.95-39.988-39.965z"/><path style="stroke-dashoffset:0;stroke:#7aa3be;stroke-linecap:round;stroke-miterlimit:4;stroke-width:1.49999988;fill:#c1e6fd;" d="m1091.9,363.55c6.5716-6.4925,16.576-7.3925,23.147-0.90003,6.5717,6.4925,6.5717,17.019,0,23.511-4.4424-8.6113-12.288-15.713-23.147-22.611z"/><path style="stroke-dashoffset:0;stroke:#ce81b0;stroke-linecap:round;stroke-miterlimit:4;stroke-width:1.5;fill:#f4c4e2;" d="m1110.2,367.62c3.217,3.2168,3.217,8.4323,0,11.649-3.8194-4.2357-8.3307-8.1824-11.649-11.649,3.217-3.2168,8.4325-3.2168,11.649-0.00002z"/><path style="stroke-linejoin:bevel;stroke:#000000;stroke-linecap:round;stroke-dasharray:none;stroke-miterlimit:4;stroke-width:0.80000001;fill:url(#lG3828);" d="m1081,357.34c18.79,6.4752,32.53,16.56,39.894,39.892-11.19-17.028-14.878-19.19-27.352-14.96,6.2984-12.098,3.9371-13.19-12.542-24.932z"/></g></svg>
TiddlyHome is a package design as an infrastructure for multi-user and multi-site TiddlyWiki hosting service based on UploadPlugin.
TiddlyHome 0.1.4 is in beta stage and use TiddlyWiki 2.4.1
[[TiddlyHome|http://tiddlyhome.bidix.info/]]
Edit the ViewTemplate tiddler.
Reply to this tiddler if you have a particular request for missing content or have content you wish to contribute but it doesn't as of yet have a tiddler covering it in this space.
All suggestions are greatly appreciated and will be displayed below.
{{right title{[[Core Macros]]}}}A [[macro|Macro]] provides predefined functions or operations that are performed when inserted into tiddler text. It is invoked whenever the tiddler is rendered and typically performs one of the fllowing actions...
*inserts computed content into the rendered text at the point where it is referenced
*manipulates or enhances any content that is so far rendered
Embedding a macro is done using the following markup...
;plain
: {{{<<macroName>>}}}
;w/ simple parameters
:{{{<<macroName paramValue1 paramValue2>>}}}
;w/ named parameters
:{{{<<macroName param1:value1 param2:'value2 with spaces'>>}}}
;w/ mixed parameters
:{{{<<macroName paramValue1 param2:[[value 2]]>>}}}
There are several standard macros built into the TiddlyWiki core. Many additional macros are available by installing plugins.
!Summary
Occasionally you want to add notes to your tiddler markup yet don't want it displayed when the tiddler is rendered. To achieve this, wrap the text using {{{/% hidden %/}}}.
!Example
{{{
text before .../%
!HIDDEN SECTION
This is content of a hidden section.
!END%/ text after
}}}
''Display as:''
<<<
text before /%
!HIDDEN SECTION
This is content of a hidden section.
!END%/... text after
<<<
!Also see...
;[[Suppressing Formatting]]
:» when you just don't want that text to be TiddlyWiki markup
:» when you want to prevent WikiWords
:» when you copy & paste from other sources
!Code Comments
When you move to the design and development front of TiddlyWiki, you may want or need to //commented out// passage to prevent them from being interpreted as Javascript, CSS or HTML...
;HTML Comments
:» e.g. in PageTemplate, ViewTemplate, EditTemplate
:{{sub{
{{{
<!-- HTML Comment-->
<!--
possibly
multiple lines
-->
}}}
}}}
:» for displaying wikified content in HTML tiddlers:
:{{sub{
{{{
<!---
''Wikified'' HTML Comment
possibly multiple lines
--->
}}}
}}}
;CSS Comments
:» e.g. in StyleSheets
:{{sub{
{{{
/* CSS Comment */
/*
possibly
multiple lines
*/
}}}
}}}
:» for displaying wikified content in CSS tiddlers:
:{{sub{
{{{
/*** __Wikified__ CSS Comment ***/
/***
!Possibly
* multiple
* lines
***/
}}}
}}}
;JavaScript Comments
:» in plugins, i.e. tiddlers tagged <<tag systemConfig>>
:{{sub{
{{{
// JavaScript, Single-line Comment
}}}
}}}
:{{sub{
{{{
/* JavaScript Comment */
/*
possibly
multiple lines
*/
}}}
}}}
:» for displaying wikified content in JavaScript tiddlers:
:{{sub{
{{{
/*** __Wikified__ JavaScript Comment ***/
/***
; possibly
: multiple lines
***/
}}}
}}}
!Also see...
;[[Code Formatting|Code]]
:» for rendering code formatting
@@Please do not modify this tiddler; it was created automatically upon space creation.@@
/***
|''Name''|TiddlySpaceFollowingPlugin|
|''Version''|0.7.1|
|''Description''|Provides a following macro|
|''Author''|Jon Robson|
|''Requires''|TiddlySpaceConfig TiddlySpaceTiddlerIconsPlugin ErrorHandler|
|''License''|[[BSD|http://www.opensource.org/licenses/bsd-license.php]]|
!Usage
Tag a tiddler with "follow" to express a list of followers.
Using the {{{<<followTiddlers X>>}}}
will reveal the number of tiddlers with name X in the set of spaces the *current* user viewing your space follows.
{{{<<following jon>>}}} will list all the users following Jon.
{{{<<followers jon>>}}} will list all the followers of jon.
{{{<linkedTiddlers>>}}} will list all tiddlers across TiddlySpace linked to the current tiddler
{{{<linkedTiddlers follow:yes>>}}} will list all tiddlers across TiddlySpace that come from your list of followers
adds spaceLink view type {{{<<view server.bag spaceLink>>}}} creates a link to the space described in server.bag
{{{<<view server.bag spaceLink title>>}}} makes a link to the tiddler with title expressed in the field title in space server.bag
If no name is given eg. {{{<<following>>}}} or {{{<<follow>>}}} it will default the current user.
!StyleSheet
.followTiddlersList li {
list-style:none;
}
.followButton {
width: 2em;
}
.followTiddlersList li .siteIcon {
height:48px;
width: 48px;
}
#sidebarTabs .followers li a,
.followers .siteIcon,
.followers .siteIcon div {
display: inline;
}
.followTiddlersList li .externalImage, .followTiddlersList li .image {
display: inline;
}
.scanResults li {
list-style: none;
}
!Code
***/
//{{{
(function($) {
var LIMIT_FOLLOWING = 100;
var tweb = config.extensions.tiddlyweb;
var tiddlyspace = config.extensions.tiddlyspace;
var currentSpace = tiddlyspace.currentSpace.name;
var shadows = config.shadowTiddlers;
config.annotations.ScanTemplate = "This tiddler is the default template used in the display of tiddlers founding using the tsScan macro. To access attributes use the view macro e.g. {{{<<view title text>>}}}";
shadows.ScanTemplate = "<<view modifier SiteIcon width:24 height:24 spaceLink:yes label:no>> <<view title link>>";
shadows.FollowersTemplate = "<<view server.bag SiteIcon width:24 height:24 spaceLink:yes label:no>> <<view server.bag spaceLink>>";
shadows.FollowingTemplate = "<<view title SiteIcon width:24 height:24 spaceLink:yes label:no>> <<view title spaceLink>>";
shadows.FollowTiddlersBlackList = "";
shadows.FollowTiddlersHeading = "There are tiddlers in spaces you follow using the follow tag which use the title <<view title text>>";
shadows.FollowTiddlersTemplate = ["* <<view server.space SiteIcon width:24 height:24 spaceLink:yes label:no>> ",
"<<view server.space spaceLink title external:no>> modified by <<view modifier spaceLink>> ",
"in the <<view server.space spaceLink>> space (<<view modified date>> @ <<view modified date 0hh:0mm>>).\n"].join("");
var name = "StyleSheetFollowing";
shadows[name] = "/*{{{*/\n%0\n/*}}}*/".
format(store.getTiddlerText(tiddler.title + "##StyleSheet"));
store.addNotification(name, refreshStyles);
// provide support for sucking in tiddlers from the server
tiddlyspace.displayServerTiddler = function(src, title, workspace, callback) {
var adaptor = store.getTiddlers()[0].getAdaptor();
var localTitle = tiddlyspace.getLocalTitle(title, workspace);
var tiddler = new Tiddler(localTitle);
tiddler.text = "Please wait while this tiddler is retrieved...";
tiddler.fields.doNotSave = "true";
store.addTiddler(tiddler);
src = story.displayTiddler(src || null, tiddler.title);
tweb.getStatus(function(status) {
var context = {
host: tweb.host, // TODO: inherit from source tiddler?
workspace: workspace,
headers: { "X-ControlView": "false" }
};
var getCallback = function(context, userParams) {
var tiddler = context.tiddler;
tiddler.title = localTitle;
store.addTiddler(tiddler);
story.refreshTiddler(localTitle, null, true); // overriding existing allows updating
if(callback) {
callback(src, tiddler);
}
};
adaptor.getTiddler(title, context, null, getCallback);
});
};
tiddlyspace.scroller = {
runHandler: function(title, top, bottom, height) {
var i;
var handlers = tiddlyspace.scroller.handlers;
var tidEl = story.getTiddler(title);
if(tidEl) {
var topEl = $(tidEl).offset().top + 20;
if(top === false || (topEl > top && topEl < bottom)) {
var h = handlers[title];
for(i = 0; i < h.length; i++) {
h[i]();
}
tiddlyspace.scroller.clearHandlers(title);
}
} else {
tiddlyspace.scroller.clearHandlers(title);
}
},
clearHandlers: function(title) {
tiddlyspace.scroller.handlers[title] = [];
},
registerIsVisibleEvent: function(title, handler) {
tiddlyspace.scroller.handlers[title] = tiddlyspace.scroller.handlers[title] || [];
tiddlyspace.scroller.handlers[title].push(handler);
},
init: function() {
this.handlers = {};
this.interval = window.setInterval(function() {
var top = $(window).scrollTop();
var height = $(window).height();
var bottom = top + height;
var title;
for(title in tiddlyspace.scroller.handlers) {
if(title) {
tiddlyspace.scroller.runHandler(title, top, bottom, height);
}
}
}, 2000); // every 2 seconds check scroll position
}
};
tiddlyspace.scroller.init();
var followMacro = config.macros.followTiddlers = {
locale: {
followListHeader: "Here are tiddlers from spaces you follow using the follow tag which use this title.",
noTiddlersFromFollowers: "None of the spaces you follow contain a tiddler with this name.",
errorMessage: "There was a problem retrieving tiddlers from the server. Please try again later."
},
init: function() {
followMacro.lookup = {};
},
followTag: "follow",
getHosts: function(callback) {
tweb.getStatus(function(status) {
callback(tweb.host, tiddlyspace.getHost(status.server_host, "%0"));
});
},
getBlacklist: function() {
return store.getTiddlerText("FollowTiddlersBlackList").split("\n");
},
handler: function(place, macroName, params, wikifier, paramString, tiddler) {
var args = paramString.parseParams("anon")[0];
var containingTiddler = story.findContainingTiddler(place).getAttribute('tiddler');
var title = (args.anon && args.anon[0]) || tiddler.fields["server.title"] || tiddler.title;
var tid = store.getTiddler(title);
var user = params[1] || false;
if(tid) {
followMacro.makeButton(place, {
url: "/search?q=title:%22" + encodeURIComponent(title) + "%22",
containingTiddler: containingTiddler,
blacklisted: followMacro.getBlacklist(), title: title, user: user,
consultFollowRelationship: (args.follow &&
args.follow[0] === 'false') ? false : true });
}
},
makeButton: function(place, options) { // this is essentially the same code in TiddlySpaceFollowingPlugin
var title = options.title;
var blacklisted = options.blacklisted;
var tiddler = store.getTiddler(title);
var btn = $('<div class="followButton" />').addClass("notLoaded").appendTo(place)[0];
if(blacklisted.contains(title)) {
$(btn).remove();
return;
} else {
var user = options.user;
window.setTimeout(function() { // prevent multiple calls due to refresh
tiddlyspace.scroller.registerIsVisibleEvent(options.containingTiddler, function() {
var mkButton = function(followers, ignore) {
if(!followers && !ignore) {
$(btn).remove();
} else {
$("<a />").appendTo(btn);
var scanOptions = { url: options.url,
spaceField: options.spaceField || "bag", template: null, sort: "-modified",
callback: function(tiddlers) {
$(btn).removeClass("notLoaded");
followMacro.constructInterface(btn, tiddlers);
}
};
if(!ignore) {
scanOptions.showBags = followMacro._getFollowerBags(followers);
}
scanOptions.hideBags = [tiddler.fields["server.bag"]];
scanMacro.scan(null, scanOptions, user);
}
};
if(options.consultFollowRelationship) {
followMacro.getFollowers(mkButton);
} else {
mkButton([], true);
}
});
}, 1000);
}
},
constructInterface: function(container, tiddlers) {
var txt = tiddlers.length;
var className = txt > 0 ? "hasReplies" : "noReplies";
var el = $(story.findContainingTiddler(container));
$(container).empty().addClass(className);
var btn = $("<a />").addClass("followedTiddlers").text(txt).
click(function(ev) {
followMacro.followingOnClick(ev);
}).appendTo('<div class="followedTiddlers" />').appendTo(container)[0];
$.data(btn, "tiddlers", tiddlers);
},
followingOnClick: function(ev) {
var target = ev.target;
var locale = followMacro.locale;
var el = $('<div class="followTiddlersList" />')[0];
var popup = Popup.create(target,"div");
$(popup).addClass("taggedTiddlerList followList").click(function(ev) { // make it so only clicking on the document outside the popup removes the popup
if(ev.target.parentNode != document) {
ev.stopPropagation();
}
}).append(el);
var tiddlers = $.data(target, "tiddlers") || [];
scanMacro.template(el, tiddlers.slice(0,1), "FollowTiddlersHeading");
scanMacro.template(el, tiddlers, "FollowTiddlersTemplate");
if(tiddlers.length === 0) {
$("<li />").text(locale.noTiddlersFromFollowers).appendTo(el);
}
Popup.show();
ev.stopPropagation();
return popup;
},
_getFollowerBags: function(followers) { // XXX: private or not?
return $.map(followers, function(name, i) {
return name != currentSpace ? "%0_public".format(name) : null;
});
},
getFollowers: function(callback, username) {
// returns a list of spaces being followed by the existing space
var followersCallback = function(user) {
if(!user.anon) {
scanMacro.scan(null, {
url: "/search?q=bag:%0_public tag:%1 _limit:%2".format(user.name, followMacro.followTag, LIMIT_FOLLOWING),
spaceField: "title", template: null, cache: true,
callback: function(tiddlers) {
var followers = [];
for(var i = 0; i < tiddlers.length; i++) {
followers.push(tiddlyspace.resolveSpaceName(tiddlers[i].title));
}
callback(followers);
}
});
} else {
callback(false);
}
};
return !username ? tweb.getUserInfo(followersCallback) : followersCallback({ name: username });
}
};
var scanMacro = config.macros.tsScan = {
init: function () {
this.scanned = {};
},
_tiddlerfy: function(jsontiddlers, options) {
var tiddlers = [];
var spaceField = options.spaceField || "bag"; // TODO: phase out use view types instead
$.each(jsontiddlers, function(i, t) {
var use = false;
if(!options.showBags || (options.showBags && options.showBags.contains(t.bag))) {
use = true;
}
if(options.hideBags && options.hideBags.contains(t.bag)) {
use = false;
}
if(use) {
var spaceName = t[spaceField];
var tiddler = config.adaptors.tiddlyweb.toTiddler(t, tweb.host);
tiddler.fields["server.space"] = tiddlyspace.resolveSpaceName(spaceName);
tiddlers.push(tiddler);
}
});
return tiddlers;
},
_scanCallback: function(place, jsontiddlers, options) {
var locale = followersMacro.locale;
var tiddlers = scanMacro._tiddlerfy(jsontiddlers, options);
if(options.sort) {
tiddlers = store.sortTiddlers(tiddlers, options.sort);
}
if(options.filter) {
var _store = new TiddlyWiki();
config.lastStore = _store;
for(var i = 0; i < tiddlers.length; i++) {
var clone = tiddlers[i];
clone.title = tiddlyspace.getLocalTitle(clone.title, clone.fields['server.workspace']);
_store.addTiddler(clone);
}
tiddlers = _store.filterTiddlers(options.filter);
}
if(place) {
$(place).empty();
var list = $("<ul />").appendTo(place)[0];
scanMacro.template(list, tiddlers, options.template);
if(tiddlers.length === 0) {
$("<li />").text(options.emptyMessage || locale.noone).appendTo(list);
$(list).addClass("emptyList");
}
}
if(options.callback) {
options.callback(tiddlers);
}
},
constructSearchUrl: function(host, options) {
if(options.url) {
return options.url;
}
var inputs = options.searchValues;
var tag = options.tag;
var searchField = options.searchField || "title";
var searchQuery = [];
for(var i = 0; i < inputs.length; i++) {
searchQuery.push('%0:"%1"'.format(searchField, inputs[i]));
}
var query = searchQuery.join(" OR ");
query = tag ? "(%0) AND tag:%1".format(query, tag) : query;
query = options.query ? "%0;%1;".format(query, options.query) : query;
query = options.fat ? "%0&fat=1".format(query) : query;
return '%0/search?q=%1'.format(host, query);
},
scan: function(place, options) { // TODO: make use of list macro with url filter
var locale = followersMacro.locale;
options.template = options.template ? options.template : "ScanTemplate";
followMacro.getHosts(function(host, tsHost) {
$(place).text(followersMacro.locale.pleaseWait);
options = options ? options: {};
var url = scanMacro.constructSearchUrl(host, options);
if(options.cache && scanMacro.scanned[url]) {
var tiddlers = scanMacro.scanned[url].tiddlers;
var run = function(tiddlers) {
scanMacro._scanCallback(place, tiddlers, options);
};
if(tiddlers) {
run(tiddlers);
} else {
scanMacro.scanned[url].callbacks.push(run);
}
} else {
var callback = function(tiddlers) {
scanMacro._scanCallback(place, tiddlers, options);
};
if(scanMacro.scanned[url] && scanMacro.scanned[url].callbacks) {
scanMacro.scanned[url].callbacks.push(callback);
} else {
scanMacro.scanned[url] = {
callbacks: [callback]
};
}
ajaxReq({
url: url,
dataType: "json",
success: function(tiddlers) {
scanMacro.scanned[url].tiddlers = tiddlers;
var callbacks = scanMacro.scanned[url].callbacks;
while(callbacks.length > 0) {
callbacks.pop()(tiddlers);
}
},
error: function(xhr) {
$(place).empty();
$("<span />").addClass("annotation error").text(locale.error.format(xhr.status)).appendTo(place);
}
});
}
});
},
template: function(place, tiddlers, template) { // TODO: make use of list macro.
for(var i = 0; i < tiddlers.length; i++) {
var tiddler = tiddlers[i];
var item = $('<li class="spaceName" />').appendTo(place)[0];
var spaceName = tiddler.fields["server.space"] || "";
var templateText = store.getTiddlerText(template).replace(/\$1/mg, spaceName);
wikify(templateText, item, null, tiddler);
}
},
getOptions: function(paramString, tiddler) {
var args = paramString.parseParams("name", null, true, false, true)[0];
var options = { query: false, sort: false, tag: false, template: false, showBags: args.show || false,
hideBags: args.hide || false, filter: false, spaceField: "bag", searchField: "title", fat: false,
emptyMessage: false };
for(var name in args) {
if(name != "name") {
if(name == "fat") {
options[name] = true;
} else {
options[name] = args[name][0];
}
}
}
// if user has set searchField to modifier, then use the modifiers value if available otherwise use searchValues.
var searchField = options.searchField;
var searchValues = args[searchField] ? args[searchField] : args.searchValues;
// if neither of those were used use the first parameter
var defaultValues = tiddler ? [ tiddler.title ] : [];
options.searchValues = searchValues ? searchValues : ( args.name ? [args.name[0]] : defaultValues);
return options;
},
handler: function(place, macroName, params, wikifier, paramString, tiddler) {
var container = $("<div />").addClass("scanResults resultsArea").appendTo(place)[0];
var options = scanMacro.getOptions(paramString, tiddler);
scanMacro.scan(container, options);
}
};
var followersMacro = config.macros.followers = {
locale: {
loggedOut: "Please login to see the list of followers",
noSupport: "We were unable to retrieve followers as your browser does not support following.",
pleaseWait: "Please wait while we look this up...",
error: "Error %0 occurred whilst retrieving data from server",
noone: "None."
},
handler: function(place, macroName, params, wikifier, paramString, tiddler) {
var locale = followersMacro.locale;
var args = paramString.parseParams("name", null, true, false, true)[0];
var username = args.name ? args.name[0] : false;
var container = $('<div class="followers" />').text(locale.pleaseWait).
appendTo(place)[0];
var followersCallback = function(user) {
if(user.anon) {
$("<span />").text(locale.loggedOut).appendTo(container);
} else {
var options = scanMacro.getOptions(paramString);
$.extend(options, {
url: "/search?q=title:@%0 OR title:%0 tag:%1 _limit:%2".
format(user.name, followMacro.followTag, LIMIT_FOLLOWING),
spaceField: "bag",
template: options.template ? options.template : "FollowersTemplate"
});
scanMacro.scan(container, options);
}
};
return !username ? followersCallback({ name: currentSpace }) : followersCallback({ name: username });
}
};
var followingMacro = config.macros.following = {
locale: {
pleaseWait: followersMacro.locale.pleaseWait,
loggedOut: "Please login to see who you are following",
noSupport: followersMacro.locale.noSupport,
error: followersMacro.locale.error,
noone: followersMacro.locale.noone
},
handler: function(place, macroName, params, wikifier, paramString, tiddler) {
var locale = followingMacro.locale;
var args = paramString.parseParams("name", null, true, false, true)[0];
var fat = args.fat ? true : false;
var username = args.name ? args.name[0] : false;
var container = $('<div class="following" />').text(locale.pleaseWait).
appendTo(place)[0];
var followingCallback = function(user) {
if(user.anon) {
$("<span />").text(locale.loggedOut).appendTo(container);
} else {
var options = scanMacro.getOptions(paramString);
$.extend(options, {
url: "/search?q=bag:%0_public tag:%1 _limit:%2".format(user.name, followMacro.followTag, LIMIT_FOLLOWING),
spaceField: "title",
template: options.template ? options.template : "FollowingTemplate"
});
scanMacro.scan(container, options);
}
};
return !username ? followingCallback({ name: currentSpace }) : followingCallback({ name: username });
}
};
var linkedMacro = config.macros.linkedTiddlers = {
handler: function(place, macroName, params, wikifier, paramString, tiddler) {
var args = paramString.parseParams("anon")[0];
var title = params[0] || tiddler.fields["server.title"] || tiddler.title;
var tid = store.getTiddler(title);
var containingTiddler = story.findContainingTiddler(place).getAttribute('tiddler');
if(tid) {
followMacro.makeButton(place, {
spaceField: "recipe",
url: "/bags/%0/tiddlers/%1/backlinks".format(tid.fields['server.bag'],
encodeURIComponent(tid.title)),
blacklisted: followMacro.getBlacklist(),
title: title,
containingTiddler: containingTiddler,
user: params[1] || false,
consultFollowRelationship: args.follow ? true : false });
}
}
};
if(config.options.chkFollowTiddlersIsLinkedTiddlers) {
merge(config.macros.followTiddlers, config.macros.linkedTiddlers);
config.shadowTiddlers.FollowTiddlersHeading = "These are the other tiddlers that link to this tiddler.";
}
})(jQuery);
//}}}
!Description
The [[tags macro|tags]] outputs a list of [[Tags]] assigned to a tiddler.
!Usage
{{{
<<tags [TiddlerName]>>
}}}
!Parameters
Without parameters, the tags macro displays the tags for the current tiddler. Using some {{{Tiddler Name}}} as the optional first parameter, tags are listed for that tiddler instead.
{{annotation{
''Note'': Tags which themselves are tagged <<tag excludeLists>> are not displayed, e.g. if we have a tiddler called ''Foo'' which is tagged <<tag excludeLists>> and the tags macro is run on some other tiddler that has <<tag Foo>> as a tag, the tag <<tag Foo>> will not be displayed in the list.
}}}
!Example
{{{
<<tags "tag (macro)">>
}}}
<<tags "tag (macro)">>
|Name|HideWhenPlugin|
|Author|[[SimonBaird]]|
|URL|http://mptw.tiddlyspot.com/|
|Description|Allows conditional inclusion/exclusion in templates.|
See [[Alternative Tiddler Layouts]]...
''iTW Beta by Bidix''
BidiX has a iPhone optimized version of TiddlyWiki available here: http://itw.bidix.info/
''TW on iPhone using a data url bookmark''
I believe it's possible if you sync the bookmark from safari via iTunes. But you can't save. (Though save to url should be possible. Anyone thought about this?)
''Saving using virtual disk''
It is possible to store TiddlyWiki documents on a [http://groups.google.com/group/TiddlyWiki/browse_thread/thread/35d17fdd24c43391 virtual disk] on the iPhone or iPod Touch.
''Notes from Jeremy''
{{Quote
|[http://groups.google.com/group/TiddlyWiki/browse_thread/thread/e7aa4c89cbb8c84f/3f79cea1ca1b52a7?#3f79cea1ca1b52a7 Jeremy]
|
I've had the chance to play with TiddlyWiki on an iPhone. It works as a pretty perfect clone of the desktop Safari experience, with iPhone pinch-zoom goodness to make it navigable on the tiny display. The problems are:
* it takes ages to load; over EDGE it's excruciating, but even over wifi you have to be pretty patient
* even once it's loaded, JavaScript intensive actions can be painfully slow. For example, clicking on a tiddler link can take more than a second to open the target tiddler
* it doesn't seem possible to load the TW file from a file:// URL; therefore there is no obvious avenue to explore for saving changes locally
* the desktop UI although usable doesn't really work well on the tiny screen; built in iPhone apps like Mail show a more iPhone-native way of accomplishing some of the same things
The planned stripping back of the core code should improve the performance situation. It's possible that a solution to the saving problem will come in the form of a native iPhone app that wraps WebKit to provide a custom host for TiddlyWiki.
In the short term, I've started investigating a plugin to attack the last problem, optimising the TiddlyWiki UI for the iPhone. (Inspired by http://www.joehewitt.com/iui/)
Cheers
Jeremy
}}
''Notes from Phil''
{{Quote
|[http://philhaigh.blogspot.com Phil]
|
Jeremy mentions that it isn't possible to load the TW file from a file:// URL. This is because the iPhone (and iPod Touch) do not have a 'publicly accessible' file system and therefore the browser does not support the file:// protocol on these platforms.
Cheers
Phil
}}
''Notes from Tim''
{{Quote
|Tim
|
It is possible to load a TW file from a file:// URL on jailbroken iPhones. There is a package on ModMyi.com that contains the [[http://modmyi.com/cydia/package.php?id=1387 file schema]]. With jailbroken iPhones, the full filesystem is accessible, through programs such as [[http://www.appleiphoneschool.com/openssh/ SSH]] or [[http://iphone.heinelt.eu/?Applications:iFile iFile]]. If you do use SSH, make sure you change the root password!
Tim
}}
''Notes from Poul''
Some of us would argue that the iPhone is intended as a terminal for telephony and web access. You would store your notes on a server or 'in the cloud' using either of [[hosted|Server-Side Solutions]] solutions like TiddlyWeb or giewiki. That way, the sync problem is not a problem. I admit that with giewiki, I still need to focus on reducing the # of web requests.
Anyway, the biggest problem seems to be that since you don't have cursor keys, you can't scroll in edit boxes (or can you..yes: use 2 fingers & lors of patience).
[[Category:FAQ]]
[[Category:Using TiddlyWiki]]
[[Category:Platforms]]
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xl="http://www.w3.org/1999/xlink" version="1.1" viewBox="434 218 68 68"
width="30" height="30">
<g stroke="none" stroke-opacity="1" stroke-dasharray="none" fill="none" fill-opacity="1">
<g>
<path d="M 478.39694 232.53705 L 478.39694 232.53705
C 477.1145 231.85132 475.77875 231.30147 474.41058 230.88734 L 474.41058 218.24994 L 461.58942 218.24994
L 461.58942 230.88734 C 460.22125 231.30147 458.8855 231.85132 457.60306 232.53705 L 448.66824 223.60214
L 439.6022 232.66814 L 448.53717 241.60304 C 447.8515 242.8854 447.30157 244.22116 446.88745 245.58936
L 434.25 245.58936 L 434.25 258.41052 L 446.88745 258.41052
C 447.30157 259.77869 447.8515 261.11447 448.53717 262.39688 L 439.6022 271.33173 L 448.66824 280.3978
L 457.60306 271.46283 C 458.8855 272.14862 460.22125 272.69846 461.58942 273.11252 L 461.58942 285.74988
L 474.41058 285.74988 L 474.41058 273.11252 C 475.77875 272.69846 477.1145 272.14862 478.39694 271.46283
L 487.33176 280.3978 L 496.39767 271.33173 L 487.46286 262.39688
C 488.14853 261.11447 488.69836 259.77869 489.11255 258.41052 L 501.74988 258.41052 L 501.74988 245.58936
L 489.11255 245.58936 C 488.69836 244.22116 488.14853 242.8854 487.46286 241.60304 L 496.39767 232.66814
L 487.33176 223.60214 Z M 475.3328 244.66714 C 479.3825 248.71698 479.3825 255.2829 475.3328 259.33273
C 471.28296 263.3826 464.71704 263.3826 460.66724 259.33273
C 456.61737 255.2829 456.61737 248.71698 460.66724 244.66714
C 464.71704 240.61734 471.28296 240.61734 475.3328 244.66714" fill="#111"
class="glyph"/>
</g>
</g>
</svg>
[[Tiddlers|Tiddler]] can have attributes in the form of custom [[fields|Fields]]. A tiddler field can be any data that describe or extend the tiddler with dedicated information, e.g. geo data associated with a tiddler.
To view the fields of a tiddler, click on the more button in your toolbar and select the {{button{fields}}} option.
{{annotation{
''Note'': This tiddler has a custom field named {{{color}}} which could potentially be used by a plugin to set the text color.
}}}
In TiddlySpace you can programatically inspect tiddler fields via the [[TiddlySpace API]], e.g.:
* [[click to see the text serialization for this tiddler|http://tiddlywiki.tiddlyspace.com/bags/tiddlywiki_public/tiddlers/Custom Fields.txt]]
!"""Editing Fields"""
By default it is not possible to edit a custom field in TiddlyWiki. To enable editing install a plugin, e.g. [[FE2|http://tbgtd.tiddlyspot.com/#FE2]] or [[FieldsEditorPlugin|http://visualtw.ouvaton.org/VisualTW.html#FieldsEditorPlugin]]. In TiddlySpace, you can alternatively include the @first-class-fields space which as well provides field editing functions.
!"""Basic Viewing & Editing"""
First of all, custom field names must be all lower case in order to be stored and retrieved sucessfully.
The most simple way to create and edit a custom field is by modifying your shadow tiddlers called EditTemplate and ViewTemplate:
;EditTemplate
:{{{
<div>My Field: <span macro="edit my-field"></span></div>
}}}
;ViewTemplate
:{{{
<div>My Field: <span macro="view my-field"></span></div>
}}}
Now, when you view any tiddler, you will see the value of {{{my-field}}} for the corresponding tiddler and are able to edit and save a new value for it in edit mode.
If you want the values for your custom field to be rendered as wiki text, use the parameter {{{wikified}}} for the view macro in the ViewTemplate...
;ViewTemplate
:{{{
<div>My Field: <span macro="view my-field wikified"></span></div>
}}}
!"""Styling The Field Output"""
You can apply inline styles directly in your ViewTemplate, e.g.:
;ViewTemplate
:{{{
<div style="font-size:200%;">My Field: <span macro="view my-field"></span></div>
}}}
A better way is to use a class and to put the corresponding css code in your StyleSheet tiddler,e.g.:
;ViewTemplate
:{{{
<div class="my-field">My Field: <span macro="view mything"></span></div>
}}}
;StyleSheet
:{{sub{
{{{
.my-field {
color:white;
background: red;
border:3px solid green;
}
}}}
}}}
!"""Changing The Edit Box"""
Use css to change the size that comes with the edit box by default. you can do it with CSS, e.g.:
;EditTemplate
:{{{
<div><span class="my-box" macro="edit mything"></span></div>
}}}
;StyleSheet
:{{sub{
{{{
.my-box input {
width:100%;
}
}}}
}}}
!"""Display Fields Conditionally"""
To conditionally display custom fields you can install and use [[HideWhenPlugin|http://mptw.tiddlyspot.com/#HideWhenPlugin]].
Here's what you do to to conditionally show fields based on tags using HideWhenPlugin. Let suppose you have a some tiddlers tagged <<tag friend>> and you use a custom field to maintain some information about them, say their favourite food. To view and edit your friends' favourite food, add the following:
;ViewTemplate
:{{sub{
{{{
<div macro="showWhen tiddler.tags.contains('friend')">
Favourite food: <span macro="view favourite-food"></span>
</div>
}}}
}}}
;EditTemplate:
:{{sub{
{{{
<div macro="showWhen tiddler.tags.contains('friend')">
Favourite Food: <span macro="edit favourite-food"></span>
</div>
}}}
}}}
!"""Gathering Field Data"""
To list all your friends whose favourite food is pizza, you can install and use [[ForEachTiddlerPlugin|http://tiddlywiki.abego-software.de/#ForEachTiddlerPlugin]] from [[Udo Borowski|http://tiddlywiki.abego-software.de]].
Once installed, add this to a tiddler:
:{{sub{
{{{
<<forEachTiddler
where
' store.getValue(tiddler,"favourite-food") == "pizza" '
>>
}}}
}}}
This displays a bulleted list of tiddlers tagged <<tag friends>> whose favourite food is {{{pizza}}} -- saved in the custom field {{{favourite-food}}}.
For more information on how to customize the output, refer to the [[plugin documentation|http://tiddlywiki.abego-software.de/#ForEachTiddlerPlugin]].
!Summary
This prototype function the [[Story.class]] changes the location in the browsers' address bar to a permalink for all open tiddlers. Implemented by the permaview macro.
!Signature
{{{Story.prototype.permaView = function() {} }}}
!Returns
undefined
!Arguments
none
!Example
If you run...
{{{
permaview();
}}}
...with just this tiddler being open, then the address bar will change to...
{{{
http://tiddlywikidev.tiddlyspace.com/#Story.prototype.permaview()
}}}
This is a problem with Firebug for Firefox.
{{annotation{
Forget the below workaround: You can keep Firebug enabled. Switch to Firebug's "Net" tab and in the ''Options'' menu select "Disable Network Monitoring". This stops the problem from recurring when you try upload.
}}}
Firebug's console interferes with the browser's handling of ~XMLHttpRequest functions. The problem is triggered by selecting "Show ~XMLHttpRequests" from the Firebug Console "Options" menu (open Firebug to access the menu).
In the previous version of Firebug, disabling this menu option avoided the problem. However, as of Firebug v1.0.1, it seems that isn't enough, and the problem can appear even if the "Show..." menu it unchecked.
One workaround is to completely disable Firebug until needed. Another temporarily workaround is to toggle (i.e., set and then clear) the "Show ~XMLHttpRequests" menu item just before doing the upload. This stops Firebug from interferring in the NEXT ~XMLHttpRequest. Curiously, even though the menu item remains unchecked, any subsequent ~XMLHttpRequests will again fail until you toggle the menu again.
----
I did a test (2013-09-23) with:
* FireBug Version: 1.12.1
* FireFox Version: 24.0
* OS ubuntu 13.04
* http://a-pm-experimental.tiddlyspot.com/
** TW core version: 2.5.3
* FireBug is open
** Network tab is open, to see what's going on
I did create a new tiddler.
I did "save to web" -> Everything works as expected.
-pmario
----
The //getTemplateForTiddler// method of the [[Story]] class returns HTML source code ready to be used as a template that is stored inside a tiddler. This method takes three parameters:
* the title of the tiddler that is about to be displayed
* the title of the tiddler containing the template source code. Note that the constants //~DEFAULT_VIEW_TEMPLATE// and //~DEFAULT_EDIT_TEMPLATE// do not work here.
* a reference to the Tiddler about to be displayed
Only the second parameter is actually used by the TiddlyWiki code, but the other information is passed for the benefit of plugin developers who override this method.
This page is meant as an overview of the basic TiddlyWiki architecture.
* [[store|Store]] -- [[TiddlyWiki.class]]
* [[story|Dev:Story]]
* [[notifications|config.options.notify]]
* [[wikifier|Dev:Wikifier]]
* [[formatters|Dev:Formatters]]
* [[macros|Dev:Macros]]
* [[toolbar commands|Dev:Toolbar Commands]]
* [[saving|Dev:FileSystem]]
* [[adaptors|Dev:Server Adaptor Mechanism]]
/***
|''Name''|jQueryOutline|
|''Documentation''|http://listfiltr.tiddlyspace.com|
|''Author''|[[Tobias Beer|http://tobibeer.tiddlyspace.com]]|
|''Idea''|http://stackoverflow.com/questions/1852816/nested-ordered-lists|
|''Version''|0.4.0 (2013.09.24)|
|''CoreVersion''|2.5.3|
|''Readable Source''|https://raw.github.com/tobibeer/TiddlyWikiPlugins/master/resources/ListFiltrPlugin/jQueryOutline.js|
/%***/
/*{{{*/
(function(e){e.fn.outline=function(t,n){function r(e){if(!+e)return false;var t=String(+e).split(""),n="",r=3,i=["","C","CC","CCC","CD","D","DC","DCC","DCCC","CM","","X","XX","XXX","XL","L","LX","LXX","LXXX","XC","","I","II","III","IV","V","VI","VII","VIII","IX"];while(r--)n=(i[+t.pop()+r*10]||"")+n;return Array(+t.join("")+1).join("M")+n}function i(e){var n,i,s="",o,u=t.counterTemplates,a=t.plain,f=a?e.length-1:0;for(n=f;n<e.length;n++){i=e[n];o=n%u.length;switch(u[o].substr(0,1)){case"a":i=String.fromCharCode(96+i);break;case"A":i=String.fromCharCode(64+i);break;case"i":i=r(i).toLowerCase();break;case"I":i=r(i);break}s+=i+u[o].substr(1)}return s+" "}var t=e.extend({},e.fn.outline.defaults,t),n=n||[];this.each(function(){e(this).children("li").each(function(r){var s=n.concat([r+1]);e("<span></span>").addClass(t.liClass).text(i(s)).prependTo(this);e(this).children("ol").outline(t,s)})});if(!n.length)this.addClass(t.olClass)};e.fn.outline.defaults={liClass:"pseudo-ol-li",olClass:"pseudo-ol",counterTemplates:["1.","a.","i."],plain:true};var t=config.macros.outline={handler:function(t){var n=e(t).children().last();while(n.is("br")){n=n.prev()}if(n.is("span, div")){n=n.children("ol").first()}n.outline()}}})(jQuery);config.shadowTiddlers["StyleSheetjQueryOutline"]="/*{{{*/\n"+"ol .pseudo-ol-li { display: none }\n"+"ol.pseudo-ol, ol.pseudo-ol ol { list-style: none; margin-left: 1.5em; padding-left: 0.5em;}\n"+"ol.pseudo-ol {margin-left: 0.5em;padding-left:0em;}\n"+"ol.pseudo-ol .pseudo-ol-li { display: inline; font-weight: bold; padding-right:3px; }\n"+"/*}}}*/";store.addNotification("StyleSheetjQueryOutline",refreshStyles)
//%/
!Description
The [[importTiddlers macro|importTiddlers]] outputs the same import wizard that is provided in the [[Backstage Area]]...
!Usage
{{{
<<importTiddlers>>
}}}
<<importTiddlers>>
!Summary
The shadow tiddler SideBarTabs is used as the contents of the tabs panel in the right-hand [[Sidebar]].
!Default Contents
{{{
<<tabs txtMainTab "Timeline" "Timeline" TabTimeline "All" "All tiddlers" TabAll "Tags" "All tags" TabTags "More" "More lists" TabMore>>
}}}
<<tabs txtMainTab "Timeline" "Timeline" TabTimeline "All" "All tiddlers" TabAll "Tags" "All tags" TabTags "More" "More lists" TabMore>>
!TiddlySpace
In a default TiddlySpace the tabs are reduced to one level...
{{{
<<tabs
txtMainTab
"Recent" "Recently edited tiddlers" TabTimeline
"All" "All tiddlers" TabAll
"Public" "All public tiddlers" [[TiddlySpaceTabs##Public]]
"Private" "All private tiddlers" [[TiddlySpaceTabs##Private]]
"Tags" "All tags" TabTags
"Spaces" "Tiddlers grouped by space" [[TiddlySpaceTabs##Spaces]]
"Missing" "Missing tiddlers" TabMoreMissing
"Orphans" "Orphaned tiddlers" TabMoreOrphans
"Shadows" "Shadowed tiddlers" TabMoreShadowed
>>
}}}
<<tabs
txtMainTab
"Recent" "Recently edited tiddlers" TabTimeline
"All" "All tiddlers" TabAll
"Public" "All public tiddlers" [[TiddlySpaceTabs##Public]]
"Private" "All private tiddlers" [[TiddlySpaceTabs##Private]]
"Tags" "All tags" TabTags
"Spaces" "Tiddlers grouped by space" [[TiddlySpaceTabs##Spaces]]
"Missing" "Missing tiddlers" TabMoreMissing
"Orphans" "Orphaned tiddlers" TabMoreOrphans
"Shadows" "Shadowed tiddlers" TabMoreShadowed
>>
See [[Alternative Tiddler Layouts]]...
See [[Plugin]]
From the [[Glossary|Tiddler]]...
<<<
<<tiddler Tiddler>>
<<<
In a classic TiddlyWiki, tiddlers are primarily displayed and edited in the main story column at the center of the page. Tiddlers are pervasive in TiddlyWiki, most content is stored as a tiddler, like the MainMenu, even Plugins and StyleSheets.
Other systems may use more formal terms, e.g.""" "items" """,""" "entries" """,""" "entities" """ -- according to [[Jeremy Ruston|JeremyRuston]],""" "tiddler" """may undoubtedly be a silly name, but it has the virtue of being confusingly distinctive rather than confusingly generic.
!!Structure
<<tiddler 'Standard Field'>>
!![[Shadow Tiddlers|ShadowTiddler]]
Shadow tiddlers are tiddlers that provide default contents which also server as failproof fallbacks -- see ShadowTiddler.
!!"""Tiddler IDs"""
Every tiddler element as displayed by the browser and stored in the [[DOM]] has a unique identifier. This ID is composed of the string {{{tiddler}}} and the tiddler's name, e.g. {{{tiddlerGettingStarted}}}.
;[[ticket #472|http://trac.tiddlywiki.org/ticket/472]]
:» discusses blanks in tiddler titles -- resolved with TiddlyWiki version 2.6.3
!!Also see
* [[ShadowTiddler]]
* [[Toolbar]]
* [[Alternative Tiddler Layouts]]
To leave acomment use the ''reply'' button at the bottom of a tiddler. {{right{
Rather interested in
[[Core Development]]?
}}}
However, the tiddler will actually reside in your home space.
@TiddlyWikiDev will search TiddlySpace and pull in all the responses and show them as comments. This way, you can suggest changes and those suggestions can be discussed (if required) before making it into the actual documentation.
In order to be able to reply, you will need to be a member of tiddlyspace.
Please refer to the [[FUNCTION TEMPLATE]] when documenting a core function.
''TODO:'' Especially all functions that lack brackets at the end would probably profit from a rewrite.
Have suggestions for missing content? Reply to [[TiddlyWiki Dev Missing Stuff]].
<<tiddler "Developer Space">>
There are four basic stages in TiddlyWiki's startup process:
;oninit
:when ''main()'' starts
;onload
:after tiddlers have been loaded (including shadow tiddlers)
;onconfig
:right after plugins are loaded
;onstart
:when [[restarting|Dev.Restart]]
These are defined within the paramifier mechanism.
<<closeAll>><<permaview>><<newTiddler>>
See [[Alternative Tiddler Layouts]]...
See [[store.getTaggedTiddlers()]]...
To save on space, TiddlyWiki users often host images externally on sites like Flickr and ImageShack. A URL or HTML code for the image is then pasted into a tiddler (including MainMenu and SiteTitle to display images in the menu and header respectively).
Open the tiddler, position the cursor where the image is to go and paste in the link using the following formatting:
'''URL'''
<nowiki>
[img[URL of image]]
</nowiki>
'''URL with alternate text and link'''
<nowiki>
[img[alternate text|URL of image][tiddler or URL]]
</nowiki>
'''HTML'''
<nowiki>
<html>HTML code from hosting site</html>
</nowiki>
''Image Hosting''
There are various free image hosting services which can be used to store pictures:
* [[TinyPic|http://tinypic.com/index.php]]
* [[ImageShack|http://www.imageshack.us]]
* [[Flickr|http://www.flickr.com]]
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
!ImportTiddlers Method
see [[Importing Tiddlers]]
!Copy & Paste Method
;Locate the plugin you want to install
* It's a good idea to get it from the plugin author's site so you know you have the latest version
;Copy the source of the plugin tiddler
* To do this you need to click the tiddler's 'edit' button. Sometimes instead of an 'edit' button there is a 'view' or 'source' button instead, but either way it should show you the source of the plugin tiddler.
* Click in the text box and do an "Edit", "Select All" from your browser menu, or press Ctrl-A (Cmd-A for Mac users) to select the entire contents. Often the tiddlers contents is already selected for you so you may be able to skip this step.
* Do an "Edit", "Copy", or press Ctrl-C (Cmd-C for Mac users) to copy the entire contents of the tiddler.
;Create the plugin tiddler in your TiddlyWiki
* Back in your own TiddlyWiki, click 'new tiddler' to create a tiddler.
* You can name the tiddler anything you like but to save confusion give it the same as the plugin you are installing.
* Do an "Edit", "Paste", or Ctrl-V/Cmd-V to paste the plugin source code into your new plugin tiddler.
* (Note if you updating a plugin you already have you can just edit it, do a select all, delete to clear the contents before you paste in the new contents).
;Add the "systemConfig" tag
* Before you save the new plugin tiddler, add the tag "systemConfig" to the tags box. It must start with a lowercase 's'. This is what tells TiddlyWiki to execute the code in the plugin tiddler when starting.
;Save and reload
* The plugin is not active until you save and reload your TiddlyWiki so click 'save changes', then click reload in your browser.
;Testing
* Now your plugin should be active and working. Check that it is doing what it should be doing.
!Troubleshooting
cf. [[Troubleshooting]]
;If it's not working but you don't get an error
Check the following
* Did you remember the systemConfig tag? It must be spelt correctly and it is case sensitive.
* Did you save and reload?
;You get javascript error messages (check your Javascript Console in Firefox)
* It means that there are errors in the plugin code.
* Check that you copied the entire plugin source code and that you clicked edit (or view or source) before copying.
* It's possible that the plugin is buggy. If you email the plugin author or post to the TiddlyWiki Google Group you may get some help. Mention your browser your OS and the details of the problem you're having.
The tiddler is the basic, self-contained element in TiddlyWiki and is defined by a set of standard fields.
It is a piece of micro-content which can contain human readable content based on [[TiddlyWiki Markup]] or other text based formats, [[binary data|Binary Tiddler]], CSS for StyleSheets or JavaScript in the form of [[plugins|Plugins]].
In TiddlySpace, each tiddler is saved in a [[bag|Bag]] and may be accessed through the TiddlyWeb [[HTTP API]], e.g. a text version of this tiddler can be retrieved using: http://tiddlywiki.tiddlyspace.com/Tiddler.txt
If you are going to work on some topic for longer, please list it under [[DOC - Review]] to indicate others that YOU are currently working on this. Remove when you're done.
!Topics for Review
The following topics may need to be created / reviewed...
*InterfaceOptions
*SpecialTags
*SpecialTiddlers
*IncrementalSearch
*RegExpSearch
*SaveEmptyTemplate
*CustomStyleSheet
*NestedStyleSheets
*NestedTemplates
*CustomMarkup
*MobileDevices
!Done?!?
*[[ToolbarButtons|Toolbar]]
*[[Tags]]
*[[TiddlerSlicing|Slices]]
!Final
*[[Startup Parameters]]
*[[HtmlEntities|HTML Entities]]
*[[PermaView]]
*[[KeyboardShortcuts|Keyboard Shortcuts]]
*[[SafeMode|Safe Mode]]
Use the StyleSheet tiddler.
Check out http://tiddlythemes.com for a list of themes.
Plugins enhancing tagging...
By default, some [[TiddlyWiki Markup]] such as lists or tables do not allow multi-line content. However, workarounds exist to achieve this nontheless.
!Custom CSS Class Wrapper
See section ''Custom CSS Class Wrapper'' in [[TiddlyWiki Markup]]...
The most simple and versatile method to use multi-line content in a list element is by using a (dummy) custom CSS class wrapper, e.g.:
<html><pre>
#item 1
#{{multiLine{
!!!Heading
Some content.
}}}
# item 3
</pre>
<ol>
<li>item 1</li>
<li>
<h3>Heading</h3>
<p>Some content.</p>
</li>
<li>item 3</li>
</ol></html>{{annotation{
''Note'': You are not required to actually define the respective css class in your StyleSheet.
}}}
!"""Manual Line Breaks"""
Especially in tables, a manual line break can be used, e.g.:
{{{
|!foo|bar<br>baz|
}}}
|!foo|bar<br>baz|
The same can be achieved using [[CoreTweak #831 from TiddlyTools|http://tiddlytools.com/#CoreTweaks]] and the following syntax:
{{{
|!foo|bar\\
baz|
}}}
Create a line break simply by appendind two backslashes at the end of a line without breaking the list or table format.
{{annotation{
''Note'': A [[TiddlyTools CoreTweak|http://tiddlytools.com/#CoreTweaks]] can be installed either by importing the whole [[CoreTweaks|http://tiddlytools.com/#CoreTweaks]] plugin or by appending the desired [[CoreTweak|http://tiddlytools.com/#CoreTweaks]] to your [[zzConfig]].
}}}
!"""Using Transclusion"""
You can use the [[tiddler macro|tiddler]] to transclude (embed) multi-line into a tiddler by fetching it from another tiddler, e.g.:
{{{
# item 1
# <<tiddler [[item 2]]>>
# item 3
}}}
!!!Partial Transclusion
You can as well transclude a hidden section of the same tiddler, e.g ''~SomeTiddler'' might contain:
{{{
|Foo|<<tiddler [[SomeTiddler##LOREM]]>>|
|Bar|<<tiddler [[SomeTiddler##IPSUM]]>>|
/%
!LOREM
Lorem ipsum dolor sit amet.
!IPSUM
Consectetur adipisicing elit.
!END%/
}}}
|Foo|Lorem ipsum dolor sit amet.|
|Bar|Consectetur adipisicing elit.|
{{annotation{
''Note:'' Fore hidden sections, use uppercase """SECTION TITLES""" to easily identify that it's a hidden section.
}}}
!"""MediaWiki Formatter"""
The [[MediaWikiTableFormatterPlugin|Formatting Text]] provides an alternative table syntax supporting multi-line content in table cells.
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
!Summary
This prototype function of the Date class returns the week number for a given date object, ranging from 1 to 52.
!Signature
{{{Date.prototype.getYearForWeekNo = getWeek() {} }}}
!Returns
''integer:'' the date's week
!Arguments
none
!Example
//{{{
var date = new Date();
// Sun Sep 29 2013 09:37:06 GMT+0200 (CET)
date.getWeek();
//}}}
''returns:'' {{{6}}}
The latest TiddlyWiki development build can be obtained from http://nightly.tiddlywiki.org.
Nightly builds may have bugs or be unstable and therefore should not to be relied on for regular use. They are intended for testing purposes only.
# download the latest ''empty.zip'' from http://www.TiddlyWiki.com and extract a copy of ''"""empty.html"""''
# load your existing TW document into the browser
# invoke ''save changes'' to create a backup copy of the current document
# replace the existing TW document's file on disk with a copy of the latest ''"""empty.html"""''
# invoke ''save changes'' again
# reload your document
source and details: [[Post by Eric Shulman on the Google Groups|https://groups.google.com/d/msg/tiddlywiki/IZLKHHfewh4/T_WRXNBjHeoJ]]
First, set up a CSS rule to do the justification. Add something like
this to your StyleSheet tiddler (find it on tab More => Shadowed):
{{{
.justifyright {
text-align: right;
}
}}}
that gives you a css class of justifyright that you can use to make
stuff be right-aligned. Make sure you get the dot at the start of
".justifyright".
Now, edit some tiddler and put the stuff you want to justify inside
triple-curly-brackets, with the CSS class after the first two. You
will need to put the brackets on lines by themselves.
{{justifyright{
This paragraph will be right-aligned.
}}}
If you want full justification, add a CSS rule like this, and then use
"justifyfull" inside the triple curlies:
{{{
.justifyfull {
text-align: justify;
}
}}}
Note that '''this won't work''' if you use the triple curlies inline:
{{{
{{justifyright{ DOESN'T WORK: This is not right justified }}}
}}}
{{justifyright{ DOESN'T WORK: This is not right justified }}}
This is because triple curlies make spans if you use them inline
<nowiki>{{{like this}}}</nowiki>, but divs if you use them on lines by themselves.
/***
https://raw.github.com/tiddlyweb/chrjs/master/main.js
***/
//{{{
// TiddlyWeb adaptor
// v0.14.3
/*jslint vars: true, unparam: true, nomen: true, white: true */
/*global jQuery */
var tiddlyweb = (function($) {
"use strict";
var tw = {
routes: {
// host is the TiddlyWeb instance's URI (including server_prefix)
// placeholders "_type" & "name" refer to the respective bag/recipe
root : "{host}/",
bags : "{host}/bags",
bag : "{host}/bags/{name}",
recipes : "{host}/recipes",
recipe : "{host}/recipes/{name}",
tiddlers : "{host}/{_type}s/{name}/tiddlers",
tiddler : "{host}/{_type}s/{name}/tiddlers/{title}",
revisions: "{host}/{_type}s/{name}/tiddlers/{title}/revisions",
revision : "{host}/{_type}s/{name}/tiddlers/{title}/revisions/{revision}",
search : "{host}/search?q={query}"
}
};
var convertTimestamp, supplant;
// host (optional) is the URI of the originating TiddlyWeb instance
tw.Resource = function(type, host) {
if(arguments.length) { // initialization
this._type = type;
if(host !== false) {
this.host = host !== undefined ? host.replace(/\/$/, "") : null;
}
}
};
$.extend(tw.Resource.prototype, {
// retrieves resource from server
// callback is passed resource, status, XHR (cf. jQuery.ajax success)
// errback is passed XHR, error, exception, resource (cf. jQuery.ajax error)
// filters is an optional filter string (e.g. "select=tag:foo;limit=5")
get: function(callback, errback, filters) {
var uri = this.route();
if(filters) {
var separator = uri.indexOf("?") === -1 ? "?" : ";";
uri += separator + filters;
}
var self = this;
return $.ajax({
url: uri,
type: "GET",
dataType: "json",
success: function(data, status, xhr) {
var resource = self.parse(data);
resource.etag = xhr.getResponseHeader("Etag");
callback(resource, status, xhr);
},
error: function(xhr, error, exc) {
errback(xhr, error, exc, self);
}
});
},
// sends resource to server
// callback is passed data, status, XHR (cf. jQuery.ajax success)
// errback is passed XHR, error, exception, resource (cf. jQuery.ajax error)
put: function(callback, errback) {
var self = this;
var options = {
url: this.route(),
type: "PUT",
contentType: "application/json",
data: JSON.stringify(this.baseData()),
success: function(data, status, xhr) {
callback(self, status, xhr);
},
error: function(xhr, error, exc) {
errback(xhr, error, exc, self);
}
};
if(this.ajaxSetup) {
this.ajaxSetup(options);
}
return $.ajax(options);
},
// deletes resource on server
// callback is passed data, status, XHR (cf. jQuery.ajax success)
// errback is passed XHR, error, exception, resource (cf. jQuery.ajax error)
"delete": function(callback, errback) {
var self = this;
var options = {
url: this.route(),
type: "DELETE",
success: function(data, status, xhr) {
callback(self, status, xhr);
},
error: function(xhr, error, exc) {
errback(xhr, error, exc, self);
}
};
if(this.ajaxSetup) {
this.ajaxSetup(options);
}
return $.ajax(options);
},
// returns an object carrying only the essential information of the resource
baseData: function() {
var data = {},
self = this;
$.each(this.data, function(i, item) {
var value = self[item];
if(value !== undefined) {
data[item] = value;
}
});
return data;
},
// returns corresponding instance from a raw object (if applicable)
parse: function(data) {
return data;
},
// list of accepted keys in serialization
data: [],
// returns resource's URI
route: function() {
return supplant(tw.routes[this._type], this);
}
});
var Container = function(type, name, host) {
if(arguments.length) { // initialization
tw.Resource.apply(this, [type, host]);
this.name = name;
this.desc = "";
this.policy = new tw.Policy({});
}
};
Container.prototype = new tw.Resource();
$.extend(Container.prototype, {
tiddlers: function() {
return new tw.TiddlerCollection(this);
},
parse: function(data) {
var type = tw._capitalize(this._type),
container = new tw[type](this.name, this.host);
data.policy = new tw.Policy(data.policy);
return $.extend(container, data);
},
data: ["desc", "policy"]
});
// attribs is an object whose members are merged into the instance (e.g. query)
tw.Collection = function(type, host, attribs) {
if(arguments.length) { // initialization
tw.Resource.apply(this, [type, host]);
$.extend(this, attribs);
}
};
tw.Collection.prototype = new tw.Resource();
tw.TiddlerCollection = function(container, tiddler) {
if(arguments.length) { // initialization
tw.Collection.apply(this, [tiddler ? "revisions" : "tiddlers"]);
this.container = container || null;
this.tiddler = tiddler || null;
}
};
tw.TiddlerCollection.prototype = new tw.Collection();
$.extend(tw.TiddlerCollection.prototype, {
parse: function(data) {
var container = this.container;
return $.map(data, function(item, i) {
var tiddler = new tw.Tiddler(item.title, container),
bag = item.bag;
tiddler = tw.Tiddler.prototype.parse.apply(tiddler, [item]);
if(!tiddler.bag && bag) { // XXX: bag always present!?
tiddler.bag = new tw.Bag(bag, container.host);
}
if(!tiddler.recipe && item.recipe) {
tiddler.recipe = new tw.Recipe(item.recipe, container.host);
}
delete item.recipe;
return $.extend(tiddler, item);
});
},
route: function() {
var params = this.container;
if(this.tiddler) {
var container = this.tiddler.bag || this.tiddler.recipe;
params = {
_type: container._type,
host: container.host,
name: container.name,
title: this.tiddler.title
};
}
return supplant(tw.routes[this._type], params);
}
});
tw.Search = function(query, host) {
tw.Collection.apply(this, ["search", host]);
this.query = query;
};
tw.Search.prototype = new tw.Collection();
$.extend(tw.Search.prototype, {
parse: function(data) {
this.container = { // XXX: hacky
_type: "bag",
host: this.host
};
var tiddlers = tw.TiddlerCollection.prototype.parse.apply(this, arguments);
delete this.container;
return tiddlers;
}
});
// title is the name of the tiddler
// container (optional) is an instance of either Bag or Recipe
// optionally accepts a single object representing tiddler attributes
tw.Tiddler = function(title, container) {
tw.Resource.apply(this, ["tiddler", false]);
this.title = title;
this.bag = container && container._type === "bag" ? container : null;
this.recipe = container && container._type === "recipe" ? container : null;
var self = this;
$.each(this.data, function(i, item) {
self[item] = undefined; // exposes list of standard attributes for inspectability
});
if(title && title.title) { // title is an object of tiddler attributes
$.extend(this, title);
}
};
tw.Tiddler.prototype = new tw.Resource();
$.extend(tw.Tiddler.prototype, {
revisions: function() {
return new tw.TiddlerCollection(this.bag || this.recipe, this);
},
route: function() {
var container = this.bag || this.recipe;
var params = $.extend({}, this, {
host: container ? container.host : null,
_type: this.bag ? "bag" : (this.recipe ? "recipe" : null),
name: container ? container.name : null
});
return supplant(tw.routes[this._type], params);
},
parse: function(data) {
var tiddler = new tw.Tiddler(this.title),
container = this.bag || this.recipe;
if(data.bag) {
tiddler.bag = new tw.Bag(data.bag, container.host);
delete data.bag;
}
delete data.recipe;
tiddler.created = data.created ? convertTimestamp(data.created) : new Date();
delete data.created;
tiddler.modified = data.modified ? convertTimestamp(data.modified) : new Date();
delete data.modified;
if(this.recipe) {
tiddler.recipe = this.recipe;
}
return $.extend(tiddler, data);
},
data: ["created", "creator", "modifier", "modified", "tags", "type", "text",
"fields"],
ajaxSetup: function(options) {
var self = this;
if(this.etag && (options.type === "PUT" || options.type === "DELETE")) {
options.beforeSend = function(xhr) {
xhr.setRequestHeader("If-Match", self.etag);
};
}
if(options.type === "PUT") {
var callback = options.success;
options.success = function(data, status, xhr) {
var loc = xhr.getResponseHeader("Location"),
etag = xhr.getResponseHeader("Etag");
if(loc && etag) {
self.etag = etag;
if(!self.bag) {
var bag = loc.split("/bags/").pop().split("/")[0];
self.bag = new tw.Bag(bag, self.recipe.host);
}
callback(self, status, xhr);
} else { // IE
self.get(callback, options.error);
}
};
}
}
});
tw.Revision = function(id, tiddler) {
var container = tiddler.bag || tiddler.recipe;
tw.Tiddler.apply(this, [tiddler.title, container]);
this._type = "revision";
this.revision = id;
};
tw.Revision.prototype = new tw.Tiddler();
$.extend(tw.Revision.prototype, {
revisions: false,
data: false,
put: false,
"delete": false
});
tw.Bag = function(name, host) {
Container.apply(this, ["bag", name, host]);
};
tw.Bag.prototype = new Container();
tw.Recipe = function(name, host) {
Container.apply(this, ["recipe", name, host]);
this.recipe = [];
};
tw.Recipe.prototype = new Container();
$.extend(tw.Recipe.prototype, {
data: ["recipe"].concat(Container.prototype.data)
});
tw.Policy = function(constraints) { // TODO: validation?
var self = this;
$.each(this.constraints, function(i, item) {
self[item] = constraints[item];
});
};
tw.Policy.prototype.constraints = ["read", "write", "create", "delete",
"manage", "accept", "owner"];
/*
* utilities
*/
tw._capitalize = function(str) {
return str.charAt(0).toUpperCase() + str.slice(1);
};
// convert YYYYMMDDhhmmss timestamp to Date instance
convertTimestamp = function(t) {
if (t.match(/^\d{12,17}$/)) {
return new Date(Date.UTC(
parseInt(t.substr(0, 4), 10),
parseInt(t.substr(4, 2), 10) - 1,
parseInt(t.substr(6, 2), 10),
parseInt(t.substr(8, 2), 10),
parseInt(t.substr(10, 2), 10),
parseInt(t.substr(12, 2) || "0", 10),
parseInt(t.substr(14, 3) || "0", 10)
));
} else {
return new Date(Date.parse(t));
}
};
// adapted from Crockford (http://javascript.crockford.com/remedial.html)
supplant = function(str, obj) {
return str.replace(/{([^{}]*)}/g, function (a, b) {
var r = obj[b];
r = typeof r === "string" || typeof r === "number" ? r : a;
return $.inArray(b, ["host", "query"]) !== -1 ? r : encodeURIComponent(r); // XXX: special-casing
});
};
return tw;
}(jQuery));
//}}}
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AP8zZgAAAGYA//8zAADMMwD/mTMAAGYzAP8zMwAAADMAzP8AAADMAADMmQAAAGYAAMwzAAAAAADuzAAA3QAAALvMAACqAAAAiMwAAHcAAABVmQAARAAAACKZAAARAADuAJkA3QAAALsAmQCqAAAAiACZAHcAAABVAJkARAAAACIAZgARAADuAABm3QAAALsAAGaqAAAAiAAAZncAAABVAABmRAAAACIAAGYRAAAA7u7uM93d3QC7u7szqqqqAIiIiDN3d3cAVVVVM0RERAAiIiIzERERAAAAADMBAQEBAQEBAQEBpXl5eXl5eXl5eXmlAQEBAQEBAQEBAQEBAQEBAQEBgHl5eXl5eXl5eXl5eXl5gAEBAQEBAQEBAQEBAQEB/Xp5eXlVT04qKioqTk9VeXl5ev0BAQEBAQEBAQEBAaV5eXlPKioqKioqKioqKioqT3l5eaUBAQEBAQEBAQGAeXlVTioqKioqKioqKioqKioqTlV5eYABAQEBAQEBgHl5VSoqKioqKioqKioqKioqKioqKlV5eYABAQEBAaV5eVUqKioqKioqKioqKioqKioqKioqKlV5eaUBAQEBeXlVKioqKioqKioqKioqKioqKioqKioqKlV5eQEBAXl5eU4qKioqKioqKjExMTExMSoqKioqKioqTnl5eQEBeXlPKioqKioqKjEyMjIyMjIyMjEqKioqKioqT3l5AXp5eSoqKioqKioxMjIxBwcHBzEyMjEqKioqKioqeXl6eXlVKioqKioqMTIxBwcHBwcHBwcxMjEqKioqKipVeXl5eU8qKioqKioyMgcHBwcHBwcHBwcyMioqKioqKk95eXl5TioqKioqMTIxBwcHBwcHBwcHBzEyMSoqKioqTnl5eXkqKioqKioxMgcHBwcHBwcHBwcHBzIxKioqKioqeXl5eSoqKioqKjEyBwcHBwcHBwcHBwcHMjEqKioqKip5eXl5KioqKioqMTIHBwcHBwcHBwcHBwcyMSoqKioqKnl5eXkqKioqKioxMgcHBwcHBwcHBwcHBzIxKioqKioqeXl5eU4qKioqKjEyMQcHBwcHBwcHBwcxMjEqKioqKk55eXl5TyoqKioqKjIyBwcHBwcHBwcHBzIyKioqKioqT3l5eXlVKioqKioqMTIxBwcHBwcHBwcxMjEqKioqKipVeXl6eXkqKioqKioqMTIyMQcHBwcxMjIxKioqKioqKnl5egF5eU8qKioqKioqMTIyMjIyMjIyMSoqKioqKipPeXkBAXl5eU4qKioqKioqKjExMTExMSoqKioqKioqTnl5eQEBAXl5VSoqKioqKioqKioqKioqKioqKioqKipVeXkBAQEB+nl5VSoqKioqKioqKioqKioqKioqKioqVXl5+gEBAQEBenl5VSoqKioqKioqKioqKioqKioqKlV5eXoBAQEBAQEBeXl5VU4qKioqKioqKioqKioqKk5VeXl5AQEBAQEBAQEBenl5eU8qKioqKioqKioqKipPeXl5egEBAQEBAQEBAQEB+nl5eXlVT04qKioqTk9VeXl5efoBAQEBAQEBAQEBAQEBAXl5eXl5eXl5eXl5eXl5eXkBAQEBAQEBAQEBAQEBAQEBAQF6eXl5eXl5eXl5eXoBAQEBAQEBAQEB/+AH//+AAf/+AAB//AAAP/gAAB/wAAAP4AAAB8AAAAPAAAADgAAAAYAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAYAAAAHAAAADwAAAA+AAAAfwAAAP+AAAH/wAAD/+AAB//4AB///gB/8oAAAAIAAAAEAAAAABACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAEAAAACAAAAAwAAAAMAAAADAAAABG1bSA61m3JXuqB4mbuhd8m9o3jqvaF4+b2hePm9o3jqu6F3ybqgeJm1m3JXbVtIDgAAAAQAAAADAAAAAwAAAAMAAAACAAAAAQAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAACAAAAAwAAAAUAAAAGAAAACI98Wye0nXWavKF4876kev++pHr/vqR6/76kev++pHr/vqR6/76kev++pHr/vqR6/76kev+8oXjztJ11mo98WycAAAAIAAAABgAAAAUAAAADAAAAAgAAAAEAAAAAAAAAAAAAAAAAAAABAAAAAgAAAAQAAAAHAAAAChwcHBKulnGJvaN5+L6kev++pHr/y7GJ/9/Fnv/s1K7/9t25//rivv/64r7/9t25/+zUrv/fxZ7/y7GJ/76kev++pHr/vaN5+K6WcYkcHBwSAAAACgAAAAcAAAAEAAAAAgAAAAEAAAAAAAAAAAAAAAEAAAADAAAABwAAAAtuYkUst552z76kev++pHr+1LuS//Latf/85cD//OXA//zlwP/85cD//OXA//zlwP/85cD//OXA//zlwP/85cD/8tq1/9S7kv++pHr+vqR6/7eeds9uYkUsAAAACwAAAAcAAAADAAAAAQAAAAAAAAABAAAAAgAAAAQAAAAIi3hbNbqgd+a+pHr/xayD/+3Vr//85cD//OXA//zlwP/85cD//OXA//zlwP/85cD//OXA//zlwP/85cD//OXA//zlwP/85cD//OXA/+3Vr//FrIP/vqR6/7qgd+aJdVg0AAAACAAAAAQAAAACAAAAAQAAAAEAAAACAAAABIl8WSW8oXjlvqR6/8yyiv/54Lz//OXA//zlwP/85cD//OXA//zlwP/85cD//OXA//zlwP/85cD//OXA//zlwP/85cD//OXA//zlwP/85cD//OXA//ngvP/Msor/vqR6/7yheOWJfFklAAAABAAAAAIAAAABAAAAAAAAAAFfXz8Iu6F4zL6kev/Msor/+uK+//zlwP/85cD//OXA//zlwP/85cD//OXA//zlwP/85cD//OXA//zlwP/85cD//OXA//zlwP/85cD//OXA//zlwP/85cD//OXA//rivv/Msor/vqR6/7uheMxfXz8IAAAAAQAAAAAAAAAAAAAAAbqid4K+pHr/xayD//ngvP/85cD//OXA//zlwP/85cD//OXA//zlwP/85cD//OXA//zlwP/85cD//OXA//zlwP/85cD//OXA//zlwP/85cD//OXA//zlwP/85cD//OXA//fgvP/FrIP/vqR6/7qid4IAAAABAAAAAAAAAAC3l28gvaN5+L6kev7t1a///OXA//zlwP/85cD//OXA//zlwP/85cD//OXA/+/Twv/Qq8f/u5HK/7OGzP+zhsz/u5HK/9Crx//v08L//OXA//zlwP/85cD//OXA//zlwP/85cD//OXA/+3Vr/++pHr+vaN5+LeXbyAAAAAAAAAAALuheJa+pHr/1LuS//zlwP/85cD//OXA//zlwP/85cD//OXA//riwP/Pq8f/r4HM/6+Bzf+vgc3/r4HN/6+Bzf+vgc3/r4HN/6+BzP/Pq8f/+uLA//zlwP/85cD//OXA//zlwP/85cD//OXA/9S5kv++pHr/u6F4lgAAAACii3MLvKF4876kev/y2rX//OXA//zlwP/85cD//OXA//zlwP/64sD/w5vJ/6+Bzf+vg83/w5vc/9W06v/dwPD/3cDw/9W06v/Dm9z/r4PN/6+Bzf/Dm8n/+uLA//zlwP/85cD//OXA//zlwP/85cD/8tq1/76kev+8oXjzootzC72feFW+pHr/y7GJ//zlwP/85cD//OXA//zlwP/85cD//OXA/8+rx/+vgc3/tIfQ/9a16//hw/P/4cPz/+HD8//hw/P/4cPz/+HD8//Wtev/tIfQ/6+Bzf/Pq8f//OXA//zlwP/85cD//OXA//zlwP/85cD/y7GJ/76kev+9n3hVvaF4mL6kev/fxZ7//OXA//zlwP/85cD//OXA//zlwP/v08L/r4HM/6+Dzf/Wtev/4cPz/+HD8//hw/P/4cPz/+HD8//hw/P/4cPz/+HD8//Wtev/r4PN/6+BzP/v08L//OXA//zlwP/85cD//OXA//zlwP/fxZ7/vqR6/72heJi8oXfIvqR6/+zUrv/85cD//OXA//zlwP/85cD//OXA/9Crx/+vgc3/w5vc/+HD8//hw/P/4cPz/+HD8//hw/P/4cPz/+HD8//hw/P/4cPz/+HD8//Dm9z/r4HN/9Crx//85cD//OXA//zlwP/85cD//OXA/+zUrv++pHr/vKF3yL2jeOq+pHr/9t25//zlwP/85cD//OXA//zlwP/85cD/u5HK/6+Bzf/VtOr/4cPz/+HD8//hw/P/4cPz/+HD8//hw/P/4cPz/+HD8//hw/P/4cPz/9W06v+vgc3/u5HK//zlwP/85cD//OXA//zlwP/85cD/9t25/76kev+9o3jqvaF4+b6kev/64r7//OXA//zlwP/85cD//OXA//zlwP+zhsz/r4HN/93A8P/hw/P/4cPz/+HD8//hw/P/4cPz/+HD8//hw/P/4cPz/+HD8//hw/P/3cDw/6+Bzf+zhsz//OXA//zlwP/85cD//OXA//zlwP/64r7/vqR6/72hePm9oXj5vqR6//rivv/85cD//OXA//zlwP/85cD//OXA/7OGzP+vgc3/3cDw/+HD8//hw/P/4cPz/+HD8//hw/P/4cPz/+HD8//hw/P/4cPz/+HD8//dwPD/r4HN/7OGzP/85cD//OXA//zlwP/85cD//OXA//rivv++pHr/vaF4+b2jeOq+pHr/9t25//zlwP/85cD//OXA//zlwP/85cD/u5HK/6+Bzf/VtOr/4cPz/+HD8//hw/P/4cPz/+HD8//hw/P/4cPz/+HD8//hw/P/4cPz/9W06v+vgc3/u5HK//zlwP/85cD//OXA//zlwP/85cD/9t25/76kev+9o3jqvKF3yL6kev/s1K7//OXA//zlwP/85cD//OXA//zlwP/Qq8f/r4HN/8Ob3P/hw/P/4cPz/+HD8//hw/P/4cPz/+HD8//hw/P/4cPz/+HD8//hw/P/w5vc/6+Bzf/Qq8f//OXA//zlwP/85cD//OXA//zlwP/s1K7/vqR6/7yhd8i9oXiYvqR6/9/Fnv/85cD//OXA//zlwP/85cD//OXA/+/Twv+vgcz/r4PN/9a16//hw/P/4cPz/+HD8//hw/P/4cPz/+HD8//hw/P/4cPz/9a16/+vg83/r4HM/+/Twv/85cD//OXA//zlwP/85cD//OXA/9/Fnv++pHr/vaF4mL2feFW+pHr/y7GJ//zlwP/85cD//OXA//zlwP/85cD//OXA/8+rx/+vgc3/tIfQ/9a16//hw/P/4cPz/+HD8//hw/P/4cPz/+HD8//Wtev/tIfQ/6+Bzf/Pq8f//OXA//zlwP/85cD//OXA//zlwP/85cD/y7GJ/76kev+9n3hVootzC7yhePO+pHr/8tq1//zlwP/85cD//OXA//zlwP/85cD/+uLA/8Obyf+vgc3/r4PN/8Ob3P/VtOr/3cDw/93A8P/VtOr/w5vc/6+Dzf+vgc3/w5vJ//riwP/85cD//OXA//zlwP/85cD//OXA//Latf++pHr/vKF486KLcwsAAAAAu6N3l76kev/Uu5L//OXA//zlwP/85cD//OXA//zlwP/85cD/+uLA/8+rx/+vgcz/r4HN/6+Bzf+vgc3/r4HN/6+Bzf+vgc3/r4HM/8+rx//64sD//OXA//zlwP/85cD//OXA//zlwP/85cD/1LmS/76kev+7oXiWAAAAAAAAAAC3l28gvaN5+L6kev7t1a///OXA//zlwP/85cD//OXA//zlwP/85cD//OXA/+/Twv/Qq8f/u5HK/7OGzP+zhsz/u5HK/9Crx//v08L//OXA//zlwP/85cD//OXA//zlwP/85cD//OXA/+3Vr/++pHr+vaN5+LeXbyAAAAAAAAAAAAAAAAC6oneCvqR6/8Wsg//54Lz//OXA//zlwP/85cD//OXA//zlwP/85cD//OXA//zlwP/85cD//OXA//zlwP/85cD//OXA//zlwP/85cD//OXA//zlwP/85cD//OXA//zlwP/34Lz/xayD/76kev+6oneCAAAAAAAAAAAAAAAAAAAAAH9/VQa8oHjLvqR6/8yyiv/64r7//OXA//zlwP/85cD//OXA//zlwP/85cD//OXA//zlwP/85cD//OXA//zlwP/85cD//OXA//zlwP/85cD//OXA//zlwP/85cD/+uK+/8yyiv++pHr/vKB4y39/VQYAAAAAAAAAAAAAAAAAAAAAAAAAALKhbh67o3nkvqR6/8yyiv/54Lz//OXA//zlwP/85cD//OXA//zlwP/85cD//OXA//zlwP/85cD//OXA//zlwP/85cD//OXA//zlwP/85cD//OXA//ngvP/Msor/vqR6/7ujeeSyoW4eAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALqbdim7o3nkvqR6/8Wsg//t1a///OXA//zlwP/85cD//OXA//zlwP/85cD//OXA//zlwP/85cD//OXA//zlwP/85cD//OXA//zlwP/t1a//xayD/76kev+7o3nkupt2KQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALKhbh68oHjLvqR6/76kev7Uu5L/8tq1//zlwP/85cD//OXA//zlwP/85cD//OXA//zlwP/85cD//OXA//zlwP/y2rX/1LmS/76kev6+pHr/vKB4y7Khbh4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH9/VQa6oneCvaN5+L6kev++pHr/y7GJ/9/Fnv/s1K7/9t25//rivv/64r7/9t25/+zUrv/fxZ7/y7GJ/76kev++pHr/vaN5+Lqid4J/f1UGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAC3l28gu6F4lryhePO+pHr/vqR6/76kev++pHr/vqR6/76kev++pHr/vqR6/76kev++pHr/vKF487uheJa3l28gAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAootzC72feFW9oXiYvKF3yL2jeOq9oXj5vaF4+b2jeOq8oXfIvaF4mL2feFWii3MLAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP/gB///gAH//gAAf/wAAD/4AAAf8AAAD+AAAAfAAAADwAAAA4AAAAGAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAGAAAABwAAAA8AAAAPgAAAH8AAAD/gAAB/8AAA//gAAf/+AAf//4Af/
The ''getTiddler'' method of the [[story]] class returns the DOM element of a tiddler displayed in the story. It takes one parameter, the name of a tiddler.
If the given name isn't currently displayed then it will return ''null''
It can be used like so
{{{
story.getTiddler("GettingStarted");
}}}
The edit mode refers to the mode of editing a rendered tiddler.
By default, how a tiddler is displayed in edit mode is defined by one of the shadow tiddlers that control the layout of TiddlyWiki called [[EditTemplate]].
From the [[Glossary|Tag]]...
<<<
<<tiddler Tag>>
<<<
![[System Tags]]
<<tiddler "System Tags">>
!Also see...
* [[tags macro|tags]]
* [[Enhanced Tagging]]
!Summary
The shadow tiddler StyleSheetLayout contains CSS definitions related to the layout of page elements. ''DO NOT EDIT THIS TIDDLER'', instead make your changes in the StyleSheet shadow tiddler.
!Summary
This <<tag global>> function creates a DOM check box input element.
!Signature
{{{function createTiddlyCheckbox(parent, caption, checked, onChange) {}}}}
!Returns
''DOM reference:'' to the created checkbox
!Arguments
;1. (dom element) parent
:the DOM element where the text node will be placed
;2. (string) caption
:text to be displayed after the check box element
;3. (boolean) checked
:the initial state of the check box
;4. (function) onChange
:the function triggered when the checkbox is clicked
!Example
{{{
store.createTiddlyCheckbox(place, 'turn on', true, config.macros.light.switch);
}}}
''returns:'' a reference to a checked checkbox element labeled "turn on" firing ''"""config.macros.light.switch"""'' when toggled
/* line 13, sass/policymaker.scss */
html {
background: #f2f2f2;
}
/* line 17, sass/policymaker.scss */
body {
font-family: "Helvetica Neue", Helvetica, Arial, Sans-serif;
letter-spacing: 0.02em;
color: #4d4d4d;
font-size: 62.5%;
background-position: 0px 0px;
}
/* line 25, sass/policymaker.scss */
#wrapper {
margin: 0 auto 2em;
max-width: 960px;
position: relative;
}
/* line 30, sass/policymaker.scss */
#wrapper > section {
padding: 1em;
box-shadow: 0px 0px 4px rgba(50, 50, 50, 0.2);
margin: 2em 0 0;
}
/* line 37, sass/policymaker.scss */
.beta {
font-size: 1.6em;
background: #EB4715;
color: white;
padding: 0.6em;
display: inline;
position: absolute;
top: -3em;
right: 0;
}
/* line 47, sass/policymaker.scss */
.guest-view {
background: #db3138;
font-size: 2.4em;
color: white;
display: none;
}
/* line 53, sass/policymaker.scss */
.guest-view a {
color: white;
}
/* line 58, sass/policymaker.scss */
.policy-view {
font-size: 2.4em;
background: #fff;
padding-top: 0;
position: relative;
}
/* line 64, sass/policymaker.scss */
.policy-view h3 {
font-size: 1.5em;
}
/* line 69, sass/policymaker.scss */
.public {
border-top: 4px solid #0082af;
}
/* line 73, sass/policymaker.scss */
.private {
border-top: 4px solid #bc4378;
}
/* line 77, sass/policymaker.scss */
.disabled {
border-top: 4px solid #ccc;
color: #ccc;
}
/* line 81, sass/policymaker.scss */
.disabled label {
color: #ccc;
}
/* line 86, sass/policymaker.scss */
.porp {
margin-bottom: 1.5em;
}
/* line 90, sass/policymaker.scss */
div.porp button {
background: #fff;
color: #ccc;
border: 2px solid #fff;
}
/* line 96, sass/policymaker.scss */
.public .public {
border: 2px solid #0082af;
color: #0082af;
}
/* line 101, sass/policymaker.scss */
.private .private {
border: 2px solid #bc4378;
color: #bc4378;
}
/* line 106, sass/policymaker.scss */
.private button.public:hover {
color: #ADD1DD;
border: 2px solid #ADD1DD;
}
/* line 111, sass/policymaker.scss */
.public button.private:hover {
color: #DCA2BB;
border: 2px solid #dca2bb;
}
/* line 118, sass/policymaker.scss */
.disabled .public, .disabled .private {
color: #ccc;
border: 2px solid #ccc;
}
/* line 124, sass/policymaker.scss */
form {
max-width: 600px;
}
/* line 128, sass/policymaker.scss */
label {
width: 29%;
display: inline-block;
padding-left: 1%;
}
/* line 134, sass/policymaker.scss */
input {
font-size: inherit;
width: 65%;
margin-bottom: 0.5em;
border: 1px solid #BDBDBD;
padding: 0.2em;
}
/* line 142, sass/policymaker.scss */
.public input {
color: #ADD1DD;
}
/* line 145, sass/policymaker.scss */
.public input:focus {
outline: 0;
border-color: rgba(0, 130, 175, 0.8);
-webkit-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1), 0 0 8px rgba(0, 130, 175, 0.6);
-moz-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1), 0 0 8px rgba(0, 130, 175, 0.6);
-ms-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1), 0 0 8px rgba(0, 130, 175, 0.6);
-o-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1), 0 0 8px rgba(0, 130, 175, 0.6);
box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1), 0 0 8px rgba(0, 130, 175, 0.6);
}
/* line 152, sass/policymaker.scss */
.lt-ie9 .public input:focus {
border-color: #0082af;
}
/* line 156, sass/policymaker.scss */
.private input {
color: #DCA2BB;
}
/* line 159, sass/policymaker.scss */
.private input:focus {
outline: 0;
border-color: rgba(188, 67, 122, 0.8);
-webkit-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1), 0 0 8px rgba(0, 130, 175, 0.6);
-moz-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1), 0 0 8px rgba(0, 130, 175, 0.6);
-ms-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1), 0 0 8px rgba(0, 130, 175, 0.6);
-o-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1), 0 0 8px rgba(0, 130, 175, 0.6);
box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1), 0 0 8px rgba(0, 130, 175, 0.6);
}
/* line 166, sass/policymaker.scss */
.lt-ie9 .private input:focus {
border-color: #bc4378;
}
/* line 170, sass/policymaker.scss */
.public input.editing, .public input.changed {
color: #0082af;
}
/* line 174, sass/policymaker.scss */
.private input.editing, .private input.changed {
color: #bc4378;
}
/* line 178, sass/policymaker.scss */
.form-ctrls {
margin-top: 1em;
}
/* line 181, sass/policymaker.scss */
.form-ctrls button {
padding: 0.65em 1em;
}
/* line 186, sass/policymaker.scss */
button {
cursor: pointer;
padding: 0.65em 0.5em;
font-size: inherit;
border: none;
color: #fff;
}
/* line 194, sass/policymaker.scss */
.public button {
background: #0082af;
}
/* line 198, sass/policymaker.scss */
.private button {
background: #bc4378;
}
/* line 202, sass/policymaker.scss */
.disabled button {
background: #ccc;
}
/* line 206, sass/policymaker.scss */
form button.reset {
background: none;
color: #0082af;
}
/* line 211, sass/policymaker.scss */
.disabled form button.reset {
color: #ccc;
}
/* line 215, sass/policymaker.scss */
.private .reset {
color: #bc4378;
}
/* line 219, sass/policymaker.scss */
.help {
font-size: 0.67em;
width: 32%;
background: #F0F4F8;
box-shadow: 1px 2px 3px 0px rgba(0, 0, 0, 0.25), -1px 0px 3px 0px rgba(0, 0, 0, 0.25);
position: absolute;
right: -3em;
top: 3em;
border-radius: 2px;
padding: 1em;
}
/* line 230, sass/policymaker.scss */
.help, .help a {
color: #8C9DA7;
}
/* line 234, sass/policymaker.scss */
.disabled .help {
background: #fff;
color: #ccc;
}
/***
|''Name''|TiddlySpaceInitialization|
|''Version''|0.7.3|
|''Description''|Initializes new TiddlySpaces the first time they are created|
|''Status''|@@beta@@|
|''Source''|http://github.com/TiddlySpace/tiddlyspace/blob/master/src/plugins/TiddlySpaceInit.js|
|''CoreVersion''|2.6.1|
|''Requires''|TiddlySpaceConfig RandomColorPalettePlugin chrjs ImageMacroPlugin|
!TODO
* robust error notification and recovery
!MarkupPreHead
<!--{{{-->
<link href="/bags/%0_public/tiddlers.atom" rel="alternate"
type="application/atom+xml" title="%0's public feed" />
<link rel="canonical" href="%1/" />
<!--}}}-->
!Code
***/
//{{{
(function($) {
var versionField = "tiddlyspaceinit_version";
var markupPreHead = store.getTiddlerText(tiddler.title + "##MarkupPreHead", "");
var tiddlyspace = config.extensions.tiddlyspace;
var currentSpace = tiddlyspace.currentSpace;
var tweb = config.extensions.tiddlyweb;
var plugin = config.extensions.TiddlySpaceInit = {
version: "0.6",
SiteTitle: "%0",
SiteSubtitle: "a TiddlySpace",
flagTitle: "%0SetupFlag",
flagWarning: "Please do not modify this tiddler; it was created " +
"automatically upon space creation.",
dispatch: function(ev) {
var title = plugin.flagTitle.format([currentSpace.name]);
config.annotations[title] = plugin.flagWarning;
if(currentSpace.type != "private") {
return;
}
var tiddlers = [];
var tid = store.getTiddler(title);
if(tid) {
curVersion = parseFloat(tid.fields[versionField]);
reqVersion = parseFloat(plugin.version);
if(curVersion < reqVersion) {
plugin.update(curVersion, tid);
tid.fields[versionField] = plugin.version;
tid.incChangeCount();
tid = store.saveTiddler(tid);
tiddlers.push(tid);
}
} else { // first run
tid = new Tiddler(title);
tid.tags = ["excludeLists", "excludeSearch", "excludePublisher"];
tid.fields = $.extend({}, config.defaultCustomFields);
tid.fields[versionField] = plugin.version;
tid.text = "@@%0@@".format([plugin.flagWarning]);
tid = store.saveTiddler(tid);
tiddlers = tiddlers.concat(plugin.firstRun(), tid);
}
autoSaveChanges(null, tiddlers);
},
update: function(curVersion, flagTiddler) {
if(curVersion < 0.2) {
this.createAvatar();
}
if(curVersion < 0.3) {
flagTiddler.tags.pushUnique("excludePublisher"); // XXX: never persisted
}
if(curVersion < 0.5) { // v0.4 was faulty
this.setupMarkupPreHead();
}
if(curVersion < 0.6) {
this.purgeSystemSettings();
}
},
pubTid: {
tags: ["excludeLists", "excludeSearch"],
fields: $.extend({}, config.defaultCustomFields, {
"server.workspace": tiddlyspace.getCurrentWorkspace("public")
})
},
makeTiddlerIfNot: function(tiddler) {
if (!store.tiddlerExists(tiddler.title)) {
$.extend(true, tiddler, plugin.pubTid);
return [store.saveTiddler(tiddler)];
} else {
return [];
}
},
firstRun: function() {
var tiddlers = [];
// generate Site*itle
$.each(["SiteTitle", "SiteSubtitle"], function(i, item) {
var tid = new Tiddler(item);
tid.text = plugin[item].format([currentSpace.name]);
tiddlers.push.apply(tiddlers,
plugin.makeTiddlerIfNot(tid));
});
// generate public ColorPalette
var tid = new Tiddler("ColorPalette");
tid.text = config.macros.RandomColorPalette.generatePalette({
saturation_pale: 0.67, saturation_light: 0.53,
saturation_mid: 0.43, saturation_dark: 0.06,
pale: 0.99, light: 0.85, mid: 0.5, dark: 0.31
},
false);
tiddlers.push.apply(tiddlers, plugin.makeTiddlerIfNot(tid));
this.createAvatar();
this.setupMarkupPreHead();
return tiddlers;
},
// remove _cookie slices (TiddlyWiki 2.6.2 beta 6 remnants)
purgeSystemSettings: function() {
var ss = store.getTiddler("SystemSettings");
if(ss) {
var lines = ss.text.split("\n");
var persistentOptions = $.grep(lines, function(line, i) {
return line.indexOf("_cookie:") == -1;
});
ss.text = persistentOptions.join("\n");
ss = store.saveTiddler(ss);
autoSaveChanges(null, [ss]);
}
},
createAvatar: function() {
var avatar = "SiteIcon";
var host = tweb.host;
var notify = function(xhr, error, exc) {
displayMessage("ERROR: could not create avatar - " + // TODO: i18n
"%0: %1".format([xhr.statusText, xhr.responseText]));
// TODO: resolve!?
};
var pubBag = tiddlyspace.getCurrentBag("public");
var tid = new tiddlyweb.Tiddler(avatar);
tid.bag = new tiddlyweb.Bag(pubBag, host);
var callback = function(data, status, xhr) {}; // avatar already exists; do nothing
var errback = function(xhr, error, exc) {
if(xhr.status != 404) {
return;
}
// copy default avatar
var _notify = function(tid, status, xhr) {
displayMessage("created avatar"); // TODO: i18n
var image = config.macros.image;
if(image && image.refreshImage) {
var uri = "/%0/tiddlers/SiteIcon".
format(tiddlyspace.getCurrentWorkspace("public"));
image.refreshImage(uri);
image.refreshImage("SiteIcon");
}
};
var _callback = function(tid, status, xhr) {
tid.title = avatar;
tid.bag.name = pubBag;
delete tid.etag;
tid.put(_notify, notify); // TODO: add to current session document (via adaptor?)
};
tweb.getUserInfo(function(user) {
var avatarTitle = currentSpace.name == user.name ?
"defaultUserIcon" : "defaultSiteIcon";
var tid = new tiddlyweb.Tiddler(avatarTitle);
tid.bag = new tiddlyweb.Bag("common", host);
tid.get(_callback, notify);
});
};
tid.get(callback, errback);
},
savePublicTiddlerText: function(title, text, pubWorkspace) {
var tid = new Tiddler(title);
tid.text = text;
tid.tags = ["excludeLists"];
tid.fields = $.extend({}, config.defaultCustomFields);
tid.fields["server.workspace"] = pubWorkspace;
tid.fields["server.page.revision"] = "false";
tid = store.saveTiddler(tid);
autoSaveChanges(null, [tid]);
},
setupMarkupPreHead: function() {
var pubWorkspace = tiddlyspace.getCurrentWorkspace("public");
var existing = store.getTiddler("MarkupPreHead");
if(!existing || existing.fields["server.workspace"] != pubWorkspace) {
var context = this;
tweb.getStatus(function(status) {
var text = markupPreHead.format(currentSpace.name,
tiddlyspace.getHost(status.server_host, currentSpace.name));
context.savePublicTiddlerText("MarkupPreHead", text,
pubWorkspace);
});
}
// also set up DefaultTiddlers
var title = "DefaultTiddlers";
existing = store.getTiddler(title) || new Tiddler(title);
if(existing.fields["server.workspace"] != pubWorkspace) {
var text = existing.text || store.getShadowTiddlerText(title);
this.savePublicTiddlerText(title, text, pubWorkspace);
}
}
};
$(document).bind("startup", plugin.dispatch);
})(jQuery);
//}}}
Here is a refernce of all properties of TiddlyWiki class objects...
~tbd~
See [[Changing Default Options]] on how to permanently change default [[date formats|DateFormats]] for the following core macros, e.g.
; view macro
: {{{config.views.wikified.dateFormat = "MMM YYYY";}}}
; timeline macro
: {{{config.macros.timeline.dateFormat = "MMM YYYY";}}}
Takes 3 arguments: field (can also be a tiddler attribute),value,sortField (optional)
Returns all tiddlers that match the given field and value. If sortField is given the resulting tiddlers are sorted.
See the similiar [[TiddlyWiki.prototype.getTaggedTiddlers()]]
Chances are, you won't find the latest version of TiddlyFox in the Mozilla addons repository.
As of Firefox beta 25 on Android 4.3, you can...
#download the latest version of TiddlyFox from Github using Chrome from
#*https://github.com/TiddlyWiki/TiddlyFox/raw/master/tiddlyfox.xpi
#go to your download folder using a file manager app, like OI file manager
#since the file manager wont open the ''.xpi'', copy or remember the path
#in Firefox, open / paste the path pointing to the local ''tiddlyfox.xpi''
#*for example: {{{file:///storage/emulated/0/Download/tiddlyfox.xpi}}}
#the install dialog should pop up followed by a restart
Now you should have a running TiddlyWiki on Firefox for Android!
!Related Discussion
https://groups.google.com/d/msg/tiddlywiki/aohMMgkoub4/JepqxntWyHoJ
!A Slightly Alternative Method
* open the TiddlyFox Github page in Firefox (used the desktop version)
*download the .xpi
*close Firefox
*use ''ES File Explore'' to open the .xpi with Firefox
*clicked ok to install
*reboot Firefox
*start using TiddlyWiki
[[These steps|https://groups.google.com/d/msg/tiddlywiki/aohMMgkoub4/l0Eac3hqNH4J]] were performed with Firefox Beta from the Google app store working as expected. Try clearing your Firefox cache, starting over with a clean slate.
<<timeline "modified" "17" "YYYY-0MM-0DD">><<listfiltr>>
*[[Complete Timeline...|Timeline]]
!Summary
This function of the <<tag Tiddler "Tiddler Class">> returns a string representing all tags of a tiddler, separated by spaces -- tags with spaces are wrapped in {{{[[double square brackets]]}}}.
!Signature
{{{Tiddler.prototype.getTags = function() {} }}}
!Returns
String: the tags of a tiddler
!Arguments
none
!Example
{{{
var tid = store.getTiddler('MyPlugin');
tiddler.getTags();
}}}
''returns:'' {{{"systemConfig [[My Plugins]]"}}} -- assuming it's a plugin also tagged <<tag "My Plugins">>
!Summary
This <<tag global >> function applies a PageTemplate to TiddlyWiki -- default is the [[shadow tiddler|Shadow Tiddlers]]@tiddlywiki called PageTemplate
!Signature
{{{function refreshPageTemplate(title){} }}}
!Returns
undefined
!Arguments
;1. title
:the name of the PageTemplate tiddler
!Example
{{{
refreshPageTemplate('MyPageTemplate');
}}}
''result:'' applies ''"""MyPageTemplate"""'' as a PageTemplate to TiddlyWiki
{{annotation{
''Note:'' If applying {{{MyPageTemplate}}} screwed up the layout, run {{{refreshPageTemplate()}}} from your browser console and you should get the default back.
}}}
!Upload an icon
<<tiddler spaceIcon>>
!Describe your space
If you haven't already done so, you should provide a brief decscription of yourself and what you're using this space for. To do this, just edit the [[SiteInfo]] tiddler (keeping the title the same of course).
!Change the title
<<tiddler spaceTitle>>
!Change the theme
<<tiddler colorScheme>>
!Change the menu
If you'd like to change the menu items along the top, you can edit the [[MainMenu]] tiddler.
!Change the default tiddlers
<<tiddler setDefaultTiddlers>>
!More Advanced customisations
If you know HTML and CSS, you can edit some or all of the following tiddlers to customise your space further:
* PageTemplate
* EditTemplate
* ViewTemplate
* StyleSheet
core documentation | resources for plugin development
!Summary
This <<tag global>> function returns the text inside a DOM element using the [[jQuery .text()|api.jquery.com/text]] function.
!Signature
{{{function getPlainText(e) {}}}}
!Returns
string: the text representation of a DOM element
!Arguments
;1. e
:the DOM element
!Example
{{{
getPlainText(place.lastChild);
}}}
Open the tiddler by clicking on Edit (grey menu at top right of tiddler) or double clicking on any of the text. Edit the tiddler as required. To format text (bold, italics etc), see [[Wiki Markup]].
To save the tiddler, click on Done. The tiddler will display in read mode. Click on Save Changes (top right-hand menu) before leaving the TiddlyWiki.
See [[store.getTiddlerText()]]...
By default, Chrome doesn't save *local* cookies (i.e., cookies associated with locally-stored files, such as TW documents).
Fortunately, there is a command line option, {{{--enable-file-cookies}}}, that you can use to force Chrome to accept local cookies. All you need to do is edit the properties for the icon you use to launch Chrome, and add the option to the end of the "target" field, like this:
{{{
...\chrome.exe --enable-file-cookies
}}}
''Source:'' reply by ''Eric Shulman'' at https://groups.google.com/d/msg/tiddlywiki/lbGyZHb2Mvc/B-dbZ0_lzWAJ
@@Please do not modify this tiddler; it was created automatically upon space creation.@@
!Description
The [[tagChooser]] macro is a helper macro that is used __exclusively__ in the shadow tiddler called EditTemplate to render a button that displays a popup listing all available tags. Click a tag in the tagChooser popup to add it to or remove it from the tag input box.
!Usage
{{{
<span macro='tagChooser excludeLists'></span>
}}}
See [[AutoSave]]...
!Summary
This <<tag global>> function applies CSS rules contained in a StyleSheet tiddler to the document -- the StyleSheet tiddler title serving as a unique identifier for the {{{<style>}}} element
!Signature
{{{function refreshStyles(title, doc){} }}}
!Returns
undefined
!Arguments
;1. title
:the tiddler title
;2. doc
:the document object -- defaults to the current document
!Example
{{{
refreshStyles('StyleSheet'){}
}}}
Now the styles in StyleSheet 4are reapplied to the document.
Following is a mechanism in TiddlySpace that allows you to monitor [[tiddlers|Tiddler]] from [[spaces|Space]] of interest without [[including|Include]] them.
To follow a space such as @tiddlywiki, create a tiddler called {{{@tiddlywiki}}} tagged ''follow'' in your [[Home Space]].
!Summary
The shadow tiddler StyleSheetPrint contains CSS definitions for printing.
!Default Contents
/*{{{*/
@media print {
#mainMenu, #sidebar, #messageArea, .toolbar, #backstageButton, #backstageArea {display: none !important;}
#displayArea {margin: 1em 1em 0em;}
noscript {display:none;} /* Fixes a feature in Firefox 1.5.0.2 where print preview displays the noscript content */
}
/*}}}*/
See [[About the old and the new wikis]]...
The ''setDirty'' method of the [[Story]] class sets the dirty flag of a single tiddler, which indicates whether it contains unsaved changes. It takes two parameters:
* the title of the tiddler
* the boolean value to set the dirty flag to
This method does not return any value.
For example to set this tiddler to dirty you would do the following:
{{{
story.setDirty('Story.setDirty', true);
}}}
[[TiddlyWiki Developer Space|GettingStarted]]
!Summary
This function of the <<tag Tiddler "Tiddler Class">> determines whether a tiddler has been changed, e.g. edited, since it was last saved.
!Signature
{{{Tiddler.prototype.isTouched = function() {} }}}
!Returns
boolean: {{{true}}} means the tiddler was modified
!Arguments
none
!Example
Assume ''"""some tiddler"""'' has been modified, yet not [[persisted|Persistence]]...
{{{
tid = store.getTiddler('some tiddler');
tid.isTouched();
}}}
''returns:'' {{{true}}}
[[Slices]] are little chunks of information that can be referenced in another tiddler. A slice is a {{{name:value}}} pair that can be specified anywhere in a tiddler using one of the following notations:
{{{
name: value
|name:|value|
|name|value|
}}}
Leading and trailing blanks are stripped.
* It is not possible to import from TiddlyWiki's on servers which are not [[CORS|http://en.wikipedia.org/wiki/Cross-Origin_Resource_Sharing]] enabled. Popular sites such as [[TiddlyTools|http://tiddlytools.com]] are currently not CORS enabled. Fortunately this is fixable - webmasters can enable their sites to be CORS enabled by following the instructions [[here|http://enable-cors.org]] and if a website is not CORS enabled you can e-mail the owner to tell them the problem
* Some browsers will only allow you to import from TiddlyWikis in the same directory as your TiddlyWiki. If you use Chrome you can enable this by modifying the Chrome shortcut to include the following parameter
{{{
--allow-file-access-from-files
}}}
* Note some browsers, notably Opera do not support import / upgrade in any form.
In a classical TiddlyWiki, the UserName as entered in the OptionsPanel in the sidebar is saved to the [[modifier field|Fields]] when saving edits to a [[tiddler|Tiddler]].
It can be used to enable low level access restrictions when the wiki is viewed by anyone over http, see [[How to use TiddlyWiki as a Website?]]
!Summary
Are you starting to develop plugins? Don't be afraid of the core code! Most of it is quite self-explanatory. Some things -- like Wikifier and formatters -- can be hard to grasp though.
!Reading The Core
To look at the TiddlyWiki core, either open your TiddlyWiki in your preferred editor or have a look at the core namespace components at https://github.com/TiddlyWiki/tiddlywiki/tree/master/js
!Finding Stuff
!![[~ a function of a class ~|Dev.Core]]
e.g. [[TiddlyWiki|TiddlyWiki.class]] ([[store]]), [[Story|Story.class]], [[Tiddler|Tiddler.class]] or [[Array]], [[String]]...
;example
:» {{{story.setDirty(title,true);}}}
;look for
:» {{{Story.prototype.setDirty}}}
;search for
:» {{{'pe.some'}}}
<<<
For a list of classes implemented or extended by TiddlyWiki, see [[Dev.Core]]. There also are some prototype functions for primitive types, like [[Array|Array.class]] and [[String|String.class]].
The function you look for is not a prototype function? It may be a static function, like fetchTiddler: https://github.com/TiddlyWiki/tiddlywiki/blob/master/js/TiddlyWiki.js#L19
<<<
!![[~ some macro ~|Core Macros]]
;example
:» {{{<<list>>}}} or {{{<<tiddler>>}}}
;look for
:» {{{config.macros.someMacro}}}
;search for
:» {{{'os.some'}}}
!![[~ a global function ~|Global Functions]]
;example
:» [[createTiddlyElement(parent, element, id, className, text, attribs)|createTiddlyElement()]]
;look for
:» {{{createTiddlyElement = function}}} or
:» {{{function createTiddlyElement}}}
;search for
:» {{{'ent = fun'}}} or
:» {{{'ion cre'}}}
highlightHack is defined in main.js
{{{
var highlightHack = null; // Embarrassing hack department...
}}}
It is used to highlight text
[[Story.js|Story]] and Macros.js (the view macro) make use of this
/***
|''Name''|TiddlySpaceSearcher|
|''Version''|0.2.5|
|''Requires''|TiddlySpaceConfig TiddlySpaceFollowingPlugin|
***/
//{{{
(function($) {
var tiddlyspace = config.extensions.tiddlyspace;
var tsScan = config.macros.tsScan;
config.shadowTiddlers.SearchTemplate = "<<view server.bag SiteIcon label:no width:24 height:24 preserveAspectRatio:yes>> <<view server.bag spaceLink title external:no>> in space <<view server.bag spaceLink>>";
config.shadowTiddlers.StyleSheetSearch = [".resultsArea .siteIcon { display: inline; }",
".searchForm {
|
__label__pos
| 0.502202 |
Why Lol Is Toxic
There is no consequence for throwing a game There is a consequence if you talk to the thrower The people who care, get punished/removed, the bots and throwers stay gg no re Edit 1: new to the forums, but why did the up-voting get hidden? it was 28, not really a troll post Edit 2: By the internet rules of measurement by shill negative response, i know i hit a vein of truth, lol
Share
Report as:
Offensive Spam Harassment Incorrect Board
Cancel
|
__label__pos
| 0.844969 |
Dismiss
Announcing Stack Overflow Documentation
We started with Q&A. Technical documentation is next, and we need your help.
Whether you're a beginner or an experienced developer, you can contribute.
Sign up and start helping → Learn more about Documentation →
We have various endeca rules set up through Rules Manager in our application which are triggered while rendering the page.
Is it possible to determine which rule was triggered for a page through Java/JSP code?
share|improve this question
up vote 2 down vote accepted
The proper way to do this is with the Content Assembler API (endeca_content.jar). You need to create a content query and retrive the content object:
ContentItem content = results.getContent();
content.getName();
It is also possible to use the navigation API, using the SupplementList object from the navigation object: The title key will represent the name of the rule triggered. However, is you are using page builder in any meaningful way the proper approach is to use the Content Assemble API.
SupplementList sl = nav.getSupplements();
for (Object object : sl) {
Supplement s = (Supplement) object;
PropertyMap map = s.getProperties();
Set keys = map.keySet();
for (Object key : keys) {
logger.info("Sup prop: " + key + " \t" + map.get(key));
}
}
share|improve this answer
Thank you! This was helpful. – user1387942 May 17 '12 at 17:20
Your Answer
discard
By posting your answer, you agree to the privacy policy and terms of service.
Not the answer you're looking for? Browse other questions tagged or ask your own question.
|
__label__pos
| 0.943749 |
Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.
I was wondering, what is there any different, on various ways to initialize static final variable?
private static final int i = 100;
or
private static final int i;
static {
i = 100;
}
Is there any different among the two?
share|improve this question
6 Answers
up vote 10 down vote accepted
If you're only setting variables, both forms are equivalent (and you should use the former as it is more readable and succinct).
The static {} form exists for cases where you also need to execute statements other than variable assignments. (Somewhat contrived) example:
private static final int i;
static {
establishDatabaseConnection();
i = readIntFromDatabase;
closeDatabaseConnection();
}
share|improve this answer
The main reason for the static blocks are to be able to add some logic to the initialization that you cannot do in the 1 line initialization, like initializing an array or something.
share|improve this answer
Yes, by using the second way you are able to use a try...catch block and react to exceptions where as with the first way declared exceptions cannot be catched.
There is also a difference when at class init the fields and die static block is executed but I have no details, see language specification on class instantiation for more information.
Greetz, GHad
share|improve this answer
For a primitive variable, nothing. The difference can be if the initialization is not trivial, or the init method / constructor throws a checked exception - then you need a static block in order to be able to handle the exception.
share|improve this answer
They are the same except you can write multiple lines in the static code block.
See java's official turorial.
share|improve this answer
You could also use Forward Reference initialization
public class ForwardReference {
private static final int i = getValue();
private static final int j = 2;
public static void main(String[] args) {
System.out.println(i);
}
private static int getValue() {
return j*2;
}
}
The key here is that we are getting value of 'j' from 'getValue' before 'j' have been declared. Static variables are initialized in order they appear.
This will print correct value of '4'
share|improve this answer
This is amazing. However, I changed "j = 2" to "j = j()" and added "static int j(){return 2;}". With these changes ForwardReference print '0'. So there appears to be some limits to Forward Reference. – emory Jul 3 '10 at 21:51
Your Answer
discard
By posting your answer, you agree to the privacy policy and terms of service.
Not the answer you're looking for? Browse other questions tagged or ask your own question.
|
__label__pos
| 0.941635 |
Handboek Annuleren
Use expressions to edit and access text properties
1. After Effects User Guide
2. Beta releases
1. Beta Program Overview
2. After Effects Beta Home
3. Getting started
1. Get started with After Effects
2. What's new in After Effects
3. Release Notes | After Effects
4. After Effects system requirements
5. Keyboard shortcuts in After Effects
6. Supported File formats | After Effects
7. Hardware recommendations
8. After Effects for Apple silicon
9. Planning and setup
4. Workspaces
1. General user interface items
2. Get to know After Effects interface
3. Workflows
4. Workspaces, panels, and viewers
5. Projects and compositions
1. Projects
2. Composition basics
3. Precomposing, nesting, and pre-rendering
4. View detailed performance information with the Composition Profiler
5. CINEMA 4D Composition Renderer
6. Importing footage
1. Preparing and importing still images
2. Importing from After Effects and Adobe Premiere Pro
3. Importing and interpreting video and audio
4. Preparing and importing 3D image files
5. Importing and interpreting footage items
6. Working with footage items
7. Detect edit points using Scene Edit Detection
8. XMP metadata
7. Text and Graphics
1. Text
1. Formatting characters and the Character panel
2. Text effects
3. Creating and editing text layers
4. Formatting paragraphs and the Paragraph panel
5. Extruding text and shape layers
6. Animating text
7. Examples and resources for text animation
8. Live Text Templates
2. Motion Graphics
1. Work with Motion Graphics templates in After Effects
2. Use expressions to create drop-down lists in Motion Graphics templates
3. Work with Essential Properties to create Motion Graphics templates
4. Replace images and videos in Motion Graphics templates and Essential Properties
5. Animate faster and easier using the Properties panel
8. Drawing, Painting, and Paths
1. Overview of shape layers, paths, and vector graphics
2. Paint tools: Brush, Clone Stamp, and Eraser
3. Taper shape strokes
4. Shape attributes, paint operations, and path operations for shape layers
5. Use Offset Paths shape effect to alter shapes
6. Creating shapes
7. Create masks
8. Remove objects from your videos with the Content-Aware Fill panel
9. Roto Brush and Refine Matte
9. Layers, Markers, and Camera
1. Selecting and arranging layers
2. Blending modes and layer styles
3. 3D layers
4. Layer properties
5. Creating layers
6. Managing layers
7. Layer markers and composition markers
8. Cameras, lights, and points of interest
10. Animation, Keyframes, Motion Tracking, and Keying
1. Animation
1. Animation basics
2. Animating with Puppet tools
3. Managing and animating shape paths and masks
4. Animating Sketch and Capture shapes using After Effects
5. Assorted animation tools
6. Work with Data-driven animation
2. Keyframe
1. Keyframe interpolation
2. Setting, selecting, and deleting keyframes
3. Editing, moving, and copying keyframes
3. Motion tracking
1. Tracking and stabilizing motion
2. Face Tracking
3. Mask Tracking
4. Mask Reference
5. Speed
6. Time-stretching and time-remapping
7. Timecode and time display units
4. Keying
1. Keying
2. Keying effects
11. Transparency and Compositing
1. Compositing and transparency overview and resources
2. Alpha channels and masks
3. Track Mattes and Traveling Mattes
12. Adjusting color
1. Color basics
2. Color management
3. Color Correction effects
4. OpenColorIO and ACES color management
13. Effects and Animation Presets
1. Effects and animation presets overview
2. Effect list
3. Effect Manager
4. Simulation effects
5. Stylize effects
6. Audio effects
7. Distort effects
8. Perspective effects
9. Channel effects
10. Generate effects
11. Transition effects
12. The Rolling Shutter Repair effect
13. Blur and Sharpen effects
14. 3D Channel effects
15. Utility effects
16. Matte effects
17. Noise and Grain effects
18. Detail-preserving Upscale effect
19. Obsolete effects
14. Expressions and Automation
1. Expressions
1. Expression basics
2. Understanding the expression language
3. Using expression controls
4. Syntax differences between the JavaScript and Legacy ExtendScript expression engines
5. Editing expressions
6. Expression errors
7. Using the Expressions editor
8. Use expressions to edit and access text properties
9. Expression language reference
10. Expression examples
2. Automation
1. Automation
2. Scripts
15. Immersive video, VR, and 3D
1. Construct VR environments in After Effects
2. Apply immersive video effects
3. Compositing tools for VR/360 videos
4. Advanced 3D Renderer
5. Import and add 3D models to your composition
6. Import 3D models from Creative Cloud Libraries
7. Image-Based Lighting
8. Extract and animate lights and cameras from 3D models
9. Tracking 3D camera movement
10. Cast and accept shadows
11. Embedded 3D model animations
12. Shadow Catcher
13. 3D depth data extraction
14. Modify materials properties of a 3D layer
15. Work in 3D Design Space
16. 3D Transform Gizmos
17. Do more with 3D animation
18. Preview changes to 3D designs real time with the Mercury 3D engine
19. Add responsive design to your graphics
16. Views and Previews
1. Previewing
2. Video preview with Mercury Transmit
3. Modifying and using views
17. Rendering and Exporting
1. Basics of rendering and exporting
2. H.264 Encoding in After Effects
3. Export an After Effects project as an Adobe Premiere Pro project
4. Converting movies
5. Multi-frame rendering
6. Automated rendering and network rendering
7. Rendering and exporting still images and still-image sequences
8. Using the GoPro CineForm codec in After Effects
18. Working with other applications
1. Dynamic Link and After Effects
2. Working with After Effects and other applications
3. Sync Settings in After Effects
4. Creative Cloud Libraries in After Effects
5. Plug-ins
6. Cinema 4D and Cineware
19. Collaboration: Frame.io, and Team Projects
1. Collaboration in Premiere Pro and After Effects
2. Frame.io
1. Install and activate Frame.io
2. Use Frame.io with Premiere Pro and After Effects
3. Frequently asked questions
3. Team Projects
1. Get Started with Team Projects
2. Create a Team Project
3. Collaborate with Team Projects
20. Memory, storage, performance
1. Memory and storage
2. How After Effects handles low memory issues while previewing
3. Improve performance
4. Preferences
5. GPU and GPU driver requirements for After Effects
21. Knowledge Base
1. Known issues
2. Fixed issues
3. Frequently asked questions
4. After Effects and macOS Ventura
5. How After Effects handles low memory issues while previewing
Edit the text styles and text properties using the expression controls.
Use expressions to control text styling in any text expression or in Motion Graphics templates. Some things you can do with expressions are:
• Link multiple titles and update their styles at once (very useful for designing titles).
• Keep font, size, and styling in sync across multiple Text layers.
• Make global changes to text properties.
• Set style attributes of individual characters in a Text layer. (Beta)
Once you set these for a Text layer, reference that layer's properties to easily apply changes throughout the composition. After Effects expressions use properties to read (get) text style values and function methods to write (set) them inside the expression engine. This allows you to link text styles across Text layers or set up controls for them to be animated or used in a Motion Graphics template.
Before you start using expressions to edit text properties
1. Set Expressions Engine to Javascript by selecting Project Settings > Expressions > Expressions Engine > Javascript.
2. Add an expression to a Text layer's Source Text property.
3. In the Expression Language flyout menu, select Text > Properties > Text Properties or Text > Styling (Beta).
Available text attributes
The following text styling attributes can be read and set using the style object:
• Font
• Font Size
• Faux Bold
• Faux Italics
• All Caps
• Small Caps
• Tracking
• Leading
• Auto Leading
• Baseline Shift
• Fill (enable/disable)
• Fill Color
• Stroke (enable/disable)
• Stroke Color
• Stroke Width
• Digit Set (Beta)
• Scaling (Beta)
• Kerning (Beta)
• Tsume (Beta)
• Baseline Direction (Beta)
• Baseline Option (Beta)
Expression Language flyout menu lists all Text Properties to choose from.
The Expression Language flyout menu lists all Text Properties, including ones currently in After Effects Beta.
The Source Text property of a Text layer is interpreted by expressions as a JavaScript string. The text itself can be read with sourceText, but it must be set on the style object with the setText method if style attributes are being modified. Go through some of the examples.
Expressions for text layers with paragraphs
Start a new line of text
Use \r in a string expression to start a new line of text. For example, to copy the original text from one layer onto the same layer and repeat it in all uppercase characters on a new line, use the following expression:
text.sourceText + "\r" + text.sourceText.toUpperCase()
Available paragraph attributes
Paragraph styling in Expressions is now available for testing and feedback. Try it now in After Effects (Beta).
In addition to text style attributes, there are also paragraph attributes. These can only be applied to the entire Text layer. The paragraph attributes are only available in After Effects (Beta).
• Direction
• Every-Line Composer
• First Line Indent
• Justification
• Leading Type
• Left Margin
• Right Margin
• Space After
• Space Before
• Hanging Roman Punctuation
The Expression Language flyout menu lists all Paragraph Properties, including ones currently in After Effects Beta.
The Expression Language flyout menu lists all Paragraph Properties included in After Effects Beta.
Learn more about these new expressions in After Effects (Beta) Community.
PostScript font expression menu
When referring to fonts in expressions, they must use a special "system name" ( or similar ). It is recommended to insert this special name from the Text > Font > Select Font dialog to avoid expression errors.
• Open the Expression Language flyout menu, then select Text > Font. This brings up a dialog with drop-down menus to select the typeface and font to insert into the expression.
Font menu
Use the Expression Language menu to select the typeface and font to insert into the expression.
Font syncing
Fonts that are only referred to in the Expressions Editor are not recorded as fonts used by the project. To ensure all fonts referred to in the Expressions Editor will auto-sync or populate the Resolve Fonts dialog, use all of those fonts on a layer, even if that layer source is hidden.
Fonts Used
The Resolve Fonts dialog box might appear if the expressions refer to fonts that are not installed on your system.
Style object
All of the styling properties for a Text layer exist on the style object, which is accessed on the Source Text property using the following:
// Using the whole path to the Source Text property
text.sourceText.style
// Using the generic name for the current property
thisProperty.style
Using style by itself is the same as using either of the two examples above, but this can be confusing if style attributes from multiple Text layers are being combined.
The styling attributes of other Text layers can also be read. Use the pick whip to create a link to the other Text layer at the beginning of the first example shown above.
// Accessing the style object of a specific text layer
thisComp.layer("Other Layer Name").text.sourceText.style;
Style attributes of individual characters in a Text layer
Per-character text styling in Expressions is now available for testing and feedback. Try it now in After Effects (Beta).
In addition to using text expressions to set style attributes of the entire Text layer, you can also set style attributes of individual characters in the layer. A benefit of this per-character control is automatic reflowing of text, such as when scaling letters, using superscript, and using a different font, just as you would expect from using substring styling from the Character panel.
Examples
Change the font for certain words
text.sourceText.style
.setFont("Montserrat-Light")
.setFont("Gigantic", 0, 6).setFont("Gigantic", 10, 6).setFont("Gigantic", 20)
Set the first line of a text layer to bold and make it larger
text.sourceText.style.setFontSize(100, 0, 30).setFauxBold(true, 0, 30)
Set superscript for characters
To use the string, add a Text layer with '1st and 2nd Place' text and apply the following to the Source Text.
text.sourceText.style.setBaselineOption("superscript",1,2).setBaselineOption("superscript", 9, 2)
Combine style and source text
text and style
Combining Style and Source Text
To return the values of both the style and the actual Source Text at time, you will have to combine the getStyleAt and setText functions. Below are two examples of how to write this expression.
// To return the values of both the style and the actual Source Text at time (short hand)
var sourceTextProperty = thisComp.layer("MAIN TEXT").text.sourceText;
var newStyle = sourceTextProperty.getStyleAt(0,0);
newStyle.setText(sourceTextProperty);
// To return the values of both the style and the actual Source Text of the previous layer in the layer stacking order
var sourceTextProperty = thisComp.layer(index - 1).text.sourceText;
var newStyle = sourceTextProperty.getStyleAt(0,0);
newStyle.setText(sourceTextProperty);
dropdown fonts
Link Fonts or Styles to a Dropdown Menu
You can use Dropdown menus to control text styles, such as locking Text layers to specific fonts. This is useful for brand guidelines, templates, MoGRTS, and more:
// To lock a text layer to specific fonts with a Dropdown Menu Control
var dropDownMenu = thisComp.layer("LayerName").effect("Dropdown Menu Control")("Menu");
switch (dropDownMenu.value) {
case 1 :
text.sourceText.style.setFont("Georgia");
break;
case 2 :
text.sourceText.style.setFont("Impact");
break;
default :
text.sourceText.style.setFont("Tahoma");
}
Main text layer
master text layer
Get text properties from “Text Layer 1” but override Font Size and Fill Color
Link multiple Text layers to a main font controller to control the text style of multiple layers at once. Create two Text layers, and paste this expression into the Source Text of one of them:
// To get all text properties from a text layer
thisComp.layer("Text Layer 1").text.sourceText.style;
It's possible to get the style from a Text layer but override specific text properties by adding values with the set functions. Below are two examples using Fill Color and Font Size.
// To get all text properties from “Text Layer 1” but override Fill Color and Font Size with hardcoded values
var newStyle = thisComp.layer("Text Layer 1").text.sourceText.style;
newStyle.setFillColor(hexToRgb("FF0000")).setFontSize(100);
// To get all text properties from "Text Layer 1” but override Fill Color and Font Size with the layer’s current text properties
var newStyle = thisComp.layer("Text Layer 1").text.sourceText.style;
var currentFillColor = thisProperty.style.fillColor;
var currentFontSize = thisProperty.style.fontSize;
newStyle.setFillColor(currentFillColor).setFontSize(currentFontSize);
Examples
The following are examples for how to access and use text property values with expressions.
Font
The following are examples for accessing a Text layer's Font, Font Size, Faux Bold, Faux Italic, Tracking, and Leading:
// To return the name of the Font for the text layer itself
text.sourceText.style.font;
// To return the name of the Font another text layer is using
var otherLayer = thisComp.layer("Other Layer Name");
otherLayer.text.sourceText.style.font;
// To return the value of Font Size for the text layer itself
text.sourceText.style.fontSize;
// To return the value of Font Size for another text layer
var otherLayer = thisComp.layer("Other Layer Name");
otherLayer.text.sourceText.style.fontSize;
// To return a Boolean value of whether a layer's text is Faux Bold or not (True or False)
text.sourceText.style.isFauxBold;
// To return a Boolean value of whether a layer's text is Faux Italic or not (True or False)
text.sourceText.style.isFauxItalic;
// To return the value of a text layer’s Tracking as a number
text.sourceText.style.tracking;
// To return the value of a text layer's Leading as a number
text.sourceText.style.leading;
Fill
The following are examples for accessing a Text layer's Fill and Fill Color:
// To return a Boolean value of whether a layer's text has Fill applied to it (True or False)
text.sourceText.style.applyFill;
// To return the value of the Fill Color of a text layer
// By default, this returns an array of the RGB values on a scale from 0 – 1.0
text.sourceText.style.fillColor;
// Set the Fill Color of a text layer with setApplyFill and setFillColor
// setFillColor values are defined as an RGB array on a scale between 0 – 1.0
var newStyle = style.setApplyFill(true);
newStyle.setFillColor([1.0, 1.0, 1.0]);
// Set the Fill Color of a text layer substituting the 0 – 1.0 RGB array with hexToRGB to define the color values with Hex values
var newStyle = style.setApplyFill(true);
newStyle.setFillColor(hexToRgb("FFFFFF"));
Fill RGB Values
// To return the red (R) value of the Fill Color
text.sourceText.style.fillColor[0];
Opmerking:
To return the value of the Fill Color for R, G, or B of a text layer, add 0, 1, or 2 in brackets, respectively.
Stroke
The following are examples for accessing a Text layer's Stroke, Stroke Color, and Stroke Width:
// To return a Boolean value of whether a layer's text has Stroke applied to it (True or False)
text.sourceText.style.applyStroke;
// To return the value of the Stroke Color of a text layer
// By default, this returns an array of the RGB values on a scale from 0 – 1.0
text.sourceText.style.strokeColor;
// Set the Stroke Color of a text layer with setApplyStroke and setStrokeColor
// setStrokeColor values are defined as an RGB array on a scale between 0 – 1.0
var newStyle = style.setApplyStroke(true);
newStyle.setStrokeColor([1.0, 0.0, 0.0]);
// Set the Stroke Color of a text layer substituting the 0 – 1.0 RGB array with hexToRGB to define the color values with Hex values
var newStyle = style.setApplyStroke(true);
newStyle.setStrokeColor(hexToRgb("FF0000"));
// To return the value of a text layer's Stroke Width as a number
text.sourceText.style.strokeWidth;
Stroke RGB Values
// To return the green (G) value of the Stroke Color
text.sourceText.style.strokeColor[1];
Opmerking:
To return the value of the Stroke Color for R, G, or B of a Text layer, add 0, 1, or 2 in brackets, respectively.
getStyleAt function
Use this get function to return the style value of a particular character at a specific time. index should be a number, the index of the letter or character whose style is needed. atTime should also be a number, the time within the composition to get the style from in case the style is keyframed and changes over time.
text.sourceText.getStyleAt(index, atTime);
Opmerking:
Using text.sourceText.style is the same as using text.sourceText.getStyleAt(0,0).
// Gets the style of the first character at the beginning of the timeline
text.sourceText.getStyleAt(0,0);
Set functions
Additional set functions that can be used individually or in combination with one another to drive styles across layers. Each of these functions are called on the style object of a Source Text property:
// Set the font used to Arial
style.setFont("ArialMT")
// Set the font size to 80
style.setFontSize(80);
// Enable Faux Bold with a Boolean
style.setFauxBold(true)
// Enable Faux Italics with a Boolean
style.setFauxItalics(true)
// Enable All Caps with a Boolean
style.setAllCaps(true)
// Enable Small Caps with a Boolean
style.setSmallCaps(true)
// Set the Tracking as a number
style.setTracking(10);
// Set the Leading as a number
style.setLeading(10);
// Enable Auto Leading with a Boolean
style.setAutoLeading(true);
// Set the Baseline Shift as a number
style.setBaselineShift(10);
// Set the Stroke Width as a number
style.setStrokeWidth(10);
// Currently in Beta - Set the first line of a text layer to bold and make it larger
text.sourceText.style.setFontSize(100, 0, 30).setFauxBold(true, 0, 30)
// Currently in Beta - Sets uperscript for characters
text.sourceText.style.setBaselineOption("superscript",1,2).setBaselineOption("superscript", 9, 2)
All of the set functions for text styles can be chained together to easily set multiple attributes without having to declare a new style each time, as in the following example:
Opmerking:
There is no semicolon used until the very last attribute is set. Listing each attribute on its own line helps make the whole chain easier to read.
// Enable Fill, set Fill Color, set Baseline, set Tracking, and enable Auto Leading
text.sourceText.style
.setApplyFill(true)
.setFillColor(hexToRgb("FFFFFF"))
.setBaselineShift(10)
.setTracking(25)
.setAutoLeading(true);
Additional uses for expressions on source text
Adding a Text layer to a composition and adding an expression to its Source Text property can be a great way to examine the property values of other layers. For example, the following expression on a Source Text property reports the name and value of the Opacity property for the next layer in the layer stacking order:
var nextLayer = thisComp.layer(index + 1);
nextLayer.name + "\rOpacity = " + nextLayer.opacity.value;
The following example reports the name of the footage item used as the source of the topmost image layer in the stacking order at the current time that has its Video switch set:
// Create sourceFootageName as a blank string
var sourceFootageName = "";
// Loop through all layers in the composition
for (var i = 1; i <= thisComp.numLayers; i++) {
// If i matches this layer's index, continue to next loop
if (i == index) {
continue;
}
// Set myLayer for the current iteration of the loop
var myLayer = thisComp.layer(i);
// If myLayer has no video or isn't active, continue to next loop/layer
if ( !myLayer.hasVideo || !myLayer.active ) {
continue;
}
// If myLayer is active at the current time
if ( myLayer.active ) {
try {
// Set sourceFootageName to myLayer's source name
sourceFootageName = myLayer.source.name;
} catch ( err ) {
// If myLayer has no source,
// set sourceFootageName to the myLayer's name
sourceFootageName = myLayer.name;
}
// Stop looping
break;
}
}
// Display the sourceFootageName
sourceFootageName;
Save expressions as presets
Select the Source Text property with expressions added to it. Then, select Animation > Save Animation Preset to reuse the expressions in other projects. Animation Presets are saved in the Effects & Presets panel.
For more information, see Effects and animation presets overview.
More Expression resources
Now that you have understood some of the concepts behind expressions, come to the community for some real-life examples, and to share your work.
The AE Enhancers forum also provides many examples and much information about expressions, as well as scripts and animation presets.
Adobe
Krijg sneller en gemakkelijker hulp
Nieuwe gebruiker?
Adobe MAX 2024
Adobe MAX
De creativiteitsconferentie
14–16 oktober Miami Beach en online
Adobe MAX
De creativiteitsconferentie
14–16 oktober Miami Beach en online
Adobe MAX 2024
Adobe MAX
De creativiteitsconferentie
14–16 oktober Miami Beach en online
Adobe MAX
De creativiteitsconferentie
14–16 oktober Miami Beach en online
|
__label__pos
| 0.997342 |
Trackimi
With the increasing reliance on smartphones, losing or misplacing them can cause significant distress. Fortunately, mobile tracker services offer a solution by allowing you to locate your device with ease. In this comprehensive guide, we will explore the concept of mobile tracker free online and discuss the best methods to track your phone. Whether you own an Android or iOS device, we will provide you with valuable insights and tools to ensure the safety and security of your mobile device. Let’s dive in and discover the world of mobile tracking!
Section 1: Understanding Mobile Tracker Free Online
1.What is a Mobile Tracker?
A mobile tracker is a service that enables you to locate your lost or stolen device using various technologies and methods. It utilizes GPS, Wi-Fi signals, and cellular networks to pinpoint the location of your phone.
2.Importance of Mobile Tracker Free Online
Mobile tracker free online services are invaluable for several reasons:
• Device Recovery: By using a mobile tracker, you can increase the chances of finding your lost or stolen phone.
• Personal Safety: Tracking your device allows you to know where it is and take appropriate action if it falls into the wrong hands.
• Data Protection: With mobile tracking, you can remotely lock or erase your device to protect sensitive information from unauthorized access.
3.Popular Mobile Tracker Apps and Services
There are numerous mobile tracker apps and services available. Some of the most popular ones include Find My Device for Android, Find My iPhone for iOS, and third-party options like Prey, Cerberus, and Where’s My Droid. These apps provide real-time location tracking, remote device locking, and data erasure features.(imei tracker)
Section 2: How to Use Mobile Tracker Free Online
Both Android and iOS devices offer built-in tracking services:
• Android: Google’s Find My Device allows you to locate your Android phone by signing in to your Google account on any web browser. You can also remotely lock, ring, or erase your device.
• iOS: Apple’s Find My iPhone uses iCloud to help you locate your iPhone or iPad. It offers features such as remote locking, displaying a custom message on the screen, and erasing data.(iphone imei check)
Section 3: Tips for Optimising Mobile Tracker Free Online
1. Enable Location Services: Ensure that location services are enabled on your device to maximise the effectiveness of the mobile tracker.
2. Set up Remote Access: Before you lose your device, activate the remote access features of the mobile tracker app or service.
3. Keep Software Updated: Regularly update your mobile tracker app and operating system to access the latest security features and improvements.
Conclusion
Losing a mobile device can be a distressing experience, but with the right knowledge and tools, you can increase the chances of recovering it. Mobile tracker free online services provide an effective solution to locate your device, protect your data, and ensure your personal safety. Whether you utilise built-in tracking services or opt for third-party apps, the key is to enable tracking features, set up remote access, and keep your software up to date. By following these guidelines and taking proactive measures, you can enhance the security of your device and minimize the risk of losing it.
In conclusion, mobile tracker free online services provide a valuable solution for locating lost or stolen phones, ensuring personal safety, and protecting your data. By understanding how these services work and implementing preventive measures, you can maintain the security of your device and have peace of mind in case of any unfortunate events. Stay vigilant, stay proactive, and keep your mobile device safe at all times.
By admin
Subscribe
Notify of
guest
0 Comments
Inline Feedbacks
View all comments
|
__label__pos
| 0.765977 |
Take the 2-minute tour ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.
I'm new to facelets and I have generated a project using netbeans but I struggling with the tag.
I have
<h:selectOneMenu id="country" value="#{organisation.organisation.country}" title="Country" >
<f:selectItems value="#{country.countryItemsAvailableSelectOne}"/>
</h:selectOneMenu>
In the select I get classpath.Country[iso=GB] which I can see is an object but I really want to see the the country.prinableName value. I've looked at this for half a day and have drawn a blank Thanks for any help
share|improve this question
1
JSF 1.x or 2.x? – BalusC Sep 8 '11 at 21:26
3 Answers 3
Since you're talking about Facelets, I'll assume JSF 2.x.
To start, HTML is one and all String. JSF generates HTML. By default, non-String Java objects are by toString() method converted to their String representation while JSF generates the HTML. To properly convert between those Java objects and String, you need a Converter.
I assume that your Country object has already the equals() method properly implemented, otherwise validation will later fail with "Validation error: Value not valid" because the selected object doesn't return true on testing the equals() for any of the available items.
I'll also make a little change in the naming since #{country} is a confusing managed bean name because it does apparently not represent an instance of the Country class. I'll call it Data which should hold application wide data.
@ManagedBean
@ApplicaitionScoped
public class Data {
private static final List<Country> COUNTRIES = populateItSomehow();
public List<Country> getCountries() {
return COUNTRIES;
}
// ...
}
I'll assume that the Country class has two properties code and name. I'll assume that the managed bean which receives the selected country has a private Country country property. In your <f:selectItems>, you need to loop over #{data.countries} and specify the country object as item value and the country name as item label.
<h:selectOneMenu value="#{bean.country}">
<f:selectItems value="#{data.countries}" var="country" itemValue="#{country}" itemLabel="#{country.name}" />
</h:selectOneMenu>
Now, you need to create a Converter for the Country class. We'll convert based on the country code which is unique for every country (right?). In the getAsString() you implement code which converts the Java object to its unique String representation which is to be used in HTML. In getAsObject() you implement code which converts the unique HTML String representation back to the Java object.
@FacesConverter(forClass=Country.class)
public class CountryConverter implements Converter {
@Override
public String getAsString(FacesContext context, UIComponent component, Object value) {
return (value instanceof Country) ? ((Country) value).getCode() : null;
}
@Override
public Object getAsObject(FacesContext context, UIComponent component, String value) {
if (value == null) {
return null;
}
Data data = context.getApplication().evaluateExpressionGet(context, "#{data}", Data.class);
for (Country country : data.getCountries()) {
if (country.getCode().equals(value)) {
return country;
}
}
throw new ConverterException(new FacesMessage(String.format("Cannot convert %s to Country", value)));
}
}
The @FacesConverter will register it automatically in JSF and JSF will automatically use it whenever it encounters a value expression of the Country type. Ultimately, you end up with country code as item value and country name as item label. JSF will convert the submitted country code back to a fullworthy Country object upon form submission.
In JSF 1.x the principle is not much different. In this blog you can find two basic kickoff examples: Objects in h:selectOneMenu.
share|improve this answer
Thank you all your assumptions correct and a great explanation will work through the example it will help me else where as well – user845854 Sep 8 '11 at 23:23
What happened to you, selectOneMenu call the toString() method for all given objects.
You've to use selectitems or a simple converter to manage that. A very simple example:
price.xhtml:
<h:selectOneMenu id="priceMenu" value="#{priceBean.selectedPrice}">
<f:selectItems value="#{priceBean.prices}" />
</h:selectOneMenu>
PriceBean.java:
..
private String selectedPrice;
..
public String getSelectedPrice() {
return selectedPrice;
}
public void setSelectedPrice(String newPrice) {
selectedPrice = newPrice;
}
..
public List<SelectItem> getPrices() {
List<SelectItem> retVal = new ArrayList<SelectItem>();
retVal.add(new SelectItem("2"));
retVal.add(new SelectItem("4"));
retVal.add(new SelectItem("6"));
return retVal;
}
Further informations about the SelectItem. If you want to use a specially object directly, for example an object called Price, you have to use a converter. Here an example is shown and here.
share|improve this answer
Thank you for the help I have it sorted using both the answers here. Thank you again for the tips. – user845854 Sep 8 '11 at 23:24
If you add editable="true" in your
<h:selectOneMenu value="#{bean.country}">
Then you'll get an unexpected String value (not from getAsString()) in the converter method:
public Object getAsObject(FacesContext context, UIComponent component, String value) { }
share|improve this answer
Your Answer
discard
By posting your answer, you agree to the privacy policy and terms of service.
Not the answer you're looking for? Browse other questions tagged or ask your own question.
|
__label__pos
| 0.83922 |
How can I recognize when plugins.fireHook is throwed?
• GNU/Linux
I need to recognize when the hook is fire in the pages, because for some pages in my plugin I need to do something.
plugins.fireHook('filter:topics.get', {topics: topics, uid: uid}, next);
is there some method that I can use to do this?
• You can use the filter:<templateName>.build hooks. For the category page it would be filter:category.build, for a topic page it would be filter:topic.build and so on.
Log in to reply
Suggested Topics
| |
|
__label__pos
| 0.99972 |
Skip to main content
Looking for help? Contact our Help & Support Team
Back to the Glossary
Payrolling terms with TCWGlobal
What Is a Document Management System (DMS)?
Table of Contents
Document Management System (DMS): A Comprehensive Guide
Introduction
In today’s fast-paced business environment, managing documents efficiently is crucial for productivity and compliance. A Document Management System (DMS) plays a pivotal role in this realm by streamlining document handling processes, ensuring secure storage, and facilitating easy retrieval. This article provides an in-depth look at DMS, including its definition, types, benefits, common myths, FAQs, and real-world examples.
What is a Document Management System (DMS)?
A Document Management System (DMS) is a software solution designed to organize, store, and manage documents digitally. It provides tools for creating, editing, storing, and retrieving documents within an organization. DMS enhances collaboration, improves accessibility, and ensures regulatory compliance by maintaining a secure repository of documents.
Key Features of a DMS
• Document Storage: Secure and centralized storage of digital documents.
• Version Control: Tracking changes and maintaining versions of documents.
• Access Control: Restricting document access based on user roles.
• Search and Retrieval: Efficient search capabilities for quick document retrieval.
• Workflow Automation: Automating document-related workflows and processes.
• Integration: Seamless integration with other business applications.
Types of Document Management Systems
1. Cloud-Based DMS
Cloud-based DMS solutions store documents on remote servers and are accessible via the internet. They offer scalability, remote access, and reduced IT overhead.
Example Keywords: cloud document management, cloud storage, online document storage
2. On-Premises DMS
On-premises DMS solutions are hosted on the organization’s own servers. They offer greater control over data and security but require significant IT resources for maintenance.
Example Keywords: on-premises DMS, in-house document management, enterprise document management
3. Open Source DMS
Open source DMS solutions provide the flexibility of customization and are typically free to use. They require technical expertise for installation and management.
Example Keywords: open source document management, free DMS, customizable document management
4. Industry-Specific DMS
These systems are tailored to meet the specific needs of industries such as healthcare, legal, and finance, ensuring compliance with industry regulations.
Example Keywords: healthcare document management, legal DMS, financial document management
Benefits of Document Management Systems
1. Enhanced Productivity
By automating document-related tasks and providing easy access to information, DMS significantly boosts productivity.
Example Keywords: improve productivity, document automation, workflow efficiency
2. Cost Savings
Reducing the reliance on paper documents and minimizing storage costs translates into substantial savings for organizations.
Example Keywords: reduce paper costs, cost-effective document management, save on storage
3. Regulatory Compliance
DMS helps organizations adhere to regulatory requirements by maintaining accurate records and ensuring data security.
Example Keywords: regulatory compliance, secure document storage, data protection
4. Improved Collaboration
DMS facilitates real-time collaboration by allowing multiple users to access and edit documents simultaneously.
Example Keywords: real-time collaboration, document sharing, team collaboration
5. Disaster Recovery
With DMS, documents are backed up regularly, ensuring business continuity in the event of data loss.
Example Keywords: disaster recovery, document backup, business continuity
Common Myths and Misconceptions about Document Management Systems
Myth 1: DMS is Only for Large Enterprises
Contrary to popular belief, DMS solutions are scalable and can be tailored to fit the needs of small and medium-sized businesses.
Example Keywords: small business DMS, scalable document management, SMB document management
Myth 2: Implementing DMS is Expensive
While initial costs may seem high, the long-term benefits and cost savings outweigh the initial investment.
Example Keywords: affordable DMS, cost-effective solutions, budget-friendly document management
Myth 3: DMS is Difficult to Use
Modern DMS solutions are designed with user-friendly interfaces, making them easy to use even for non-technical staff.
Example Keywords: user-friendly DMS, easy-to-use document management, intuitive document management
Myth 4: DMS is Only for Digital Documents
DMS can manage both digital and physical documents by integrating scanning and digitization tools.
Example Keywords: physical document management, digitization, document scanning
Frequently Asked Questions (FAQs) about Document Management Systems
1. What are the main components of a DMS?
A typical DMS includes document storage, retrieval, version control, access control, and workflow automation.
Example Keywords: DMS components, document storage, version control
2. How does a DMS ensure document security?
DMS ensures document security through encryption, access controls, and regular audits.
Example Keywords: document security, data encryption, access control
3. Can a DMS integrate with existing software?
Yes, most DMS solutions offer integration capabilities with popular software like ERP, CRM, and email systems.
Example Keywords: software integration, ERP integration, CRM integration
4. How does a DMS improve compliance?
By maintaining accurate records and providing audit trails, DMS helps organizations meet regulatory requirements.
Example Keywords: compliance management, audit trails, regulatory requirements
5. What is the ROI of implementing a DMS?
The return on investment (ROI) includes cost savings, improved productivity, and enhanced compliance.
Example Keywords: ROI of DMS, document management benefits, cost savings
Examples of Document Management Systems in Action
Example 1: Healthcare
A healthcare provider implemented a cloud-based DMS to manage patient records, improving accessibility and compliance with health regulations.
Example Keywords: healthcare DMS, patient records management, medical document management
Example 2: Legal
A law firm used an on-premises DMS to organize case files, streamline document retrieval, and maintain client confidentiality.
Example Keywords: legal DMS, case file management, client confidentiality
Example 3: Finance
A financial institution adopted an industry-specific DMS to manage compliance documents, reducing audit times and improving data security.
Example Keywords: financial DMS, compliance management, audit efficiency
Example 4: Manufacturing
A manufacturing company utilized an open source DMS to manage technical documents and improve collaboration across departments.
Example Keywords: manufacturing DMS, technical document management, department collaboration
Conclusion
Implementing a Document Management System (DMS) can transform the way organizations handle their documents, leading to enhanced productivity, cost savings, and regulatory compliance. By understanding the types, benefits, and common misconceptions about DMS, businesses can make informed decisions to select the best solution that fits their needs. As illustrated through various examples, the impact of a well-chosen DMS spans across multiple industries, showcasing its versatility and indispensability in today’s digital age.
Additional Resources
Whether you need expertise in Employer of Record (EOR) services, Managed Service Provider (MSP) solutions, or Vendor Management Systems (VMS), our team is equipped to support your business needs. We specialize in addressing worker misclassification, offering comprehensive payroll solutions, and managing global payroll intricacies. From remote workforce management to workforce compliance, and from international hiring to employee benefits administration, TCWGlobal has the experience and resources to streamline your HR functions. Our services also include HR outsourcing, talent acquisition, freelancer management, and contractor compliance, ensuring seamless cross-border employment and adherence to labor laws. We help you navigate employment contracts, tax compliance, workforce flexibility, and risk mitigation, all tailored to your unique business requirements. Contact us today at tcwglobal.com or email us at [email protected] to discover how we can help your organization thrive in today's dynamic work environment. Let TCWGlobal assist with all your payrolling needs!
Need help with EOR, MSP, or VMS?
We've got you covered!
TCWGlobal handles worker classification, payroll, global workforce management, compliance, hiring, and benefits. From HR outsourcing to talent acquisition, we make cross-border employment a breeze.
Let us tackle contracts, taxes, and risk while you focus on growing your business.
Group 355 copy-3
|
__label__pos
| 0.892658 |
Mementos from Excursion 4: Objectivity & Auditing: Blurbs of Tours I – IV
Excursion 4: Objectivity and Auditing (blurbs of Tours I – IV)
.
Excursion 4 Tour I: The Myth of “The Myth of Objectivity”
Blanket slogans such as “all methods are equally objective and subjective” trivialize into oblivion the problem of objectivity. Such cavalier attitudes are at odds with the moves to take back science The goal of this tour is to identify what there is in objectivity that we won’t give up, and shouldn’t. While knowledge gaps leave room for biases and wishful thinking, we regularly come up against data that thwart our expectations and disagree with predictions we try to foist upon the world. This pushback supplies objective constraints on which our critical capacity is built. Supposing an objective method is to supply formal, mechanical, rules to process data is a holdover of a discredited logical positivist philosophy.Discretion in data generation and modeling does not warrant concluding: statistical inference is a matter of subjective belief. It is one thing to talk of our models as objects of belief and quite another to maintain that our task is to model beliefs. For a severe tester, a statistical method’s objectivity requires the ability to audit an inference: check assumptions, pinpoint blame for anomalies, falsify, and directly register how biasing selection effects–hunting, multiple testing and cherry-picking–alter its error probing capacities.
Keywords
objective vs. subjective, objectivity requirements, auditing, dirty hands argument, phenomena vs. epiphenomena, logical positivism, verificationism, loss and cost functions, default Bayesians, equipoise assignments, (Bayesian) wash-out theorems, degenerating program, transparency, epistemology: internal/external distinction
Excursion 4 Tour II: Rejection Fallacies: Whose Exaggerating What?
We begin with the Mountains out of Molehills Fallacy (large n problem): The fallacy of taking a (P-level) rejection of H0 with larger sample size as indicating greater discrepancy from H0 than with a smaller sample size. (4.3). The Jeffreys-Lindley paradox shows with large enough n, a .05 significant result can correspond to assigning H0 a high probability .95. There are family feuds as to whether this is a problem for Bayesians or frequentists! The severe tester takes account of sample size in interpreting the discrepancy indicated. A modification of confidence intervals (CIs) is required.
It is commonly charged that significance levels overstate the evidence against the null hypothesis (4.4, 4.5). What’s meant? One answer considered here, is that the P-value can be smaller than a posterior probability to the null hypothesis, based on a lump prior (often .5) to a point null hypothesis. There are battles between and within tribes of Bayesians and frequentists. Some argue for lowering the P-value to bring it into line with a particular posterior. Others argue the supposed exaggeration results from an unwarranted lump prior to a wrongly formulated null.We consider how to evaluate reforms based on bayes factor standards (4.5). Rather than dismiss criticisms of error statistical methods that assume a standard from a rival account, we give them a generous reading. Only once the minimal principle for severity is violated do we reject them. Souvenir R summarizes the severe tester’s interpretation of a rejection in a statistical significance test. At least 2 benchmarks are needed: reports of discrepancies (from a test hypothesis) that are, and those that are not, well indicated by the observed difference.
Keywords
significance test controversy, mountains out of molehills fallacy, large n problem, confidence intervals, P-values exaggerate evidence, Jeffreys-Lindley paradox, Bayes/Fisher disagreement, uninformative (diffuse) priors, Bayes factors, spiked priors, spike and slab, equivocating terms, severity interpretation of rejection (SIR)
Excursion 4 Tour III: Auditing: Biasing Selection Effects & Randomization
Tour III takes up Peirce’s “two rules of inductive inference”: predesignation (4.6) and randomization (4.7). The Tour opens on a court case transpiring: the CEO of a drug company is being charged with giving shareholders an overly rosy report based on post-data dredging for nominally significant benefits. Auditing a result includes checking for (i) selection effects, (ii) violations of model assumptions, and (iii) obstacles to moving from statistical to substantive claims. We hear it’s too easy to obtain small P-values, yet replication attempts find it difficult to get small P-values with preregistered results. I call this the paradox of replication. The problem isn’t P-values but failing to adjust them for cherry picking and other biasing selection effects. Adjustments by Bonferroni and false discovery rates are considered. There is a tension between popular calls for preregistering data analysis, and accounts that downplay error probabilities. Worse, in the interest of promoting a methodology that rejects error probabilities, researchers who most deserve lambasting are thrown a handy line of defense. However, data dependent searching need not be pejorative. In some cases, it can improve severity. (4.6)
Big Data cannot ignore experimental design principles. Unless we take account of the sampling distribution, it becomes difficult to justify resampling and randomization. We consider RCTs in development economics (RCT4D) and genomics. Failing to randomize microarrays is thought to have resulted in a decade lost in genomics. Granted the rejection of error probabilities is often tied to presupposing their relevance is limited to long-run behavioristic goals, which we reject. They are essential for an epistemic goal: controlling and assessing how well or poorly tested claims are. (4.7)
Keywords
error probabilities and severity, predesignation, biasing selection effects, paradox of replication, capitalizing on chance, bayes factors, batch effects, preregistration, randomization: Bayes-frequentist rationale, bonferroni adjustment, false discovery rates, RCT4D, genome-wide association studies (GWAS)
Excursion 4 Tour IV: More Auditing: Objectivity and Model Checking
While all models are false, it’s also the case that no useful models are true. Were a model so complex as to represent data realistically, it wouldn’t be useful for finding things out. A statistical model is useful by being adequate for a problem, meaning it enables controlling and assessing if purported solutions are well or poorly probed and to what degree. We give a way to define severity in terms of solving a problem.(4.8) When it comes to testing model assumptions, many Bayesians agree with George Box (1983) that “it requires frequentist theory of significance tests” (p. 57). Tests of model assumptions, also called misspecification (M-S) tests, are thus a promising area for Bayes-frequentist collaboration. (4.9) When the model is in doubt, the likelihood principle is inapplicable or violated. We illustrate a non-parametric bootstrap resampling. It works without relying on a theoretical probability distribution, but it still has assumptions. (4.10). We turn to the M-S testing approach of econometrician Aris Spanos.(4.11) I present the high points for unearthing spurious correlations, and assumptions of linear regression, employing 7 figures. M-S tests differ importantly from model selection–the latter uses a criterion for choosing among models, but does not test their statistical assumptions. They test fit rather than whether a model has captured the systematic information in the data.
Keywords
adequacy for a problem, severity (in terms of problem solving), model testing/misspecification (M-S) tests, likelihood principle conflicts, bootstrap, resampling, Bayesian p-value, central limit theorem, nonsense regression, significance tests in model checking, probabilistic reduction, respecification
Where you are in the Journey
Categories: SIST, Statistical Inference as Severe Testing | 2 Comments
Post navigation
2 thoughts on “Mementos from Excursion 4: Objectivity & Auditing: Blurbs of Tours I – IV
1. Michael Naaman
It was proved in “almost sure hypothesis testing and a resolution of the Jeffreys-Lindley paradox” that the paradox is a result of keeping the significance level fixed. If the significance level decreases at a sufficiently fast rate the paradox disappears. Almost sure hypothesis testing resolves most of the complaints about null hypothesis testing.
• Sure, but there’s no paradox if you take account of sample size, as the P-value does. The business of P-values exaggerating is a bit different. Here it’s a matter of comparing the P-value to a very different measure, such as a Bayes factor or posterior probability in a hypothesis.
I welcome constructive comments that are of relevance to the post and the discussion, and discourage detours into irrelevant topics, however interesting, or unconstructive declarations that "you (or they) are just all wrong". If you want to correct or remove a comment, send me an e-mail. If readers have already replied to the comment, you may be asked to replace it to retain comprehension.
Fill in your details below or click an icon to log in:
WordPress.com Logo
You are commenting using your WordPress.com account. Log Out / Change )
Google photo
You are commenting using your Google account. Log Out / Change )
Twitter picture
You are commenting using your Twitter account. Log Out / Change )
Facebook photo
You are commenting using your Facebook account. Log Out / Change )
Connecting to %s
This site uses Akismet to reduce spam. Learn how your comment data is processed.
Blog at WordPress.com.
|
__label__pos
| 0.649858 |
Product SiteDocumentation Site
5.7.2. Persistent Changes: semanage fcontext
The /usr/sbin/semanage fcontext command changes the SELinux context for files. When using targeted policy, changes made with this command are added to the /etc/selinux/targeted/contexts/files/file_contexts file if the changes are to files that exists in file_contexts, or are added to file_contexts.local for new files and directories, such as creating a /web/ directory. setfiles, which is used when a file system is relabeled, and /sbin/restorecon, which restores the default SELinux contexts, read these files. This means that changes made by /usr/sbin/semanage fcontext are persistent, even if the file system is relabeled. SELinux policy controls whether users are able to modify the SELinux context for any given file.
Quick Reference
To make SELinux context changes that survive a file system relabel:
1. Run the /usr/sbin/semanage fcontext -a options file-name|directory-name command, remembering to use the full path to the file or directory.
2. Run the /sbin/restorecon -v file-name|directory-name command to apply the context changes.
Changing a File's Type
The following example demonstrates changing a file's type, and no other attributes of the SELinux context:
1. As the Linux root user, run the touch /etc/file1 command to create a new file. By default, newly-created files in the /etc/ directory are labeled with the etc_t type:
# ls -Z /etc/file1
-rw-r--r-- root root unconfined_u:object_r:etc_t:s0 /etc/file1
2. As the Linux root user, run the /usr/sbin/semanage fcontext -a -t samba_share_t /etc/file1 command to change the file1 type to samba_share_t. The -a option adds a new record, and the -t option defines a type (samba_share_t). Note: running this command does not directly change the type - file1 is still labeled with the etc_t type:
# /usr/sbin/semanage fcontext -a -t samba_share_t /etc/file1
# ls -Z /etc/file1
-rw-r--r-- root root unconfined_u:object_r:etc_t:s0 /etc/file1
The /usr/sbin/semanage fcontext -a -t samba_share_t /etc/file1 command adds the following entry to /etc/selinux/targeted/contexts/files/file_contexts.local:
/etc/file1 unconfined_u:object_r:samba_share_t:s0
3. As the Linux root user, run the /sbin/restorecon -v /etc/file1 command to change the type. Since the semanage command added an entry to file.contexts.local for /etc/file1, the /sbin/restorecon command changes the type to samba_share_t:
# /sbin/restorecon -v /etc/file1
restorecon reset /etc/file1 context unconfined_u:object_r:etc_t:s0->system_u:object_r:samba_share_t:s0
4. As the Linux root user, run the rm -i /etc/file1 command to remove file1.
5. As the Linux root user, run the /usr/sbin/semanage fcontext -d /etc/file1 command to remove the context added for /etc/file1. When the context is removed, running restorecon changes the type to etc_t, rather than samba_share_t.
Changing a Directory's Type
The following example demonstrates creating a new directory and changing that directory's file type, to a type used by Apache HTTP Server:
1. As the Linux root user, run the mkdir /web command to create a new directory. This directory is labeled with the default_t type:
# ls -dZ /web
drwxr-xr-x root root unconfined_u:object_r:default_t:s0 /web
The ls -d option makes ls list information about a directory, rather than its contents, and the -Z option makes ls display the SELinux context (in this example, unconfined_u:object_r:default_t:s0).
2. As the Linux root user, run the /usr/sbin/semanage fcontext -a -t httpd_sys_content_t /web command to change the /web/ type to httpd_sys_content_t. The -a option adds a new record, and the -t option defines a type (httpd_sys_content_t). Note: running this command does not directly change the type - /web/ is still labeled with the default_t type:
# /usr/sbin/semanage fcontext -a -t httpd_sys_content_t /web
# ls -dZ /web
drwxr-xr-x root root unconfined_u:object_r:default_t:s0 /web
The /usr/sbin/semanage fcontext -a -t httpd_sys_content_t /web command adds the following entry to /etc/selinux/targeted/contexts/files/file_contexts.local:
/web unconfined_u:object_r:httpd_sys_content_t:s0
3. As the Linux root user, run the /sbin/restorecon -v /web command to change the type. Since the semanage command added an entry to file.contexts.local for /web, the /sbin/restorecon command changes the type to httpd_sys_content_t:
# /sbin/restorecon -v /web
restorecon reset /web context unconfined_u:object_r:default_t:s0->system_u:object_r:httpd_sys_content_t:s0
By default, newly-created files and directories inherit the SELinux type of their parent folders. When using this example, and before removing the SELinux context added for /web/, files and directories created in the /web/ directory are labeled with the httpd_sys_content_t type.
4. As the Linux root user, run the /usr/sbin/semanage fcontext -d /web command to remove the context added for /web/.
5. As the Linux root user, run the /sbin/restorecon -v /web command to restore the default SELinux context.
Changing a Directory and its Contents Types
The following example demonstrates creating a new directory, and changing the directory's file type (along with its contents) to a type used by Apache HTTP Server. The configuration in this example is used if you want Apache HTTP Server to use a different document root (instead of /var/www/html/):
1. As the Linux root user, run the mkdir /web command to create a new directory, and then the touch /web/file{1,2,3} command to create 3 empty files (file1, file2, and file3). The /web/ directory and files in it are labeled with the default_t type:
# ls -dZ /web
drwxr-xr-x root root unconfined_u:object_r:default_t:s0 /web
# ls -lZ /web
-rw-r--r-- root root unconfined_u:object_r:default_t:s0 file1
-rw-r--r-- root root unconfined_u:object_r:default_t:s0 file2
-rw-r--r-- root root unconfined_u:object_r:default_t:s0 file3
2. As the Linux root user, run the /usr/sbin/semanage fcontext -a -t httpd_sys_content_t "/web(/.*)?" command to change the type of the /web/ directory and the files in it, to httpd_sys_content_t. The -a option adds a new record, and the -t option defines a type (httpd_sys_content_t). The "/web(/.*)?" regular expression causes the semanage command to apply changes to the /web/ directory, as well as the files in it. Note: running this command does not directly change the type - /web/ and files in it are still labeled with the default_t type:
# ls -dZ /web
drwxr-xr-x root root unconfined_u:object_r:default_t:s0 /web
# ls -lZ /web
-rw-r--r-- root root unconfined_u:object_r:default_t:s0 file1
-rw-r--r-- root root unconfined_u:object_r:default_t:s0 file2
-rw-r--r-- root root unconfined_u:object_r:default_t:s0 file3
The /usr/sbin/semanage fcontext -a -t httpd_sys_content_t "/web(/.*)?" command adds the following entry to /etc/selinux/targeted/contexts/files/file_contexts.local:
/web(/.*)? system_u:object_r:httpd_sys_content_t:s0
3. As the Linux root user, run the /sbin/restorecon -R -v /web command to change the type of the /web/ directory, as well as all files in it. The -R is for recursive, which means all files and directories under the /web/ directory are labeled with the httpd_sys_content_t type. Since the semanage command added an entry to file.contexts.local for /web(/.*)?, the /sbin/restorecon command changes the types to httpd_sys_content_t:
# /sbin/restorecon -R -v /web
restorecon reset /web context unconfined_u:object_r:default_t:s0->system_u:object_r:httpd_sys_content_t:s0
restorecon reset /web/file2 context unconfined_u:object_r:default_t:s0->system_u:object_r:httpd_sys_content_t:s0
restorecon reset /web/file3 context unconfined_u:object_r:default_t:s0->system_u:object_r:httpd_sys_content_t:s0
restorecon reset /web/file1 context unconfined_u:object_r:default_t:s0->system_u:object_r:httpd_sys_content_t:s0
By default, newly-created files and directories inherit the SELinux type of their parents. In this example, files and directories created in the /web/ directory will be labeled with the httpd_sys_content_t type.
4. As the Linux root user, run the /usr/sbin/semanage fcontext -d "/web(/.*)?" command to remove the context added for "/web(/.*)?".
5. As the Linux root user, run the /sbin/restorecon -R -v /web command to restore the default SELinux contexts.
Deleting an added Context
The following example demonstrates adding and removing an SELinux context:
1. As the Linux root user, run the /usr/sbin/semanage fcontext -a -t httpd_sys_content_t /test command. The /test/ directory does not have to exist. This command adds the following context to /etc/selinux/targeted/contexts/files/file_contexts.local:
/test system_u:object_r:httpd_sys_content_t:s0
2. To remove the context, as the Linux root user, run the /usr/sbin/semanage fcontext -d file-name|directory-name command, where file-name|directory-name is the first part in file_contexts.local. The following is an example of a context in file_contexts.local:
/test system_u:object_r:httpd_sys_content_t:s0
With the first part being /test. To prevent the /test/ directory from being labeled with the httpd_sys_content_t after running /sbin/restorecon, or after a file system relabel, run the following command as the Linux root user to delete the context from file_contexts.local:
/usr/sbin/semanage fcontext -d /test
If the context is part of a regular expression, for example, /web(/.*)?, use quotation marks around the regular expression:
/usr/sbin/semanage fcontext -d "/web(/.*)?"
Refer to the semanage(8) manual page for further information about /usr/sbin/semanage.
Important
When changing the SELinux context with /usr/sbin/semanage fcontext -a, use the full path to the file or directory to avoid files being mislabeled after a file system relabel, or after the /sbin/restorecon command is run.
|
__label__pos
| 0.998902 |
Tukey's range test
From Wikipedia, the free encyclopedia
Jump to: navigation, search
Tukey's range test, also known as the Tukey's test, Tukey method, Tukey's honest significance test, Tukey's HSD (honest significant difference) test,[1] or the Tukey–Kramer method, is a single-step multiple comparison procedure and statistical test. It can be used on raw data or in conjunction with an ANOVA (Post-hoc analysis) to find means that are significantly different from each other . Named after John Tukey,[2] it compares all possible pairs of means, and is based on a studentized range distribution (q) (this distribution is similar to the distribution of t from the t-test).[3] The Tukey HSD tests should not be confused with the Tukey Mean Difference tests (also known as the Bland–Altman test).
Tukey's test compares the means of every treatment to the means of every other treatment; that is, it applies simultaneously to the set of all pairwise comparisons
\mu_i-\mu_j \,
and identifies any difference between two means that is greater than the expected standard error. The confidence coefficient for the set, when all sample sizes are equal, is exactly 1 − α. For unequal sample sizes, the confidence coefficient is greater than 1 − α. In other words, the Tukey method is conservative when there are unequal sample sizes.
Assumptions of Tukey's test[edit]
1. The observations being tested are independent within and among the groups.
2. The groups associated with each mean in the test are normally distributed.
3. There is equal within-group variance across the groups associated with each mean in the test (homogeneity of variance).
The test statistic[edit]
Tukey's test is based on a formula very similar to that of the t-test. In fact, Tukey's test is essentially a t-test, except that it corrects for experiment-wise error rate (when there are multiple comparisons being made, the probability of making a type I error increases — Tukey's test corrects for that, and is thus more suitable for multiple comparisons than doing a number of t-tests would be).[3]
The formula for Tukey's test is:
q_s = \frac{Y_A - Y_B}{SE},
where YA is the larger of the two means being compared, YB is the smaller of the two means being compared, and SE is the standard error of the data in question.
This qs value can then be compared to a q value from the studentized range distribution. If the qs value is larger than the qcritical value obtained from the distribution, the two means are said to be significantly different.[3]
Since the null hypothesis for Tukey's test states that all means being compared are from the same population (i.e. μ1 = μ2 = μ3 = ... = μn), the means should be normally distributed (according to the central limit theorem). This gives rise to the normality assumption of Tukey's test.
The studentized range (q) distribution[edit]
The Tukey method uses the studentized range distribution. Suppose that we take a sample of size n from each of k populations with the same normal distribution N(μ, σ) and suppose that \bar{y}min is the smallest of these sample means and \bar{y}max is the largest of these sample means, and suppose S2 is the pooled sample variance from these samples. Then the following random variable has a Studentized range distribution.
q = \frac{(\overline{y}_{max} - \overline{y}_{min})}{S\sqrt{2/n}}
This value of q is the basis of the critical value of q, based on three factors:
1. α (the Type I error rate, or the probability of rejecting a true null hypothesis)
2. k (the number of populations)
3. df (the number of degrees of freedom (N-k) where N is the total number of observations)
The distribution of q has been tabulated and appears in many textbooks on statistics and online. In some tables the distribution of q has been tabulated without the \sqrt{2} factor. To understand which table it is, we can compute the result for k=2 and compare it to the result of the Student's t-distribution with the same degrees of freedom and the same α. In addition, R offers a cumulative distribution function (ptukey) and a quantile function (qtukey) for q.
Confidence limits[edit]
The Tukey confidence limits for all pairwise comparisons with confidence coefficient of at least 1 − α are
\bar{y}_{i\bullet}-\bar{y}_{j\bullet} \pm \frac{q_{\alpha;k;N-k}}{\sqrt{2}}\widehat{\sigma}_\varepsilon \sqrt{\frac{2}{n}} \qquad i,j=1,\ldots,k\quad i\neq j.
Notice that the point estimator and the estimated variance are the same as those for a single pairwise comparison. The only difference between the confidence limits for simultaneous comparisons and those for a single comparison is the multiple of the estimated standard deviation.
Also note that the sample sizes must be equal when using the studentized range approach. \widehat{\sigma}_\varepsilon is the standard deviation of the entire design, not just that of the two groups being compared. It is possible to work with unequal sample sizes. In this case, one has to calculate the estimated standard deviation for each pairwise comparison as formalized by Clyde Kramer in 1956, so the procedure for unequal sample sizes is sometimes referred to as the 'Tukey–Kramer method which is as follows:
\bar{y}_{i\bullet}-\bar{y}_{j\bullet} \pm \frac{q_{\alpha;k;N-k}}{\sqrt{2}}\widehat{\sigma}_\varepsilon \sqrt{\frac{1}{n}_{i} + \frac{1}{n}_{j}} \qquad
where n i and n j are the sizes of groups i and j respectively. The degrees of freedom for the whole design is also applied.
Advantages and disadvantages[edit]
When doing all pairwise comparisons, this method is considered the best available when confidence intervals are needed or sample sizes are not equal. When samples sizes are equal and confidence intervals are not needed Tukey’s test is slightly less powerful than the stepdown procedures, but if they are not available Tukey’s is the next-best choice, and unless the number of groups is large, the loss in power will be slight. In the general case when many or all contrasts might be of interest, Scheffé's method tends to give narrower confidence limits and is therefore the preferred method.
See also[edit]
Notes[edit]
1. ^ Lowry, Richard. "One Way ANOVA – Independent Samples". Vassar.edu. Retrieved December 4, 2008. Also occasionally as "honestly," see e.g. Morrison, S.; Sosnoff, J. J.; Heffernan, K. S.; Jae, S. Y.; Fernhall, B. (2013). "Aging, hypertension and physiological tremor: The contribution of the cardioballistic impulse to tremorgenesis in older adults". Journal of the Neurological Sciences 326 (1–2): 68–74. doi:10.1016/j.jns.2013.01.016.
2. ^ Tukey, John (1949). "Comparing Individual Means in the Analysis of Variance". Biometrics 5 (2): 99–114. JSTOR 3001913.
3. ^ a b c Linton, L.R., Harder, L.D. (2007) Biology 315 – Quantitative Biology Lecture Notes. University of Calgary, Calgary, AB
Further reading[edit]
• Montgomery, Douglas C. (2013). Design and Analysis of Experiments (Eighth ed.). Wiley. Section 3.5.7.
External links[edit]
|
__label__pos
| 0.989466 |
What is multimedia
This presentation is the property of its rightful owner.
Sponsored Links
1 / 24
What is Multimedia? PowerPoint PPT Presentation
• 56 Views
• Uploaded on
• Presentation posted in: General
Optional. What is Multimedia?.
Download Presentation
What is Multimedia?
An Image/Link below is provided (as is) to download presentation
Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author.While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server.
- - - - - - - - - - - - - - - - - - - - - - - - - - E N D - - - - - - - - - - - - - - - - - - - - - - - - - -
Presentation Transcript
Optional
What is Multimedia?
Multimedia is a broad term that encompasses making, storing, retrieving, transferring, and presenting various types of information, such as text, graphics, pictures, videos, and sound. Multimedia involves a complex weave of communications, electronics, and computer technologies. It is beyond the scope of this book to cover multimedia in great detail. This chapter concentrates on the presentation of multimedia in Java.
Whereas most programming languages have no built-in multimedia capabilities, Java was designed with multimedia in mind. It provides extensive built-in support that makes it easy to develop powerful multimedia applications. Java's multimedia capabilities include animation that uses drawings, audio, and images.
Optional
The URL Class
Audio and images are stored in files. The java.net.URL class can be used to identify the files on the Internet. In general, a URL (Uniform Resource Locator) is a pointer to a "resource" on the World Wide Web. A resource can be something as simple as a file or a directory. You can create a URL object using the following constructor:
public URL(String spec) throws MalformedURLException
For example, the following statement creates a URL object for http://www.sun.com:
try {
URL url = new URL("http://www.sun.com");
}
catch(MalformedURLException ex) {
}
Creating a URL for Local Files
The following statement creates a URL object for the file c:\book\image\us.gif.
try {
URL url = new URL("c:\\book\\image\\us.gif");
}
catch(MalformedURLException ex) {
}
The preceding statement creates a URL for the absolute file name c:\book\beep.au on the Windows. There are two problems: (1) the file location is fixed; (2) it is platform-dependent. To circumvent these problems, you can create the URLs for files using through the resource of the class file using the java.lang.Class class.
Creating a URL from a Class Reference
Whenever the Java Virtual Machine loads a class or an interface, it creates an instance of a special class named Class. The Class class provides access to useful information about the class, such as the data fields and methods. It also contains the getResource(filename) method, which can be used to obtain the URL of a given file name in the same directory with the class or in its subdirectory. As discussed in Section 8.4.5, “The getClass Method,” you can obtain the class for the object at runtime. Thus, you can use the following code to get the URL of a file:
Class class = this.getClass();
URL url = class.getResource(filename);
where filename is a relative file name in the same directory or a subdirectory of the class. Suppose you run a class stored in c:\book, the following statement creates a URL object for c:\book\image\us.gif.
URL url = this.getClass().getResource(“image\us.gif");
Creating ImageIcon Using Absolute File Names
You used the ImageIcon class to create an icon from an image file and the setIcon method or the constructor to place the image in a GUI component, such as a button and a label. For example, the following statements create an ImageIcon and set it on an JLabel object jlbl.
ImageIcon imageIcon = new ImageIcon("c:\\book\\image\\us.gif");
//ImageIcon imageIcon = new ImageIcon("image/us.gif");
jlbl.setIcon(imageIcon);
This approach suffers a problem. The file location is fixed since it uses the absolute file path on Window. Thus, the program cannot run on other platforms and cannot run as applet.
Creating ImageIcon Using Class Reference
To circumvent this problem, you can create the URLs for files through the class reference using the java.lang.Class class. For example, suppose the class file is in c:\book, the following statements create a URL for c:\book\image\us.gif.
Class class = this.getClass();
URL url = class.getResource("image/us.gif");
You can now create an ImageIcon using
ImageIcon imageIcon = new ImageIcon(url);
Creating Image From ImageIcon
An image icon displays a fixed-size image. To display an image in a flexible size, you need to use the java.awt.Image class. An image can be created from an image icon as follows:
Image image = imageIcon.getImage();
Given an Image, you can create an ImageIcon using
ImageIcon imageIcon = new ImageIcon(image);
Drawing Images in Graphics
Using a label as an area for displaying images is simple and convenient, but you don't have much control over how the image is displayed. A more flexible way to display images is to use the drawImage method of the Graphics class on a panel using one of the foure overloaded drawImage method.
drawImage(Image img, int x, int y, Color bgcolor, ImageObserver observer)
drawImage(Image img, int x, int y, ImageObserver observer)
drawImage(Image img, int x, int y, ImageObserver observer)
drawImage(Image img, int x, int y, int width, int height, Color bgcolor, ImageObserver observer)
ImageObserver is an asynchronous update interface that receives notifications of image information as the image is constructed. The Component class implements ImageObserver. Therefore, every GUI component is an instance of ImageObserver. To draw images using the drawImage method in a Swing component, such as JPanel, override the paintComponent method to tell the component how to display the image in the panel.
Displaying Image
Write a program that displays an image from /image/us.gif in the class directory on a panel.
DisplayImage
Run
Case Study: ImageViewer Component
ImageViewer
Six Flag Example
Objective: Use the ImageViewer class to display six flags.
SixFlags
Run
Case Study: Image Animation
• Objective: Simulate a movie by displaying a sequence of images in a control loop.
ImageAnimation
Run as an Application
Creating AudioClip from an Audio File
To play an audio file in an applet, first create an audio clip object for the audio file. The audio clip is created once and can be played repeatedly without reloading the file. To create an audio clip, use the static method newAudioClip() in the java.applet.Applet class:
AudioClip audioClip = Applet.newAudioClip(url);
Audio was originally used with Java applets. For this reason, the AudioClip interface is in the java.applet package.
The following statements, for example, create an AudioClip for the beep.au audio file in the same directory with the class you are running.
Class class = this.getClass();
URL url = class.getResource("beep.au");
AudioClip audioClip = Applet.newAudioClip(url);
Playing Audio
To manipulate a sound for an audio clip, use the play(), loop(), and stop() methods in java.applet.AudioClip.
Playing Anthem Example
Objective: Display images and playing audio in applets and in applications.
FlagAnthem
Run as an Application
Optional
Packaging and Deploying Java Projects
What is JAR?
Java archive file can be used to group all the project files in a compressed file for deployment.
The Java archive file format (JAR) is based on the popular ZIP file format.
This single file can be deployed on an end-user’s machine as an application. It also can be downloaded to a browser in a single HTTP transaction, rather than opening a new connection for each piece. This greatly simplifies application deployment and improves the speed with which an applet can be loaded onto a web page and begin functioning.
Creating JAR
You can use the JDK jar command to create an archive file. The following command creates an archive file named TicTacToe.jar for classes TicTacToe.class and TicTacToe$Cell.class.
jar -cf TicTacToe.jar TicTacToe.class TicTacToe$Cell.class
The -c option is for creating a new archive file, and the -f option specifies the archive file’s name.
Viewing the Contents of a JAR File
You can view the contents of a .jar file using WinZip.
Manifest File
A manifest file was created with the path name meta-inf\. The manifest is a special file that contains information about the files packaged in a JAR file. For instance, the manifest file in TicTacToe.jar contains the following information:
Manifest-Version: 1.0
Name: TicTacToe.class
Java-Bean: True
Name: TioTacToe$Cell.class
Java-Bean: True
You can modify the information contained in the manifest file to enable the JAR file to be used for a variety of purposes. For instance, you can add information to specify a main class to run an application using the .jar file.
Running Archived Projects Standalone
The manifest file must have an entry to contain the main class. For example, to run TicTacToe, you need to insert the following two lines in the manifest file:
Main-Class: TicTacToe
Sealed: true
Run the .jar file using the java command from the directory that contains TicTacToe.jar,
java -jar TicTacToe.jar
TIP: You can write an installation procedure that creates the necessary directories and subdirectories on the end-user’s computer. The installation can also create an icon that the end-user can double-click on to start the program. For information on creating Windows desktop icon, please see www.prenhall.com/liang/intro5e.html.
Running Archived Projects As Applet
To run TicTacToe as an applet, modify the <APPLET> tag in the HTML file to include an ARCHIVE attribute. The ARCHIVE attribute specifies the archive file in which the applet is contained. For example, the HTML file for running TicTacToe can be modified as shown below:
<APPLET
CODE = "TicTacToe.class"
ARCHIVE = "TicTacToe.jar"
WIDTH = 400
HEIGHT = 300
HSPACE = 0
VSPACE = 0
ALIGN = Middle
>
</APPLET>
Optional
Pluggable Look-and-Feel
The pluggable look-and-feel feature lets you design a single set of GUI components that automatically has the look-and-feel of any OS platform. The implementation of this feature is independent of the underlying native GUI, yet it can imitate the native behavior of the native GUI.
Currently, Java supports the following three look-and-feel styles:
· Metal
· Motif
· Windows
Setting Look-And-Feel
The javax.swing.UIManager class manages the look-and-feel of the user interface. You can use one of the following three methods to set the look-and-feel for Metal, Motif, or Windows:
UIManager.setLookAndFeel
(UIManager.getCrossPlatformLookAndFeelClassName());
UIManager.setLookAndFeel
(new com.sun.java.swing.plaf.motif.MotifLookAndFeel());
UIManager.setLookAndFeel
(new com.sun.java.swing.plaf.windows.WindowsLookAndFeel());
Setting Look-And-Feel in Static Initialization Block
To ensure that the setting takes effect, the setLookAndFeel method should be executed before any of the components are instantiated. Thus, you can put the code in a static block, as shown below:
static {
try {
// Set a look-and-feel, e.g.,
//UIManager.setLookAndFeel
// (UIManager.getCrossPlatformLookAndFeelClassName());
}
catch (UnsupportedLookAndFeelException ex) {}
}
Static initialization blocks are executed when the class is loaded. For more information on static initialization blocks, please refer to Section 8.12, “Initialization Block.”
• Login
|
__label__pos
| 0.943394 |
Dewacloud blog featured image
Autoclustering PostgreSQL dengan Replikasi Primary-Secondary Asynchronous
Data merupakan sebuah kompoenen penting bagi operasional sebuah aplikasi. Maka dari itu, data harus dapat berubah sesuai dengan lingkungan aplikasi yang dinamis.
Dalam keamanan siber, menyimpan data di satu lokasi yang sama artinya dengan meningkatkan risiko kerusakan data ketika terjadi kegagalan sistem.
Untuk menghindari hal tersebut, kamu perlu membuat strategi untuk memastikan data kamu selalu tersedia (high-availability). Salah satu solusi terbaik untuk memastikan high-availability adalah menyimpan data di beberapa server yang disinkronkan.
Menyimpan data di beberapa database akan mengurangi kemungkinan kegagalan sistem, meningkatkan produktivitas, mempermudah proses backup, dan meningkatkan kinerja analisa data.
Di antara banyaknya solusi clustering database, Dewacloud menyediakan PostgreSQL dengan replikasi primary-secondary secara asinkron. Secara default, Dewacloud akan men-deploy dua container database (primary & secondary).
Server master akan berperan sebagai instance aktif dan menerima operasi read-write. Sedangkan server slave akan menjalankan salinan server master dan menangani operasi read-only. Karena itu, jika database utama mengalami kegagalan karena kesalahan di container atau database yang corrupt, server slave harus menggantikan perannya agar database tetap tersedia.
alur replikasi postgresql
Dalam topology cluster, setiap container database memiliki vertical scaling default mulai dari 2 reserved cludlet hingga 32 dynamic cloudlet (hingga 4 GiB RAM & 12,8 GHz CPU).
Resource tersebut dialokasikan secara dinamis berdasarkan load yang masuk. Selanjutnya, kamu dapat mengubah batas alokasi resource dengan mengikuti panduan yang ditautkan sebelumnya.
Database Cluster akan terinstal secara otomatis:
• Sebagai aplikasi Marketplace
• Melalui fitur Auto-Clustering yang tertanam di Dashboard
Instalasi PostgreSQL Melalui Marketplace Dewacloud
Kamu dapat menginstal dan deploy PostgreSQL Primary-Secondary Cluster dari marketplace Dewacloud.
marketplace postgresql master-slav
Jika diperlukan, kamu dapat mengubah versi database, nama environment, dan pilihan region di jendela Topology Wizard.
instalasi postgresql dewacloud
Mode Auto-Clustering PostgreSQL
Di Dewacloud, kamu dapat mengaktifkan auto-clustering dalam beberapa menit saja. Untuk mengaktifkan auto-clustering, kamu dapat membuka topology wizard di dashboard, memilih software stack (misalnya PostgreSQL 12.3), dan mengaktifkan fitur Auto-Clustering.
Jika diperlukan, kamu juga dapat mengubah region untuk men-deploy database kamu. Saat penulisan artikel ini, Dewacloud memiliki region di Jakarta dan Singapura.
Tip: Resource package Replikasi PostgreSQL tersedia dalam Dewacloud JPS Collection bersama dengan solusi berguna lainnya, salah satu yang dapat diintegrasikan melalui import file manifest.yaml atau manifest.jps dari repository yang sesuai.
Cluster Topology
Topologi cluster database yang diperoleh pada kedua deployment akan terlihat seperti berikut ini:
topologi baru postgresql
Ketika instalasi cluster database selesai, kamu akan melihat pesan konfirmasi dengan URL node master dan kredensial untuk akses database. Semua informasi ini diduplikasi melalui email.
Catatan: Jika cluster di instal dengan fungsi auto-clustering, kredensial hanya dikirim melalui email.
Sekarang, mari kita menempatkan database master ke dalam tindakan untuk memeriksa bahwa data berhasil direplikasi ke slave.
Menguji Replikasi Database PostgreSQL
Untuk memastikan bahwa data direplikasi dengan benar, kami akan membuat instance DB baru di mater container dan memeriksa keberadaannya di dalam secondary.
Buat Database Baru
1. Klik tombol Open in Browser yang ada di samping node primary PostgreSQL untuk membuka phpPgAdmin.
open in browser primary node
2. Di bawah Server, klik PostgreSQL dan masuk dengan kredensial yang kamu peroleh di email setelah pembuatan cluster.
phpPgAdmin
3. Klik Create Database untuk mulai membuat database baru.
4. Isi Name di dalam box (contohnya Dewacloud), dan klik Create.
create database
Setelah berhasil membuat database di primary node, kamu perlu memastikan bahwa replikasi berjalan dengan lancar di secondary node.
Periksa Hasil Replikasi Database
Ikutit langkah-langkah berikut ini untuk memastikan bahwa replikasi data dari primary node ke secondary node berjalan dengan baik:
1. Klik Open in Browser di samping node PostgreSQL Slave untuk membuka interface yaitu web phpPgAdmin.
open in browser secondary node
2. Akses interface admin dengan username dan password yang sama untuk digunakan dalam mengakses master node.
3. Setelah masuk, kamu dapat melihat database yang direplikasi (di contoh ini, Dewacloud).
secondary database
4. Penutup
Itu saja! Environment PostgreSQL dengan replikasi primary-secondary secara asinkron sudah dapat mulai memproses data.
Sebagai langkah selanjutnya, kamu dapat menghubungkan database yang direplikasi PostgreSQL ini ke project kamu. Prosesnya tergantung pada aplikasi yang spesifik, jika ikuti petunjuk di bawah ini:
Penutup
Sangat mudah, bukan?
Sekarang kamu tak perlu repot-repot mengonfigurasi database PostgreSQL primary-secondary. Cukup dengan satu klik saja, maka database kamu akan otomatis direplikasi oleh sistem Dewacloud.
Coba Dewacloud sekarang juga untuk mendapatkan hosting database yang jauh lebih terjangkau daripada solusi lainnya.
|
__label__pos
| 0.991028 |
Available for: Windows 8.1 | Windows Phone 8.1
Display Horizontal Bar Chart
RadChart allows a series to be rendered vertically as well as horizontally. A series position depends on the axes that you define. Thus in order to display a bar series horizontally, you need to define the category axis as a vertical axis, rather than a horizontal axis. Define a Bar Chart with a Horizontal Series
The following example demonstrates how to create a RadCartesianChart with horizontal BarSeries.Chart-How To-Horizontal Bar Chart
Create a bar chart with swapped axes.
<telerik:RadCartesianChart>
<telerik:RadCartesianChart.HorizontalAxis>
<telerik:LinearAxis/>
</telerik:RadCartesianChart.HorizontalAxis>
<telerik:RadCartesianChart.VerticalAxis>
<telerik:CategoricalAxis/>
</telerik:RadCartesianChart.VerticalAxis>
<telerik:BarSeries CombineMode="Cluster" ItemsSource="{Binding Data1}">
<telerik:BarSeries.ValueBinding>
<telerik:PropertyNameDataPointBinding PropertyName="Value"/>
</telerik:BarSeries.ValueBinding>
<telerik:BarSeries.CategoryBinding>
<telerik:PropertyNameDataPointBinding PropertyName="Category"/>
</telerik:BarSeries.CategoryBinding>
</telerik:BarSeries>
<telerik:BarSeries CombineMode="Cluster" ItemsSource="{Binding Data2}">
<telerik:BarSeries.ValueBinding>
<telerik:PropertyNameDataPointBinding PropertyName="Value"/>
</telerik:BarSeries.ValueBinding>
<telerik:BarSeries.CategoryBinding>
<telerik:PropertyNameDataPointBinding PropertyName="Category"/>
</telerik:BarSeries.CategoryBinding>
</telerik:BarSeries>
</telerik:RadCartesianChart>
Create a sample class for data:
public class SampleData
{
public double Value { get; set; }
public string Category { get; set; }
}
Create the view model:
public class SampleViewModel
{
private Random r = new Random();
public IEnumerable Data1 { get; private set; }
public IEnumerable Data2 { get; private set; }
public SampleViewModel()
{
this.Data1 = (from c in Enumerable.Range(0, 10)
select new SampleData
{
Category = "Category " + c,
Value = r.Next(10, 100)
}).ToList();
this.Data2 = (from c in Enumerable.Range(0, 10)
select new SampleData
{
Category = "Category " + c,
Value = r.Next(10, 100)
}).ToList();
}
}
Set the chart data context.
protected override void OnNavigatedTo(NavigationEventArgs e)
{
this.DataContext = new SampleViewModel();
}
|
__label__pos
| 0.935956 |
Skip to main content
Blogger custom domain confusions - Check before you buy
In the Blogger community forum, I happened to help a user who was not able to publish their blogspot address to their custom domain. After doing all the debugging, there was no option left out but to contact Google and finally we have known what the problem is.
The problem was that the URL was not available for use in blogger.
Here on, before spending money on buying a domain, please ensure blogger allows it.
Why isn't the custom domain available to buy but not available to use on Blogger?
That'd be the first question every user would ask or think to ask. Unfortunately reason is un-disclosed by Blogger themselves.
So how do we know if a domain is available at Blogger or not?
Earlier, there used to be no way we could do this as Blogger would throw a more generic error like below,
Now, we get a more customised error for this particular case alone like below,
So, here on, before spending money on buying a domain, please try publishing your blog in the domain name you are planning to buy so that you can know for sure Blogger allows it.
Comments
1. I'm new here everyone, please give me some help
ReplyDelete
Replies
1. Hi there,
We could definitely get you the help you need. Please do post your query at the Blogger Help Forum. => https://support.google.com/blogger/thread/new?hl=en
Delete
2. This is really a nice and needy article everyone should know. Thanks for writing it up.
ReplyDelete
3. 22-6-2020 I connected a personal domain.
there were no difficulties.
https://yadi.sk/i/AAkt8fDUWVaCIA
ReplyDelete
Replies
1. Hi there,
Could you please go ahead and create a new support thread at Blogger help community?
We can sort this out there. Thank you.
Delete
4. But why was actually blogger not permitting that domain, if it was purchased by me?
ReplyDelete
Replies
1. Unfortunately, that is not revealed by Blogger to the public. We just know this could happen.
Delete
5. That is correct, keep it up coming together is good through togetherness we will achieved success.
ReplyDelete
6. Hi, Blogger is really nice .Even we can create simple static website (multiple pages!!).We can't do some other advance things but it is awesome because we just need money to spend for domains.
ReplyDelete
Replies
1. That's the whole idea of Blogger. Server less websites.
Delete
7. I am glad to know the setup was a cake walk. I guess that's what makes Blogger standout. No big deal to code. You can just setup everything and start writing. Happy blogging :-)
ReplyDelete
8. This article really saves you from hitting blind.
ReplyDelete
Post a Comment
People also read,
How to secure your Google account and Blogger blog?
As a part of contributions to NCSAM, I am writing this article down on what all should we be aware of with respect to Google's security aspect and how to make sure your blog stays yours forever. What is NCSAM? It's National Cyber Security Awareness Month which is observed during the month of October every year in America. However, we all know cyber security is a world topic and is not limited to just the USA. So let me give some tips with respect to keeping the Google account safe and Blogger blogs safe from hackers. As I secure my account, I hope you people catch up too. In this blog post, I am going to tell about the following, Securing your Google account. Securing your Blogger blog. Securing your Google account Since Blogger is also part of your Google account, let's first see what all we need to do to keep our Google account safe. Don't share your password to anyone. Keep changing your password every 60 - 90 days. Make sure your password is str
Blogger Tweak - Open external links in new tab automatically
So, once upon a time, a really long while ago, I tried to customise and recreate a Blogger template which is not available anymore, but there's one thing I remember about it. I had a jQuery code written to make all the external links open in new tab. I also thought, it's about time I revive that idea and write a more intact code and here we go. So, there are two things to do. Add Javascript code that detects external links and opens them in new tab. Add a CSS code to let users know that a particular link is going to be opened in new tab. Adding a javascript code Please follow the instructions below, Go to https://blogger.com dashboard Navigate to Themes > click the down arrow near "Customize" and then click on Edit HTML. Now scroll to the very end and paste the following code just before </body> tag. <script type='text/javascript'> document.body.addEventListener("mousedown",function(event){ if(event.target.tagNa
Blogger HTTPS for custom domain and Cloudflare
In BHF, there was a recent issue related to cloudflare where the browser screams the site is a phishing site. So I thought of writing up how does a service like cloudflare affect your blogger blog. What is Cloudflare? Well we have that written all over Wikipedia: Cloudflare . Let's go on with why Blogger users look for Cloudflare. Anciently Blogger users used Cloudflare for one simple reason. HTTPS for custom domains. So what happens when you introduce Cloudflare into your domain? DNS Redirect. Your custom domain will be configured with the proxy info provided by Cloudflare and when the request is hit, DNS redirect happens. DNS redirect is bad for the site's health. A number of reasons, but the most important is that some browsers, when it detects a DNS redirection, it thinks that it is a phishing site. What is a DNS redirect? I am trying to explain this in easy terms. I'll try not to be too technical. When a custom domain URL is hit, usually the domain reques
|
__label__pos
| 0.79157 |
Search Images Maps Play YouTube News Gmail Drive More »
Advanced Patent Search | Sign in
Accessible Version For Screenreader Users
Patents
Publication numberUS6119065 A
Publication typeGrant
Application numberUS 09/029,845
PCT numberPCT/JP1997/002382
Publication dateSep 12, 2000
Filing dateJul 9, 1997
Priority dateJul 9, 1996
Fee statusLapsed
Also published asCN1181316C, CN1199487A, EP0869466A1, EP0869466A4, WO1998001843A1
Publication number029845, 09029845, PCT/1997/2382, PCT/JP/1997/002382, PCT/JP/1997/02382, PCT/JP/97/002382, PCT/JP/97/02382, PCT/JP1997/002382, PCT/JP1997/02382, PCT/JP1997002382, PCT/JP199702382, PCT/JP97/002382, PCT/JP97/02382, PCT/JP97002382, PCT/JP9702382, US 6119065 A, US 6119065A, US-A-6119065, US6119065 A, US6119065A
InventorsAkihiro Abe, Nobuhiro Kambe, Takanori Shimada
Original AssigneeMatsushita Electric Industrial Co., Ltd.
External Links: USPTO, USPTO Assignment, Espacenet
Pedestrian information providing system, storage unit for the same, and pedestrian information processing unit
US 6119065 A
Abstract
A system for providing information on a route for pedestrians. The system comprises a storage unit, which stores a data on area divided to a non-pedestrian area and a pedestrian area, a data on street, i.e. a region where pedestrians can walk in each of the areas, a data of block where pedestrians cannot walk in each of the areas, an index for searching the block or the street from an address or a name, and a table describing areas belonging to each section on a map, and a pedestrian information processing unit, which comprises an input/output control unit for receiving input from a user, a pedestrian map data searching unit for acquiring a pedestrian map data suitable for inputting from the storage unit, and a pedestrian route searching unit for searching a route for pedestrians using the acquired data. The system can quickly provide the user with pedestrian route information suitable for pedestrians and walking conditions.
Images(117)
Previous page
Next page
Claims(43)
What is claimed is:
1. A pedestrian information providing system, comprising:
a storage unit for storing pedestrian map data for storing data of an area divided to a non-pedestrian area where pedestrians cannot walk freely and a pedestrian area where pedestrians can walk freely, a data of street where pedestrian can walk in each of said areas, a data of block where pedestrians cannot walk in each of said areas, an index for searching said block or said street from an address or a name, and a table where said areas belonging to each section on a map are described; and
a pedestrian information processing unit, comprising an input/output means for receiving input from a user, a pedestrian map data searching means for acquiring a pedestrian map data suitable for inputting from said storage unit, a pedestrian route searching means for searching a route for pedestrians using said data acquired, wherein a pedestrian map data required is acquired from said storage unit upon an input instruction from said user and an information to be presented is generated.
2. A pedestrian information providing system according to claim 1, wherein said data of area comprises an area ID, an area ID of an adjacent area, a data of entrance and exit to and from the adjacent area, IDs of blocks and streets belonging to the areas, and a data indicating positions of the areas on a map, said data of block comprises a block ID, a block name, an ID of the belonging area, an ID of the street, to which an entrance of the block is connected, an address of the block, and a data showing position of a block on a map, said data of street comprises street ID, street name ID of the belonging area, attribute data peculiar to the street, connecting information between streets, address of street, and data showing positions of the starting point and the end point of the street on a map.
3. A pedestrian information providing system according to claim 2, wherein said data of said street comprise, geographic information of the street, information on attached facilities provided on roadside, and time-related information to indicate conditions varying over time of the street as inherent attribute data.
4. A pedestrian information providing system according to claim 2, wherein, in case said block is a building, the data of said block comprises 3-dimensional information for displaying said building 3-dimensionally.
5. A pedestrian information providing system according to claim 1, wherein a part of said block has an element of an area in it.
6. A pedestrian information providing system according to claim 1, wherein said pedestrian map data searching means comprises an address corresponding data searching means for searching data of block or street using an index from the inputted address.
7. A pedestrian information providing system according to claim 1, wherein said pedestrian map data searching means comprises a name corresponding data searching means for searching data of block or street using an index from the inputted name.
8. A pedestrian information providing system according to claim 1, wherein said pedestrian map data searching means comprises a latitude/longitude corresponding data searching means for searching a block corresponding to a latitude/longitude data for calculating a section on a map from an inputted latitude/longitude data, searches an area belonging to said section using said table, searches an area corresponding to said latitude/longitude data from said area, and searches a block corresponding to said latitude/longitude data.
9. A pedestrian information providing system according to claim 1, wherein said storage unit stores a town table describing various types of objects included in each area and blocks where the objects are present as classified for each area, and there is provided a nearest information searching means where said pedestrian map data searching means searches a block where the inputted objects are present by extending object area to be searched to adjacent area using said town table.
10. A pedestrian information providing system according to claim 1, wherein said pedestrian route searching means comprises an attribute determining means for determining attribute of a route to be selected according to categories of pedestrian, time zone or weather inputted.
11. A pedestrian information providing system according to claim 10, wherein said attribute determining means determines said attribute using a neural net.
12. A pedestrian information providing system according to claim 10, wherein said pedestrian route searching means comprises a point-to-point route searching means for searching an optimal route from a departure point to a destination by giving consideration on the attribute determined by said attribute determining means.
13. A pedestrian information providing system according to claim 12, wherein said pedestrian map data searching means searches an optimal route between areas from the area of the departure point to an area of the destination, and then searches an optimal route of a street in each area along said optimal route by giving consideration on the attributes determined by said attribute determining means.
14. A pedestrian information providing system according to claim 10, wherein said pedestrian route searching means comprises a route searching means between a plurality of geographical points for searching an optimal route to go round from the departure point to a plurality of destinations by giving consideration on the attributes determined by said attribute determining means.
15. A pedestrian information providing system according to claim 10, wherein a transportation means data relating to lines and schedule of transportation means are stored in said storage unit, and said pedestrian route searching means comprises a route searching means for searching a route using transportation means for searching the nearest station of the departure point and the destination, searches an optimal route from the departure point and the destination to said nearest station by giving consideration on the attributes determined by said attribute determining means, and searches an optimal line from the station nearest to the departure point to the station nearest to the destination using said transportation means data.
16. A pedestrian information providing system according to claim 1, wherein said pedestrian information processing unit comprises a scheduling means for searching an optimal route after determining an order to visit destinations, for which visiting time is already determined, a visiting order to all destinations including a destination, for which visiting time is not determined, is determined, and an optimal route for visiting said destinations is searched.
17. A pedestrian information providing system according to claim 1, wherein said pedestrian information processing unit comprises a time simulation means for calculating time required from a departure point to a destination when a searched route is followed.
18. A pedestrian information providing system according to claim 1, wherein said pedestrian information processing unit comprises a transportation means determining means, whereby a route from a departure point to a destination using all transportation means is searched, and by comparing the time required form the departure point to the destination through each of these routes, a transportation means to be used is determined.
19. A pedestrian information providing system according to claim 1, wherein there is provided a pedestrian map data generating means for preparing said pedestrian map data from a road map.
20. A pedestrian information providing system according to claim 1, wherein there is provided a pedestrian map data generating means for preparing said pedestrian map data from a street map.
21. A pedestrian information providing system according to claim 1, wherein said pedestrian route searching means searches with priority a contour street on outer periphery of the pedestrian area as a route for pedestrians.
22. A pedestrian information providing system according to claim 21, wherein streets of a pedestrian area are divided to contour streets and streets within the area and are stored in said storage unit, and said contour streets are sequentially arranged clockwise or counterclockwise from a starting point.
23. A pedestrian information providing system according to claim 1, wherein said pedestrian route searching means provides guidance on a searched route by associating with advancing direction of vehicles.
24. A pedestrian information providing system according to claim 1, wherein a route searched by said pedestrian route searching means is converted to a route guidance information in icons displayed by characters.
25. A pedestrian information providing system according to claim 1, wherein a route searched by said pedestrian route searching means is display after its original shape is deformed.
26. A pedestrian information providing system according to claim 25, wherein said deforming processing is performed using a polynomial function.
27. A pedestrian information providing system according to claim 25, wherein said deforming processing is performed by calculating moving average of coordinates of the searched route.
28. A pedestrian information providing system according to claim 1, wherein guidance is provided for a route in a premise searched by said pedestrian route searching means using a side view of the premise as seen from said route.
29. A pedestrian information providing system according to claim 28, wherein graphic information and attribute information relating to each of facilities in the premise are stored in said storage unit.
30. A pedestrian information providing system according to claim 1, wherein there is provided a pedestrian map data generating means for preparing street information in a premise using a Voronoi diagram.
31. A pedestrian information providing system according to claim 1, wherein said pedestrian route searching means searches a route in a premise by broken line function approximation using a map data of the premise.
32. A pedestrian information providing system according to one of claim 28, wherein said premise is a premise of an underground shopping center, a building, or a station.
33. A pedestrian information providing system according to claim 19, wherein said pedestrian map data generating means picks up a region of pedestrian area and contour street of said region from a road map, generates data of the pedestrian area by incorporating information of street block in said pedestrian area from a street map, and corrects the data of said contour street to follow said street block.
34. A pedestrian information providing system according to claim 33, wherein said pedestrian map data generating means searches position after correction of said contour street using convex closure method.
35. A pedestrian information providing system according to claim 33, wherein said pedestrian map data generating means searches position after correction of said contour street by sequentially connecting vertexes of a street block where perpendicular lines to the nearest contour street can be drawn without crossing borderline of the street block.
36. A pedestrian information providing system according to claim 33, wherein said pedestrian map data generating means searches position after correction of said contour street by sequentially connecting borderlines of the outermost street block, which cross a straight line extending from the center of said pedestrian area.
37. A pedestrian information providing system according to claim 1, wherein said pedestrian route searching means provides an enlarged view of an intersection along the searched route by overlapping said enlarged view on a map to show said route.
38. A pedestrian information providing system according to claim 35, wherein vertexes or borderlines of said street block to find out a position after correction are limited to vertexes or borderlines within a predetermined distance from said contour street, and said distance is changed according to road width of said contour street.
39. A pedestrian information providing system according to claim 19, wherein said pedestrian map data generating means forms as many nodes as equal to number of links connected to said nodes from each node on a basic road on a road map, each of said formed nodes is connected only with two adjacent links forming different internal angles within said link, and a pedestrian area is generated by following the formed nodes.
40. A pedestrian information providing system according to claim 19, wherein said pedestrian map data generating means performs route searching for all bearings from an arbitrary node on a road map, and a pedestrian area is generated by grouping nodes and links of all roads where each of tips of the route searching passes through until the basic road is reached.
41. A pedestrian information providing system according to claim 19, wherein said pedestrian map data generating means calculates flow rate ot pedestrians in each link with the pedestrian area, and in case there is a link where said flow rate exceeds a predetermined value, said link is considered as a street going over a non-pedestrian area, and a non-pedestrian area is generated within said pedestrian area.
42. A storage unit for storing a pedestrian map data used in a pedestrian information providing system, which comprises a storage unit for storing a pedestrian map data, and a pedestrian information processing unit for acquiring pedestrian map data required from said storage unit for storing pedestrian map data and for generating information to be offered,
said storage unit comprising a data of an area divided to a non-pedestrian area where pedestrians cannot walk freely and a pedestrian area where pedestrians can walk freely, a data of street where pedestrians can walk within each of said areas, a data of block where pedestrians cannot walk in each of said areas, an index for searching said block or said street from an address or a name, and a table describing said areas belonging to each section on a map.
43. A pedestrian information processing unit used for a pedestrian information providing system, which comprises a storage unit for storing a pedestrian map data, and a pedestrian information processing unit for acquiring a pedestrian map data required from said storage unit for storing pedestrian map data and for generating information to be offered,
said pedestrian information processing unit comprising an input/output control means for receiving input from a user, a pedestrian map data searching means for acquiring a pedestrian map data suitable for inputting from said storage unit, and a pedestrian route searching means for searching a route for pedestrians using said data acquired, and a pedestrian map data required is acquired from said storage unit according to input instruction from said user and an information to be offered is generated.
Description
BEST MODE FOR CARRYING OUT THE INVENTION
In the following, description will be given on embodiments of the present invention referring to the attached drawings.
1st Embodiment
As shown in FIG. 1, the pedestrian information providing system of the first embodiment of the present invention comprises a storage unit for storing a pedestrian map data 13 specially prepared for pedestrians, and a pedestrian information processing unit 11 for generating and editing the pedestrian map data 13 and for reading the pedestrian map data 13 and for generating information to be offered.
In this system, a user has a portable terminal equipment. There are a storage unit storing the pedestrian map data 13 and the pedestrian information processing unit 11 at the center. When the user requests information from the terminal equipment, the center performs searching of the requested information and generation processing by the pedestrian information processing unit 11 upon receipt of the request, and the result is sent to the terminal equipment.
Also, it may be designed in such manner that the terminal equipment on the user side comprises the pedestrian information processing unit 11, and the pedestrian map data 13 stored in the storage unit at the center is read and processed as necessary, and the results are displayed on a screen of the terminal equipment.
In this case, the portable terminal equipment of the user and the center can give and receive information or signal by wireless communication. As such communication system, cellular system in portable telephone or PHS (personal handyphone system) may be used. As the portable terminal equipment of the user, an equipment comprising CPU (central processing unit), memory, interface, cursor key, etc. further provided with a display unit having graphic display function may be used. Also, by adding a touch panel on the display unit, the desired instruction can be inputted when the user simply touches an arrow or other icons in a map displayed on the display unit.
To make the system of the present invention usable in an area of wide range, a cellular system is used as described above. If it is supposed that PHS is used, the present position of PHS terminal (slave set) is registered at a wireless base station (master set of the cell), and communication with the center can be performed through the wireless base station. When the user is walking and goes out of the registered cell and enters the next cell, the position is registered at the wireless base station of that cell. For the wireless access system, 4-channel multiplex TDMA-TDD (Time Division Multiple Access-Time Division Duplex) can be used.
In the description given below, it is supposed that the terminal equipment on the user side has the function of the pedestrian information processing unit 11, and the function of the pedestrian information processing unit 11 will be explained here.
The pedestrian information processing unit 11 comprises an input/output control means 11 for receiving input from the user, a pedestrian map data generating and editing means 115 for generating and editing the pedestrian map data 13 (In case the pedestrian information processing unit 11 is at the terminal equipment on the user side, the pedestrian map data generating and editing means 115 is arranged on the center side.), a pedestrian map data searching means 114 for searching a map data in the corresponding area from the pedestrian map data 13, a pedestrian route searching means 112 for searching a route for pedestrians using the searched pedestrian map data 13, a scheduling means 113 for setting up a plan to make an inspection tour for a plurality of destinations according to a schedule determined in advance, a time simulation means 116 for simulating a time of arrival at the destination, and a transportation determining means 117 for selecting a transportation means, by which the destination can be reached at an earliest chance.
As shown in FIG. 2, the pedestrian route searching means 112 comprises a route searching means 1122 for searching a route between two points, i.e. departure point and destination, a route searching means 1121 for searching a route connecting a plurality of geographical points in case there are two or more destinations, a route searching means 1123 for searching a route in case two or more transportation means are used, and an attribute determining means 1124 for determining attributes of a route, which should be considered in selecting a route.
As shown in FIG. 3, the pedestrian map data searching means 114 comprises an address corresponding data searching means for searching a block corresponding to the inputted address, a latitude/longitude corresponding data searching means 1145 for searching a block to correspond to the inputted latitude/longitude, a name corresponding data searching means 1146 for searching a block to correspond to the inputted name, a town information searching means 1147 for searching an object, a corresponding data searching means 1141 for searching by starting the address corresponding data searching means 1144, the latitude/longitude corresponding data searching means 1145 or the name corresponding data searching means 1146 in response to the inputted data, a town information searching means 1147 for searching an object from a town table where town information is recorded, and a nearest information searching means 1142 for searching a desired town information using the two information searching means 1147 while extending the area to be searched to adjacent area.
Next, description will be given on a pedestrian map specially prepared for pedestrians. The area of the pedestrian map as shown by the pedestrian map data 13 is divided to an area (non-pedestrian area) such as road with heavy traffic, expressway, railway, rivers and canals, etc. where pedestrians cannot walk safely, and an area (pedestrian area) bordered and defined by the non-pedestrian area and where pedestrians can walk safely.
Each of the non-pedestrian area and the pedestrian area comprises streets where pedestrian can walk and blocks where pedestrians cannot pass freely. In the non-pedestrian area (e.g. on a road with heavy traffic), footbridge or pedestrians' crossing is considered as a street, and the other portions of the road are considered as blocks. In case of rivers and canals, bridges are considered as streets. In railroad, railroad crossings and subterranean walks are considered as streets. In the pedestrian area, road where pedestrians can walk are considered as streets, and houses, buildings and unoccupied and reserved grounds are considered as blocks.
In the non-pedestrian area, areas where pedestrians cannot walk freely due to steps (with different height) or difference in management are included. In case of the steps, stairways, elevators, escalators, etc. are considered as streets. In the non-pedestrian area where pedestrians cannot walk freely due to difference in management body, wickets or toll gates are considered as streets.
In case a block in the pedestrian area is a large building, there are non-pedestrian area and pedestrian area inside this building. Each floor of this building is a pedestrian area, portions other than floors are non-pedestrian areas, and an elevator connecting the floors is considered as a street in the non-pedestrian area.
FIG. 4 is a correspondence table of blocks and streets in the pedestrian area and the non-pedestrian area. The pedestrian area and the non-pedestrian area are the same in structure while they are different from each other in the contents of objects. FIG. 5 summarizes classification of streets in each of the non-pedestrian area.
FIG. 6 shows basic arrangement of a pedestrian map. Area 1 (railroad 1), area 2 (road 1), area 3 (road 2), and area 4 (river 1) are non-pedestrian areas, and areas A to I are pedestrian areas. Footbridge, pedestrians' crossing, bridge, and overpass are streets in the non-pedestrian area.
FIGS. 7A and 7B show an arrangement in an area. FIG. 7A shows details of a pedestrian area I, and FIG. 7B shows details of a non-pedestrian area 3. The pedestrian area I comprises blocks 1 to 9 and 6 streets, and blocks can be classified to blocks having an arrangement of an area such as building, and blocks having no arrangement of an area such as unoccupied ground.
FIG. 8 shows a block having an arrangement of an area (block 9 of FIG. 7A). In this example, each floor of the building is a pedestrian area, portions other than the floors are non-pedestrian areas, and an elevator connecting the floors is considered as a street in the non-pedestrian area. Thus, an area in the pedestrian map has a hierarchical structure.
In the pedestrian map data 13, area data relating to each area, block data relating to each block, and street data relating to each street are stored. As shown in FIG. 9, the area data include the following data: area attributes describing attributes such as area ID, area name, attributes such as street/floor/river, etc., a slave block describing blocks present in the area, a slave street describing streets present in an area, entrance and exit showing streets entering or outgoing from an area, an adjacent area describing adjacent area, a master block describing blocks present in an area in case the area belongs to a building, a map number, to which the area belongs, an administration region, to which the area belongs, and data such as polygonal information comprising the area.
As shown in FIG. 39A to FIG. 41B, block data include the following data: block ID, block name, master area, to which the block belongs, slave area in case the block includes the area, attributes of blocks to classify blocks such as buildings/parks, etc., connecting street, to which entrance and exit of the block are connected, map number where the block is present, coordinates of the block on map, address, to which the block belongs, polygonal information to form a block, and 3-dimensional data. In FIG. 39A to FIG. 41B, polygonal information and 3-dimensional information are not given.
As shown in FIG. 42A to FIG. 48B, the following data are included in the street data: street name, street ID, classification of street such as sidewalk/stairway/elevator/escalator, master area, to which the street belongs, map, to which the street belongs, address, to which the street belongs, adjacent block connected with the street, coordinates of starting point of the street, street connected to the starting point, coordinates of end point of the street, street connected to the end point, length of the street, etc. Further, the following data are included: attached facilities information such as street covering, street light/roadside trees/mail boxes/telephone poles/public telephones/automatic vending machines/bus stops/manholes/hydrants/fire extinguishers/water pipes/garbage dumps/guide plates for blind, etc., sidewalk road surface information such as walking distance/height difference/road surface condition, etc., and time-related information such as traffic condition/vehicle traffic/traffic congestion information/sunny place information, etc.
In the conventional road data, road is included in link data, and intersection is included in node data, and the data has a structure of ineffective graph. In the pedestrian information providing system of the present invention, it is considered that intersection does not have important information for pedestrians. Thus, the data for starting point and end point are provided to the data of street, which serves as a link, and these are arranged as effective graph. By the arrangement as described above, there is no need for each street to have node data divided, and the amount of data can be reduced.
As shown in FIG. 10, the following are stored in the storage unit of the pedestrian map data 13 to increase searching efficiency: a name index for searching the corresponding block from the name using a search tree (FIG. 11), an address index for searching block, area or street from the address using a search tree (FIG. 12), a map-area correspondence table describing map number of area including in a map with the number (FIG. 13), and a town table describing town information in each area (FIG. 14). Each of name index and address index has a pointer to the pedestrian map data, which serves as data of a terminal leaf, and it is arranged in such manner that the corresponding map data can be directly referred.
The map-area correspondence table (FIG. 13) is a reference table where map number calculated from latitude and longitude is matched to ID of the area included in the map. The town table (FIG. 14) is a correspondence table, which describes facilities and organizations included in each area (town information) and their block IDs classified for each area.
In the storage unit of the pedestrian map data 13, transportation means data describing lines and schedules of each transportation means are also stored.
Next, description will be given on operation in the pedestrian map data searching means 114 of the pedestrian information processing unit 11. As shown in FIG. 15, the corresponding data searching means 1141 of the pedestrian map data searching means 114 performs the following steps:
Step 1502: The type of the inputted data inputted from the input/output control means 111 is judged. If address is inputted;
Step 1503: The address corresponding data searching means 1144 is started to deliver the inputted address for searching.
In case latitude and longitude are inputted in Step 1502;
Step 1504: The latitude/longitude corresponding data searching means 1145 is started to deliver the inputted latitude and longitude for searching.
In case the name is inputted in Step 1502;
Step 1505: The name corresponding data searching means 1146 is started to deliver the inputted name for searching.
Step 1507: The data searched by each searching means are outputted to the input/output control means 11 or the pedestrian route searching means 112.
As shown FIG. 16, the address corresponding data searching means 114 as started performs the following steps:
Step 1103: The map data corresponding to the inputted address according to the address search tree of the address index (FIG. 12) is searched.
Step 1104: The data of searching result is sent back to the corresponding data searching means 1141.
As shown in FIG. 12, the address search tree comprises the following layers in this order: prefecture/municipalities/region name/street number/house number. The terminal leaf has a pointer to the component element of the pedestrian map data. If it is supposed that address data as shown in FIG. 17 is inputted, the address corresponding data searching means 1144 searches on the address search tree downward from the top as: Chiba Prefecture→Funabashi City→Honcho→6-chome→1→No. 50. Then, the map number 153 described on the leaf and block ID 1245 are outputted as the searching results.
When started, the latitude/longitude corresponding data searching means 1145 performs the following steps:
As shown in FIG. 18;
Step 1202: Map number including the inputted latitude and longitude is calculated.
Step 1203: The map-area correspondence table (FIG. 13) is referred to search an area including the inputted latitude and longitude using vertical line method from all areas included in the map. The vertical line method is a well-known method to check whether or not an arbitrary point is included in a predetermined region. In case a straight line starting from an arbitrary line crosses outer peripheral line of the region by odd number of times, that point is considered to be within the region. If it crosses by even number of times, the point is considered to be out of the region.
Step 1204: Area data in the searched area (FIG. 9) is referred to search a block including the inputted latitude and longitude by vertical line method from all blocks included in the area.
Steps 1205: Block data of the searched block is sent back to the corresponding data searching means 1141.
For example, when the data of FIG. 19 are inputted, the corresponding map number 5637-24-23 is calculated from the inputted latitude and longitude, and referring to the correspondence table of FIG. 13, area 2234 including the inputted latitude and longitude is searched from all areas included in the map with the map number 5637-24-23. Next, the area data of the area 2234 is referred, and a block including the inputted latitude and longitude is searched by vertical line method from all blocks included in the area. The data of the searched block b1248 (FIG. 20) is sent back to the corresponding data searching means 1141.
Also, as shown in FIG. 21, the name corresponding data searching means 1146 as started performs the following steps:
Step 1303: The map data corresponding to the inputted name is searched using the name search tree of the name index (FIG. 11).
Step 1304: The data of the searching results are sent back to the corresponding data searching means 1141.
As shown in FIG. 11, the name search tree has a tree structure similar to that of the address search tree, and each layer comprises a character from Japanese syllabary. The terminal leaf has a pointer to component element of the pedestrian map data as in case of the address search tree. For example, when a name data "Hachikou" is inputted as shown in FIG. 22, the name corresponding data searching means 1146 searches the name search tree of FIG. 11 downward from the top as "ha", "chi" "ko", and "u", and map 153 and block 1245 as described on the leaf are obtained. The block data of the block b1245 is sent back to the corresponding data searching means 1141.
The nearest information searching means 1142 of the pedestrian map data searching means 114 carries out the searching according to the procedure shown in FIG. 23 when an object to be searched is inputted from the input/output control means 111.
Step 2102: The object to be searched is inputted.
Step 2103: Address or latitude and longitude are inputted.
Step 2104: An area corresponding to the address or the latitude and the longitude are searched using the corresponding data searching means 1141. Based on the type of inputting, the corresponding data searching means 1141 searches the corresponding area by starting the address corresponding data searching means 1144 or the latitude/longitude corresponding data searching means 1145. The area data found in the result of the searching is sent to the nearest information searching means 1142.
Step 2105: The nearest information searching means 1142 searches the object to be searched from a town table of the searched area using the town information searching means 1147.
Step 2106: If the corresponding object is not found;
Step 2108: The data of adjacent area is found from the area data.
Step 2105: The object to be searched is searched from the town table of the adjacent area.
The procedure of Steps 2105, 2106 and 2108 is repeated, and when the corresponding object is found;
Step 2107: Data such as coordinates, address, etc. of all corresponding objects found are sent back to the requester of the searching.
For example, when a user wants to find out the nearest post office and inputs data to search the post office by specifying latitude and longitude of the present position, the latitude/longitude corresponding data searching means 1145 is started. An area 35a shown in FIG. 9 is searched, and the area data is sent to the nearest information searching means 1142.
The nearest information searching means 1142 searches the post office from the town table shown in FIG. 14 with "town-34" in the town information of the area 35a using the town information searching means 1147. Because data content of the corresponding object, i.e. post office, is null, similar searching is carried out for all adjacent areas of the area 35a and judges whether the corresponding object is present or not. The post office is found in the area 36a in this searching, and the data of the block 53, i.e. the corresponding object, is sent back.
By registering not only normal town information but also attribute on street in the town table, it is possible to carry out searching for wider range. For example, if positions of mailboxes are registered as attributes on street, the nearest mailbox can be searched.
Next, description will be given on operation in the pedestrian route searching means 112 of the pedestrian information processing unit 11. The attribute determining means 1124 of the pedestrian route searching means 112 determines attributes to be considered in selecting a route according to the procedure shown in FIG. 25. If data such as user category, departure point, destination, time, weather, and index in selecting a route (whether to select a route requiring the shortest time or a route with the shortest distance) are inputted from the input/output control means 111 as shown in FIG. 26, the attribute determining means 1124 as started carries out the following steps:
Step 3102: From a user category table (FIG. 27), attributes corresponding to the inputted user category are read. In the user category table, attributes corresponding to each user are described sequentially from the attribute with the highest priority. For "women" in the inputted user category, data such as presence or absence of street light, presence or absence of shops open till late at night, vehicular traffic density, crowdedness of pedestrians, presence or absence of police box are determined as attributes.
Step 3103: Next, attributes to correspond to the inputted weather are read from a weather category table (FIG. 28). In case the weather is "rain", the data such as presence or absence of underground passage, presence or absence of covering, presence or absence of roadside ditch, vehicular traffic density, or crowdedness of pedestrians are determined as attributes.
Step 3104: Next, attributes to correspond to the inputted time are read from a time category table (FIG. 28). From the inputted time "16:35", the data such as presence or absence of street light, crowdedness of pedestrians, and vehicular traffic density are determined as attributes by referring to "evening" category of the time category table.
Step 3105: Sum-set of attributes determined from each category table is calculated. At the same time, sum of priorities of the categories is obtained.
Step 3106: By this sum, priority rank of attribute of the sum-set is determined, and a predetermined number of attribute data with high priority rank are outputted as shown in FIG. 29.
The attribute determining means 1124 can determine attributes using a neural net. FIG. 30 shows a flow chart of the attribute determining means using a neural net. By the attribute searching means 1124 thus started;
Step 3202: The value Xi of the input item is digitized according to the inputted data as shown in FIG. 31.
Step 3203: From a table of weight constant "a ij" of input/output shown in FIG. 32, value Yj' of attribute of output item is calculated. In FIG. 32, numerals 1, 2, 3 . . . in longitudinal direction indicate input items of FIG. 31, and the numerals 1, 2, 3 . . . in lateral direction indicate attributes of output items. The value "a ij" of intersection of the input item "i" and the output item "j" indicates weight constant of the output item "j" to the input item "i". The value Yj' of attribute of the output item is calculated by: ΣXi "i").
Step 3204: As shown in FIG. 33, the output Yj' is compared with threshold (0.5). Output value Yj of attribute exceeding the threshold is set to 1, and priority rank of attributes is assigned in the descending order of the value Yj'.
Step 3205: The result of calculation is outputted by changing to natural language.
Also, the point-to-point route searching means 1122 of the pedestrian route searching means 112 executes route searching according to the procedure shown in FIG. 34. Explanation is given now on the case where a route is searched in a region shown in FIG. 35 as an example. In this figure, each region enclosed by curve indicates an area. Larger numeral indicates area number, and smaller numeral indicates street number. Straight line indicates a street.
In this example, the data shown in FIG. 36 are inputted, and a route from JR Roppongi Station to the destination, i.e. "Roppongi Murasaki", is searched.
It is now supposed that area data of FIG. 37A to FIG. 38C, block data of FIG. 39A to FIG. 41B, and street data of FIG. 42A to FIG. 48B are stored in the pedestrian map data 13. In actual conditions, the street data has many attributes as shown in (1) of FIG. 42A and FIG. 42B. Here, explanation is given on functions, and detailed attributes are not described for the street data (2) to (15). Also, polygonal information is not given in the area data, and polygonal information and 3-dimensional information are not given in the block data.
When the point-to-point route searching means 112 is started;
Step 4102: The attributes of the street to be searched are determined according to the input by the attribute determining means 1124. In this example, from the user category, i.e. a 72-year-old woman, attributes of the street to be searched are determined as: street light, shops open till late at night, vehicular traffic density, crowdedness of pedestrians, police boxes, and avoidance of parks and parking area, and the attributes are determined as: handrails, pavements, slopes, stairways, bicycles, and road width.
Step 4103: The corresponding data searching means 1141 is started to search an area, to which the departure point belongs, and 420b block and 35a area are found.
Step 4104: The corresponding data searching means 1142 is started to search an area, to which the destination belongs, and 443b block and 37a area are found.
Step 4105: The point-to-point problem between 35a area and 37a area is solved by Dijkstra method known as a solution of the problem of optimal route, and it is determined to pass through 11826st and 11835st.
Step 4106: From the streets satisfying the attributes as desired by the user in the streets within the area, a combination of streets, which constitute the shortest route, is obtained, and it is determined to pass through 11723st, 11727st, 11826st, 11733st, 11734st, 11835st, and 11747st.
Step 4107: Data of departure point, destination and the street to pass through are sent back.
FIG. 49 is a schematical drawing to show the case where the departure point is under the ground. In this case, also, route searching can be performed by the procedure as described above. The data shown in FIG. 50 are inputted, and a route from Roppongi Station of Hibiya Line of the subway to the destination "Roppongi Murasaki" is searched.
The route searching means 112 between two points is started, and attributes of the street to be searched are determined as described above according to the input.
The corresponding data searching means 1142 is started to search an area, to which the departure point belongs, and 260b block and 34a area are found. Then, an area, to which the destination belongs, is searched, and 483b block and 37a area are found.
Next, the point-to-point problem between 34a area and 37a area is solved, and it is determined to pass through 11827st and 11835st. Then, from the streets satisfying the attributes as desired by the user among the streets in the area, a combination of the streets which constitute the shortest route is obtained. It is determined to pass through 11711st, 11827st, 11738st, 11734st, 11835st and 11747st, and the data of departure point, destination and streets to pass through are sent back.
FIG. 51 and FIG. 52 each represents a schematical drawing to show the case where the departure point is under the ground and the destination is in a building. In this case, also, route searching can be carried out by the procedure as described above. It is now supposed that the data shown in FIG. 53 are inputted, and a route from "Roppongi Station of Hibiya Line" of the subway to the destination "TBS Studio 04" is searched.
The point-to-point route searching means 112 is started, and attributes of the street to be searched are determined according to the input as described above.
The corresponding data searching means 1142 is started to search an area, to which the departure point belongs, and 260b block and 34a area are found. Next, an area, to which the destination belongs, is searched, and 125b block and 1038a area are found.
Next, the point-to-point problem between 34a area and 1038a area is solved, and it is determined to pass through 11827st and 22800st. Then, from the streets satisfying the attributes desired by the user among the streets in the area, a combination of streets which constitute the shortest route is obtained. It is determined to pass through 11711st, 11827st, 11738st, 11734st, 22800st, and 22734st, and the data of departure point, destination and the streets to pass through are sent back.
The route searching means 1121 between a plurality of geographical points of the pedestrian route searching means 112 executes route searching according to the procedure of FIG. 54 in case there are two or more destinations. Explanation is now given on the case where the data shown in FIG. 55 are inputted, and a route is searched from departure point of "JR Roppongi Station" to pass through "Roppongi Murasaki", "Roppongi Kimidori", "Roppongi Daidai", "Roppongi Mizuiro", and "Roppongi Momoiro". FIG. 56 represents a schematical drawing to show this example.
The route searching means 1121 between a plurality of geographical points as started performs the following steps:
Step 5102: Attributes of the street to be searched are determined by the attribute determining means 1124. In this example, from the user category defining that the user is a 72-years-old woman, the attributes of the streets to be searched are determined as: street light, shops open till late at night, vehicular traffic density, crowdedness of pedestrians, police boxes, avoidance of parks and parking areas, handrails pavements, slopes, stairways, bicycles, and road width.
Step 5103: The corresponding data searching means 1142 is started to search an area, to which departure point and all of the destinations belong, and the following blocks and areas are found: 420b block and 35a area, 443b block and 37a area, 444b block and 37a area, 431b block and 36a area, 491b block and 39a area, and 391b block and 32a area.
Step 5104: Route searching problem between 35a area, 37a area, 36a area, 39a area and 32a area is solved, and it is determined to pass through 11826st, 11836st, 11848st, 11895st, 11892st, and 11894st.
Step 5105: From the streets satisfying the attributes desired by the user among the streets in the area, a combination of the streets constituting a go-round route is searched, and it is determined to pass through 11723st, 11727st, 11826st, 11731st, 11737st, 11836st, 11741st, 11742st, 11747st, 11743st, 11848st, 11797st, 11795st, 11792st, 11895st, and 11725st, 11892st, 11692st, 11693st, 11894st, 11720st, 11721st, and 11722st in this order.
Step 5106: The data of departure point, destination and all streets to pass through are sent back.
It is evident that distance and time are interchangeable with each other as indices in the route searching.
The route searching means 1123 of a plurality of transportation means executes selection of route using a plurality of transportation means by the procedure shown in FIG. 57. Explanation is given now on the case where the data shown in FIG. 58 are inputted, and a route is searched from "Shinagawa Murasaki" (with Aomono Yokocho Station of Keihin Express as the nearest station) to "Roppongi Murasaki" (with JR Roppongi Station as the nearest station). FIG. 59 shows a schematical drawing from the departure point "Shinagawa Murasaki" to the nearest station "Aomono Yokocho Station". FIG. 35 shows a schematical drawing from JR Roppongi Station to the destination "Roppongi Murasaki".
The route searching means 1123 of a plurality of transportation means as started performs the following steps:
Step 6102: Attributes of the streets to be searched are determined by the attribute determining means 1124.
Step 6103: The corresponding data searching means 1141 is started to search an area, to which departure point and destination belong, and 250b block and 25a area, and 483b block and 37a area are found.
Step 6104: The nearest information searching means 1142 is started to search stations, which are the nearest to the destination and the departure point respectively, and 270b block and 27a area, i.e. data for Aomono Yokocho Station of Keihin Express, and 470b block and 35a area, i.e. JR Roppongi Station, are found.
Step 6105: The point-to-point route searching means 1122 is started, and an optimal route of 250b block and 270b block is obtained. Further, an optimal route for 483b block and 470b block is obtained, and street data 11723st, 11727st, 11826st, 11733st, 11734st, 11835st, 11747st and 12423st, 12427st, 12426st, 12433st, 12434st, 12435st, and 12447st are obtained.
Step 6106: From the schedule of trains, a route of trains from Aomono Yokocho Station of Keihin Express to JR Roppongi Station is obtained.
Step 6107: The data of departure point, destination and the streets to pass through and the data of train schedule are sent back.
The time simulation means 116 simulates the time until the destination is reached by the procedure shown in FIG. 60.
The time simulation means 116 as started performs the following procedure:
Step 7102: Route searching is performed to correspond to the input (FIG. 61).
Step 7103: The obtained data are sequentially identified from the departure point. If it is a street data, the time required, the time of arrival, and the time of departure on each street are calculated from length of route and walking speed. If it is the schedule data, the time of departure at departure station, the time of arrival at the arrival station, and the time required are calculated by referring to the time table.
Step 7104: The calculated result is outputted in the data with the form as shown in FIG. 62.
In this example, the time of arrival is obtained by calculating from the departure time, while it is possible to obtain departure time by calculating from the time of arrival.
The scheduling means 113 sets up a schedule to go round a plurality of destinations by the procedure shown in FIG. 63.
The scheduling means 113 as started performs the following steps:
Step 8102: From the input data (FIG. 64), destinations (B, C, and E) with specified time are aligned in the order of the time (B, E, and C).
Step 8102: Destinations are searched between B and E and between E and C. If it is supposed that there is D between B and E, and there is F between E and C, permutation (B, D, E, F, C) is prepared.
Step 8104: The destination A without specified time other than the above is assigned before the time specifying or after time specifying, and a permutation (A, B, D, E, F, and C) are made up.
Step 8105: Route searching is performed according to the prepared permutation.
Step 8106: On the obtained route, time of arrival at each destination is simulated by starting the time simulation means 116.
Step 8107: On the geographical points B, C, and E with specified time, it is judged whether the specified time is followed or not.
Step 8110: If not followed, another permutation (B, D, E, F, C, A) is prepared, and Steps 8105 to 8107 are repeated.
Step 8108: Even when it is followed, if the user judges the result and does not accept it;
Step 8110: Again, a different permutation is prepared, and Steps 8105 to 8107 are repeated. In Step 8108, if the result is satisfactory, the procedure is completed.
If minimum value of the time to go through the route by Step 8108 is judged by computer, it is evident that it will be as given on a flow chart to obtain the shortest time.
By the procedure shown in FIG. 65, the transportation determining means 117 selects a transportation means, which can ensure the earliest time of arrival. Description is now given on the case where the data shown in FIG. 66 are inputted and it is searched by multi-mode a route departing from "Shinagawa Murasaki" at 12:00 and reaches "Roppongi Murasaki" at the earliest time (FIG. 35 and FIG. 59).
The transportation determining means 117 as started performs the following steps:
Step 9102: Attributes of the streets to be searched are determined according to the input using the attribute determining means 1124.
Step 9103: The corresponding data searching means 1141 is started, and area and blocks, to which departure point and destination belong, are searched, and 250b block and 25a area as well as 443b block and 37a area are found.
Step 9104: The nearest information searching means 1142 is started to search blocks and areas of bus stops, stations, ports, and airports nearest to the destination and the departure point. In the searching of the nearest bus stop, 12434st is obtained as the street, to which the nearest bus stop of the departure point belongs, and 11733st is obtained as the street, to which the nearest bus top of the destination belongs. In the searching of the nearest station, 240b block and 27a area are obtained as the data of Aomono Yokocho Station of Keihin Express, which is the nearest station of the departure point, and 420b block and 35a area are obtained as the data of JR Roppongi Station, which is the nearest station of the destination. In the searching of the nearest port, 4001a area and 432b block are obtained as the data of the nearest port of the departure point and the destination. In the searching of the nearest airport, 5002a area and 534b block are obtained as the data of the nearest airport of the departure point and the destination.
Step 9105: In case where the nearest bus stop, station, port or airport of the departure point and the destination are the same, it is determined to use a transportation means by excluding these. In this example, the nearest port and the nearest airport of the departure point and the destination are the same, and it is determined to use bus or train as transportation means.
Step 9106: The point-to-point route searching means 1122 is started to search a route from departure point and destination to the nearest station of the transportation means used. For the railroad station, the shortest route of 250b block and 240b block and the shortest route of 443b block and 420b block are obtained, and the street data of 11723st, 11727st, 11826st, 11733st, 11734st, 11835st, 11747st, and 12423st, 12427st, 12426st, 12433st, 12434st, 12435st, and 12447st are obtained. Also, for the bus stop, the shortest route of 250b block and 12434st and the shortest route of 443b block and 11733st are obtained, and the street data of 11733st, 11734st, 11835st, 11747st, and 12423st, 12427st, 12426st, 12433st, and 12434st are obtained.
Step 9107: Using schedule data, the time of arrival is calculated. With regard to bus, the time of arrival is calculated according to the bus schedule shown in FIG. 67. With regard to railroad, the time of arrival is calculated from the data of train schedule. Changing the modes of the transportation means used, the time of arrival at the destination is calculated as shown in FIG. 68, FIG. 69, and FIG. 62.
Step 9108: The data of the time of arrival are compared with each other, and the transportation means with the earliest time of arrival is adopted. In case the time of arrival is the same, the transportation means with lower cost is selected, and the result of FIG. 69 is adopted.
Step 9109: All of the routes and the lines adopted in Step 9108 (FIG. 69) are outputted.
Next, description will be given on how the pedestrian map data 13 are generated. The pedestrian map data 13 can be prepared using road map and street map as currently available.
The pedestrian map data generating and editing means 115 of the pedestrian information processing unit 11 generates the pedestrian map data from the road map by the procedure shown in FIG. 70.
The pedestrian map data generating and editing means 115 as started performs the following steps:
Step 9502: As shown in FIG. 71, basic road data (FIG. 74), data of river system, and data of railroad, which are non-pedestrian area data, are picked up from the road map data.
Step 9503: Intersections in the non-pedestrian area, i.e. points of intersection A/B/C/D/E/F between basic roads (road 1 to road 9) and between basic road and railroad 1, are obtained (FIG. 72). For each basic road, non-pedestrian area is determined by following the signal flag of all-road data. At the same time, the data of blocks and streets relating to the non-pedestrian area are prepared as shown in FIG. 75A to FIG. 75C.
Step 9504: Starting from an adequate point of intersection E, points of intersection obtained in Step 9503 are connected with each other counterclockwise (FIG. 73). In this case, if started from E, it goes up to the north and reaches D. Then, it is turned toward left. After reaching A, it is turned toward left. If this procedure is repeated, it goes round in the order of E→D→A→B→E, and this is determined as a contour of the pedestrian area. After confirming that the same contour is not yet registered, it is registered as an area ID 2345a in the pedestrian map data. Similarly, a region enclosed by contour of FEBCF is registered as an area ID 2346a as shown in FIG. 76.
Step 9505: Referring to the street map, it is calculated that the street block W1 is in the area 2345a using vertical line method, and it is registered as block data 2345b of the pedestrian map data. Similarly, W2 to W10 are registered as block data of the area 2345a. By the same procedure, the street block Q1 is registered as block data 2346b of the area 2346a. Similarly, the street blocks Q2 to Q15 are registered as block data of the area 2346a. W1 and Q1 are registered as shown in FIG. 77.
Step 9506: From the road map, it is calculated that there is a road a1 with width of 5.5 m or less in the area 2345a using vertical line method, and this is registered as the street data 2345st of the pedestrian map data. Similarly, the roads a2-a5, b1-bc, cl, z1-z2, y1-y3, x1-x2, and w1 are registered as streets of the area 2345a. Further, the road e3 with width of 5.5 m or less is registered as the street data 2346st of the area 2346a. Similarly, the roads a6, b4, c2-c3, d1, e1-e4, f1-f4, z3-z5, y4-y6, x3-x6, and w3-w6 are registered as the streets of the area 2346a as shown in FIG. 78.
Step 9507: Following the coordinates of starting point and end point of the streets, connecting street number of the starting point and the end point of the street is registered. From the data of street block, connecting street data of the block are registered. After registration, all of the geographical information are made subordinate to block and street as shown in FIG. 79.
Step 9508: All data are outputted and the procedure is completed.
Thus, the pedestrian map data generating and editing means 115 can automatically prepare pedestrian map data from road map data and street map data.
Also, the pedestrian map editing means may be simultaneously provided, by which the user can add, update or delete the pedestrian map data through user interface. In this case, the user can edit the generated pedestrian map data.
Also, in the pedestrian information providing system, it is possible to display buildings, landmarks, etc. 3-dimensionally at the time of outputting by adding 3-dimensional information to display 3-dimensional configuration to the data of each block and street.
2nd Embodiment
In the second embodiment, description will be given on the case where the pedestrian map data are generated mainly using street map. FIG. 80 shows the procedure of the pedestrian map data generating and editing means 115 in this case. FIGS. 81(a) to (d) each represents a schematical drawing to show operation of the pedestrian map data generating and editing means 115 to generate pedestrian map data from street map.
The pedestrian map data generating and editing means 115 as started performs the following steps:
Step 9702: From the street map data, all of the street block data A to T (FIGS. 81(a), and FIG. 82) are picked up and are stored in storage region.
Step 9703: Empty pedestrian area data "a" is prepared.
Step 9704: Street block data A is picked up, and this is registered in the pedestrian area data "a" as an object street block.
Step 9705: All street blocks, which are adjacent to the object street block A with a distance of 5.5 m or less are obtained.
Step 9706: It is judged whether a street block is present or not, which is a street block adjacent to the object street block with a distance of 5.5 m or less and which is not yet registered in the pedestrian area "a". If not present (not present in case of FIG. 81A);
Step 9709: It is judged whether there is data in storage region or not. If there is, it is moved to Step 9703.
In this case, the street block data is still in the storage region, and a new pedestrian area "b" is prepared (Step 9703), and the street block data B is picked up, and it is registered as an object street block in the pedestrian area "b" (Step 9704). Then, all street blocks adjacent to the object street block B by a distance of 5.5 m or less are searched (Step 9705). In this case, the street block C is found as such. It is then judged whether there is a street block not yet registered in the pedestrian area "b" (Step 9706). In this case, the street block C is not yet registered.
Step 9707: The street block C is added to the pedestrian area "b", and the street block C is deleted from the storage region.
Step 9708: Among the street blocks added to the area "b", the street block C not yet considered as the object street block is turned to the object street block.
Step 9705: A street block adjacent to C is obtained.
By repeating the procedure of Steps 9705 to 9708, the street blocks B, C, D and E are registered to the area "b".
Similarly, the street blocks are continuously registered to the area until there is no more street block data from the storage region. When there is no more street block data in the storage region (Step 9709);
Step 9710: Line segments of the street block data in each of the pedestrian areas are extracted as roads of 5.5 m or less (FIG. 83 and FIG. 81C), and these are added to the street data.
Step 9711: The street block data in each of the pedestrian areas are registered as block data. In this case, the pedestrian data are prepared as shown in FIG. 84.
Step 9712: Referring to the road data, non-pedestrian area data are prepared as shown in FIG. 81D.
Step 9713: All of the prepared data are outputted, and the procedure is completed.
In this way, the pedestrian map data generating and editing means 115 can automatically generate the pedestrian map data by mainly using street map.
The pedestrian map data generating and editing means may be arranged in such manner that it comprises a pedestrian map data generating means for preparing pedestrian map data from existing road map as explained in the first embodiment and a pedestrian map data generating means for preparing a pedestrian map data from the street map as explained in the second embodiment.
3rd Embodiment
In the third embodiment, description will be given on a pedestrian map data generating and editing means for determining pedestrian area from a road map data by a simple method. FIG. 138 is a flow chart to show operating procedure of the pedestrian map data generating and editing means, and FIGS. 139A and 139B schematically illustrate a pedestrian area generated from a road map by this method. FIG. 139A shows a road network near a node A in the road map. Thick lines indicate basic roads, and thin lines (thin lines are concealed under thick lines) indicate all roads. By the procedure given below, the pedestrian map data generating and editing means generates each of pedestrian areas shown in FIG. 139B from the data of the road network.
The pedestrian map data generating and editing means as started performs the following steps:
Step 002: Basic road data, river system data and railroad data are picked up from the road map data. Thus, the data of the road network of FIG. 139(a) are picked up.
Step 003: The data of each node of the basic road are duplicated, and number of the nodes is increased up to the degree of the node. The degree is defined as number of links entering the node. The degree at the node A in FIG. 139A is 4, and the degree at the node B is 2. Therefore, for the data of the node A with the degree 4, the number of the data is increased to 4 by duplication. As shown in FIGS. 140 and 140B, this means that the node A is split to 4 nodes of Al, A2, A3 and A4.
The node A1 thus split is turned to a node having an internal angle A1 connected to two links adjacent to A, i.e. a link with the node "a", and a link with the node "b". Also, the node A2 is turned to a node having an internal angle A2 connected to two links, i.e. a link between A and the node "b" and link between A and the node "c". The node A3 is turned to a node having an internal angle A3 connected to two adjacent links, i.e. a link between A and the node "c" and a link between A and the node "d". Also, the node A4 is turned to a node having an internal angle A4 connected to two adjacent links, i.e. a link between A and the node "d" and a link between A and node "a". However, in this stage where the node is simply split, connection information between nodes remain the same. As shown in FIG. 140(b), the node A1 is connected not only with the nodes a1 and b1 but also with the nodes a2, b2, c1, c2, d1, and d2. Similarly, the nodes of A2, A3 and A4 are also connected to each of the nodes a1, a2, b1, b2, c1, c2, d1, and d2.
Step 004: For the node A1, the connections with the nodes b2, c1, c2, d1, d2, and a2 not found inside the internal angle A1 are cut off. Also, for A2, A3, and A4, the connections to the nodes which are not within the internal angles A2, A3 or A3 are cut off. By this processing, connections between the nodes are turned to the state as shown in FIG. 140C. After the same procedure has been performed for all of the nodes;
Step 005: The procedure is completed.
As the result of this processing, a pedestrian area as shown in FIG. 139B is prepared.
By this method, it is possible to prepare a pedestrian area in simple and quick manner from the road data.
4th Embodiment
In the fourth embodiment, description will be given on the pedestrian map data generating and editing means for determining a pedestrian area from a road map data in simple manner. FIG. 141 is a flow chart to show operating procedure of the pedestrian map data generating and editing means, and FIGS. 142A and 142B schematically illustrate a pedestrian area generated from the road map by this method.
The pedestrian map data generating and editing means as started performs the following steps:
Step 012: Basic road data, river system data, and railroad data are picked up from the road map data. Thus, the data of the road network of FIG. 142A are picked up.
Step 013: Route searching is started form nodes of all arbitrary roads to all bearings (directions), and route searching is continued until each of the search leaves (tips of search) reaches a basic road. This is illustrated in FIGS. 143A to. FIG. 143A shows a node "a" of each road, for which route searching is started, and FIG. 143B indicates a stage where processing has proceeded from the node "a" to the second node. Broken lines show the links passed through. All nodes passed through and all links are stored in memory. As shown in FIG. 143C, when all of the search leaves reach the basic road, the searching is terminated.
Step 014: All-road nodes passed through, all-road links and basic road nodes and links reached are considered as one group. The connection with the nodes which are not found in this group is cut off, and this is registered as a pedestrian area.
Step 015: The procedure from Step 013 to Step 014 is repeated until all-road data are registered in the area data.
Step 016: When all-road data are registered in the area data, this processing is terminated.
As the result of this processing, a pedestrian area shown in FIG. 142B is formed. By this method, the pedestrian area can be generated by repeating simple procedure from the road map data. Even when attribute information to show degree in the nodes of basic road is not prepared satisfactorily, the pedestrian area can be generated by this method.
5th Embodiment
In the fifth embodiment, description will be given on a method to split one area to a plurality of areas. If number of areas is increased, the burden applied on generation of the pedestrian map data is increased. For this reason, narrow rivers and the like are not discriminated as non-pedestrian area in the initial stage and are included in the pedestrian area. Only when the need to discriminate becomes apparent, it is divided to a plurality of areas. This will make it possible to more efficiently perform generation and searching of the pedestrian map data from general viewpoint.
In such case, flow rate of pedestrians in each link of all roads is calculated in this embodiment. If there are several streets parallel to each other, the flow rate in each street decreases. On the contrary, in case pedestrians from several streets enter a single street, the flow rate of this street increases because it is a sum of the flow rates of all of these streets.
In case there is a link where flow rate exceeds a predetermined value, this link is determined as a street to go over a non-pedestrian area (i.e. If non-pedestrian area is a river, the street is a bridge. If non-pedestrian area is a road, the street is pedestrians' crossing or footbridge.), and the area is split. If there is no link where flow rate exceeds a predetermined value, splitting of the area is not performed.
FIG. 144 is a flow chart to show operating procedure of the pedestrian map data generating and editing means in this case. FIG. 145, FIG. 146, and FIG. 147 each represents a schematical drawing to explain this operation.
The pedestrian map data generating and editing means as started performs the followings steps:
Step 022: From the pedestrian route data, an area data is picked up. Explanation is now given on a case where there is an area data as shown in FIG. 145 and a bridge is detected from an area A. FIG. 146 is an enlarged view of the area A.
Step 023: From all-road node "a" of the area A, flow rate of each link is calculated toward all bearings within the area A.
Step 024: It is checked whether there is a link where flow rate exceeds a predetermined value or not. Flow rate exceeds a predetermined value in each of the links b, c, and d in FIG. 146, and the links b, c, and d are detected as bridges.
Step 025: With the links b, c, and d as borders, the area is split as shown in FIG. 147 to turn it to a new area A1 and a new area A2.
Step 026: For all of the area data, the procedure from Step 023 to Step 025 is repeated.
Step 027: When processing is completed for all of the area data, splitting of the area is terminated.
In this method, only the areas relating to a link with high priority are divided, and the other areas are included in the pedestrian area. In so doing, it is possible to alleviate the burden on generation of the pedestrian map data.
Also, by this method, it is possible to recognize a bridge in the pedestrian map even when attribute information on the road map is not prepared satisfactorily.
6th Embodiment
In the sixth embodiment, description will be given on operation of the pedestrian map data generating and editing means 115, which generates the data of streets from a map data showing a premise such as underground shopping center or facilities.
The pedestrian map data generating and editing means 115 extracts streets by a procedure shown in FIG. 111 from a vector diagram of a premise map. As an example, explanation is given now on the premise drawing shown in FIG. 112.
Step 1010: Sides a, b, c, and d, which serve as entrances or exits in the premise drawing, are inputted.
Step 1020: The pedestrian map data generating and editing means 115 prepares a Voronoi diagram in the premise using vertexes shown by black circles in the premise drawing (FIG. 112) read from the pedestrian map data 13 as question points. In this diagram, borders to indicate spheres of influence of each question point are as shown by broken lines in FIG. 113.
Step 1030: Of the borders indicated by broken lines, line segments in contact with sides other than a, b, c, and d are deleted. Only the line segments shown by thick lines in FIG. 114 are left.
Step 1040: Next, of the remaining line segments, the line segments, whose end point is not connected to any side or to any line, are deleted. By this processing, only the line segments shown by thick lines in FIG. 115 are left.
Step 1050: When points (q, r) where three or more of the remaining line segments cross each other and points (p, s, t, u), which are on the sides a, b, c or d, and serving as entrance or exit, are indicated by black circles, each continuous line segment from a black circle to a black circle as shown in FIG. 116 is registered as a street. Also, bending point of this street and points of intersection with border in Voronoi diagram are registered as interpolation points of the street. Thus, street data of the premise are generated.
7th Embodiment
In the seventh embodiment, description will be given on a method to correct the generated pedestrian area data. On the generation of the pedestrian area data, explanation has already been given using the flow chart of FIG. 70. Specifically, the pedestrian map data generating and editing means 115 reads road map data and street map data. First, using the road map data, a region and contour streets of the pedestrian area are picked up by starting from intersection point of major roads and by returning to initial intersection point by following the major road clockwise or counterclockwise. Then, these are registered. Next, using the street map data, street blocks and facilities in the pedestrian area are picked up by point position determining method such as vertical line method, and these are registered.
However, this method combines what are obtained from two types of map data, and contour streets of the pedestrian area indicated by thick lines and street blocks and facilities indicated by thin lines may be deviated as shown in FIG. 126, and blanks may be generated between them.
In the seventh embodiment, description will be given on a method, by which it is possible to correct the pedestrian area data having blanks as shown in FIG. 126 to pedestrian area data, in which there are contour streets along peripheries of facilities and street blocks and which are closer to actual conditions.
The pedestrian map data generating and editing means 115 generates the corrected pedestrian area data by a procedure shown in FIG. 125.
In the procedure given in FIG. 125, the procedure from Step 302 to Step 307 is the same as the procedure from Step 9502 to Step 9507 of FIG. 70, and it is the procedure to generate the pedestrian area data of FIG. 126.
Step 308: The pedestrian map data generating and editing means 115 correct the data of the pedestrian area thus obtained to the data closer to the actual condition.
In the correcting procedure, for example, by applying convex closure method to street blocks in the pedestrian area as shown in FIG. 127, contour streets indicated by broken lines are obtained. Then, the portion indicated by the broken lines is registered as a new pedestrian area as shown in FIG. 128.
Convex closure (or convex hull) method is a method, in which a straight line at the outermost position is selected when a straight line is drawn from a certain vertex of a street block to each vertex of the other street block, and from the vertex connected by this straight line, a straight line at the outermost position is selected when straight lines are drawn similarly to each vertex of the other. By repeating this procedure sequentially, a polygon is obtained.
The correction of the pedestrian area data of FIG. 126 can be performed by the procedure of FIG. 129.
Step 402: Of the vertexes constituting a street block, from all vertexes, which are within a predetermined distance from the contour road, lines are drawn perpendicularly to the nearest contour road. If the vertical line does not cross a line segment of the other street block, this vertex is considered as the vertex of the contour street.
Step 403: By connecting the vertexes thus obtained, a contour street shown by broken line in FIG. 130 is obtained.
Step 404: The portion indicated by the broken lines is registered as a new pedestrian area as shown in FIG. 131.
By this method, it is possible to obtain contour streets, which are running along the street block and are closer to actual condition than the contour streets obtained by the convex closure method (FIG. 128).
Also, the correction of the pedestrian area data of FIG. 126 can be performed by the procedure of FIG. 132.
Step 501: As shown in FIG. 133, the center (black circle) of the area is obtained.
Step 502: A straight line is drawn, which passes through vertexes constituting a street block (vertexes which are within a predetermined distance to contour street) or a point on a line segment of the street block and the center of the area. If the line segment of the street block, which crosses this straight line, is not at a position outer than the vertex (or a point on the line segment), this point is considered as the vertex of the contour street.
Step 503: By connecting the vertexes thus obtained, a contour street shown by broken line in FIG. 133 is obtained.
Step 504: The portion indicated by the broken line is registered as a new pedestrian area as shown in FIG. 134.
The correcting method of FIG. 126 and FIG. 132 is applied only to vertex or line segment, which is within a predetermined distance to the contour road. The distance from the contour road may be changed in such manner that it is shorter when road width of the contour link is wider, and the distance is longer when the road width is narrower.
In this way, by correcting the data of the pedestrian area to the condition closer to actual condition, it is possible to provide more accurate route guidance for pedestrians.
8th Embodiment
In the eight embodiment, description will be given on the pedestrian map data generating and editing means for generating pedestrian map data by adequately using the methods as described above.
As shown in FIG. 148, this pedestrian map data generating and editing means comprises a first pedestrian map data generating means 1151 for performing a method to generate pedestrian map data using a road map and a street map as explained in the first embodiment, a second pedestrian map data generating means 1152 for performing a method to generate the pedestrian map data using a street map data explained in the second embodiment, a third pedestrian map data generating means 1153 for performing a method to generate a pedestrian area by splitting a road map data as explained in the third embodiment, a fourth pedestrian map data generating means 1154 for performing method to generate a pedestrian map data by grouping links and nodes where leaf of route searching reaches basic road as explained in the fourth embodiment, a fifth pedestrian map data generating means 115 for generating data of streets from premise map data as explained in the sixth embodiment, a pedestrian bridge detecting means 1156 for performing a method to detect a link with higher flow rate and to split relevant areas as explained in the fifth embodiment, a first pedestrian map data correcting means 1157 for performing a method to correct pedestrian area data shown in FIG. 125, a second pedestrian map data correcting means 1158 for performing a method to correct pedestrian area data shown in FIG. 129, a third pedestrian map data correcting means for performing a method to correct pedestrian area data shown in FIG. 132, and a generating means determining means 1160 for selecting and starting one of the means 1151 to 1159.
Upon receipt of the parameters relating to map data generation from the input/output control means 111, the generating means determining means 1160 starts map data generating means and correcting means in response to the parameters and generates a pedestrian map data.
By this pedestrian map data generating and editing means, pedestrian map data with less errors can be efficiently generated by combining various types of pedestrian map data generating means and correcting means.
9th Embodiment
The pedestrian information providing system of the ninth embodiment of the invention can provide route information for pedestrians in a manner easily understandable to the pedestrians.
The present system comprises the arrangements of FIG. 1, FIG. 2, and FIG. 3 similar to the first embodiment as hardware arrangement. The pedestrian route searching means 112 of the present system searches with priority a sidewalk of a contour road (contour street) in contact with outer periphery of a pedestrian area. The input/output control means 111 converts a route searched by the pedestrian route searching means 112 to a route information data shown in icons and outputs it, and icons are displayed on a display screen of the portable terminal equipment, which receives the data.
First, on the route searching with priority on the contour street by the pedestrian route searching means 112, description will be given on the schematical map of FIG. 86 as an example. The results of the route searching are shown by thick lines in FIG. 87.
The pedestrian route searching means 112 performs route searching by the procedure shown in FIG. 85.
Step 020: In an area (A), to which the departure point (Start) belongs, a street (sidewalk) of a contour road (a) with the shortest straight distance from the departure point is obtained (this is called "the nearest street"), and a route (α) from the departure point to the nearest street is obtained.
Step 030: In an area (C), to which the destination (End) belongs, the nearest street (e) of the contour road with the shortest straight distance from the destination is obtained, and a route (β) from the departure point to the nearest street is obtained.
Step 040: Next, an area is obtained, which is to be passed through when going from the departure area (A) to the destination area (C) (A→B→C). Then, a bridge to pass when going from an area to another area, and a street, with which the bridge is in contact (BS) (street "d" in the area A, streets "a" and "e" in the area B, and street "b" in the area C) are obtained.
Step 050: Next, in the departure area (A), a contour street from the nearest street (a) to BS street (d) in contact with the bridge is obtained. In the destination area (C), a contour street from the nearest street (e) to BS street (b) is obtained. In the other area (B), a contour street from one BS street (a) to the other BS street (e) is obtained. In this case, the pedestrian route searching means 112 determines whether to turn round clockwise or counterclockwise according to the time required, attribute, etc.
Step 060: The pedestrian route searching means 112 searches a route from the departure point to the destination as shown by thick lines in FIG. 87, and the route data (shown in FIG. 88) thus obtained are outputted sequentially to the input/output control means 111.
The route searching for pedestrian with priority on the contour street can be efficiently performed by preparing the data arrangement of the pedestrian map data 13 as given below.
First, the streets in the pedestrian area are classified to contour streets and streets inside the area. For the contour streets, one street is used as a starting point, and street data are sequentially arranged clockwise or counterclockwise from that point.
In this case, after the nearest street and the BS street and the BS street have been obtained, the pedestrian route searching means 112 can obtain data of a series of contour streets by sequentially reading adjacent street data to correspond to advancing direction of the pedestrian by following the arrangement of the data.
When the route data of the results of searching are inputted from the pedestrian route searching means 112, the input/output control means 111 outputs the data of the contour street instead of the route information data of icons. On the other hand, the portable terminal equipment is provided with characters to match the data of icons. On the display screen of the portable terminal equipment, route information in icons is displayed according to the data sent from the input/output control means 111.
FIG. 90 shows an example of route information in icons relating to a contour road. Advancing direction of the pedestrian is displayed in relation to advancing direction of vehicles along a traffic lane closer to sidewalk of the contour road. Also, information data such as facilities along the road, distance of the street, etc. are displayed at the same time.
The input/output control means 111 prepares and outputs route information in icons relating to the contour street by the procedure shown in FIG. 89.
Step 120: Route data of the results of route searching processing is inputted from the pedestrian route searching means 112.
Step 125: In each of the areas, it is judged whether the pedestrians turn round the contour road from the starting point to the end point clockwise or counterclockwise. In case the pedestrians turn clockwise, icon information is prepared in such manner that advancing direction of vehicles is opposite to advancing direction of pedestrians. In case the pedestrians turn counterclockwise, it is prepared in such manner that advancing direction of vehicles is consistent with advancing direction of pedestrians. This is because, in the countries where vehicles are driven on the left side of road, vehicles are driven counterclockwise on the lane closer to outer periphery of the pedestrian area.
Step 130: When facility data are assigned to the street along the route, icon information to match the facility data is outputted. In the example of FIG. 87, when going round the contour street of the area A, there is a bank on the street "b", and a mark for bank is displayed. There is a post office on the street "c", and a mark for post office is displayed. In this case, if these facilities are on this side (as seen from the reader) of the contour road, marks of these facilities are displayed under an arrow, which indicates advancing direction of the pedestrian. If these facilities are on the other side of the contour road, marks of these facilities are displayed above the arrow. In case advancing direction of vehicles is consistent with advancing direction of pedestrians, a vehicle mark facing toward the direction of the arrow is displayed under the arrow. In case advancing direction of vehicles is opposite to advancing direction of the pedestrians, a vehicle mark facing toward the direction opposite to the arrow is displayed above the arrow. Also, a distance to a pedestrians' crossing to go over to the next area is displayed on the side of an arrow without vehicle mark.
Step 140: Going from an area to the next area is displayed by drawing a pedestrians' crossing in front of an arrow.
Step 150: Procedure from Step 125 to Step 140 is repeated from the area of the starting point to the area of the end point. In the area B, advancing direction of pedestrians is counterclockwise from the street "a" to the street "e", and a vehicle mark facing toward the direction of the arrow is displayed under the arrow. The marks of pedestrians' crossing, NTT company and fire department which are found when going along the streets "a", "f" and "e" are displayed. Also, a distance from the pedestrians' crossing of the street "a" to the pedestrians' crossing of the street "e", i.e. end point of the area B, is displayed. Similarly, in the area C, advancing direction of pedestrians is clockwise, and a vehicle mark facing toward the direction opposite to the arrow is displayed above the arrow, and marks of parking area and park which are found when going along the streets "c" and "d" are displayed. Also, a distance from pedestrians' crossing of the street "b" to the street "e" is displayed.
For the starting point area A, a route from the searched starting point to the nearest street "a" of the contour road is displayed on a map as shown in FIG. 91. For the end point area C, a route from the nearest street "e" to the end point is displayed on a map as shown in FIG. 92.
Thus, the present system can provide guidance with priority on the contour road with heavy traffic and give instruction on advancing direction of pedestrians in relation with the flow of vehicles. For this reason, pedestrians can easily understand which route should be followed even when there is no direct indication such as map or landmark when they are away from the departure point and the destination.
In the present system, a route guidance is provided by icons. By preparing characters to match landmarks, arrows, vehicles, etc. on the portable terminal equipment, it is possible to decrease the amount of data transfer to the portable terminal equipment.
10th Embodiment
In the pedestrian information providing system of the tenth embodiment, map data to be offered are deformed, and the amount of data to be transferred to the portable terminal equipment is decreased.
In the present system, when the pedestrian route searching means 112 searches a route for pedestrians, the input/output control means 111 deforms the data and sends it to the portable terminal equipment.
The input/output control means 111 performs this deforming processing according to the procedure shown in FIG. 93.
Step 210: When route search processing by the pedestrian route searching means 112 is completed and map data and the searched route are inputted;
Step 220: The input/output control means 111 deletes a road not found along the route from the map data and extracts characteristic points on line segment of each road along the route.
FIG. 94 shows an example of map data when deforming processing is performed, and FIG. 95 represents results of route search processing by the pedestrian route searching means 112. In Step 220, as shown in FIG. 96, departure point and destination of the route from A to B as indicated by thick lines and intersections where the route crosses the other roads are extracted. In FIG. 96, these points are indicated with black circles. Next, a road "b", which is not related to the route from A to B, is deleted. Then, as shown in FIG. 97, characteristic points along links connecting between the black circles are extracted. In FIG. 97, the extracted characteristic points are indicated with black rectangles. For the link "a", points a1 and a2 are extracted as characteristics points, and point a3 is not extracted as characteristic point.
Step 230: The input/output control means 111 draws a curve, which passes through black circles along each link and has black rectangles as interpolation points, using polynomial approximate function. Coefficient of the function is calculated, and coordinates of starting point and end point of each link and the calculated coefficient are outputted to the portable terminal equipment.
For example, when a value:
y=a n
is used as the polynomial approximate function, the values of coefficients a n, a n-1 . . . and the value of x of the starting point and the end point of link are outputted to the portable terminal equipment as shown in FIG. 100. The portable terminal equipment introduces the given values to the polynomial approximate function, and x-y coordinates of the starting point and the end point of the link and shape of the link passing through the starting point and the end point are reproduced. In case of a road running along y-axis, link shape can be more easily given by a polynomial using inverse function. Thus, inverse function is used. In this case, an inverse function flag is added to facilitate the identification.
FIG. 98 shows a deformed map, which can be reproduced at the portable terminal equipment. On a deformed map, a route shown in FIG. 99 is displayed.
Thus, in the present system, the amount of data to be transferred to the portable terminal equipment can be reduced by deforming of the map. For this reason, it is possible to provide route information to the portable terminal equipment at high speed. Also, it is possible to transfer a plurality of geographical information to the portable terminal equipment and to display a plurality of maps simultaneously on the screen of the portable terminal equipment.
11th Embodiment
In the pedestrian information providing system of the eleventh embodiment, unlike the case of the tenth embodiment, map data are deformed using the moving average method. The input/output control means of this system performs the deforming processing according to the procedure shown in FIG. 101.
Step 310: When route search processing by the pedestrian route searching means 112 is completed and the map data and the searched route are inputted;
Step 320: The input/output control means 111 extracts departure point and destination of this route and also intersection where this route crosses the other roads from the map data. Also, roads not found along the route are deleted, and an interpolation point of the links connecting between the intersections is obtained by 3-point moving average method.
It is now supposed that the deforming processing is performed on the map of FIG. 94 and that the result of route search processing by the pedestrian route searching means 112 is as shown in FIG. 95. The extraction of departure point and destination of the route and the intersection and deletion of the road not found along the route in Step 320 are performed by the same procedure as in the tenth embodiment. The departure point, destination and intersections thus extracted are indicated with black circles in FIG. 102. For the links connecting between intersections, coordinates of geographical points at every constant distance along the link are obtained. By deviating these points one by one, average value of coordinates to 3 geographical points is calculated. The average point is set as an interpolation point. In FIG. 102, the interpolation points are indicated with black rectangles.
Step 330: The input/output control means 111 outputs coordinate data of the departure point, destination points, intersections and interpolation points of the route thus obtained to the portable terminal equipment.
In the portable terminal equipment, a map as shown in FIG. 103 is displayed by connecting these points, and the searched route is displayed as shown in FIG. 104. In this way, according to the present system, the map is deformed by simple calculation, and the amount of data to be transferred to the portable terminal equipment can be reduced.
12th Embodiment
In the pedestrian information providing system of the twelfth embodiment of the invention, guidance is provided on a route in underground shopping center or in a building by indicating what can be seen on lateral sides when pedestrians advance along the route. In the pedestrian map data 13 of this system, map data showing a premise such as underground shopping center/buildings shown in FIG. 106 are retained. Also, as the data of the facilities in the premise, graphic data of the facilities given below, attribute information such as position, height, etc. are retained:
Notice board/guide board/escalator/elevator/toilet/coin locker/telephone box/hydrant/stairway/emergency exit/shops/clocks/(train stop position/vehicle number)/information of nodes and links in the premise
The structure of the data of the facilities is the same as that of the data of normal facilities.
From the map data of FIG. 106, the data of the streets in the premise as shown by broken lines in FIG. 107 are generated by the pedestrian map data generating and editing means 115 (the sixth embodiment), and these street data are retained in the pedestrian map data 13. The structure of the street data is the same as that of the normal street data.
The pedestrian route searching means 112 searches a route in the premise using the street data in the premise, and the results of searching are outputted to the input/output control means 111. Upon receipt of these data, the input/output control means 111 reads graphic data of the pedestrian map data 13 and provides information on a side view of the premise along the pedestrian route. The input/output control means 111 performs this operation according to the procedure shown in FIG. 105. Here, description will be given on a case where a street is passed through in the order of A→D→E as a route.
Step 410: The user specifies either the right side or the left side as a lateral view to be displayed (it is supposed that the right side is specified in this case).
Step 420: When the searched routes A, D and E are inputted from the pedestrian route searching manes 112;
Step 430: The input/output control means 111 follows this route sequentially and draws a perpendicular line on the right side of each of all streets passing through, and objects, which cross the perpendicular lines, are displayed on after another.
FIG. 108 shows a side view to be displayed on the screen of the portable terminal equipment according to graphic data outputted from the input/output control means 111. First, when we look at the right side of the street A in FIG. 107, wall/notice board/corner/coin-operated locker/corner/wall can be seen one after another. The input/output control means 111 refers to the corresponding facility data, determines size of characters and displays them. Next, along the street D, wall/corner/guide board can be seen, and these are displayed. Next, for the street E, guide board/wall/stairway can be seen, and these are displayed. On the street E, the route in the premise comes to an end, and the processing is terminated.
As described above, it is possible in the present system to provide guidance on a route in the premise by side view.
Also, it is possible in this system to provide guidance not only for underground shopping center or in a building, but also for platform of a station. FIG. 109 and FIG. 110 each represents an example of a station platform displayed from lateral side. In the guidance for the premise of a station, side view of platform is generated and registered in advance according to the procedure described above for each station, and the registered side view may be displayed upon request of the user on route guidance.
13th Embodiment
In the thirteenth embodiment of the invention, description will be given on a method to directly search a route between two points from a vector diagram of the premise.
The pedestrian route searching means 112 can search a route in the premise according to the procedure of FIG. 117 even when street data of the premise are not prepared satisfactorily.
Step 2010: For example, when a starting point "b" and an end point "a" are inputted in a premise drawing shown in FIG. 118;
Step 2020: The pedestrian route searching means 112 obtains a vertex, which interrupts light beam for the first time when the light beam is irradiated from the starting point "b" toward the end point "a". Next, from this vertex, the light beam is irradiated in the same manner, and a vertex is obtained, which interrupts the light beam for the first time when the irradiating direction of the light beam is moved toward the end point "a". By repeating this procedure until the light beam reaches the end point "a", a broken line approximate function from "b" to "a" as indicated by black thick line in FIG. 119 is obtained.
Step 2030: Next, as shown in FIG. 120, bending point of the broken line at the vertex of a polygon of the premise drawing is slightly moved toward inner side of the premise, and the broken line is separated from the vertex of the polygon of the premise drawing.
FIG. 121 to FIG. 123 each represents a procedure to obtain a route from the starting point "b" to the end point "d" by the same method. Thus, it is possible according to the present system to directly search a route in the premise from a vector diagram of the premise even when the street data of the premise are not available.
As shown in FIG. 124, in case there are blind alleys such as "a", "b" and "c" in the premise map, by performing processing to remove excessive leaves (alleys) in advance, it is possible to reduce the amount of calculation in the street extraction processing in the sixth embodiment or in the route search processing by broken line approximation in the thirteenth embodiment.
14th Embodiment
In the pedestrian information providing system of the fourteenth embodiment, shape of intersections of the route for pedestrians are presented to pedestrians in a manner easily visible. The input/output control means 11 of the present system enlarges and displays the intersection by the procedure shown in FIG. 135.
Step 2010: Intersections along the searched route for pedestrian are extracted.
Step 2020: By referring to information such as town information recorded on the pedestrian map data 13, a map of the vicinity of the intersection is prepared, and this is attached on the extracted intersection.
FIG. 136 shows a route for pedestrians thus searched, and FIG. 137 represents enlarged maps each attached near each intersection on the map. By overlapping the enlarged view of intersection on the map, pedestrians can more easily understand the route to be followed than the case where these are displayed separately. The enlarged view of the intersection may be overlapped near the intersection on the map.
In this way, the pedestrian information providing system of the present invention can provide information useful for pedestrians in a manner easily understandable as explained in connection with the above embodiments. Various types of data as illustrated here are presented simply as examples. The invention is not limited to these examples, and various modifications and additions can be made. For example, a place of a bench for elderly people may be added as attribute of the street data, and more elaborate route searching information can be provided for elderly people.
In the embodiments described above, description has been given on the terminal equipment on the user side, provided with an arrangement of a pedestrian information processing unit 11, which reads the pedestrian map data 13 stored in a storage unit at the center and performs a predetermined processing and displays the result of the processing to the screen of the terminal equipment, while it may be designed in such manner that a storage unit with pedestrian map data recorded may be incorporated in advance in the user terminal, i.e. the portable terminal equipment. In this case, wireless communication between the center and the portable terminal equipment is not required.
As it is evident from the above description, upon request from the user, who is a pedestrian, the pedestrian information providing system of the present invention can execute searching of the corresponding map and route searching at high speed and can provide various types of information useful for pedestrians and suitable for walking condition. Also, it is possible to provide guidance information for underground shopping centers, buildings, intersections or contour roads in a manner easily understandable for pedestrians. Further, it is possible to provide information quickly to the portable terminal equipment because the amount of data transfer can be reduced.
BRIEF DESCRIPTION OF THE DRAWINGS
FIG. 1 shows a first embodiment of a pedestrian information providing system according to the present invention;
FIG. 2 is a block diagram of a means for searching a route for pedestrians;
FIG. 3 is a block diagram of a means for searching map data for pedestrians;
FIG. 4 represents a table of block and street relating to a pedestrian area and a non-pedestrian area;
FIG. 5 represents conceptual drawings relating to classification of non-pedestrian area;
FIG. 6 represents a basic conceptual drawing of a map for pedestrians;
FIG. 7A is a block diagram of a pedestrian area;
FIG. 7B is a block diagram of a non-pedestrian area;
FIG. 8 is a block diagram of a block, which comprises elements of areas;
FIG. 9 represents examples of pedestrian area data;
FIG. 10 shows a basic block diagram of a map data for pedestrians and index groups;
FIG. 11 represents an example of name search tree;
FIG. 12 represents an example of an address search tree;
FIG. 13 is an example of a map-area correspondence table;
FIG. 14 is an example of a town table;
FIG. 15 is a flow chart of a corresponding data searching means;
FIG. 16 is a flow chart of a means for searching address corresponding data;
FIG. 17 shows an example of input data in the address corresponding data means;
FIG. 18 is a flow chart of a means for searching latitude/longitude corresponding data;
FIG. 19 shows an example of input data in a latitude/longitude corresponding data means;
FIG. 20 shows an example of block data;
FIG. 21 is a flow chart of a means for searching name corresponding data;
FIG. 22 shows an example of input data in the name corresponding data means;
FIG. 23 is a flow chart of a means for searching the nearest data;
FIG. 24 shows an example of input data in a means for searching the nearest data;
FIG. 25 is a flow chart in an attribute determining means;
FIG. 26 is an example of input data in the attribute determining means;
FIG. 27 represents a user category table;
FIG. 28 represents a weather and time category table;
FIG. 29 represents a table showing priority rank of street attributes determined;
FIG. 30 is a flow chart of the attribute determining means using a neural net;
FIG. 31 shows an example of input values of the neural net;
FIG. 32 shows examples of weight constants of input/output of the neural net;
FIG. 33 shows examples of output values of the neural net;
FIG. 34 is a flow chart in a means for searching a route between two geographical points;
FIG. 35 is a conceptual drawing in the route searching between two geographical points;
FIG. 36 shows an example of an input data in the route searching between two geographical points;
FIG. 37A, FIG. 37B and FIG. 37C each represents examples of area data used in the route searching between two geographical points;
FIG. 38A, FIG. 38B and FIG. 38C each represents continuation of examples of area data used for the route searching between two geographical points;
FIG. 39A and FIG. 39B each represents examples of block data used in the route searching between two geographical points;
FIG. 40A and FIG. 40B each represents continuation of examples of block data used in the route searching between two geographical points;
FIG. 41A and FIG. 41B each represents continuation of examples of block data used in the route searching between two geographical points;
FIG. 42A and FIG. 42B each represents examples of street data used in the route searching between two geographical points;
FIG. 43A and FIG. 43B each represents continuation of street data used in the route searching between two geographical points;
FIG. 44A and FIG. 44B each represents continuation of examples of street data used in the route searching between two geographical points;
FIG. 45A and FIG. 45B each represents continuation of examples of street data used in the route searching between two geographical points;
FIG. 46A and FIG. 46B each represents continuation of street data used in the route searching between two geographical points;
FIG. 47A and FIG. 47B each represents continuation of examples of street data used in the route searching between two geographical points;
FIG. 48A and FIG. 48B each represents continuation of examples of street data used in the route searching between two geographical points;
FIG. 49 is a conceptual drawing in the route searching in case one of the two geographical points is under the ground;
FIG. 50 represents an example of input data in the route searching in case one of the two geographical points is under the ground;
FIG. 51 is a conceptual drawing in the route searching in case one of the two geographical points is under the ground and the other is in a building;
FIG. 52 is a conceptual drawing in the route searching in case one of the two geographical points is in a building;
FIG. 53 shows an example of input data in the route searching in case one of the two geographical points is under the ground and the other is in a building;
FIG. 54 is a flow chart in the route searching means in case there are two or more destinations;
FIG. 55 shows examples of input data in the route searching in case there are two or more destinations;
FIG. 56 is a conceptual drawing in the route searching in case there are two or more destinations;
FIG. 57 is a flow chart in the route searching means in case two or more transportation means are used;
FIG. 58 shows an example of input data in the route searching in case two or more transportation means are used;
FIG. 59 is a conceptual drawing of a route from departure point to the nearest station in the route searching in case two or more transportation means are used;
FIG. 60 is a flow chart for a pedestrian time simulation means;
FIG. 61 shows an example of input data in the pedestrian time simulation;
FIG. 62 shows examples of output data in the pedestrian time simulation;
FIG. 63 is a flow chart in a pedestrian scheduling means;
FIG. 64 shows examples of input data in the pedestrian scheduling;
FIG. 65 is a flow chart in a transportation determining means;
FIG. 66 shows an example of input data in the determination of transportation means;
FIG. 67 represents an example of bus schedule used in the determination of transportation means;
FIG. 68 shows an example of output data in the transportation determining means;
FIG. 69 shows an example of output data in the transportation determining means;
FIG. 70 is a flow chart of a pedestrian map data generating means for generating map data for pedestrians from a road map data;
FIG. 71 is a schematical drawing of a first step to generate map data for pedestrians from a road map data;
FIG. 72 is a schematical drawing of a second step to generate a map data for pedestrians from a road map data;
FIG. 73 is a schematical drawing of a third step to generate a map data for pedestrians from a road map data;
FIG. 74 shows an example of road map data;
FIG. 75A-FIG. 75C each represents examples of map data for pedestrians;
FIG. 76 shows other examples of the prepared map data for pedestrians;
FIG. 77 shows examples of blocks for the prepared map data for pedestrians;
FIG. 78 shows examples of streets in the prepared map data for pedestrians;
FIG. 79 shows other examples of streets in the prepared map data for pedestrians;
FIG. 80 is a flow chart of means for generating pedestrian map data for generating map data for pedestrians from street map data in the second embodiment;
FIGS. 81A to 81D represents first to fourth steps respectively for generating pedestrian map data from street map data by the method of the second embodiment;
FIG. 82 shows examples of data of map of numerical values;
FIG. 83 shows examples of road data in an area of map data for pedestrians;
FIG. 84 shows examples of the prepared map data for pedestrians;
FIG. 85 is a flow chart showing procedure of route searching means for pedestrians for searching route with priority on contour road in a ninth embodiment;
FIG. 86 is a schematical map for explaining route searching with priority on contour road;
FIG. 87 is a drawing to show results of route searching with priority on contour road;
FIG. 88 shows examples of data of the results of route searching with priority on contour road;
FIG. 89 is a flow chart showing procedure of input/output control means for displaying icons in the ninth embodiment;
FIG. 90 shows examples of icon display;
FIG. 91 shows a deformed map of the vicinity of a departure point;
FIG. 92 shows a deformed map of the vicinity of an arrival point;
FIG. 93 is a flow chart showing procedure of input/output control means for providing deformed display using polynomial function in a tenth embodiment;
FIG. 94 shows a map before deforming;
FIG. 95 represents a map showing results of route searching;
FIG. 96 represents a map with intersections extracted;
FIG. 97 represents a map with characteristic points extracted;
FIG. 98 represents a map to show deformed results of links having interpolation point;
FIG. 99 represents a map showing a route on a deformed map;
FIG. 100 shows an example of data of output results;
FIG. 101 is a flow chart showing procedure of input/output control means for providing deformed display using moving average method in an eleventh embodiment;
FIG. 102 shows a map before deforming;
FIG. 103 shows a deformed map;
FIG. 104 represents a map showing a route on the deformed map;
FIG. 105 is a flow chart showing procedure of input/output control means for preparing a side view of a twelfth embodiment;
FIG. 106 is a schematical drawing of a premise;
FIG. 107 is a schematical drawing to show information of street in a premise by broken line;
FIG. 108 is a drawing to show a premise from lateral side;
FIG. 109 is a drawing to show a platform in a station from lateral side;
FIG. 110 represents another drawing to show a platform in a station from lateral side;
FIG. 111 is a flow chart showing procedure of pedestrian map data generating and editing means for extracting streets from a premise vector drawing in a sixth embodiment;
FIG. 112 shows an example of a map of a premise;
FIG. 113 is a Voronoi diagram;
FIG. 114 represents a drawing, in which line segments in contact with sides of a premise are deleted;
FIG. 115 represents a drawing, in which excessive line segments are deleted;
FIG. 116 is a drawing for street data picked up;
FIG. 117 is a flow chart to show procedure of a pedestrian route searching means for searching a route from a premise vector drawing in a thirteenth embodiment;
FIG. 118 shows an example of a premise drawing;
FIG. 119 represents a drawing of a route obtained by broken line approximation;
FIG. 120 is a drawing of a corrected route;
FIG. 121 shows an example of a premise drawing;
FIG. 122 is a drawing of a route obtained by broken line approximation;
FIG. 123 is a drawing of a corrected route;
FIG. 124 shows an example of a premise drawing;
FIG. 125 is a flow chart to show procedure of pedestrian map data generating and editing means for preparing pedestrian map data of a seventh embodiment;
FIG. 126 is a drawing to show contour coordinate and street block in a road map in a pedestrian area before correction;
FIG. 127 is a drawing to show result by adapting convex closure calculation;
FIG. 128 is a drawing to show a corrected pedestrian area;
FIG. 129 is a flow chart showing a second correcting procedure of pedestrian map data;
FIG. 130 is a drawing of the result by adapting the second correcting procedure;
FIG. 131 is a drawing to show a pedestrian area corrected by the second correcting procedure;
FIG. 132 is a flow chart showing a third correcting procedure of the pedestrian map data;
FIG. 133 is a drawing of the result by adapting a third correcting procedure;
FIG. 134 is a drawing to show a pedestrian area corrected by the third correcting procedure;
FIG. 135 is a flow chart to show procedure of input/output control means for performing intersection enlarged display processing in a fourteenth embodiment;
FIG. 136 is a drawing to show the result of route searching;
FIG. 137 is a drawing to show display example of the results of route searching;
FIG. 138 is a flow chart to show operating procedure of the pedestrian map data generating and editing means in the third embodiment;
FIGS. 139A and 139B are conceptual illustrations of a map for pedestrian generated by the pedestrian map data generating and editing means;
FIGS. 140A to 140C represents illustrations a to explain generating operation of the pedestrian map data generating and editing means;
FIG. 141 is a flow chart to show operating procedure of the pedestrian map data generating and editing means in the fourth embodiment;
FIG. 142 represents conceptual drawings for the pedestrian map generated by the pedestrian map data generating and editing means;
FIGS. 143A to 143C represent drawings to explain generating operation of the pedestrian map data generating and editing means;
FIG. 144 is a flow chart to show operating procedure of the pedestrian map data generating and editing means of the fifth embodiment;
FIG. 145 represents a drawing to explain generating operation of the pedestrian map data generating and editing means;
FIG. 146 is a partial enlarged view of the above explanatory drawing;
FIG. 147 is an explanatory drawing to explain a map data generated by the pedestrian map data generating and editing means; and
FIG. 148 is a block diagram to show an arrangement of the pedestrian map data generating and editing means of the eighth embodiment.
FIELD OF THE INVENTION
The present invention relates to a system for providing visible map information to pedestrians, and in particular, to a pedestrian information providing system for providing map data corresponding to information such as an address or latitude and longitude already inputted, and also for providing a route to walk to a destination in a manner visible to pedestrians.
BACKGROUND ART
A number of patent applications have been filed on navigation systems for automotive vehicles, while there have been very few applications, which proposed information providing system for providing map data and various other information for pedestrians. One of the systems for providing map information for pedestrians is proposed as "Portable Map Display System" in a Japanese Patent No.1895897 (Patent Application Publication JP-B-6-19276). This is a system which provides pedestrians with route information obtained from a road map.
Also, in the reference "Proposal of a Portable Information Providing System for Personal Trip", (Shimamura, Y. et al.: Journal of Association of Image Electronics, Vol. 23, No. 5, 1994, pp 422-427), a system is proposed, which searches a present position of a pedestrian on road and displays the position in a map on screen. This system is designed in such manner that, each time the pedestrian passes through an intersection, the user clicks advancing direction by selecting an intersection from configuration of the intersections displayed on screen. By repeating this procedure, walking speed of the pedestrian is calculated from the distance between the intersection and the time required. Also, the present position of the pedestrian is detected from amount of moving of the pedestrian and advancing direction at the intersection, and a doll icon is displayed at the present position in a map displayed on screen.
As a system for providing information by searching a route, various types of route guidance systems have been proposed, for example, in "Route Guidance System for Pedestrians", (Kato M., Association of Electronic Information and Communication, System Branch, Nationwide Meeting, 632), "Optimal Route Information Providing System in Urban Transportation" (Kato M., Association of Information Processing, Vol. 28, No. 3, pp. 307-314), etc.
In the conventional type system, however, pedestrian route is searched according to a road map, and pedestrian route well-matched to actual walking condition is not always searched, e.g. walking over pedestrians' crossing or footbridge when walking across a road.
Also, some pedestrians need to avoid a route with stairway, or in case of a woman, a road with good street light must be selected during nighttime. Thus, strict selection must be made on route searching depending on the conditions of each pedestrian. In the conventional system, sufficient analysis is not performed on pedestrian conditions, and route selection well-matched to the conditions of pedestrians is not always carried out.
Also, the conventional system has problems in that it takes much time to solve the problems relating to the route, and it is not possible to generate the information to be offered at high speed.
Further, there are the following problems:
In the conventional system, which displays route information near the present position of the pedestrian, the provided route guidance is based on a road map, and display of guidance information such as intersection information is not easily understandable to the pedestrians.
Also, the conventional system does not have route data such as premise, underground shopping center, information inside a building, station platform, etc., and route guidance cannot be provided for pedestrians on these places.
In case route information is provided to portable terminal equipment of the user, much time is required for data transfer because there are a plenty of amount of data in map data. For this reason, it is not possible to simultaneously display a plurality of geographical information on the screen of the portable terminal equipment.
Also, the data base to be used when providing route information for pedestrians must be prepared from data such as road map or street map currently used. In order to have more effective system to provide pedestrian information, the data base must be prepared automatically and efficiently.
SUMMARY OF THE INVENTION
To solve the above problems, it is an object of the present invention to provide a pedestrian information providing system, by which it is possible to generate pedestrian route information well-matched to actual walking conditions at high speed, with much consideration on conditions of pedestrians and walking conditions, and to present the information to the users.
To attain the above object, the pedestrian information providing system of the present invention comprises a storage unit for storing pedestrian map data and a pedestrian information processing unit for acquiring necessary pedestrian map data from the storage unit according to the input from the user and for generating the information to be offered, whereby the pedestrian map data comprises a data of an area divided to a non-pedestrian area where pedestrians cannot walk freely and a pedestrian area where pedestrians can walk freely, a data of street where pedestrians can walk in each of the areas, and a data of block where pedestrians cannot walk in each of the areas, and it has a data structure, which is specifically prepared for pedestrians and in which pedestrians are categorized. Also, there are provided various types of indices and a table to make it easier to search pedestrian map data at high speed.
Also, the data of the street is provided with attribute data such as geographical information of the street, information on attached facilities arranged on roadside, and time-related information indicating conditions which vary over time on the street. In the searching of pedestrian route, the attributes of the street to be selected are determined according to the inputted pedestrian condition and walking condition.
With the arrangement as described above, useful information relating to pedestrian route can be generated and presented at high speed, and pedestrian route suitable for pedestrians and walking condition can be selected and offered to the users.
The system for providing necessary information to pedestrians according to claim 1 of the present invention comprises a storage unit for storing pedestrian map data, and a pedestrian information processing unit for acquiring necessary pedestrian map data from the storage unit according to the input from a user and for generating information to be offered, whereby the storage unit stores a data of area divided to a non-pedestrian area where pedestrians cannot walk freely and a pedestrian area where pedestrians can walk freely, a data of street where pedestrians can walk in each of the areas, a data of block where pedestrians cannot walk in each of the areas, an index for searching block or street from address or name, and a table for describing an area belonging to each section on a map, and the pedestrian information processing unit comprises an input/output control means for receiving input from the user, a pedestrian map data searching means for acquiring pedestrian map data suitable for inputting from the storage unit, and a pedestrian route searching means searching a route for pedestrian using the acquired data, and pedestrian route suitable for pedestrians and walking conditions and useful route information and information such as map data of the vicinity of destination and departure point can be quickly provided to the users.
In the system according to claim 2 of the present invention, the data of area comprises an area ID, an area ID of an adjacent area, a data of entrance and exit to and from the adjacent area, IDs of blocks and streets belonging to the areas, and a data indicating positions of the areas on a map. The data of block comprises a block ID, a block name, an ID of the belonging area, an ID of the street, to which an entrance of the block is connected, an address of the block, and a data showing position of a block on a map. The data of street comprises street ID, street name ID of the belonging area, attribute data peculiar to the street, connecting information between streets, address of street, and data showing positions of the starting point and the end point of the street on a map. It is possible to search a pedestrian route using these data.
In the system according to claim 3 of the present invention, the data of the street comprises geographic information of the street, information on attached facilities provided on roadside, and time-related information to indicate conditions varying over time of the street as the inherent attribute data. Having these attribute data, it is possible to search a pedestrian route suitable for pedestrians and to provide useful information relating to attached facilities on the street.
In the system according to claim 4 of the present invention, in case the block is a building, the data of the block comprises 3-dimensional information for displaying the building 3-dimensionally. It is possible to provide the users with 3-dimensional simulation for displaying a building on a map 3-dimensionally.
The system according to claim 5 of the present invention is the same as the system according to claim 1, wherein a part of the block has an element of an area in it. By setting a region or a floor where pedestrians can walk as a pedestrian area and a space partitioned from the floor as a non-pedestrian area in a block of underground shopping center or a building, it is possible to perform route searching on these areas.
The system according to claim 6 of the present invention is the same as the system according to claim 1, wherein the pedestrian map data searching means comprises an address corresponding data searching means for searching data of block or street using the index from the inputted address. It is possible to search data of the corresponding block or street from an address at high speed.
The system according to claim 7 of the present invention is the same as the system according to claim 1, wherein the pedestrian map data searching means comprises a name corresponding data searching means for searching data of block or street using the index from the inputted name. It is possible to search data of corresponding block or street from the name at high speed.
In the system according to claim 8 of the present invention, the pedestrian map data searching means comprises a latitude/longitude corresponding data searching means for searching a block corresponding to a latitude/longitude data for calculating a section on a map from an inputted latitude/longitude data, searches an area belonging to the section using the table, searches an area corresponding to the latitude/longitude data from the area, and searches a block corresponding to the latitude/longitude data. It is possible to search data of the corresponding block from latitude/longitude data at high speed.
In the system according to claim 9 of the present invention, the storage unit stores a town table describing various types of objects included in each area and blocks where the objects are present as classified for each area, and there is provided a nearest information searching means where the pedestrian map data searching means searches a block where the inputted objects are present by extending object area to be searched to adjacent area using the town table. It is possible to search position of the nearest object at high speed and to present it to the user.
In the system according to claim 10 of the present invention, the pedestrian route searching means comprises an attribute determining means for determining attribute of a route to be selected according to categories of pedestrian, time zone or weather inputted. By taking the attributes into account, it is possible to select and present a route suitable for the purpose and the condition of the user.
In the system according to claim 11 of the present invention, the attribute determining means determines the attribute using a neural net. It is possible to adequately determine attributes of the street to be selected.
In the system according to claim 12 of the present invention, the pedestrian route searching means comprises a point-to-point route searching means for searching an optimal route from a departure point to a destination by giving consideration on the attribute determined by the attribute determining means. It is possible to search a pedestrian route suitable for pedestrians and walking conditions and to present it to the user.
In the system according to claim 13 of the present invention, a point-to-point route searching means searches an optimal route between areas from the area of the departure point to an area of the destination, and then searches an optimal route of a street in each area along the optimal route by giving consideration on the attributes determined by the attribute determining means. It is possible to search a pedestrian route suitable for pedestrians and walking conditions at high speed.
In the system according to claim 14 of the present invention, the pedestrian route searching means comprises a route searching means between a plurality of geographical points for searching an optimal route to go round from the departure point to a plurality of destinations by giving consideration on the attributes determined by the attribute determining means. It is possible to search a pedestrian route suitable for pedestrians and walking conditions and to present it to the user.
In the system according to claim 15 of the present invention, a transportation means data relating to lines and schedule of transportation means are stored in the storage unit, and the pedestrian route searching means comprises a route searching means for searching a route using transportation means for searching the nearest station of the departure point and the destination, searches an optimal route from the departure point and the destination to the nearest station by giving consideration on the attributes determined by the attribute determining means, and searches an optimal line from the station nearest to the departure point to the station nearest to the destination using the transportation means data. It is possible to provide the user with an optimal route in case the user follows the route by walking and using transportation means.
In the system according to claim 16 of the present invention, the pedestrian information processing unit comprises a scheduling means for searching an optimal route after determining an order to visit destinations, for which visiting time is already determined, a visiting order to all destinations including a destination, for which visiting time is not determined, is determined, and an optimal route for visiting the destinations is searched. It is possible to set up a schedule to visit destination with the visiting time already determined according to the schedule and to visit all destinations efficiently and to present it to the user.
In the system according to claim 17 of the present invention, the pedestrian information processing unit comprises a time simulation means for calculating time required from a departure point to a destination when a searched route is followed. It is possible to provide the user with information on time of arrival at the destination, or time of departure to arrive at the destination as scheduled.
In the system according to claim 18 of the present invention, the pedestrian information processing unit comprises a transportation means determining means, whereby a route from a departure point to a destination using all transportation means is searched, and by comparing the time required form the departure point to the destination through each of these routes, a transportation means to be used is determined. It is possible to search a route, by which the user can reach the destination within short time utilizing a transportation means and which is suitable for pedestrians and walking conditions, and to present it to the user.
In the system according claim 19 of the present invention, there is provided a pedestrian map data generating means for preparing the pedestrian map data from a road map. It is possible to prepare a pedestrian map data using a currently available road map and supplementarily overlapping a street map on it.
In the system according to claim 20 of the present invention, there is provided a pedestrian map data generating means for preparing the pedestrian map data from a street map. It is possible to prepare a pedestrian map data by using data of a currently available street map and by supplementarily overlapping a road map on it.
In the system according to claim 21 of the present invention, the pedestrian route searching means searches with priority a contour street on outer periphery of the pedestrian area as a route for pedestrians. It is possible to provide route guidance by putting importance on larger streets easily understandable for pedestrians.
In the system according to claim 22 of the present invention, streets of a pedestrian area are divided to contour streets and streets within the area and are stored in the storage unit, and the contour streets are sequentially arranged clockwise or counterclockwise from a starting point. It is possible to efficiently perform route searching with priority on contour street as described in claim 21.
In the system according to claim 23 of the present invention, guidance is provided on a route searched by the pedestrian route searching means by associating with advancing direction of vehicles. It is possible to clearly indicate advancing direction for pedestrians without indicating landmarks or other unnecessary objects.
In the system according to claim 24 of the present invention, a route searched by the pedestrian route searching means is converted to a route guidance information in icons displayed by characters and is offered. By providing characters to match the information serving as landmark on the terminal equipment, it is possible to provide route guidance with the data transfer amount reduced.
In the system according to claim 25 of the present invention, a route searched by the pedestrian route searching means is deformed and offered. It is possible to reduce data transfer amount by deforming.
In the system according to claim 26 of the present invention, the deforming processing is performed using a polynomial function. By simply transferring coordinates and coefficient of the starting point and the end point of the function to the terminal equipment, it is possible reproduce the deformed route map at the terminal equipment.
In the system according to claim 27 of the present invention, the deforming processing is performed by calculating moving average of coordinates of the searched route. By transferring coordinates of a plurality of geographical points obtained by moving average method to the terminal equipment, it is possible to reproduce the deformed route map at the terminal equipment.
In the system according to claim 28 of the present invention, guidance is provided for a route in a premise searched by the pedestrian route searching means using a side view of the premise as seen from the route. It is possible to provide route guidance in easily understandable manner.
In the system according to claim 29 of the present invention, graphic information and attribute information relating to each of facilities in the premise are stored in the storage unit. In case route guidance is provided by means of the side view described in claim 28, graphic data such as notice board, guide board, escalator, elevator, toilet, coin-operated locker, telephone box, hydrant, stairway, emergency exit, etc. are read from the storage unit and are presented.
In the system according to claim 30 of the present invention, there is provided a pedestrian map data generating means for preparing street information in a premise using a Voronoi diagram. It is possible to efficiently extract the street from a vector diagram to indicate configurations in the premise.
In the system according to claim 31 of the present invention, the pedestrian route searching means searches a route in a premise by broken line function approximation using a map data of the premise. Even when street data are not available, it is possible to search a route.
In the system according to claim 32 of the present invention, the invention described in one of claims 28 to 31 is applied to a premise such as underground shopping center, a building or a station, and it is possible to provide route guidance at these places in a manner easily understandable.
In the system according to claim 33 of the present invention, the pedestrian map data generating means picks up a region of pedestrian area and contour street of the region from a road map, generates data of the pedestrian area by incorporating information of street block in the pedestrian area from a street map, and corrects the data of the contour street to follow the street block. By correcting deviation, which may occur in a combination of the data from a road map with the data from a street map, it is possible to obtain a data, which is closer to actual conditions.
In the system according to claim 34 of the present invention, the pedestrian map data generating means searches position after correction of the contour street using convex closure method. It is possible to provide a route smoothly in case of route searching.
In the system according to claim 35 of the present invention, the pedestrian map data generating means searches position after correction of the contour street by sequentially connecting vertexes of a street block where perpendicular lines to the nearest contour street can be drawn without crossing borderline of the street block. It is possible to correct to a condition closer to the actual conditions than the method of claim 34.
In the system according to claim 36 of the present invention, the pedestrian map data generating means searches position after correction of the contour street by sequentially connecting borderlines of the outermost street block, which cross a straight line extending from the center of the pedestrian area. Even in case configuration of a street block is complicated, it is possible to correct the position of a contour street to a condition closer to actual conditions.
In the system according to claim 37 of the present invention, the pedestrian route searching means provides an enlarged view of an intersection along the searched route by overlapping the enlarged view on a map to show the route. Because the route and the enlarged view of intersections are displayed at the same time, the pedestrian can understand which route should be followed without taking wrong advancing direction.
The system according to claim 38 of the present invention is the same as the pedestrian information providing system according to claim 35 or 36, wherein vertexes or borderlines of the street block to find out a position after correction are limited to vertexes or borderlines within a predetermined distance from the contour street, and the distance is changed according to road width of the contour street. It is possible to perform correction more accurately and to obtain street information with less error.
In the system according to claim 39 of the present invention, the pedestrian map data generating means forms as many nodes as equal to number (degree) of links connected to the nodes from each node on a basic road on a road map, each of the formed nodes is connected only with two adjacent links forming different internal angles within the link, and a pedestrian area is generated by following the formed nodes. It is possible to generate a pedestrian route network in quick and easy manner.
In the system according to claim 40 of the present invention, the pedestrian map data generating means performs route searching for all bearings from an arbitrary node on a road map, and a pedestrian area is generated by grouping nodes and links of all roads where each of tips of the route searching passes through until the basic road is reached. With special attention on connecting relation of all-road nodes on a road map, pedestrian area is generated by route searching, and it is possible to generate pedestrian map data even when attribute information of nodes such as degree of basic road is not prepared satisfactorily.
In the system according to claim 41 of the present invention, the pedestrian map data generating means calculates flow rate of pedestrians in each link with the pedestrian area, and in case there is a link where the flow rate exceeds a predetermined value, the link is considered as a street going over a non-pedestrian area, and a non-pedestrian area is generated within the pedestrian area. Even when attribute information on a road map is not prepared satisfactorily, it is possible by this method to recognize a bridge, i.e. a street going over a non-pedestrian area, in a pedestrian map by this method.
In the system according to claim 42 of the present invention, the pedestrian map data generating means generates a pedestrian map data by combining several of the generating methods described in claims 19, 20, 30, 33, 34, 35, 36, 38, 39, 40 and 41. By combining these methods, it is possible to efficiently generate a pedestrian map with less error.
The invention of claim 43 provides a storage unit for storing pedestrian map data, and it is a component element to constitute a pedestrian information providing system together with a pedestrian information processing unit, whereby the storage unit stores a data of an area divided to a nonpedestrian area where pedestrians cannot walk freely and a pedestrian area where pedestrians can walk freely, a data of street where pedestrians can walk within each of the areas, a data of block where pedestrians cannot walk in each of the areas, an index for searching the block or the street from an address or a name, and a table describing the areas belonging to each section on a map. It is possible to provide the user with information such as useful route information or information on adequate pedestrian route suitable for pedestrians and walking conditions, or information such as map data of the vicinity of destination and departure point via the pedestrian information processing unit.
The invention of claim 44 provides a pedestrian information processing unit, which is a component element to constitute a pedestrian information providing system together with a pedestrian map data storage unit, whereby the pedestrian information processing unit comprises an input/output control means for receiving input from the user, a pedestrian map data searching means for acquiring a pedestrian map data suitable for inputting from the storage unit, and a pedestrian route searching means for searching a route for pedestrians using the data acquired, and a pedestrian map data required is acquired from the storage unit according to input instruction from the user and an information to be offered is generated. Based on the information from the pedestrian map data storage unit, it is possible to provide the user with information such as useful route information or information on adequate pedestrian route suitable for pedestrians and walking conditions and also with information such as map data of the vicinity of destination and departure point.
Patent Citations
Cited PatentFiling datePublication dateApplicantTitle
US4991126 *May 13, 1987Feb 5, 1991Lothar ReiterElectronic-automatic orientation device for walkers and the blind
US5470233 *Mar 17, 1994Nov 28, 1995Arkenstone, Inc.System and method for tracking a pedestrian
US5842145 *Jul 8, 1996Nov 24, 1998Zimmer; John S.Apparatus for providing individualized maps to pedestrians
US5908465 *Sep 27, 1996Jun 1, 1999Aisin Aw Co., Ltd.Navigation system for displaying a structure-shape map
JPH0619276A * Title not available
JPH0868643A * Title not available
JPH0962998A * Title not available
JPH08202982A * Title not available
JPH09220266A * Title not available
Referenced by
Citing PatentFiling datePublication dateApplicantTitle
US6349261 *Mar 7, 2000Feb 19, 2002Navitime Japan Co., Ltd.Method and apparatus for determining route within traffic network
US6374182Mar 22, 2001Apr 16, 2002Navigation Technologies Corp.Method and system for providing walking instructions with route guidance in a navigation program
US6421606 *Aug 14, 2000Jul 16, 2002Toyota Jidosha Kabushiki KaishaRoute guiding apparatus and medium
US6594581 *Feb 27, 2002Jul 15, 2003Kabushiki Kaisha ToshibaRoute guidance apparatus and method
US6622088Mar 2, 2001Sep 16, 2003Hill-Rom Services, Inc.Ambulatory navigation system
US6622089 *Feb 27, 2002Sep 16, 2003Kabushiki Kaisha ToshibaRoute guidance apparatus and method
US6718262 *Mar 6, 2003Apr 6, 2004Kabushiki Kaisha ToshibaRoute guidance apparatus and method
US6820005 *Nov 12, 2003Nov 16, 2004Kabushiki Kaisha ToshibaRoute guidance apparatus and method
US6826477 *Apr 23, 2001Nov 30, 2004Ecole Polytechnique Federale De Lausanne (Epfl)Pedestrian navigation method and apparatus operative in a dead reckoning mode
US6917879Aug 25, 2004Jul 12, 2005Kabushiki Kaisha ToshibaRoute guidance apparatus and method
US6920393Jul 10, 2003Jul 19, 2005Kabushiki Kaisha ToshibaRoute guidance apparatus and method
US6952647Aug 23, 2004Oct 4, 2005Kabushiki Kaisha ToshibaRoute guidance apparatus and method
US7002551Sep 25, 2002Feb 21, 2006Hrl Laboratories, LlcOptical see-through augmented reality modified-scale display
US7057531Jan 12, 2004Jun 6, 2006Anthony OkunugaSystem for indicating approaching vehicle speed
US7085650 *Oct 6, 2004Aug 1, 2006Gis Data Resources, Inc.System and method of geospatially mapping topological regions and displaying their attributes
US7149626Jun 30, 2004Dec 12, 2006Navteq North America, LlcMethod of operating a navigation system
US7162363Dec 22, 2004Jan 9, 2007Chinitz Leigh MTravel route mapping
US7248965 *Apr 20, 2004Jul 24, 2007Hitachi, Ltd.Map information supply device for mobile units
US7248966Oct 19, 2006Jul 24, 2007Navteq North America, LlcMethod of operating a navigation system
US7266447Jun 30, 2004Sep 4, 2007Navteq North America, Llc.Method of collecting information for a geographic database for use with a navigation system
US7421341Jun 30, 2004Sep 2, 2008Navteq North America, LlcMethod of collecting information for a geographic database for use with a navigation system
US7487041Apr 26, 2007Feb 3, 2009Navteq North America, LlcMethod of collecting information for a geographic database for use with a navigation system
US7493390Jan 13, 2006Feb 17, 2009Microsoft CorporationMethod and system for supporting the communication of presence information regarding one or more telephony devices
US7561959Jul 29, 2008Jul 14, 2009Nauteq North America, LlcMethod of collecting information for a geographic database for use with a navigation system
US7653715Jan 30, 2006Jan 26, 2010Microsoft CorporationMethod and system for supporting the communication of presence information regarding one or more telephony devices
US7689621 *Nov 6, 2000Mar 30, 2010Navteq North America, LlcMulti-dimensional spatial index for a geographic database
US7739044Dec 18, 2008Jun 15, 2010Navteq North America, LlcMethod of collecting information for a geographic database for use with a navigation system
US7761226Jul 27, 2005Jul 20, 2010The United States Of America As Represented By The Secretary Of The NavyInteractive pedestrian routing system
US7848543 *Feb 5, 2004Dec 7, 2010Brainlab AgMethod and system for prediction and management of material and information transport in an organism
US7890509Dec 4, 2007Feb 15, 2011First American Real Estate Solutions LlcParcel data acquisition and processing
US7912637Jun 25, 2007Mar 22, 2011Microsoft CorporationLandmark-based routing
US7912638Apr 26, 2010Mar 22, 2011Navteq North America, LlcMethod of collecting information for a geographic database for use with a navigation system
US7917292Oct 16, 2007Mar 29, 2011Jpmorgan Chase Bank, N.A.Systems and methods for flood risk assessment
US7920964 *Aug 23, 2006Apr 5, 2011Xanavi Informatics CorporationNavigation apparatus and navigation processing method
US7941269Nov 11, 2008May 10, 2011Rialcardo Tice B.V. LlcNetwork-based navigation system having virtual drive-thru advertisements integrated with actual imagery from along a physical route
US7957871 *Sep 29, 2005Jun 7, 2011Hopstop.com, Inc.Methods and apparatuses for navigation in urban environments
US8000892Jun 12, 2007Aug 16, 2011Campus Destinations, Inc.Pedestrian mapping system
US8019537Feb 11, 2011Sep 13, 2011Navteq North America, LlcMethod of collecting information for a geographic database for use with a navigation system
US8023883Dec 28, 2005Sep 20, 2011The Directv Group, Inc.Method and apparatus for controlling handoffs in a mobile system
US8060297Dec 14, 2007Nov 15, 2011Microsoft CorporationRoute transfer between devices
US8077927Nov 17, 2006Dec 13, 2011Corelogic Real Estate Solutions, LlcUpdating a database with determined change identifiers
US8078594Jan 24, 2011Dec 13, 2011Corelogic Real Estate Solutions, LlcParcel data acquisition and processing
US8081801 *Aug 9, 2010Dec 20, 2011Hon Hai Precision Industry Co., Ltd.Device and method for controlling streetlights
US8090532Dec 14, 2007Jan 3, 2012Microsoft CorporationPedestrian route production
US8112770Jun 25, 2007Feb 7, 2012Microsoft CorporationProviding alternative content in a windowed environment
US8155882Jul 27, 2011Apr 10, 2012Navteq B.V.Method of collecting information for a geographic database for use with a navigation system
US8166392May 21, 2003Apr 24, 2012Microsoft CorporationMethod for automatically assigning priorities to documents and messages
US8175514Jan 22, 2007May 8, 2012The Directv Group, Inc.Method and apparatus for providing preauthorization for a mobile receiving device to access wireless networks
US8271310Jun 20, 2007Sep 18, 2012Microsoft CorporationVirtualizing consumer behavior as a financial instrument
US8406992Dec 17, 2010Mar 26, 2013Rialcardo Tice B.V. LlcNetwork-based navigation system having virtual drive-thru advertisements integrated with actual imagery from along a physical route
US8428859Dec 14, 2007Apr 23, 2013Microsoft CorporationFederated route production
US8473198Dec 14, 2007Jun 25, 2013Microsoft CorporationAdditional content based on intended travel destination
US8516507Jul 6, 2012Aug 20, 2013Microsoft CorporationProviding alternative content in a windowed environment
US8538918Dec 4, 2007Sep 17, 2013Corelogic Solutions, LlcSystems and methods for tracking parcel data acquisition
US8542884Nov 17, 2006Sep 24, 2013Corelogic Solutions, LlcSystems and methods for flood area change detection
US8543321 *Sep 25, 2009Sep 24, 2013Renault TrucksMethod for forecasting the evolution of the magnitude of a data for a vehicle journey
US20080004926 *Jun 30, 2006Jan 3, 2008Microsoft CorporationMethods and architectures for context-sensitive reminders and service facilitation
US20110153193 *Dec 22, 2009Jun 23, 2011General Electric CompanyNavigation systems and methods for users having different physical classifications
US20120016584 *Mar 24, 2009Jan 19, 2012Navitime Japan Co., Ltd.Route guiding system, route guiding server, and route guiding method
US20120179360 *Sep 25, 2009Jul 12, 2012Renault TrucksMethod for forecasting the evolution of the magnitude of a data for a vehicle journey
WO2001075741A1 *Mar 29, 2001Oct 11, 2001High Adventure Travel IncItinerary optimizer
Classifications
U.S. Classification701/533, 340/944, 701/433
International ClassificationG06Q50/10, G06Q10/00, G06Q30/06, G06Q50/00, G06Q50/30, G06T17/05, G09B29/00, G01C21/20, G06F19/00, G06T17/50, G06N3/00, G06F17/30, G06F15/18, G08G1/005, G09B29/10, B65G61/00, G01C21/00, G08G1/0968
Cooperative ClassificationG09B29/008, G01C21/20, G08G1/005, G01C21/3446, G09B29/106
European ClassificationG01C21/34B, G01C21/20, G09B29/10C, G08G1/005, G09B29/00C4C
Legal Events
DateCodeEventDescription
Nov 4, 2008FPExpired due to failure to pay maintenance fee
Effective date: 20080912
Sep 12, 2008LAPS
Mar 24, 2008REMI
Feb 4, 2004FPAY
Year of fee payment: 4
Mar 9, 1998ASAssignment
Owner name: MATSUSHITA ELECTRIC INDUSTRIAL CO., LTD., JAPAN
Free format text: ASSIGNMENT OF ASSIGNORS INTEREST;ASSIGNORS:SHIMADA, TAKANORI;ABE, AKIHIRO;KAMBE, NOBUHIRO;REEL/FRAME:009152/0953
Effective date: 19980120
|
__label__pos
| 0.671767 |
html5特效-用Canvas模拟可撕裂布料效果
html5 5年前 (2016) 工具猫
1,647 0
这是一款借助 Canvas 的强大绘图和动画功能模拟可撕裂布料的html5特效,完整源码下载链接: http://pan.baidu.com/s/1kVG0dfx 密码: 65d6
效果预览图:
html5特效-用Canvas模拟可撕裂布料效果
HTML5 Canvas 模拟可撕裂布料效果
index.html代码
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>HTML5 Canvas可撕裂布料效果</title>
<link rel="stylesheet" type="text/css" href="style.css" />
<style>
.top-banner {
background-color: #666;
}
a {
font-size: 13px;
}
#info {
position: absolute;
left: -1px;
top: 30px;
}
#c {
display: block;
margin: 60px auto 0;
}
</style>
</head>
<body>
<canvas id="c"></canvas>
<div id="info">
<p>
<br>- 使用鼠标可以拉扯
<br>
<br>- 右键可以切断布料
<br>
<br>
</p>
</div>
<script type="text/javascript" src="Cloth.js"></script>
</body>
</html>
style.css代码:
* {
margin: 0;
overflow: hidden;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
-o-user-select: none;
user-select: none;
}
body {
background: #F2F2F2;
}
#c {
display: block;
margin: 20px auto 0;
}
#info {
position: absolute;
left: -1px;
top: -1px;
width: auto;
max-width: 380px;
height: auto;
background: #f2f2f2;
border-bottom-right-radius: 10px;
border:1px solid #333;
}
#top {
background: #fff;
width: 100%;
height: auto;
position: relative;
border-bottom: 1px solid #eee;
}
p {
font-family: Arial, sans-serif;
color: #666;
text-align: justify;
font-size: 16px;
margin: 10px;
}
a {
font-family: sans-serif;
color: #444;
text-decoration: none;
font-size: 20px;
}
#site {
float: left;
margin: 10px;
color: #38a;
border-bottom: 1px dashed #888;
}
#site: hover {
color: #7af;
}
#close {
float: right;
margin: 10px;
}
#p {
font-family: Verdana, sans-serif;
position: absolute;
right: 10px;
bottom: 10px;
color: #167fc6;
border: 1px dashed #555;
padding: 4px 8px;
}
Cloth.js代码
var physics_accuracy = 3,
mouse_influence = 20,
mouse_cut = 5,
gravity = 1200,
cloth_height = 30,
cloth_width = 50,
start_y = 20,
spacing = 7,
tear_distance = 60;
window.requestAnimFrame =
window.requestAnimationFrame ||
window.webkitRequestAnimationFrame ||
window.mozRequestAnimationFrame ||
window.oRequestAnimationFrame ||
window.msRequestAnimationFrame ||
function (callback) {
window.setTimeout(callback, 1000 / 60);
};
var canvas,
ctx,
cloth,
boundsx,
boundsy,
mouse = {
down: false,
button: 1,
x: 0,
y: 0,
px: 0,
py: 0
};
var Point = function (x, y) {
this.x = x;
this.y = y;
this.px = x;
this.py = y;
this.vx = 0;
this.vy = 0;
this.pin_x = null;
this.pin_y = null;
this.constraints = [];
};
Point.prototype.update = function (delta) {
if (mouse.down) {
var diff_x = this.x - mouse.x,
diff_y = this.y - mouse.y,
dist = Math.sqrt(diff_x * diff_x + diff_y * diff_y);
if (mouse.button == 1) {
if (dist < mouse_influence) {
this.px = this.x - (mouse.x - mouse.px) * 1.8;
this.py = this.y - (mouse.y - mouse.py) * 1.8;
}
} else if (dist < mouse_cut) this.constraints = [];
}
this.add_force(0, gravity);
delta *= delta;
nx = this.x + ((this.x - this.px) * .99) + ((this.vx / 2) * delta);
ny = this.y + ((this.y - this.py) * .99) + ((this.vy / 2) * delta);
this.px = this.x;
this.py = this.y;
this.x = nx;
this.y = ny;
this.vy = this.vx = 0
};
Point.prototype.draw = function () {
if (this.constraints.length <= 0) return; var i = this.constraints.length; while (i--) this.constraints[i].draw(); }; Point.prototype.resolve_constraints = function () { if (this.pin_x != null && this.pin_y != null) { this.x = this.pin_x; this.y = this.pin_y; return; } var i = this.constraints.length; while (i--) this.constraints[i].resolve(); if (this.x > boundsx) {
this.x = 2 * boundsx - this.x;
} else if (this.x < 1) { this.x = 2 - this.x; } if (this.y > boundsy) {
this.y = 2 * boundsy - this.y;
} else if (this.y < 1) { this.y = 2 - this.y; } }; Point.prototype.attach = function (point) { this.constraints.push( new Constraint(this, point) ); }; Point.prototype.remove_constraint = function (lnk) { var i = this.constraints.length; while (i--) if (this.constraints[i] == lnk) this.constraints.splice(i, 1); }; Point.prototype.add_force = function (x, y) { this.vx += x; this.vy += y; }; Point.prototype.pin = function (pinx, piny) { this.pin_x = pinx; this.pin_y = piny; }; var Constraint = function (p1, p2) { this.p1 = p1; this.p2 = p2; this.length = spacing; }; Constraint.prototype.resolve = function () { var diff_x = this.p1.x - this.p2.x, diff_y = this.p1.y - this.p2.y, dist = Math.sqrt(diff_x * diff_x + diff_y * diff_y), diff = (this.length - dist) / dist; if (dist > tear_distance) this.p1.remove_constraint(this);
var px = diff_x * diff * 0.5;
var py = diff_y * diff * 0.5;
this.p1.x += px;
this.p1.y += py;
this.p2.x -= px;
this.p2.y -= py;
};
Constraint.prototype.draw = function () {
ctx.moveTo(this.p1.x, this.p1.y);
ctx.lineTo(this.p2.x, this.p2.y);
};
var Cloth = function () {
this.points = [];
var start_x = canvas.width / 2 - cloth_width * spacing / 2;
for (var y = 0; y <= cloth_height; y++) {
for (var x = 0; x <= cloth_width; x++) {
var p = new Point(start_x + x * spacing, start_y + y * spacing);
x != 0 && p.attach(this.points[this.points.length - 1]);
y == 0 && p.pin(p.x, p.y);
y != 0 && p.attach(this.points[x + (y - 1) * (cloth_width + 1)])
this.points.push(p);
}
}
};
Cloth.prototype.update = function () {
var i = physics_accuracy;
while (i--) {
var p = this.points.length;
while (p--) this.points[p].resolve_constraints();
}
i = this.points.length;
while (i--) this.points[i].update(.016);
};
Cloth.prototype.draw = function () {
ctx.beginPath();
var i = cloth.points.length;
while (i--) cloth.points[i].draw();
ctx.stroke();
};
function update() {
ctx.clearRect(0, 0, canvas.width, canvas.height);
cloth.update();
cloth.draw();
requestAnimFrame(update);
}
function start() {
canvas.onmousedown = function (e) {
mouse.button = e.which;
mouse.px = mouse.x;
mouse.py = mouse.y;
var rect = canvas.getBoundingClientRect();
mouse.x = e.clientX - rect.left,
mouse.y = e.clientY - rect.top,
mouse.down = true;
e.preventDefault();
};
canvas.onmouseup = function (e) {
mouse.down = false;
e.preventDefault();
};
canvas.onmousemove = function (e) {
mouse.px = mouse.x;
mouse.py = mouse.y;
var rect = canvas.getBoundingClientRect();
mouse.x = e.clientX - rect.left,
mouse.y = e.clientY - rect.top,
e.preventDefault();
};
canvas.oncontextmenu = function (e) {
e.preventDefault();
};
boundsx = canvas.width - 1;
boundsy = canvas.height - 1;
ctx.strokeStyle = '#888';
cloth = new Cloth();
update();
}
window.onload = function () {
canvas = document.getElementById('c');
ctx = canvas.getContext('2d');
canvas.width = 560;
canvas.height = 350;
start();
};
版权声明:工具猫 发表于 2016-12-14 9:40:34。
转载请注明:html5特效-用Canvas模拟可撕裂布料效果 | 工具猫
|
__label__pos
| 0.999864 |
Documentation
You are viewing the documentation for the 2.5.5 release in the 2.5.x series of releases. The latest stable release series is 2.8.x.
§Handling asynchronous results
§Make controllers asynchronous
Internally, Play Framework is asynchronous from the bottom up. Play handles every request in an asynchronous, non-blocking way.
The default configuration is tuned for asynchronous controllers. In other words, the application code should avoid blocking in controllers, i.e., having the controller code wait for an operation. Common examples of such blocking operations are JDBC calls, streaming API, HTTP requests and long computations.
Although it’s possible to increase the number of threads in the default execution context to allow more concurrent requests to be processed by blocking controllers, following the recommended approach of keeping the controllers asynchronous makes it easier to scale and to keep the system responsive under load.
§Creating non-blocking actions
Because of the way Play works, action code must be as fast as possible, i.e., non-blocking. So what should we return from our action if we are not yet able to compute the result? We should return the promise of a result!
Java 8 provides a generic promise API called CompletionStage. A CompletionStage<Result> will eventually be redeemed with a value of type Result. By using a CompletionStage<Result> instead of a normal Result, we are able to return from our action quickly without blocking anything. Play will then serve the result as soon as the promise is redeemed.
The web client will be blocked while waiting for the response, but nothing will be blocked on the server, and server resources can be used to serve other clients.
§How to create a CompletionStage<Result>
To create a CompletionStage<Result> we need another promise first: the promise that will give us the actual value we need to compute the result:
CompletionStage<Double> promiseOfPIValue = computePIAsynchronously();
CompletionStage<Result> promiseOfResult = promiseOfPIValue.thenApply(pi ->
ok("PI value computed: " + pi)
);
Play asynchronous API methods give you a CompletionStage. This is the case when you are calling an external web service using the play.libs.WS API, or if you are using Akka to schedule asynchronous tasks or to communicate with Actors using play.libs.Akka.
A simple way to execute a block of code asynchronously and to get a CompletionStage is to use the CompletableFuture.supplyAsync() helper:
CompletionStage<Integer> promiseOfInt = CompletableFuture.supplyAsync(() -> intensiveComputation());
Note: It’s important to understand which thread code runs on which promises. Here, the intensive computation will just be run on another thread.
You can’t magically turn synchronous IO into asynchronous by wrapping it in a CompletionStage. If you can’t change the application’s architecture to avoid blocking operations, at some point that operation will have to be executed, and that thread is going to block. So in addition to enclosing the operation in a CompletionStage, it’s necessary to configure it to run in a separate execution context that has been configured with enough threads to deal with the expected concurrency. See Understanding Play thread pools for more information.
It can also be helpful to use Actors for blocking operations. Actors provide a clean model for handling timeouts and failures, setting up blocking execution contexts, and managing any state that may be associated with the service. Also Actors provide patterns like ScatterGatherFirstCompletedRouter to address simultaneous cache and database requests and allow remote execution on a cluster of backend servers. But an Actor may be overkill depending on what you need.
§Using CompletionStage inside an Action
You must supply the HTTP execution context explicitly as an executor when using a Java CompletionStage inside an Action, to ensure that the HTTP.Context remains in scope. If you don’t supply the HTTP execution context, you’ll get “There is no HTTP Context available from here” errors when you call request() or other methods that depend on Http.Context.
You can supply the play.libs.concurrent.HttpExecutionContext instance through dependency injection:
public class Application extends Controller {
@Inject HttpExecutionContext ec;
public CompletionStage<Result> index() {
someCompletableFuture.supplyAsync(() -> {
// do something with request()
}, ec.current());
}
}
§Async results
We have been returning Result up until now. To send an asynchronous result our action needs to return a CompletionStage<Result>:
public CompletionStage<Result> index() {
return CompletableFuture.supplyAsync(() -> intensiveComputation())
.thenApply(i -> ok("Got result: " + i));
}
§Actions are asynchronous by default
Play actions are asynchronous by default. For instance, in the controller code below, the returned Result is internally enclosed in a promise:
public Result index() {
return ok("Got request " + request() + "!");
}
Note: Whether the action code returns a Result or a CompletionStage<Result>, both kinds of returned object are handled internally in the same way. There is a single kind of Action, which is asynchronous, and not two kinds (a synchronous one and an asynchronous one). Returning a CompletionStage is a technique for writing non-blocking code.
Next: Streaming HTTP responses
|
__label__pos
| 0.7483 |
Lesson 6
The Pythagorean Identity (Part 2)
Lesson Narrative
This is the second of two lessons focusing on the Pythagorean Identity. The goal of this lesson is for students to deepen their understanding of the connections between \(\cos(\theta)\), \(\sin(\theta)\), and \(\tan(\theta)\) for an angle \(\theta\) on the unit circle (MP7).
The warm-up invites students to identify the sign of the three trigonometric values in each quadrant, which allows a reintroduction of tangent and a possible way to interpret the value of tangent as a slope. Students then consider how to use the value of cosine in quadrant 4 to calculate the values of sine and tangent at the same angle. This work prepares students for a card-matching activity in which they determine if particular values for cosine, sine, and tangent are possible or impossible in different quadrants. For possible matches, students practice using the Pythagorean Identity to calculate the two unknown trigonometric values. Throughout the matching process, students trade roles explaining their reasoning and critiquing the reasoning of their partner (MP3).
Learning Goals
Teacher Facing
• Critique (in writing) a strategy using the Pythagorean Identity for identifying the value of sine and tangent from the known value of cosine and the quadrant of the angle.
• Use the Pythagorean Identity to determine the value of all 3 trigonometric ratios given the value of 1 to start from and the quadrant of the angle.
Student Facing
Let’s use the Pythagorean Identity.
Learning Targets
Student Facing
• I can use the Pythagorean Identity to find the values of cosine, sine, and tangent of an angle if I know one of them and the quadrant of the angle.
CCSS Standards
Addressing
Building Towards
Glossary Entries
• Pythagorean identity
The identity \(\sin^2(x) + \cos^2(x) = 1\) relating the sine and cosine of a number. It is called the Pythagorean identity because it follows from the Pythagorean theorem.
• period
The length of an interval at which a periodic function repeats. A function \(f\) has a period, \(p\), if \(f(x+p) = f(x)\) for all inputs \(x\).
• periodic function
A function whose values repeat at regular intervals. If \(f\) is a periodic function then there is a number \(p\), called the period, so that \(f(x + p) = f(x)\) for all inputs \(x\).
• unit circle
The circle in the coordinate plane with radius 1 and center the origin.
|
__label__pos
| 0.998252 |
FANDOM
IntroductionEdit
HTML Yay! This is your first time ever coding a website. How exciting! But don't you want to know what importance the HTML holds? HTML is used to design web pages as simple as that. HTML is very easy to learn but it is a very powerful markup language that can control web designs. HTML together with CSS helps make web pages look beautiful. So let's start learning coding! To start off:
• Open Notepad, if you are Windows user.
• Open TextMate, if you are a Macintosh user.
There are other text editors too. At bottom is a list of recommended Text editors that can be helpful and easy to use.
Starting offEdit
To start off on the first line put <!DOCTYPE html>, this shows it is HTML code. Then put <html> on the line below to show the start of the HTML document. After that, write down </html> because this ends the HTML document.
It should look like this:
<!DOCTYPE html>
<html>
</html>
Next StepEdit
Next, in between <html> and </html> type down <head> everything you put between that and a </head> tag (tags are markups between <>). They don't appear on the pages.
It should look like this:
<!DOCTYPE html>
<html>
<head>
</head>
</html>
<body> tagsEdit
The final basic bit of structuring html is the body tag. This is simply <body> or </body>. All the code that actually shows goes between them.
It should look like this now:
<!DOCTYPE html>
<html>
<head>
</head>
<body>
</body
</html>
SavingEdit
To save your work follow these intructions:
1. Click Save (Control + S)
2. Write the file name
3. After the filename write .html
4. So the file should look like this: filename.html
5. Click Save
(This website will look blank. For now atleast.) To know how to add things inside go to: Lesson 2>>.)
Ad blocker interference detected!
Wikia is a free-to-use site that makes money from advertising. We have a modified experience for viewers using ad blockers
Wikia is not accessible if you’ve made further modifications. Remove the custom ad blocker rule(s) and the page will load as expected.
|
__label__pos
| 0.83092 |
1
vote
0answers
145 views
Foobar - How to exclude non-music files?
I drop my "Music" folder to foobar2000, all songs are included in the playlist, but also the other files (like album-art.jpg) are also included. When I'm shuffling, those files appear on the list and ...
0
votes
1answer
305 views
What Audio Format Is This?
I'm having trouble finding something to play this audio file, can anybody help? All I know is its file extension and it plays via Androids MediaPlayer. MediaInfo and GSpot doesn't give me anything. ...
2
votes
1answer
2k views
Is it possible to play a .wax file in Mac Os X?
I'm trying to build a listening quiz for some of my students and I found a great site with lots of possible activities for them. But the files are in .wax format. Is there any way I can get these ...
1
vote
2answers
415 views
Suggestions for archiving CD-Audio discs in a single file
I'm looking for suggestions as to how to archive CD-Audio discs (i.e. Red Book CDs with PCM audio tracks, like the ones you buy in a record shop, or like iTunes would generate if you chose Audio CD). ...
1
vote
1answer
46 views
Do you have any additions or alterations to this list of popular audio formats? [closed]
I am trying to compile a list of common audio file formats used in both personal storage and peer transmission. I have compiled the following list, do you think that there are any significant formats ...
|
__label__pos
| 0.835667 |
Mapping Messages: HL7 to JSON
In this article we will copy an HL7 message to an JSON document. For simplicity we will only map a few fields, but as you will see extra fields can easily be added. We placed the mapping code in Filter component, which is (usually) the most logical place for mapping code.
You can use exactly the same method to copy data between any of the different types of node trees.
These are the steps:
1. Parse the message into a source HL7 node tree structure
2. Create a JSON table tree for the target message
3. Map the data from the source node tree to the target node tree
We recommend that you type in the code for each step, but we also include complete Sample Code if you prefer to paste it in and follow along.
Tip: If you want to modify the message data see the “Transforming Messages:” tutorials in this section. Mapping and transformation use very similar techniques, the main difference is the intention: When you are mapping you are just copying the data, when you are transforming a message you are modifying the data (as well as copying it).
Create the Channel [top]
1. Create a Channel with the the following settings:
• Source = LLP Listener
• Destination = To Translator
• Channel name = Mapping HL7 to JSON
2. Activate the Filter Component: Click the Filter tab and check Use Filter.
3. Click the Add Channel button to create the channel.
Ignore the red warning messages, see resolving the milestone configuration error.
4. Open the Translator by clicking the Edit Script link at the bottom of the Filter tab.
5. Download and import the Mapping_HL7_to_JSON_Filter.zip project file.
This file contains a skeleton project and six sample HL7 messages.
6. Iguana will load the project and data into the Translator, your screen should look like this:
Tutorial Instructions [top]
1. Pass the message data to the script.
• Iguana automatically passes the message data to the main() function
• The message can be accessed using the Data parameter
• No action is needed
2. Parse the message into a convenient read-onlynode tree” structure.
Add the following line of code to your script:
3. Compare the text message and the parsed message.
Click on the Data parameter (red text) and the ADT message icon:
The messages should look something like this (we clicked on the PID segment to expand it):
4. Create the JSON outgoing message.
Add the following line of code to your script:
5. Map the HL7 node PID>Patient Identifier to the XML patient attribute id, using the :nodeValue() method to convert the node to text.
Enter this line of mapping code, auto-completion will help you to find the fields:
6. Complete the patient mapping.
Add these three lines of code:
7. Compare the incoming and outgoing messages.
Add a trace() command and click on the Msg (ADT) and Out (table) annotations to view them:
As you can see the mapping worked correctly, the patient data was mapped from the incoming to the outgoing message.
Screen Shot 2014-10-07 at 22.03.21
8. Push the outgoing message into the Iguana queue, using json.serialize() to convert the Out message into JSON formatted text:
Add the following code to your script:
Note: This is not part of the mapping process, but it is needed to forward the message to the Destination Component.
Complete Sample Code [top]
Here is the completed mapping code that you can cut and paste into your script:
local JSON_TEMPLATE = [[
{
'patients':
{
'patient-id':'',
'first-name':'',
'last-name':'',
'social-security-no':''
}
}]]
function main(Data)
-- (1) Parse the HL7 message
local Msg = hl7.parse{vmd = 'example/demo.vmd', data = Data}
-- (2) parse the JSON template
local Out = json.parse(JSON_TEMPLATE)
-- (3) Map (part of) the message
Out.patients["patient-id"] = Msg.PID[3][1][1]:nodeValue()
Out.patients["first-name"] = Msg.PID[5][1][1][1]:nodeValue()
Out.patients["last-name"] = Msg.PID[5][1][2]:nodeValue()
Out.patients["social-security-no"] = Msg.PID[19]:nodeValue()
-- (3) Push the outgoing message into the Iguana queue
queue.push(json.serialize{data=Out, compact=true})
end
More Information [top]
Please don't hesitate to take anonymous feedback survey or leave us a comment.
Leave A Comment?
|
__label__pos
| 0.972527 |
hazelcast
package module
Version: v0.5.0 Latest Latest
Warning
This package is not in the latest version of its module.
Go to latest
Published: Mar 20, 2019 License: Apache-2.0 Imports: 3 Imported by: 137
README
Table of Contents
Introduction
GoDoc Go Report Card
This document explains Go client for Hazelcast which uses Hazelcast's Open Client Protocol 1.6. This client works with Hazelcast 3.6 and higher.
Hazelcast is a clustering and highly scalable data distribution platform. With its various distributed data structures, distributed caching capabilities, elastic nature and more importantly with so many happy users, Hazelcast is a feature-rich, enterprise-ready and developer-friendly in-memory data grid solution.
1. Getting Started
This chapter provides information on how to get started with your Hazelcast Go client. It outlines the requirements, installation and configuration of the client, setting up a cluster, and provides a simple application that uses a distributed map in Go client.
1.1. Requirements
• Windows, Linux or MacOS
• Go 1.9 or newer
• Java 6 or newer
• Hazelcast IMDG 3.6 or newer
• Latest Hazelcast Go client
1.2. Working with Hazelcast IMDG Clusters
Hazelcast Go client requires a working Hazelcast IMDG cluster to run. This cluster handles storage and manipulation of the user data. Clients are a way to connect to the Hazelcast IMDG cluster and access such data.
Hazelcast IMDG cluster consists of one or more cluster members. These members generally run on multiple virtual or physical machines and are connected to each other via network. Any data put on the cluster is partitioned to multiple members transparent to the user. It is therefore very easy to scale the system by adding new members as the data grows. Hazelcast IMDG cluster also offers resilience. Should any hardware or software problem causes a crash to any member, the data on that member is recovered from backups and the cluster continues to operate without any downtime. Hazelcast clients are an easy way to connect to a Hazelcast IMDG cluster and perform tasks on distributed data structures that live on the cluster.
In order to use Hazelcast Go client, we first need to setup a Hazelcast IMDG cluster.
1.2.1. Setting Up a Hazelcast IMDG Cluster
There are following options to start a Hazelcast IMDG cluster easily:
• You can run standalone members by downloading and running JAR files from the website.
• You can embed members to your Java projects.
We are going to download JARs from the website and run a standalone member for this guide.
1.2.1.1. Running Standalone JARs
Follow the instructions below to create a Hazelcast IMDG cluster:
1. Go to Hazelcast's download page and download either the .zip or .tar distribution of Hazelcast IMDG.
2. Decompress the contents into any directory that you want to run members from.
3. Change into the directory that you decompressed the Hazelcast content and then into the bin directory.
4. Use either start.sh or start.bat depending on your operating system. Once you run the start script, you should see the Hazelcast IMDG logs in the terminal.
You should see a log similar to the following, which means that your 1-member cluster is ready to be used:
INFO: [192.168.0.3]:5701 [dev] [3.10.4]
Members {size:1, ver:1} [
Member [192.168.0.3]:5701 - 65dac4d1-2559-44bb-ba2e-ca41c56eedd6 this
]
Sep 06, 2018 10:50:23 AM com.hazelcast.core.LifecycleService
INFO: [192.168.0.3]:5701 [dev] [3.10.4] [192.168.0.3]:5701 is STARTED
1.2.1.2. Adding User Library to CLASSPATH
When you want to use features such as querying and language interoperability, you might need to add your own Java classes to the Hazelcast member in order to use them from your Go client. This can be done by adding your own compiled code to the CLASSPATH. To do this, compile your code with the CLASSPATH and add the compiled files to the user-lib directory in the extracted hazelcast-<version>.zip (or tar). Then, you can start your Hazelcast member by using the start scripts in the bin directory. The start scripts will automatically add your compiled classes to the CLASSPATH.
Note that if you are adding an IdentifiedDataSerializable or a Portable class, you need to add its factory too. Then, you should configure the factory in the hazelcast.xml configuration file. This file resides in the bin directory where you extracted the hazelcast-<version>.zip (or tar).
The following is an example configuration when you are adding an IdentifiedDataSerializable class:
<hazelcast>
...
<serialization>
<data-serializable-factories>
<data-serializable-factory factory-id=<identified-factory-id>>
IdentifiedFactoryClassName
</data-serializable-factory>
</data-serializable-factories>
</serialization>
...
</hazelcast>
If you want to add a Portable class, you should use <portable-factories> instead of <data-serializable-factories> in the above configuration.
See the Hazelcast IMDG Reference Manual for more information on setting up the clusters.
1.3. Downloading and Installing
Following command installs Hazelcast Go client:
go get github.com/hazelcast/hazelcast-go-client
See the Go client's tutorial for more information on installing and setting up the client.
1.4. Basic Configuration
If you are using Hazelcast IMDG and Go client on the same computer, generally the default configuration should be fine. This is great for trying out the client. However, if you run the client on a different computer than any of the cluster members, you may need to do some simple configuration such as specifying the member addresses.
The Hazelcast IMDG members and clients have their own configuration options. You may need to reflect some of the member side configurations on the client side to properly connect to the cluster. This section describes the most common configuration elements to get you started in no time. It discusses some member side configuration options to ease the understanding of Hazelcast's ecosystem. Then, the client side configuration options regarding the cluster connection are discussed. The configurations for the Hazelcast IMDG data structures that can be used in the Node.js client are discussed in the following sections.
See the Hazelcast IMDG Reference Manual and Configuration Overview section for more information.
1.4.1. Configuring Hazelcast IMDG
Hazelcast IMDG aims to run out of the box for most common scenarios. However if you have limitations on your network such as multicast being disabled, you may have to configure your Hazelcast IMDG members so that they can find each other on the network. Also, since most of the distributed data structures are configurable, you may want to configure them according to your needs. We will show you the basics about network configuration here.
You can use the following options to configure Hazelcast IMDG:
• Using the hazelcast.xml configuration file.
• Programmatically configuring the member before starting it from the Java code.
Since we use standalone servers, we will use the hazelcast.xml file to configure our cluster members.
When you download and unzip hazelcast-<version>.zip (or tar), you see the hazelcast.xml in the bin directory. When a Hazelcast member starts, it looks for the hazelcast.xml file to load the configuration from. A sample hazelcast.xml is shown below.
<hazelcast>
<group>
<name>dev</name>
<password>dev-pass</password>
</group>
<network>
<port auto-increment="true" port-count="100">5701</port>
<join>
<multicast enabled="true">
<multicast-group>224.2.2.3</multicast-group>
<multicast-port>54327</multicast-port>
</multicast>
<tcp-ip enabled="false">
<interface>127.0.0.1</interface>
<member-list>
<member>127.0.0.1</member>
</member-list>
</tcp-ip>
</join>
<ssl enabled="false"/>
</network>
<partition-group enabled="false"/>
<map name="default">
<backup-count>1</backup-count>
</map>
</hazelcast>
We will go over some important configuration elements in the rest of this section.
• <group>: Specifies which cluster this member belongs to. A member connects only to the other members that are in the same group as itself. As shown in the above configuration sample, there are <name> and <password> tags under the <group> element with some pre-configured values. You may give your clusters different names so that they can live in the same network without disturbing each other. Note that the cluster name should be the same across all members and clients that belong to the same cluster. The <password> tag is not in use since Hazelcast 3.9. It is there for backward compatibility purposes. You can remove or leave it as it is if you use Hazelcast 3.9 or later.
• <network>
• <port>: Specifies the port number to be used by the member when it starts. Its default value is 5701. You can specify another port number, and if you set auto-increment to true, then Hazelcast will try the subsequent ports until it finds an available port or the port-count is reached.
• <join>: Specifies the strategies to be used by the member to find other cluster members. Choose which strategy you want to use by setting its enabled attribute to true and the others to false.
• <multicast>: Members find each other by sending multicast requests to the specified address and port. It is very useful if IP addresses of the members are not static.
• <tcp>: This strategy uses a pre-configured list of known members to find an already existing cluster. It is enough for a member to find only one cluster member to connect to the cluster. The rest of the member list is automatically retrieved from that member. We recommend putting multiple known member addresses there to avoid disconnectivity should one of the members in the list is unavailable at the time of connection.
These configuration elements are enough for most connection scenarios. Now we will move onto the configuration of the Go client.
1.4.2. Configuring Hazelcast Go Client
This section describes some network configuration settings to cover common use cases in connecting the client to a cluster. Refer to Configuration Overview and the following sections for information about detailed network configuration and/or additional features of Hazelcast Go client configuration.
An easy way to configure your Hazelcast Go client is to create a Config object and set the appropriate options. Then you can supply this object to your client at the startup.
Configuration
You need to create a Config object and adjust its properties. Then you can pass this object to the client when starting it.
package main
import "github.com/hazelcast/hazelcast-go-client"
func main() {
config := hazelcast.NewConfig()
client , _ := hazelcast.NewClientWithConfig(config)
}
If you run the Hazelcast IMDG members in a different server than the client, you most probably have configured the members' ports and cluster names as explained in the previous section. If you did, then you need to make certain changes to the network settings of your client.
1.4.2.1. Group Settings
You need to provide the group name of the cluster, if it is defined on the server side, to which you want the client to connect.
config := hazelcast.NewConfig()
config.GroupConfig().SetName("GROUP_NAME_OF_YOUR_CLUSTER")
NOTE: If you have a Hazelcast IMDG release older than 3.11, you need to provide also a group password along with the group name.
1.4.2.2. Network Settings
You need to provide the IP address and port of at least one member in your cluster so the client can find it.
config := hazelcast.NewConfig()
config.NetworkConfig().AddAddress("some-ip-address:port")
hazelcast.NewClientWithConfig(config)
1.4.3. Client System Properties
While configuring your Go client, you can use various system properties provided by Hazelcast to tune its clients. These properties can be set programmatically through config.SetProperty or by using an environment variable. The value of this property will be:
• the programmatically configured value, if programmatically set,
• the environment variable value, if the environment variable is set,
• the default value, if none of the above is set.
See the following for an example client system property:
InvocationTimeoutSeconds = NewHazelcastPropertyInt64WithTimeUnit("hazelcast.client.invocation.timeout.seconds",
120, time.Second)
The above property specifies the timeout duration to give up the invocations when a member in the member list is not reachable, and its default value is 120 seconds. You can change this value programmatically or using an environment variable, as shown below.
Programmatically:
config.SetProperty(property.InvocationTimeoutSeconds.Name(), "2") // Sets invocation timeout as 2 seconds
or
config.SetProperty("hazelcast.client.invocation.timeout.seconds", "2") // Sets invocation timeout as 2 seconds
By using an environment variable:
os.Setenv(property.InvocationTimeoutSeconds.Name(), "2")
If you set a property both programmatically and via an environment variable, the programmatically set value will be used.
See the complete list of client system properties, along with their descriptions, which can be used to configure your Hazelcast Go client.
1.5. Basic Usage
Now that we have a working cluster and we know how to configure both our cluster and client, we can run a simple program to use a distributed map in the Go client.
The following example first creates a programmatic configuration object. Then, it starts a client.
import (
"fmt"
"github.com/hazelcast/hazelcast-go-client"
)
func main() {
config := hazelcast.NewConfig() // We create a config for illustrative purposes.
// We do not adjust this config. Therefore it has default settings.
client, err := hazelcast.NewClientWithConfig(config)
if err != nil {
fmt.Println(err)
return
}
fmt.Println(client.Name()) // Connects and prints the name of the client
}
This should print logs about the cluster members and information about the client itself such as the client type, UUID and address.
2018/10/24 16:16:16 New State : STARTING
2018/10/24 16:16:16
Members {size:2} [
Member localhost:5701 - 923f0f91-9bc8-432f-9650-fd4a5436e80b
Member localhost:5702 - c01a31c1-e90d-4a63-a9b1-f323606431ec
]
2018/10/24 16:16:16 Registered membership listener with ID 400022bd-dcbe-4cf5-b2c1-9e41cf6e16d9
2018/10/24 16:16:16 New State : CONNECTED
2018/10/24 16:16:16 New State : STARTED
Congratulations! You just started a Hazelcast Go client.
Using a Map
Let's manipulate a distributed map on a cluster using the client.
IT.go
import (
"fmt"
"github.com/hazelcast/hazelcast-go-client"
)
func main() {
config := hazelcast.NewConfig()
client, err := hazelcast.NewClientWithConfig(config)
if err != nil {
fmt.Println(err)
return
}
personnelMap, _ := client.GetMap("personnelMap")
personnelMap.Put("Alice", "IT")
personnelMap.Put("Bob", "IT")
personnelMap.Put("Clark", "IT")
fmt.Println("Added IT personnel. Logging all known personnel")
resultPairs, _ := personnelMap.EntrySet()
for _, pair := range resultPairs {
fmt.Println(pair.Key(), " is in ", pair.Value(), " department")
}
}
Output
2018/10/24 16:23:26 New State : STARTING
2018/10/24 16:23:26
Members {size:2} [
Member localhost:5701 - 923f0f91-9bc8-432f-9650-fd4a5436e80b
Member localhost:5702 - c01a31c1-e90d-4a63-a9b1-f323606431ec
]
2018/10/24 16:23:26 Registered membership listener with ID 199b9d1a-9085-4f1e-b6da-3a15a7757637
2018/10/24 16:23:26 New State : CONNECTED
2018/10/24 16:23:26 New State : STARTED
Added IT personnel. Logging all known personnel
Alice is in IT department
Clark is in IT department
Bob is in IT department
You see this example puts all IT personnel into a cluster-wide personnelMap and then prints all known personnel.
Sales.go
import (
"fmt"
"github.com/hazelcast/hazelcast-go-client"
)
func main() {
config := hazelcast.NewConfig()
client, err := hazelcast.NewClientWithConfig(config)
if err != nil {
fmt.Println(err)
return
}
personnelMap, _ := client.GetMap("personnelMap")
personnelMap.Put("Denise", "Sales")
personnelMap.Put("Erwin", "Sales")
personnelMap.Put("Faith", "Sales")
fmt.Println("Added Sales personnel. Logging all known personnel")
resultPairs, _ := personnelMap.EntrySet()
for _, pair := range resultPairs {
fmt.Println(pair.Key(), " is in ", pair.Value(), " department")
}
}
Output
2018/10/24 16:25:58 New State : STARTING
2018/10/24 16:25:58
Members {size:2} [
Member localhost:5701 - 923f0f91-9bc8-432f-9650-fd4a5436e80b
Member localhost:5702 - c01a31c1-e90d-4a63-a9b1-f323606431ec
]
2018/10/24 16:25:58 Registered membership listener with ID 7014c382-182e-4962-94ff-d6094917d864
2018/10/24 16:25:58 New State : CONNECTED
2018/10/24 16:25:58 New State : STARTED
Added Sales personnel. Logging all known personnel
Erwin is in Sales department
Alice is in IT department
Clark is in IT department
Bob is in IT department
Denise is in Sales department
Faith is in Sales department
You will see this time we add only the sales employees but we get the list all known employees including the ones in IT. That is because our map lives in the cluster and no matter which client we use, we can access the whole map.
1.6. Code Samples
See the Hazelcast Go code samples for more examples.
You can also see the Hazelcast Go API Documentation.
2. Features
Hazelcast Go client supports the following data structures and features:
• Map
• Multi Map
• List
• Set
• Queue
• Topic
• Reliable Topic
• Replicated Map
• Ringbuffer
• Query (Predicates)
• Built-in Predicates
• API configuration
• Event Listeners
• Entry Processor
• Flake Id Generator
• CRDT PN Counter
• Aggregations
• Projections
• Lifecycle Service
• Smart Client
• Unisocket Client
• IdentifiedDataSerializable Serialization
• Portable Serialization
• Custom Serialization
• Global Serialization
• JSON Serialization
• SSL Support (requires Enterprise server)
• Mutual Authentication (requires Enterprise server)
• Custom Credentials
• Hazelcast Cloud Discovery
• Statistics
3. Configuration Overview
You can configure Hazelcast Go client programmatically (API).
For programmatic configuration of the Hazelcast Go client, just instantiate a Config object and configure the desired aspects. An example is shown below.
config := hazelcast.NewConfig()
config.NetworkConfig().AddAddress("some-ip-address:port")
hazelcast.NewClientWithConfig(config)
See the Config class documentation at Hazelcast Go client API Docs for details.
4. Serialization
Serialization is the process of converting an object into a stream of bytes to store the object in the memory, a file or database, or transmit it through the network. Its main purpose is to save the state of an object in order to be able to recreate it when needed. The reverse process is called deserialization. Hazelcast offers you its own native serialization methods. You will see these methods throughout this chapter. For primitive types, it uses Hazelcast native serialization. For other complex types (e.g. Go objects), it uses Gob serialization.
NOTE: int and []int types in Go Language are serialized as int64 and []int64 respectively by Hazelcast Serialization.
Note that if the object is not one of the above-mentioned types, the Go client uses Gob serialization by default.
However, Gob Serialization is not the best way of serialization in terms of performance and interoperability between the clients in different languages. If you want the serialization to work faster or you use the clients in different languages, Hazelcast offers its own native serialization types, such as IdentifiedDataSerializable Serialization and Portable Serialization.
On top of all, if you want to use your own serialization type, you can use a Custom Serialization.
4.1. IdentifiedDataSerializable Serialization
For a faster serialization of objects, Hazelcast recommends to implement IdentifiedDataSerializable interface.
The following is an example of an object implementing this interface:
const (
employeeClassID = 100
sampleDataSerializableFactoryID = 1000
)
type Employee struct {
id int32
name string
}
func (e *Employee) ClassID() int32 {
return employeeClassID
}
func (e *Employee) FactoryID() int32 {
return sampleDataSerializableFactoryID
}
func (e *Employee) ReadData(input serialization.DataInput) error {
e.id = input.ReadInt32()
e.name = input.ReadUTF()
return input.Error()
}
func (e *Employee) WriteData(output serialization.DataOutput) (err error) {
output.WriteInt32(e.id)
output.WriteUTF(e.name)
return
}
The IdentifiedDataSerializable interface uses ClassID and FactoryID to reconstitute the object. To complete the implementation IdentifiedDataSerializableFactory should also be implemented and registered into SerializationConfig which can be accessed from config.SerializationConfig(). The factory's responsibility is to return an instance of the right IdentifiedDataSerializable object, given the classID.
A sample IdentifiedDataSerializableFactory could be implemented as follows:
type SampleDataSerializableFactory struct {
}
func (*SampleDataSerializableFactory) Create(classID int32) serialization.IdentifiedDataSerializable {
if classID == employeeClassID {
return &Employee{}
}
return nil
}
The last step is to register the IdentifiedDataSerializableFactory to the SerializationConfig.
config := hazelcast.NewConfig()
config.SerializationConfig().AddDataSerializableFactory(sampleDataSerializableFactoryID, SampleDataSerializableFactory{})
Note that the ID that is passed to the SerializationConfig is same as the FactoryID that the address object returns.
4.2. Portable Serialization
As an alternative to the existing serialization methods, Hazelcast offers portable serialization. To use it, you need to implement the Portable interface. Portable serialization has the following advantages:
• Supporting multiversion of the same object type.
• Fetching individual fields without having to rely on the reflection.
• Querying and indexing support without deserialization and/or reflection.
In order to support these features, a serialized Portable object contains meta information like the version and the concrete location of the each field in the binary data. This way Hazelcast is able to navigate in the binary data and deserialize only the required field without actually deserializing the whole object which improves the query performance.
With multiversion support, you can have two members where each of them having different versions of the same object, and Hazelcast will store both meta information and use the correct one to serialize and deserialize portable objects depending on the member. This is very helpful when you are doing a rolling upgrade without shutting down the cluster.
Also note that portable serialization is totally language independent and is used as the binary protocol between Hazelcast server and clients.
A sample portable implementation of a Foo class looks like the following:
const (
customerClassID = 1
samplePortableFactoryID = 1
)
type Customer struct {
name string
id int32
lastOrder time.Time
}
func (c *Customer) FactoryID() int32 {
return samplePortableFactoryID
}
func (c *Customer) ClassID() int32 {
return customerClassID
}
func (c *Customer) WritePortable(writer serialization.PortableWriter) (err error) {
writer.WriteInt32("id", c.id)
writer.WriteUTF("name", c.name)
writer.WriteInt64("lastOrder", c.lastOrder.UnixNano()/int64(time.Millisecond))
return
}
func (c *Customer) ReadPortable(reader serialization.PortableReader) (err error) {
c.id = reader.ReadInt32("id")
c.name = reader.ReadUTF("name")
t := reader.ReadInt64("lastOrder")
c.lastOrder = time.Unix(0, t*int64(time.Millisecond))
return reader.Error()
}
Similar to IdentifiedDataSerializable, a Portable object must provide ClassID and FactoryID . The factory object will be used to create the Portable object given the classId.
A sample PortableFactory could be implemented as follows:
type SamplePortableFactory struct {
}
func (pf *SamplePortableFactory) Create(classID int32) serialization.Portable {
if classID == customerClassID {
return &Customer{}
}
return nil
}
The last step is to register the PortableFactory to the SerializationConfig.
config := hazelcast.NewConfig()
config.SerializationConfig().AddPortableFactory(samplePortableFactoryID, &SamplePortableFactory{})
Note that the ID that is passed to the SerializationConfig is same as the FactoryID that Foo object returns.
4.3. Custom Serialization
Hazelcast lets you plug a custom serializer to be used for serialization of objects.
Let's say you have an object CustomSerializable and you would like to customize the serialization, since you may want to use an external serializer for only one object.
type CustomSerializable struct {
value string
}
Let's say your custom CustomSerializer will serialize CustomSerializable.
type CustomSerializer struct {
}
func (s *CustomSerializer) ID() int32 {
return 10
}
func (s *CustomSerializer) Read(input serialization.DataInput) (obj interface{}, err error) {
array = input.ReadByteArray()
return &CustomSerializable{string(array)}, input.Error()
}
func (s *CustomSerializer) Write(output serialization.DataOutput, obj interface{}) (err error) {
array := []byte(obj.(CustomSerializable).value)
output.WriteByteArray(array)
return
}
Note that the serializer id must be unique as Hazelcast will use it to lookup the CustomSerializer while it deserializes the object. Now the last required step is to register the MusicianSerializer to the configuration.
musicianSerializer := &MusicianSerializer{}
config.SerializationConfig().AddCustomSerializer(reflect.TypeOf((*CustomSerializable)(nil)), &CustomSerializer{})
From now on, Hazelcast will use CustomSerializer to serialize CustomSerializable objects.
4.4. JSON Serialization
You can use the JSON formatted strings as objects in Hazelcast cluster. Starting with Hazelcast IMDG 3.12, the JSON serialization is one of the formerly supported serialization methods. Creating JSON objects in the cluster does not require any server side coding and hence you can just send a JSON formatted string object to the cluster and query these objects by fields.
In order to use JSON serialization, you should use the HazelcastJSONValue object for the key or value.
You can construct a HazelcastJSONValue from string or from your go object:
//from string
core.CreateHazelcastJSONValueFromString{"your json string"}
//from go object
core.CreateHazelcastJSONValueFromString{yourObject}
No JSON parsing is performed but it is your responsibility to provide correctly formatted JSON strings. The client will not validate the string, and it will send it to the cluster as it is. If you submit incorrectly formatted JSON strings and, later, if you query those objects, it is highly possible that you will get formatting errors since the server will fail to deserialize or find the query fields.
Here is an example of how you can construct a HazelcastJSONValue and put to the map:
jsonValue1 , _ := core.CreateHazelcastJSONValueFromString("{ \"age\": 4 }")
mp.Put("item1", jsonValue1)
jsonValue2 , _ := core.CreateHazelcastJSONValueFromString("{ \"age\": 4 }")
mp.Put("item2", jsonValue2)
You can query JSON objects in the cluster using the Predicates of your choice. An example JSON query for querying the values whose age is greater than 6 is shown below:
// Get the objects whose age is greater than 6
result, _ := mp.ValuesWithPredicate(predicate.GreaterThan("age", 6))
var person interface{}
result[0].(*core.HazelcastJSON).Unmarshal(&person)
log.Println("Retrieved: ", len(result))
log.Println("Entry is: ", person)
Note that we have used var person interface{}. If we already knew the type of our object we could do the following:
type person struct {
Age int
Name string
}
person1 , _ := core.CreateHazelcastJSONValue(person{Age: 20, Name: "Walter"})
person2 , _ := core.CreateHazelcastJSONValue(person{Age: 5, Name: "Mike"})
mp.Put("item1", person1)
mp.Put("item2", person2)
result, _ := mp.ValuesWithPredicate(predicate.GreaterThan("Age", 6))
var person person
value := result[0].(*core.HazelcastJSON)
log.Println(value.ToString()) //{"Age":20,"Name":"Walter"}
value.Unmarshal(&person)
log.Println("Retrieved: ", len(result)) // Retrieved: 1
log.Println("Entry is: ", person) // Entry is: {20 Walter}
Note that here we also show an example of how to create the JSON value from a go object.
4.5. Global Serialization
The global serializer is identical to custom serializers from the implementation perspective. The global serializer is registered as a fallback serializer to handle all other objects if a serializer cannot be located for them.
By default, Gob serialization is used if the object is not IdentifiedDataSerializable or Portable or there is no custom serializer for it. When you configure a global serializer, it is used instead of Gob serialization.
Use cases:
• Third party serialization frameworks can be integrated using the global serializer.
• For your custom objects, you can implement a single serializer to handle all of them.
A sample global serializer that integrates with a third party serializer is shown below.
type GlobalSerializer struct {
}
func (*GlobalSerializer) ID() int32 {
return 20
}
func (*GlobalSerializer) Read(input serialization.DataInput) (obj interface{}, err error) {
// return MyFavoriteSerializer.deserialize(input)
return
}
func (*GlobalSerializer) Write(output serialization.DataOutput, object interface{}) (err error) {
// output.write(MyFavoriteSerializer.serialize(object))
return
}
You should register the global serializer in the configuration.
config.SerializationConfig().SetGlobalSerializer(&GlobalSerializer{})
5. Setting Up Client Network
All network related configuration of Hazelcast Go client is performed via the NetworkConfig class when using programmatic configuration. Here is an example of configuring network for Go client programmatically.
config := hazelcast.NewConfig()
networkConfig := config.NetworkConfig()
networkConfig.AddAddress("10.1.1.21", "10.1.1.22:5703")
networkConfig.SetSmartRouting(true)
networkConfig.SetRedoOperation(true)
networkConfig.SetConnectionTimeout(6 * time.Second)
networkConfig.SetConnectionAttemptPeriod(5 * time.Second)
networkConfig.SetConnectionAttemptLimit(5)
5.1. Providing the Member Addresses
Address list is the initial list of cluster addresses which the client will connect to. The client uses this list to find an alive member. Although it may be enough to give only one address of a member in the cluster (since all members communicate with each other), it is recommended that you give the addresses for all the members.
config := hazelcast.NewConfig()
networkConfig := config.NetworkConfig()
networkConfig.AddAddress("10.1.1.21", "10.1.1.22:5703")
If the port part is omitted, then 5701, 5702 and 5703 will be tried in a random order.
You can specify multiple addresses with or without the port information as seen above. The provided list is shuffled and tried in a random order. Its default value is localhost.
5.2. Setting Smart Routing
Smart routing defines whether the client mode is smart or unisocket. See the Go client Operation Modes section for the description of smart and unisocket modes.
The following are example configurations.
config := hazelcast.NewConfig()
networkConfig := config.NetworkConfig()
networkConfig.SetSmartRouting(true)
Its default value is true (smart client mode).
5.3. Enabling Redo Operation
It enables/disables redo-able operations. While sending the requests to the related members, the operations can fail due to various reasons. Read-only operations are retried by default. If you want to enable retry for the other operations, you can set the redoOperation to true.
config := hazelcast.NewConfig()
networkConfig := config.NetworkConfig()
networkConfig.SetRedoOperation(true)
Its default value is false (disabled).
5.4. Setting Connection Timeout
Connection timeout is the timeout value in milliseconds for the members to accept the client connection requests. If the member does not respond within the timeout, the client will retry to connect as many as NetworkConfig.connectionAttemptLimit times.
The following are the example configurations.
config := hazelcast.NewConfig()
networkConfig := config.NetworkConfig()
networkConfig.SetConnectionTimeout(6 * time.Second)
Its default value is 5000 milliseconds.
5.5. Setting Connection Attempt Limit
While the client is trying to connect initially to one of the members in the NetworkConfig.addresses, that member might not be available at that moment. Instead of giving up, throwing an error and stopping the client, the client will retry as many as NetworkConfig.connectionAttemptLimit times. This is also the case when the previously established connection between the client and that member goes down.
The following are example configurations.
config := hazelcast.NewConfig()
networkConfig := config.NetworkConfig()
networkConfig.SetConnectionAttemptLimit(5)
Its default value is 2.
5.6. Setting Connection Attempt Period
Connection attempt period is the duration in milliseconds between the connection attempts.
The following are example configurations.
config := hazelcast.NewConfig()
networkConfig := config.NetworkConfig()
networkConfig.SetConnectionAttemptPeriod(5 * time.Second)
Its default value is 3000 milliseconds.
5.7. Enabling Client TLS/SSL
You can use TLS/SSL to secure the connection between the clients and members. If you want to enable TLS/SSL for the client-cluster connection, you should set an SSL configuration. Please see TLS/SSL section.
As explained in the TLS/SSL section, Hazelcast members have key stores used to identify themselves (to other members) and Hazelcast Go clients have certificate authorities used to define which members they can trust. Hazelcast has the mutual authentication feature which allows the Go clients also to have their private keys and public certificates and members to have their certificate authorities so that the members can know which clients they can trust. See the Mutual Authentication section.
5.8. Enabling Hazelcast Cloud Discovery
The purpose of Hazelcast Cloud Discovery is to provide the clients to use IP addresses provided by hazelcast orchestrator. To enable Hazelcast Cloud Discovery, specify a token for the discoveryToken field and set the enabled field to true.
The following are example configurations.
config.GroupConfig().SetName("hazel")
config.GroupConfig().SetPassword("cast")
cloudConfig := config.NetworkConfig().CloudConfig()
cloudConfig.SetDiscoveryToken("EXAMPLE_TOKEN")
cloudConfig.SetEnabled(true)
To be able to connect to the provided IP addresses, you should use secure TLS/SSL connection between the client and members. Therefore, you should set an SSL configuration as described in the previous section.
6. Securing Client Connection
This chapter describes the security features of Hazelcast Go client. These include using TLS/SSL for connections between members and between clients and members, and mutual authentication. These security features require Hazelcast IMDG Enterprise edition.
6.1. TLS/SSL
One of the offers of Hazelcast is the TLS/SSL protocol which you can use to establish an encrypted communication across your cluster with key stores and trust stores.
• A Java keyStore is a file that includes a private key and a public certificate. The equivalent of a key store is the combination of key and cert files at the Go client side.
• A Java trustStore is a file that includes a list of certificates trusted by your application which is named certificate authority. The equivalent of a trust store is a ca file at the Go client side.
You should set keyStore and trustStore before starting the members. See the next section how to set keyStore and trustStore on the server side.
6.1.1. TLS/SSL for Hazelcast Members
Hazelcast allows you to encrypt socket level communication between Hazelcast members and between Hazelcast clients and members, for end to end encryption. To use it, see the TLS/SSL for Hazelcast Members section in the Hazelcast IMDG Reference Manual.
6.1.2. TLS/SSL for Hazelcast Go clients
Hazelcast Go clients which support TLS/SSL should have the following user supplied SSLConfig
config := hazelcast.NewConfig()
sslConfig := config.NetworkConfig().SSLConfig()
sslConfig.SetEnabled(true)
sslConfig.SetCaPath("yourCaPath")
sslConfig.ServerName="serverName"
6.1.3. Mutual Authentication
As explained above, Hazelcast members have key stores used to identify themselves (to other members) and Hazelcast clients have trust stores used to define which members they can trust.
Using mutual authentication, the clients also have their key stores and members have their trust stores so that the members can know which clients they can trust to.
To enable mutual authentication, firstly, you need to set the following property on the server side in the hazelcast.xml:
<network>
<ssl enabled="true">
<properties>
<property name="javax.net.ssl.mutualAuthentication">REQUIRED</property>
</properties>
</ssl>
</network>
You can see the details of setting mutual authentication on the server side in the Mutual Authentication section of the Hazelcast IMDG Reference Manual.
Client side config needs to be set as follows:
config := hazelcast.NewConfig()
sslConfig := config.NetworkConfig().SSLConfig()
sslConfig.SetEnabled(true)
sslConfig.SetCaPath("yourCaPath")
sslConfig.AddClientCertAndKeyPath("yourClientCertPath", "yourClientKeyPath")
sslConfig.ServerName = "yourServerName"
7. Using Go Client with Hazelcast IMDG
This chapter provides information on how you can use Hazelcast IMDG's data structures in the Go client, after giving some basic information including an overview to the client API, operation modes of the client and how it handles the failures.
7.1. Go Client API Overview
If you are ready to go, let's start to use Hazelcast Go client!
The first step is configuration. You can configure the Go client programmatically.
config := hazelcast.NewConfig()
config.GroupConfig().SetName("dev")
config.GroupConfig().SetPassword("pass")
config.NetworkConfig().AddAddress("10.1.1.21", "10.1.1.22:5703")
The second step is initializing the HazelcastClient to be connected to the cluster.
client, err := hazelcast.NewClientWithConfig(config)
This client object is your gateway to access all Hazelcast distributed objects.
Let’s create a map and populate it with some data, as shown below.
client, err := hazelcast.NewClientWithConfig(config)
if err != nil {
fmt.Println(err)
return
}
personnelMap, _ := client.GetMap("personnelMap")
personnelMap.Put("Denise", "Sales")
personnelMap.Put("Erwin", "Sales")
personnelMap.Put("Faith", "Sales")
As the final step, if you are done with your client, you can shut it down as shown below. This will release all the used resources and will close connections to the cluster.
client.Shutdown()
7.2. Go Client Operation Modes
The client has two operation modes because of the distributed nature of the data and cluster: smart and unisocket.
7.2.1. Smart Client
In the smart mode, clients connect to each cluster member. Since each data partition uses the well known and consistent hashing algorithm, each client can send an operation to the relevant cluster member, which increases the overall throughput and efficiency. Smart mode is the default mode.
7.2.2. Unisocket Client
For some cases, the clients can be required to connect to a single member instead of each member in the cluster. Firewalls, security or some custom networking issues can be the reason for these cases.
In the unisocket client mode, the client will only connect to one of the configured addresses. This single member will behave as a gateway to the other members. For any operation requested from the client, it will redirect the request to the relevant member and return the response back to the client returned from this member.
7.3. Handling Failures
There are two main failure cases you should be aware of. Below sections explain these and the configurations you can perform to achieve proper behavior.
7.3.1. Handling Client Connection Failure
While the client is trying to connect initially to one of the members in the NetworkConfig.SetAddresses, all the members might not be available. Instead of giving up, returning an error and stopping the client, the client will retry as many times as connectionAttemptLimit.
You can configure connectionAttemptLimit for the number of times you want the client to retry connecting. See the Setting Connection Attempt Limit section.
The client executes each operation through the already established connection to the cluster. If this connection(s) disconnects or drops, the client will try to reconnect as configured.
7.3.2. Handling Retry-able Operation Failure
While sending the requests to the related members, the operations can fail due to various reasons. Read-only operations are retried by default. If you want to enable retrying for the other operations, you can set the redoOperation to true. See Enabling Redo Operation section.
You can set a timeout for retrying the operations sent to a member. This can be provided by using the property hazelcast.client.invocation.timeout.seconds in config.SetProperty. The client will retry an operation within this given period, of course, if it is a read-only operation or you enabled the redoOperation as stated in the above paragraph. This timeout value is important when there is a failure resulted by either of the following causes:
• Member throws an exception.
• Connection between the client and member is closed.
• Client’s heartbeat requests are timed out.
When a connection problem occurs, an operation is retried if it is certain that it has not run on the member yet or if it is idempotent such as a read-only operation, i.e., retrying does not have a side effect. If it is not certain whether the operation has run on the member, then the non-idempotent operations are not retried. However, as explained in the first paragraph of this section, you can force all client operations to be retried (redoOperation) when there is a connection failure between the client and member. But in this case, you should know that some operations may run multiple times causing conflicts. For example, assume that your client sent a queue.offer operation to the member and then the connection is lost. Since there will be no response for this operation, you will not know whether it has run on the member or not. If you enabled redoOperation, it means this operation may run again, which may cause two instances of the same object in the queue.
When invocation is being retried, the client may wait some time before it retries again. You can configure this duration for waiting using the following property:
config.setProperty(“hazelcast.client.invocation.retry.pause.millis”, “500");
The default retry wait time is 1 second.
7.4. Using Distributed Data Structures
Most of the distributed data structures are supported by the Go client. In this chapter, you will learn how to use these distributed data structures.
7.4.1. Using Map
Hazelcast Map (IMap) is a distributed map. Through the Go client, you can perform operations like reading and writing from/to a Hazelcast Map with the well known get and put methods. For details, see the Map section in the Hazelcast IMDG Reference Manual.
A Map usage example is shown below.
// Get the Distributed Map from Cluster.
mp, _ := hz.GetMap("myDistributedMap")
//Standard Put and Get.
mp.Put("key", "value")
mp.Get("key")
//Concurrent Map methods, optimistic updating
mp.PutIfAbsent("somekey", "somevalue")
mp.ReplaceIfSame("key", "value", "newvalue")
7.4.2. Using MultiMap
Hazelcast MultiMap is a distributed and specialized map where you can store multiple values under a single key. For details, see the MultiMap section in the Hazelcast IMDG Reference Manual.
A MultiMap usage example is shown below.
// Get the Distributed MultiMap from Cluster.
multiMap, _ := hz.GetMultiMap("myDistributedMultimap")
// Put values in the map against the same key
multiMap.Put("my-key", "value1")
multiMap.Put("my-key", "value2")
multiMap.Put("my-key", "value3")
// Print out all the values for associated with key called "my-key"
values, _ := multiMap.Get("my-key")
fmt.Println(values)
// remove specific key/value pair
multiMap.Remove("my-key", "value2")
7.4.3. Using Replicated Map
Hazelcast ReplicatedMap is a distributed key-value data structure where the data is replicated to all members in the cluster. It provides full replication of entries to all members for high speed access. For details, see the Replicated Map section in the Hazelcast IMDG Reference Manual.
A Replicated Map usage example is shown below.
// Get a Replicated Map called "my-replicated-map"
mp, _ := hz.GetReplicatedMap("my-replicated-map")
// Put and Get a value from the Replicated Map
replacedValue, _ := mp.Put("key", "value") // key/value replicated to all members
fmt.Println("replacedValue = ", replacedValue) // Will be null as its first update
value, _ := mp.Get("key") // the value is retrieved from a random member in the cluster
fmt.Println("value for key = ", value)
7.4.4. Using Queue
Hazelcast Queue(IQueue) is a distributed queue which enables all cluster members to interact with it. For details, see the Queue section in the Hazelcast IMDG Reference Manual.
A Queue usage example is shown below.
// Get a Blocking Queue called "my-distributed-queue"
queue, _ := hz.GetQueue("my-distributed-queue")
// Offer a String into the Distributed Queue
queue.Offer("item")
// Poll the Distributed Queue and return the String
queue.Poll()
//Timed blocking Operations
queue.OfferWithTimeout("anotheritem", 500*time.Millisecond)
queue.PollWithTimeout(5 * time.Second)
//Indefinitely blocking Operations
queue.Put("yetanotheritem")
fmt.Println(queue.Take())
7.4.5. Using Set
Hazelcast Set(ISet) is a distributed set which does not allow duplicate elements. For details, see the Set section in the Hazelcast IMDG Reference Manual.
A Set usage example is shown below.
// Get the distributed set from cluster
set, _ := hz.GetSet("my-distributed-set")
// Add items to the set with duplicates
set.Add("item1")
set.Add("item1")
set.Add("item2")
set.Add("item2")
set.Add("item3")
set.Add("item3")
// Get the items. Note that no duplicates
items, _ := set.ToSlice()
fmt.Println(items)
7.4.6. Using List
Hazelcast List(IList) is distributed list which allows duplicate elements and preserves the order of elements. For details, see the List section in the Hazelcast IMDG Reference Manual.
A List usage example is shown below.
// Get the distributed list from cluster
list, _ := hz.GetList("my-distributed-list")
// Add elements to the list
list.Add("item1")
list.Add("item2")
// Remove the first element
removed, _ := list.RemoveAt(0)
fmt.Println("removed: ", removed)
// There is only one element left
size, _ := list.Size()
fmt.Println("current size is: ", size)
7.4.7. Using Ringbuffer
Hazelcast Ringbuffer is a replicated but not partitioned data structure that stores its data in a ring-like structure. You can think of it as a circular array with a given capacity. Each Ringbuffer has a tail and a head. The tail is where the items are added and the head is where the items are overwritten or expired. You can reach each element in a Ringbuffer using a sequence ID, which is mapped to the elements between the head and tail (inclusive) of the Ringbuffer. For details, see the Ringbuffer section in the Hazelcast IMDG Reference Manual.
A Ringbuffer usage example is shown below.
rb, _ := hz.GetRingbuffer("rb")
// we start from the oldest item.
// if you want to start from the next item, call rb.tailSequence()+1
// add two items into ring buffer
rb.Add(100, core.OverflowPolicyOverwrite)
rb.Add(200, core.OverflowPolicyOverwrite)
// we start from the oldest item.
// if you want to start from the next item, call rb.tailSequence()+1
sequence, _ := rb.HeadSequence()
fmt.Println(rb.ReadOne(sequence))
sequence++
fmt.Println(rb.ReadOne(sequence))
7.4.8. Using Reliable Topic
Hazelcast ReliableTopic is a distributed topic implementation backed up by the Ringbuffer data structure. For details, see the Reliable Topic section in the Hazelcast IMDG Reference Manual.
A Reliable Topic usage example is shown below.
reliableTopic, _ := client.GetReliableTopic("myReliableTopic")
reliableTopic.AddMessageListener(&reliableTopicMessageListener{})
for i := 0; i < 10; i++ {
reliableTopic.Publish("Message " + strconv.Itoa(i))
}
7.4.9. Using PN Counter
Hazelcast PNCounter (Positive-Negative Counter) is a CRDT positive-negative counter implementation. It is an eventually consistent counter given there is no member failure. For details, see the PN Counter section in the Hazelcast IMDG Reference Manual.
A PN Counter usage example is shown below.
counter, _ := client.GpetPNCounter("myPNCounter")
currentValue, _ := counter.AddAndGet(5)
fmt.Printf("added 5 counter, current value is %d\n", currentValue)
currentValue, _ = counter.DecrementAndGet()
fmt.Printf("decremented counter, current value is %d\n", currentValue)
7.4.10. Using Flake ID Generator
Hazelcast FlakeIdGenerator is used to generate cluster-wide unique identifiers. Generated identifiers are long primitive values and are k-ordered (roughly ordered). IDs are in the range from 0 to 2^63-1 (maximum signed long value). For details, see theFlakeIdGenerator section in the Hazelcast IMDG Reference Manual.
A Flake ID Generator usage example is shown below.
flakeIDGenerator, _ := client.GetFlakeIDGenerator("generator")
id, _ := flakeIDGenerator.NewID()
fmt.Printf("new id : %d", id)
7.5. Distributed Events
This chapter explains when various events are fired and describes how you can add event listeners on a Hazelcast Go client. These events can be categorized as cluster and distributed data structure events.
7.5.1. Cluster Events
You can add event listeners to a Hazelcast Go client. You can configure the following listeners to listen to the events on the client side.
• Membership Listener: Notifies when a member joins to/leaves the cluster, or when an attribute is changed in a member.
• Distributed Object Listener: Notifies when a distributed object is created or destroyed throughout the cluster.
• Lifecycle Listener: Notifies when the client is starting, started, shutting down, and shutdown.
7.5.1.1. Listening for Member Events
You can add the following types of member events to the ClusterService.
• memberAdded: A new member is added to the cluster.
• memberRemoved: An existing member leaves the cluster.
The following is a membership listener registration by using client.Cluster().AddMembershipListener(&membershipListener{}) function.
type membershipListener struct {
}
func (l *membershipListener) MemberAdded(member core.Member) {
fmt.Println("New member joined: ", member)
}
func (l *membershipListener) MemberRemoved(member core.Member) {
fmt.Println("Member left: ", member)
}
7.5.1.2. Listening for Lifecycle Events
The Lifecycle Listener notifies for the following events:
• STARTING: The client is starting.
• STARTED: The client has started.
• SHUTTING_DOWN: The client is shutting down.
• SHUTDOWN: The client’s shutdown has completed.
• CONNECTED: The client is connected to cluster
• DISCONNECTED: The client is disconnected from cluster note that this does not imply shutdown
The following is an example of Lifecycle Listener that is added to config and its output.
type lifecycleListener struct {
}
func (l *lifecycleListener) LifecycleStateChanged(newState string) {
fmt.Println("Lifecycle Event >>> ", newState)
}
config.AddLifecycleListener(&lifecycleListener{})
Or it can be added later after client has started
registrationID := client.LifecycleService().AddLifecycleListener(&lifecycleListener{})
// Unregister it when you want to stop listening
client.LifecycleService().RemoveLifecycleListener(registrationID)
Output:
2018/10/26 16:16:51 New State : STARTING
2018/10/26 16:16:51
Lifecycle Event >>> CONNECTED
Members {size:1} [
Lifecycle Event >>> STARTED
Member localhost:5701 - 936e0450-fc62-4927-9751-07c145f88a6f
]
Lifecycle Event >>> SHUTTING_DOWN
Lifecycle Event >>> SHUTDOWN
2018/10/26 16:16:51 Registered membership listener with ID 3e15ce02-4b14-4e4d-afca-bd69ea174498
2018/10/26 16:16:51 New State : CONNECTED
2018/10/26 16:16:51 New State : STARTED
2018/10/26 16:16:51 New State : SHUTTING_DOWN
2018/10/26 16:16:51 New State : SHUTDOWN
7.5.2. Distributed Data Structure Events
You can add event listeners to the distributed data structures.
7.5.2.1. Map Listener
The Map Listener is used by the Hazelcast Map.
You can listen to map-wide or entry-based events. To listen to these events, you need to implement the relevant interfaces.
An entry-based event is fired after the operations that affect a specific entry. For example, Map.Put(), Map.Remove() or Map.Evict(). An EntryEvent object is passed to the listener function. You can use the following listeners to listen to entry-based events.
• EntryExpiredListener
• EntryMergedListener
• EntryEvictedListener
• EntryUpdatedListener
• EntryRemovedListener
• EntryAddedListener
See the following example.
type entryListener struct {
}
func (l *entryListener) EntryAdded(event core.EntryEvent) {
fmt.Println("Entry Added: ", event.Key(), " ", event.Value()) // Entry Added: 1 Furkan
}
To add listener and fire an event:
m, _ := client.GetMap("m")
m.AddEntryListener(&entryListener{}, true)
m.Put("1", "Furkan")
A map-wide event is fired as a result of a map-wide operation. For example, Map.Clear() or Map.EvictAll(). A MapEvent object is passed to the listener function. You can use the following listeners to listen to map-wide events.
• MapEvictedListener
• MapClearedListener
See the following example.
type mapListener struct {
}
func (l *mapListener) MapCleared(event core.MapEvent) {
fmt.Println("Map Cleared:", event.NumberOfAffectedEntries()) // Map Cleared: 3
}
To add listener and fire a related event:
m, _ := client.GetMap("m")
m.AddEntryListener(&mapListener{}, true)
m.Put("1", "Mali")
m.Put("2", "Ahmet")
m.Put("3", "Furkan")
m.Clear()
As you see, there is a parameter in the AddEntryListener function: includeValue. It is a boolean parameter, and if it is true, the map event contains the entry value.
7.5.2.2. Entry Listener
The Entry Listener is used by the Hazelcast MultiMap and Replicated Map.
You can listen to map-wide or entry-based events by implementing the corresponding interface such as EntryAddedListener.
An entry-based event is fired after the operations that affect a specific entry. For example, MultiMap.Put(), MultiMap.Remove(). You should implement the corresponding type to listen to these events such as EntryAddedListener. An EntryEvent object is passed to the listener function.
type EntryListener struct {
}
func (l *EntryListener) EntryAdded(event core.EntryEvent) {
log.Println("Entry Added:", event.Key(), event.Value()) // Entry Added: 1 Furkan
}
multiMap.AddEntryListener(&EntryListener{}, true)
multiMap.Put("1", "Furkan")
A map-wide event is fired as a result of a map-wide operation. For example, MultiMap.Clear(). You should implement the MapClearedListener interface to listen to these events. A MapEvent object is passed to the listener function.
See the following example.
type EntryListener struct {
}
func (l *EntryListener) MapCleared(event core.MapEvent) {
log.Println("Map Cleared:", event.NumberOfAffectedEntries()) // Map Cleared: 1
}
multiMap.AddEntryListener(&EntryListener{}, true)
multiMap.Put("1", "Muhammet Ali")
multiMap.Put("1", "Ahmet")
multiMap.Put("1", "Furkan")
multiMap.Clear()
See the following headings to see supported listener functions for each data structure.
Entry Listener Functions Supported by MultiMap
• EntryAdded
• EntryRemoved
• EntryEvicted
• MapCleared
Entry Listener Functions Supported by Replicated Map
• EntryAdded
• EntryUpdated
• EntryRemoved
• EntryEvicted
• MapCleared
As you see, there is a parameter in the AddEntryListener function: includeValue. It is a boolean parameter, and if it is true, the entry event contains the entry value.
7.5.2.3. Item Listener
The Item Listener is used by the Hazelcast Queue, Set and List.
You can listen to item events by implementing the ItemAddedListener or ItemRemovedListener interface. Their functions are invoked when an item is added or removed.
The following is an example of item listener object and its registration to the Set. It also applies to Queue and List.
type itemListener struct {
}
func (l *itemListener) ItemAdded(event core.ItemEvent) {
log.Println("Item added:", event.Item()) // Item added: Furkan
}
func (l *itemListener) ItemRemoved(event core.ItemEvent) {
log.Println("Item removed:", event.Item()) // Item removed: Furkan
}
set.AddItemListener(&itemListener{}, true)
set.Add("Furkan")
set.Remove("Furkan")
As you see, there is a parameter in the AddItemListener function: includeValue. It is a boolean parameter, and if it is true, the item event contains the item value.
7.5.2.4. Message Listener
The Message Listener is used by the Hazelcast Reliable Topic and Topic.
You can listen to message events. To listen to these events, you need to implement the MessageListener interface.
See the following example.
type topicMessageListener struct {
}
func (l *topicMessageListener) OnMessage(message core.Message) error {
log.Println(message.MessageObject()) // furkan
return nil
}
topic.AddMessageListener(&topicMessageListener{})
topic.Publish("furkan")
7.6. Distributed Computing
This chapter explains how you can use Hazelcast IMDG's entry processor implementation in the Go client.
7.6.1. Using EntryProcessor
Hazelcast supports entry processing. An entry processor is a function that executes your code on a map entry in an atomic way.
An entry processor is a good option if you perform bulk processing on an Map. Usually you perform a loop of keys -- executing Map.get(key), mutating the value, and finally putting the entry back in the map using Map.put(key,value). If you perform this process from a client or from a member where the keys do not exist, you effectively perform two network hops for each update: the first to retrieve the data and the second to update the mutated value.
If you are doing the process described above, you should consider using entry processors. An entry processor executes a read and updates upon the member where the data resides. This eliminates the costly network hops described above.
NOTE: Entry processor is meant to process a single entry per call. Processing multiple entries and data structures in an entry processor is not supported as it may result in deadlocks on the server side.
Hazelcast sends the entry processor to each cluster member and these members apply it to the map entries. Therefore, if you add more members, your processing completes faster.
Processing Entries
The Map interface provides the following functions for entry processing:
• executeOnKey processes an entry mapped by a key.
• executeOnKeys processes entries mapped by a list of keys.
• executeOnEntries can process all entries in a map.
• executeOnEntriesWithPredicate can process all entries in a map with a defined predicate.
In the Go client, an EntryProcessor should be IdentifiedDataSerializable , Portable or Custom Serializable because the server should be able to deserialize it to process.
The following is an example for EntryProcessor which is IdentifiedDataSerializable.
type identifiedEntryProcessor struct {
value string
}
func (p *identifiedEntryProcessor) ReadData(input serialization.DataInput) error {
p.value = input.ReadUTF()
return input.Error()
}
func (p *identifiedEntryProcessor) WriteData(output serialization.DataOutput) error {
output.WriteUTF(p.value)
return nil
}
func (p *identifiedEntryProcessor) FactoryID() int32 {
return 5
}
func (p *identifiedEntryProcessor) ClassID() int32 {
return 1
}
Now, you need to make sure that the Hazelcast member recognizes the entry processor. For this, you need to implement the Java equivalent of your entry processor and its factory and create your own compiled class or JAR files. For adding your own compiled class or JAR files to the server's CLASSPATH, see the Adding User Library to CLASSPATH section.
The following is the Java equivalent of the entry processor in Go client given above:
import com.hazelcast.map.AbstractEntryProcessor;
import com.hazelcast.nio.ObjectDataInput;
import com.hazelcast.nio.ObjectDataOutput;
import com.hazelcast.nio.serialization.IdentifiedDataSerializable;
import java.io.IOException;
import java.util.Map;
public class IdentifiedEntryProcessor extends AbstractEntryProcessor<String, String> implements IdentifiedDataSerializable {
static final int CLASS_ID = 1;
private String value;
public IdentifiedEntryProcessor() {
}
@Override
public int getFactoryId() {
return IdentifiedFactory.FACTORY_ID;
}
@Override
public int getId() {
return CLASS_ID;
}
@Override
public void writeData(ObjectDataOutput out) throws IOException {
out.writeUTF(value);
}
@Override
public void readData(ObjectDataInput in) throws IOException {
value = in.readUTF();
}
@Override
public Object process(Map.Entry<String, String> entry) {
entry.setValue(value);
return value;
}
}
You can implement the above processor’s factory as follows:
import com.hazelcast.nio.serialization.DataSerializableFactory;
import com.hazelcast.nio.serialization.IdentifiedDataSerializable;
public class IdentifiedFactory implements DataSerializableFactory {
public static final int FACTORY_ID = 5;
@Override
public IdentifiedDataSerializable create(int typeId) {
if (typeId == IdentifiedEntryProcessor.CLASS_ID) {
return new IdentifiedEntryProcessor();
}
return null;
}
}
Now you need to configure the hazelcast.xml to add your factory as shown below.
<hazelcast>
<serialization>
<data-serializable-factories>
<data-serializable-factory factory-id="5">
IdentifiedFactory
</data-serializable-factory>
</data-serializable-factories>
</serialization>
</hazelcast>
The code that runs on the entries is implemented in Java on the server side. The client side entry processor is used to specify which entry processor should be called. For more details about the Java implementation of the entry processor, see the Entry Processor section in the Hazelcast IMDG Reference Manual.
After the above implementations and configuration are done and you start the server where your library is added to its CLASSPATH, you can use the entry processor in the Map functions. Let's take a look at the following example.
config := hazelcast.NewConfig()
identifiedFactory := &identifiedFactory{}
config.SerializationConfig().AddDataSerializableFactory(5, identifiedFactory)
client, _ := hazelcast.NewClientWithConfig(config)
mp, _ := client.GetMap("my-distributed-map")
mp.Put("key", "not-processed")
processor := &identifiedEntryProcessor{ value: value}
value, _ := mp.ExecuteOnKey("key", processor)
fmt.Println("after processing the new value is ", value)
newValue, _ := mp.Get("key")
fmt.Println("after processing the new value is ", newValue)
7.7. Distributed Query
Hazelcast partitions your data and spreads it across cluster of members. You can iterate over the map entries and look for certain entries (specified by predicates) you are interested in. However, this is not very efficient because you will have to bring the entire entry set and iterate locally. Instead, Hazelcast allows you to run distributed queries on your distributed map.
7.7.1. How Distributed Query Works
1. The requested predicate is sent to each member in the cluster.
2. Each member looks at its own local entries and filters them according to the predicate. At this stage, key-value pairs of the entries are deserialized and then passed to the predicate.
3. The predicate requester merges all the results coming from each member into a single set.
Distributed query is highly scalable. If you add new members to the cluster, the partition count for each member is reduced and thus the time spent by each member on iterating its entries is reduced. In addition, the pool of partition threads evaluates the entries concurrently in each member, and the network traffic is also reduced since only filtered data is sent to the requester.
If queried item is Portable, it can be queried for the fields without deserializing the data at the server side and hence no server side implementation of the queried object class will be needed.
Predicates Object Operators
The predicate package offered by the client includes many operators for your query requirements. Some of them are described below.
• equal: Checks if the result of an expression is equal to a given value.
• notEqual: Checks if the result of an expression is not equal to a given value.
• instanceOf: Checks if the result of an expression has a certain type.
• like: Checks if the result of an expression matches some string pattern. % (percentage sign) is the placeholder for many characters, _ (underscore) is placeholder for only one character.
• greaterThan: Checks if the result of an expression is greater than a certain value.
• greaterEqual: Checks if the result of an expression is greater than or equal to a certain value.
• lessThan: Checks if the result of an expression is less than a certain value.
• lessEqual: Checks if the result of an expression is less than or equal to a certain value.
• between: Checks if the result of an expression is between two values, inclusively.
• in: Checks if the result of an expression is an element of a certain list.
• not: Checks if the result of an expression is false.
• regex: Checks if the result of an expression matches some regular expression.
Hazelcast offers the following ways for distributed query purposes:
• Combining Predicates with AND, OR, NOT
• Distributed SQL Query
7.7.1.1. Employee Map Query Example
Assume that you have an employee map containing the values of Employee objects, as coded below.
type Employee struct {
name string
age int32
active bool
salary int64
}
func (e *Employee) ReadPortable(reader serialization.PortableReader) error {
e.name = reader.ReadUTF("name")
e.age = reader.ReadInt32("age")
e.active = reader.ReadBool("active")
e.salary = reader.ReadInt64("salary")
return reader.Error()
}
func (e *Employee) WritePortable(writer serialization.PortableWriter) error {
writer.WriteUTF("name", e.name)
writer.WriteInt32("age", e.age)
writer.WriteBool("active", e.active)
writer.WriteInt64("salary", e.salary)
return nil
}
func (e *Employee) FactoryID() int32 {
return 1
}
func (e *Employee) ClassID() int32 {
return 1
}
Note that Employee is implementing Portable. As portable types are not deserialized on the server side for querying, you don't need to implement its Java equivalent on the server side.
For the non-portable types, you need to implement its Java equivalent and its serializable factory on the server side for server to reconstitute the objects from binary formats. In this case before starting the server, you need to compile the Employee and related factory classes with server's CLASSPATH and add them to the user-lib directory in the extracted hazelcast-<version>.zip (or tar). See the Adding User Library to CLASSPATH section.
NOTE: Querying with Portable object is faster as compared to IdentifiedDataSerializable.
7.7.1.2. Querying by Combining Predicates with AND, OR, NOT
You can combine predicates by using the and, or and not operators, as shown in the below example.
mp, _ := client.GetMap("emloyees")
prdct := predicate.And(predicate.Equal("active", true), predicate.LessThan("age", 30))
value, _ := mp.ValuesWithPredicate(prdct)
In the above example code, predicate verifies whether the entry is active and its age value is less than 30. This predicate is applied to the employee map using the map.ValuesWithPredicate(predicate) method. This method sends the predicate to all cluster members and merges the results coming from them.
NOTE: Predicates can also be applied to keySet and entrySet of the Hazelcast IMDG's distributed map.
7.7.1.3. Querying with SQL
predicate.SQL takes the regular SQL where clause. Here is an example:
mp, _ := client.GetMap("employees")
prdct := predicate.And(predicate.SQL("active AND age < 30"))
value, _ := mp.ValuesWithPredicate(prdct)
Supported SQL Syntax
AND/OR: <expression> AND <expression> AND <expression>…
• active AND age > 30
• active = false OR age = 45 OR name = 'Joe'
• active AND ( age > 20 OR salary < 60000 )
Equality: =, !=, <, ⇐, >, >=
• <expression> = value
• age <= 30
• name = 'Joe'
• salary != 50000
BETWEEN: <attribute> [NOT] BETWEEN <value1> AND <value2>
• age BETWEEN 20 AND 33 ( same as age >= 20 AND age ⇐ 33 )
• age NOT BETWEEN 30 AND 40 ( same as age < 30 OR age > 40 )
IN: <attribute> [NOT] IN (val1, val2,…)
• age IN ( 20, 30, 40 )
• age NOT IN ( 60, 70 )
• active AND ( salary >= 50000 OR ( age NOT BETWEEN 20 AND 30 ) )
• age IN ( 20, 30, 40 ) AND salary BETWEEN ( 50000, 80000 )
LIKE: <attribute> [NOT] LIKE 'expression'
The % (percentage sign) is the placeholder for multiple characters, an _ (underscore) is the placeholder for only one character.
• name LIKE 'Jo%' (true for 'Joe', 'Josh', 'Joseph' etc.)
• name LIKE 'Jo_' (true for 'Joe'; false for 'Josh')
• name NOT LIKE 'Jo_' (true for 'Josh'; false for 'Joe')
• name LIKE 'J_s%' (true for 'Josh', 'Joseph'; false 'John', 'Joe')
ILIKE: <attribute> [NOT] ILIKE 'expression'
ILIKE is similar to the LIKE predicate but in a case-insensitive manner.
• name ILIKE 'Jo%' (true for 'Joe', 'joe', 'jOe','Josh','joSH', etc.)
• name ILIKE 'Jo_' (true for 'Joe' or 'jOE'; false for 'Josh')
REGEX: <attribute> [NOT] REGEX 'expression'
• name REGEX 'abc-.*' (true for 'abc-123'; false for 'abx-123')
Querying Examples with Predicates
You can use the __key attribute to perform a predicated search for entry keys. Please see the following example:
personMap, _ := client.GetMap("persons")
personMap.Put("Ahmet", 28)
personMap.Put("Ali", 30)
personMap.Put("Furkan", 23)
value , _ := personMap.ValuesWithPredicate(predicate.SQL("__key like F%"))
fmt.Println(value) //[23]
In this example, the code creates a slice with the values whose keys start with the letter "F”.
You can use the this attribute to perform a predicated search for entry values. See the following example:
personMap, _ := client.GetMap("persons")
personMap.Put("Ahmet", 28)
personMap.Put("Ali", 30)
personMap.Put("Furkan", 23)
value , _ := personMap.ValuesWithPredicate(predicate.GreaterEqual("this", 27))
fmt.Println(value) //[28 30]
In this example, the code creates a slice with the values greater than or equal to "27".
7.7.1.4. Querying with JSON Strings
You can query JSON strings stored inside your Hazelcast clusters. To query the JSON string, you first need to create a HazelcastJSONValue from the JSON string. You can use HazelcastJSONValues both as keys and values in the distributed data structures. Then, it is possible to query these objects using the Hazelcast query methods explained in this section.
person1 , _ := core.CreateHazelcastJSONValueFromString{"{ \"name\": \"John\", \"age\": 35 }"}
person2 , _ := core.CreateHazelcastJSONValueFromString{"{ \"name\": \"Jane\", \"age\": 24 }"}
person3 , _ := core.CreateHazelcastJSONValueFromString{"{ \"name\": \"Trey\", \"age\": 17 }"}
mp.Put(1, person1)
mp.Put(2, person2)
mp.Put(3, person3)
peopleUnder21, _ := mp.ValuesWithPredicate(predicate.LessThan("age", 21))
When running the queries, Hazelcast treats values extracted from the JSON documents as Java types so they can be compared with the query attribute. JSON specification defines five primitive types to be used in the JSON documents: number,string, true, false and nil. The string, true/false and nil types are treated as String, boolean and null, respectively. We treat the extracted number values as longs if they can be represented by a long. Otherwise, numbers are treated as doubles.
It is possible to query nested attributes and arrays in the JSON documents. The query syntax is the same as querying other Hazelcast objects using the Predicates.
/**
* Sample JSON object
*
* {
* "departmentId": 1,
* "room": "alpha",
* "people": [
* {
* "name": "Peter",
* "age": 26,
* "salary": 50000
* },
* {
* "name": "Jonah",
* "age": 50,
* "salary": 140000
* }
* ]
* }
*
*
* The following query finds all the departments that have a person named "Peter" working in them.
*/
departmentWithPeter, _ := departments.values(predicate.Equal("people[any].name", "Peter"))
HazelcastJSONValue is a lightweight wrapper around your JSON strings. It is used merely as a way to indicate that the contained string should be treated as a valid JSON value. Hazelcast does not check the validity of JSON strings put into to the maps. Putting an invalid JSON string into a map is permissible. However, in that case whether such an entry is going to be returned or not from a query is not defined.
7.7.2. Fast-Aggregations
Fast-Aggregations feature provides some aggregate functions, such as sum, average, max, and min, on top of Hazelcast Map entries. Their performance is perfect since they run in parallel for each partition and are highly optimized for speed and low memory consumption.
The aggregator package provides a wide variety of built-in aggregators. The full list is presented below:
• Count
• Float64Average
• Float64Sum
• FixedPointSum
• FloatingPointSum
• Max
• Min
• Int32Average
• Int32Sum
• Int64Average
• Int64Sum
You can use these aggregators with the Map.Aggregate() and Map.AggregateWithPredicate() functions.
See the following example.
mp, _ := client.GetMap("brothersMap")
mp.Put("Muhammet Ali", 30)
mp.Put("Ahmet", 27)
mp.Put("Furkan", 23)
agg, _ := aggregator.Count("this")
count, _ := mp.Aggregate(agg)
fmt.Println("There are", count, "brothers.") // There are 3 brothers.
count, _ = mp.AggregateWithPredicate(agg, predicate.GreaterThan("this", 25))
fmt.Println("There are", count, "brothers older than 25.") // There are 2 brothers older than 25.
avg, _ := aggregation.NewInt64Average("this")
avgAge, _ := mp.Aggregate(avg)
fmt.Println("Average age is", avgAge) // Average age is 26.666666666666668
7.8. Monitoring
7.8.1. Enabling Client Statistics
You can monitor your clients using Hazelcast Management Center.
As a prerequisite, you need to enable the client statistics before starting your clients. This can be done by setting the hazelcast.client.statistics.enabled system property to true on the member as the following:
<hazelcast>
...
<properties>
<property name="hazelcast.client.statistics.enabled">true</property>
</properties>
...
</hazelcast>
Also, you need to enable the client statistics in the Go client. There are two properties related to client statistics:
• hazelcast.client.statistics.enabled: If set to true, it enables collecting the client statistics and sending them to the cluster. When it is true you can monitor the clients that are connected to your Hazelcast cluster, using Hazelcast Management Center. Its default value is false.
• hazelcast.client.statistics.period.seconds: Period in seconds the client statistics are collected and sent to the cluster. Its default value is 3.
You can enable client statistics and set a non-default period in seconds as follows:
config := hazelcast.NewConfig()
config.SetProperty(property.StatisticsEnabled.Name(), "true")
config.SetProperty(property.StatisticsPeriodSeconds.Name(), "4")
After enabling the client statistics, you can monitor your clients using Hazelcast Management Center. See the Monitoring Clients section in the Hazelcast Management Center Reference Manual for more information on the client statistics.
7.8.2. Logging Configuration
By default Hazelcast Go client uses DefaultLogger for logging. The default logging level is info. If you want to change the logging level for the client, you should use LoggingLevel property:
config := hazelcast.NewConfig()
config.SetProperty(property.LoggingLevel.Name(), logger.ErrorLevel)
As described in Client System Properties Section you can also set the log level via an environment variable with this property:
os.Setenv(property.LoggingLevel.Name(), logger.ErrorLevel)
If you are using a custom logger, LoggingLevel property will not be used.
Possible log levels are as follows:
// OffLevel disables logging.
OffLevel = "off"
// ErrorLevel level. Logs. Used for errors that should definitely be noted.
// Commonly used for hooks to send errors to an error tracking service.
ErrorLevel = "error"
// WarnLevel level. Non-critical entries that deserve eyes.
WarnLevel = "warn"
// InfoLevel level. General operational entries about what's going on inside the
// application.
InfoLevel = "info"
// DebugLevel level. Usually only enabled when debugging. Very verbose logging.
DebugLevel = "debug"
// TraceLevel level. Designates finer-grained informational events than the Debug.
TraceLevel = "trace"
The Default Logger's format is as follows:
[Time] [caller method name]
[Log level] [Client Name] [Group Name] [Client Version] [Log Message]
An example default log message is as follows:
2018/11/30 17:48:52 github.com/hazelcast/hazelcast-go-client/internal.(*lifecycleService).fireLifecycleEvent
INFO: hz.client_1 [dev] [0.4] New State : STARTED
If you want to modify the Default Logger for your convenience, you can do so by accessing the embedded built-in go logger:
l := logger.New()
l.SetPrefix("myPrefix ")
config := hazelcast.NewConfig()
config.LoggerConfig().SetLogger(l)
The same log message will now be as follows:
myPrefix 2018/11/30 17:55:40 github.com/hazelcast/hazelcast-go-client/internal.(*lifecycleService).fireLifecycleEvent
INFO: hz.client_1 [dev] [0.4] New State : CONNECTED
If you want to set a custom logger, you can do so by implementing Logger interface:
type customLogger struct {
}
func (c *customLogger) Debug(args ...interface{}) {
}
func (c *customLogger) Trace(args ...interface{}) {
}
func (c *customLogger) Info(args ...interface{}) {
log.Println(args)
}
func (c *customLogger) Warn(args ...interface{}) {
}
func (c *customLogger) Error(args ...interface{}) {
}
Note that the customLogger only logs Info level to console. This way users can implement only the levels they need in the format they want to.
After implementing the Logger interface, you need to set it as the client's logger:
customLogger := &customLogger{}
config := hazelcast.NewConfig()
config.LoggerConfig().SetLogger(customLogger)
Note that when you call SetLogger method, the hazelcast property LoggingLevel will not be used.
You can also integrate any third party logger with Logger interface:
Logrus
logger := logrus.New()
logger.SetLevel(logrus.DebugLevel)
config := hazelcast.NewConfig()
config.LoggerConfig().SetLogger(logger)
The same log message will now be:
time="2018-11-30T18:09:52+03:00" level=info msg="New State : CONNECTED"
Note that Logrus already implements the Logger interface, therefore we did not need to do any extra work.
Zap
type zapLogger struct {
*zap.Logger
}
func (z *zapLogger) Debug(args ...interface{}) {
message := fmt.Sprintln(args)
z.Logger.Debug(message)
}
func (z *zapLogger) Trace(args ...interface{}) {
message := fmt.Sprintln(args)
z.Logger.Debug(message)
}
func (z *zapLogger) Info(args ...interface{}) {
message := fmt.Sprintln(args)
z.Logger.Info(message)
}
func (z *zapLogger) Warn(args ...interface{}) {
message := fmt.Sprintln(args)
z.Logger.Warn(message)
}
func (z *zapLogger) Error(args ...interface{}) {
message := fmt.Sprintln(args)
z.Logger.Error(message)
}
Then, you need to set it as the client's logger:
opt := zap.AddCallerSkip(1)
logger, _ := zap.NewProduction(opt)
zapLogger := &zapLogger{logger}
config := hazelcast.NewConfig()
config.LoggerConfig().SetLogger(zapLogger)
Note that we call zap.AddCallerSkip(1) to skip our wrapper method.
The same log message will now be:
{"level":"info","ts":1543594846.9142249,"caller":"internal/lifecycle.go:89","msg":"[New State : CONNECTED]\n"}
Glog
type gLogger struct {
}
func (*gLogger) Debug(args ...interface{}) {
// NO OP
}
func (*gLogger) Trace(args ...interface{}) {
// NO OP
}
func (*gLogger) Info(args ...interface{}) {
glog.Info(args)
}
func (*gLogger) Warn(args ...interface{}) {
glog.Warning(args)
}
func (*gLogger) Error(args ...interface{}) {
glog.Error(args)
}
Then, you need to set it as the client's logger:
config := hazelcast.NewConfig()
config.LoggerConfig().SetLogger(&gLogger{})
8. Development and Testing
If you want to help with bug fixes, develop new features or tweak the implementation to your application's needs, you can follow the steps in this section.
8.1. Building and Using Client From Sources
Follow the below steps to build and install Hazelcast Go client from its source:
If you are planning to contribute, please run the style checker, as shown below, and fix the reported issues before sending a pull request.
• sh linter.sh
8.2. Testing
In order to test Hazelcast Go client locally, you will need the following:
• Java 6 or newer
• Maven
Following command starts the tests:
sh local-test.sh
Test script automatically downloads hazelcast-remote-controller and Hazelcast IMDG. The script uses Maven to download those.
9. Getting Help
You can use the following channels for your questions and development/usage issues:
10. Contributing
Besides your development contributions as explained in the Development and Testing chapter above, you can always open a pull request on this repository for your other requests such as documentation changes.
11. License
Apache 2 License.
Copyright (c) 2008-2019, Hazelcast, Inc. All Rights Reserved.
Visit www.hazelcast.com for more information.
Documentation
Overview
Package hazelcast provides methods for creating Hazelcast clients and client configurations.
Index
Constants
This section is empty.
Variables
This section is empty.
Functions
func NewConfig
func NewConfig() *config.Config
NewConfig creates and returns a new config.
Types
type Client
type Client interface {
// Name returns the name of this hazelcast client.
Name() string
// GetMap returns the distributed map instance with the specified name.
GetMap(name string) (core.Map, error)
// GetList returns the distributed list instance with the specified name.
GetList(name string) (core.List, error)
// GetSet returns the distributed set instance with the specified name.
GetSet(name string) (core.Set, error)
// GetTopic returns the distributed topic instance with the specified name.
GetTopic(name string) (core.Topic, error)
// GetReliableTopic returns the distributed reliable topic instance with the specified name.
GetReliableTopic(name string) (core.Topic, error)
// GetMultiMap returns the distributed multi-map instance with the specified name.
GetMultiMap(name string) (core.MultiMap, error)
// GetReplicatedMap returns the replicated map instance with the specified name.
GetReplicatedMap(name string) (core.ReplicatedMap, error)
// GetQueue returns the distributed queue instance with the specified name.
GetQueue(name string) (core.Queue, error)
// GetRingbuffer returns the distributed ringbuffer instance with the specified name.
GetRingbuffer(name string) (core.Ringbuffer, error)
// GetPNCounter returns the distributed PN (Positive-Negative) CRDT counter instance with the specified name.
GetPNCounter(name string) (core.PNCounter, error)
// GetFlakeIDGenerator returns the distributed flakeIDGenerator instance with the specified name.
GetFlakeIDGenerator(name string) (core.FlakeIDGenerator, error)
// GetDistributedObject returns DistributedObject created by the service with the specified name.
GetDistributedObject(serviceName string, name string) (core.DistributedObject, error)
// Shutdown shuts down this Client.
Shutdown()
// Cluster returns the Cluster this instance is part of.
// Cluster interface allows you to add listener for membership
// events and learn more about the cluster this Hazelcast
// instance is part of.
Cluster() core.Cluster
// LifecycleService returns the lifecycle service for this instance. LifecycleService service allows you
// to listen for the lifecycle events.
LifecycleService() core.LifecycleService
}
Client is a Hazelcast client. Multiple Hazelcast clients can be created. Each Hazelcast client has its own socket, goroutines. Hazelcast client enables you to do all Hazelcast operations without being a member of the cluster. It connects to one of the cluster members and delegates all cluster wide operations to it. When the connected cluster member dies, client will automatically switch to another live member.
func NewClient
func NewClient() (Client, error)
NewClient creates and returns a new Client. Hazelcast client enables you to do all Hazelcast operations without being a member of the cluster. It connects to one of the cluster members and delegates all cluster wide operations to it. When the connected cluster member dies, client will automatically switch to another live member.
func NewClientWithConfig
func NewClientWithConfig(config *config.Config) (Client, error)
NewClientWithConfig creates and returns a new Client with the given config. Hazelcast client enables you to do all Hazelcast operations without being a member of the cluster. It connects to one of the cluster members and delegates all cluster wide operations to it. When the connected cluster member dies, client will automatically switch to another live member.
Source Files
Directories
Path Synopsis
Package config contains all the configuration to start a Hazelcast instance.
Package config contains all the configuration to start a Hazelcast instance.
Package core provides core API interfaces/classes.
Package core provides core API interfaces/classes.
aggregator
Package aggregator is a utility package to create basic aggregators.
Package aggregator is a utility package to create basic aggregators.
predicate
Package predicate is a utility package to create predicate.
Package predicate is a utility package to create predicate.
sample
set
Package serialization serializes user objects to Data and back to Object.
Package serialization serializes user objects to Data and back to Object.
spi
test
Jump to
Keyboard shortcuts
? : This menu
/ : Search site
f or F : Jump to
t or T : Toggle theme light dark auto
y or Y : Canonical URL
|
__label__pos
| 0.614949 |
Take the 2-minute tour ×
Mathematics Stack Exchange is a question and answer site for people studying math at any level and professionals in related fields. It's 100% free, no registration required.
How can we prove that the limit of sequence $\lim_{n\rightarrow\infty}a_{n}=0$ if $a_{n}>0$ and $\lim_{n\to\infty}\frac{a_{n}}{a_{n+1}}=l>1$
share|improve this question
What have you tried? – Alex Becker May 24 '12 at 13:36
3 Answers 3
up vote 3 down vote accepted
There is some $N$ sufficiently large so that, for all $n > N$, we have $a_{n+1}/a_n \leq c < 1$.
For for $n > 0$ we have $0 < a_{n+N} \leq a_N c^n$. By the squeeze theorem, $a_{n+N} \rightarrow 0$.
share|improve this answer
The key observation in applying the squeeze theorem is $a_{N}$ is fixed. – toypajme May 24 '12 at 14:18
I don't certainly get the point that how we reach the inequality $a_{n+N}<a_{N}c^n$ thanks – Francis King May 24 '12 at 15:09
I have get the point.thanks – Francis King May 24 '12 at 15:19
Hint:
If $\lim\limits_{n\rightarrow\infty}{a_n\over a_{n+1}}=l>1$, then $\lim\limits_{n\rightarrow\infty}{a_{n+1}\over a_n }={1\over l}<1$. Choose $0<c<1$, and choose $N$ so that if $n\ge N$, then ${a_{n+1}\over a_n}<c$.
Then note:
$\ \ \ \ a_{N+1}<{c}\, a_N$,
$\ \ \ \ a_{N+2}<{c}\,a_{N+1}<{c^2}a_N$,
$\ \ \ \ a_{N+3}<{c}\,a_{N+2}<{c^3}a_N$,
$\ \ \ \ \ \ \ \ \ \ \ \ \ \ \vdots$
share|improve this answer
thanks. your step-by-step induction helps me a lot. – Francis King May 24 '12 at 15:20
Another proof not-by-the-definition: the series $\,\displaystyle{\sum_{n=1}^\infty a_n\,}$ is a positive one and it converges by D'Alembert's test (or the quotient test), since $\,\displaystyle{\frac{a_{n+1}}{a_n}\to \frac{1}{l}<1}\,$ , thus it must be $\,a_n\to 0$
share|improve this answer
Right. But I guess that D'Alembert's test is proved the same way as the fact asked here. Your suggestion might be a circular reasoning. – Siminore May 24 '12 at 16:27
No, or at least not the proof I know, which proves the sequence of partial sums of the series is bounded (using a geometric convergente series) and thus the series converges. – DonAntonio May 24 '12 at 18:01
Your Answer
discard
By posting your answer, you agree to the privacy policy and terms of service.
Not the answer you're looking for? Browse other questions tagged or ask your own question.
|
__label__pos
| 0.960946 |
RTTI简介
代码编译运行平台:VS2017+Debug+Win32
RTTI(Runtime Type Identification)是“运行时类型识别”的意思。面向对象的编程语言,像C++,Java,Delphi都提供了对RTTI的支持。 本文将简略介绍 RTTI 的一些背景知识、描述 RTTI 的概念,并通过具体例子和代码介绍什么时候使用以及如何使用 RTTI。本文还将详细描述两个重要的RTTI运算符的使用方法,它们是typeid和dynamic_cast。
1.typeid的用法
1.1type_info类
typeid的结果是const type_info&。所以下面先对type_info类做下介绍:
class type_info
{
public:
virtual ~type_info();
size_t hash_code() const
_CRTIMP_PURE bool operator==(const type_info& rhs) const;
_CRTIMP_PURE bool operator!=(const type_info& rhs) const;
_CRTIMP_PURE int before(const type_info& rhs) const;
_CRTIMP_PURE const char* name() const;
_CRTIMP_PURE const char* raw_name() const;
};
我们不能直接实例化 type_info 类的对象,因为该类只有一个私有复制构造函数。 构造(临时)type_info 对象的唯一方式是使用 typeid 运算符。 由于赋值运算符也是私有的,因此不能复制或分配类 type_info 的对象。
1.2typeid应用实例
1.2.1typeid静态的类型判断
typeid可以静态地确定操作数的类型,也可以动态地确定操作数的类型,这取决于操作数本身是否拥有虚函数。当typeid的操作数是一个基本类型的变量,或者是一个不带虚函数的对象时,typeid的运行结果是在编译阶段决定的。所以是一种静态的类型判断。见下面的例子。
#include <iostream>
using namespace std;
class A
{
int i;
public:
void show()
{
cout<<"In class A"<<endl;
}
};
class B
{
int i;
public:
void show()
{
cout<<"In class B"<<endl;
}
};
template <typename T>void func(T& a)
{
if(typeid(A)==typeid(T))
cout<<"is A"<<endl;
if(typeid(B)==typeid(T))
cout<<"is B"<<endl;
}
int main()
{
if(typeid(B)==typeid(A))
cout<<"A equal to B"<<endl;
else
cout<<"A not equal to B"<<endl;
A a;
B b;
func<A>(a);
func<B>(b);
cout<<typeid(B).name()<<endl;
}
程序输出结果:
A not equal to B
is A
is B
class B
在上面的程序中,函数模板func()被实例化为class A和class B时,typeid(T)是在编译阶段静态确定的。在函数模板内部,可以通过typeid操作决定在模板参数被实例化为不同数据类型的时要采取不同的行动。
1.2.2typeid动态类型判断
typeid更多的时候是在运行时用来动态地确定指针或引用所指向对象的类型,这时要求typeid所操作的对象一定要拥有虚函数。见下面的程序。
#include <iostream>
using namespace std;
class A
{
virtual void func(){}
};
class B:public A{};
void reportA(A* pa)
{
if(typeid(*pa)==typeid(A))
cout<<"Type of *pb is A"<<endl;
else if(typeid(*pa)==typeid(B))
cout<<"Type of *pb is B"<<endl;
}
void reportB(B* pb)
{
if(typeid(*pb)==typeid(A))
cout<<"Type of *pb is A"<<endl;
else if(typeid(*pb)==typeid(B))
cout<<"Type of *pb is B"<<endl;
}
int main()
{
A a,*pa;
B b,*pb;
pa=&a;
reportA(pa);
pa=&b;
reportA(pa);
pb=static_cast<B*>(&a);
reportB(pb);
pb=&b;
reportB(pb);
}
程序输出结果:
Type of *pb is A
Type of *pb is B
Type of *pb is A
Type of *pb is B
从上面的运行结果可以看出,使用typeid确实能够在程序运行期间动态地判断指针所指对象的实际类型。使用引用可以到达同样的效果,因为引用的底层实现就是指针。
要注意的是: (1)如果在Class A的定义中,将函数func()定义为普通函数(即将前面的virtual关键字去掉),那么typeid(*pa)的结果永远是typeid(A),而typeid(*pb)的结果永远是typeid(B)。也就是说,由于pa和pb所指向的对象中没有虚函数,该对象就没有虚函数表存放运行时信息,typeid实际就变成了一种静态运算符。
(2)C++中的一切“动态”机制,包括虚函数、RTTI等,都必须通过指针或引用来实现。换句话说,指针所指的对象或引用所绑定的对象,在运行阶段可能与声明指针或引用时的类型不一致。如果不使用指针或引用,而是直接通过对象名访问对象,那么即使对象拥有动态信息(虚函数表),对象的动态信息与静态申明对象时的信息必然一致,就没有必要访问虚函数表;而如果对象不拥有虚函数,就没有虚函数表存放动态信息,也就无法在运行时动态判断指针所指向对象(或引用所绑定对象)的实际类型。
2.dynamic_cast的用法
详见我的另一篇blogC/C++数据类型的转换之终极无惑
参考文献
[1]百度百科.RTTI [2]陈刚.C++高级进阶教程[M].武汉:武汉大学出版社,2008[8.6(P288-P290)] [3]typeid 运算符 [4]C++中的RTTI(转)
本文参与腾讯云自媒体分享计划,欢迎正在阅读的你也加入,一起分享。
发表于
我来说两句
0 条评论
登录 后参与评论
扫码关注云+社区
领取腾讯云代金券
|
__label__pos
| 0.772401 |
Transformation has many meanings in mathematics. If using this tag, add another tag related to the object being transformed. If there is a tag for your specific kind of transformations, use that one instead: e.g., (laplace-transform), (fourier-analysis), (z-transform), (integral-transforms), ...
learn more… | top users | synonyms
7
votes
0answers
217 views
Way to Tietze's Transformation Theorem
during our knot-theory lecture we have talking about the following theorem: Given two finite presentations of the same group, one can be obtained from the other by a finite sequence of Tietze ...
5
votes
0answers
54 views
Applying PCA on covariance matrix in order to generate a new random variable.
Let $\mathbf{x}$ be a random $n\times1$ real vector, $\mathbf{x}\in\Bbb{R}^n$, which is distributed normally with mean $\bar{\mathbf{x}}$ and covariance matrix $\Sigma_x\in\Bbb{R}^{n\times n}$, i.e. ...
5
votes
0answers
155 views
How to use polynomial or conformal transformation
In my research, I came to a transformation problem. The simple version is an initial circle (or sphere) region is advected by some deformational flow. After some time the circle will be deformed into ...
4
votes
0answers
54 views
Transform recurrence relation
Is it possible to transform following recurrence relation $a_n=4a_{n-2}-a_{n-4}$, $a_0=1$, $a_1=0$, $a_2=3$, $a_3=0$ so that it will have nonnegative coefficients? Number of terms, of course, can be ...
4
votes
0answers
239 views
Geometric intuition for Jordan normal forms (invariant subspaces, shearing, scaling, etc.)
I'm trying to visualize what a linear operator does to a vector space if that operator can be put into Jordan normal form. For concrete motivation, let's take $V = \mathbb{R}^3$, with some linear ...
4
votes
0answers
216 views
how do you map a sphere to a cube
I want to map a sphere to a cube in order to create a panoramic tour like the one given here But I don't know how can you obtain images like This image is one of the cube's faces. What I tried was ...
4
votes
0answers
175 views
What is known about the transformation of a power series in which $z^n$ is replaced with $z^{n^2}$?
Say we have the function $$G(z) = \sum_{n \geq 0} g_n z^n.$$ Is there a name for the transform T defined so that $$(T(G))(z) = \sum_{n \geq 0} g_n z^{n^2}?$$ Is there anything known about this ...
3
votes
0answers
74 views
Changing coordinate system with non standard definitions
The standard coordinate transformation to polar coordinates is $$ \begin{cases} x=r\cos(\varphi)\\ y=r\sin(\varphi) \end{cases} $$ with $r\in[0,\infty), \ \varphi\in[0,2\pi)$ The question is whether I ...
2
votes
0answers
56 views
Given the minimal polynomial, find the largest invariant subspace
Let the linear transformation T on the vector space $V$ over $\mathbb{Q}$ have minimal polynomial $(x^{7} - x^{3})$. a) What is the largest invariant subspace W of V for which $T (W) = W$? b) Find a ...
2
votes
0answers
17 views
Finding the matrix ${\left[ T \right]_E}$
Let the matrix ${\left[ T \right]_{B \to E}}$, the matrix where: $${\left[ T \right]_{B \to E}}{\left[ v \right]_E} = {\left[ {T(v)} \right]_B}$$ It's given that: $${\left[ T \right]_{B \to E}} = ...
2
votes
0answers
74 views
Finding transformation from $T : \Bbb R^5 \rightarrow \Bbb R^4 $ …
Is there a Linear Transformation from $T : \Bbb R^5 \rightarrow \Bbb R^4 $ so $$\operatorname{Ker}T = \{( x,y,z,t,w) \in \Bbb R^5 \; | \; x = 2y, \text{ and, } z = 2t = 3w\}$$ if so find an example of ...
2
votes
0answers
93 views
From inverse Weierstrass function to Jacobi elliptic/inverse elliptic functions?
As a conclusion to a previous question on integrals, I get an answer in terms of inverse Weierstrass elliptic function : $$ f\left(x\right)=\wp^{-1}\left( \beta + \frac{9\beta^2-1}{3(x-\beta)} \right) ...
2
votes
0answers
52 views
Invariant functions under integral transforms
We all know Fourier transform has invariants such as $e^{-x^2}$, and another MSE post has shown the non-existence of invariant function under Hilbert transform using Fourier transform. I am wondering ...
2
votes
0answers
86 views
Get 2D coordinate transformation matrix based on points in a system and their angles in the other?
I'd like to get the parameters (rotation angle,$\Theta$, and translation coefficients, $x_0$ and $y_0$)) of a transformation for translating and rotating points in a coordinate system to another. As ...
2
votes
0answers
60 views
Heat equation $\frac{\partial \theta}{\partial t}=\kappa \frac{\partial ^2\theta}{\partial x}$ using two transformations to solve
Consider the heat equation $$\frac{\partial \theta}{\partial t}=\kappa \frac{\partial ^2\theta}{\partial x}$$ for an infinite rod. We use the transformation $q_1=\frac{x^2}{kt}$ and $q_2=\frac{\theta ...
2
votes
0answers
256 views
Derive Student T distribution using transformation theorem
I am trying working on an exercise that asks me to show that If $ X_1 \in N(0,1) $ and $ X_2 \in \chi^2(n) $ are independent random variables, then $ X_1 / \sqrt{X_2/n} \in t(n) \, $ where $ ...
2
votes
0answers
63 views
Stabilize Variance for Statistics (Transformation)
Problem: When $Y (> 0)$ has mean and variance equal to $\mu$ and $\mu/n$ respectively, it is shown in the textbook that the appropriate transformation of Y to stabilize variance is the square root ...
2
votes
0answers
39 views
Inverting a discrete linear transformation
Consider the transformation from the set $\{a_n\}_{n=0}^N$ to the set $\{p_j\}_{j=0}^N$: $$ p_j = \sum_{n = 0}^Na_n\phi_n(x_j)$$ where $\{\phi_n(x)\}_{n=0}^N$ is a set of basis functions (linearly ...
2
votes
0answers
64 views
Perhaps an easy algebra problem, but it still evades me
I need help spotting a corresponding transformation Let $x,y$ be some variables and $$z=z(x,y)$$. We have a transformation $X(\lambda):(x,y,z)\to (x',y',z')$, such that $$x'= x\exp(a\lambda)\\ ...
2
votes
0answers
194 views
Hodograph transformation and implicit solution of a non-linear PDE
I am trying to understand how can one apply the Hodograph transformation to a non-linear PDE. I read that this transformation implies the representation of the solution in the implicit form . So, if I ...
2
votes
0answers
62 views
Is there an intuitive understanding of what a walsh coefficient is?
I am working with Walsh coefficients. I know the intuitive understanding is almost that that they are the degree of connectivity, but it is there a better way of thinking about it? What is the ...
2
votes
0answers
123 views
Proof for a summation-procedure using the matrix of Eulerian numbers?
I've discussed a procedure for divergent summation using the matrix of Eulerian numbers occasionally in the last years (initially here, and here in MSE and MO but not in that generality and thus(?) ...
2
votes
0answers
83 views
bound on Hilbert transform
Consider $\widehat{Tf(\xi)}=m(\xi)\hat{f}(\xi)$, where $m(\xi)=(1-\vert\xi\vert)1_{[-1,1]}$, i.e. $T$ is the operation of taking Fourier transform and multiplying with the function $m(\xi)$. I am ...
2
votes
0answers
291 views
Understanding Discrete Cosine Transformation
I'm currently working on some software and a key component is 2D DCT. But my question is more general, as I'm trying to understand the DCT in general, let's say from engineers point of view. For ...
2
votes
0answers
204 views
transformation of coordinate systems by rotation
I am trying to convert a set of coordinates from ECEF (Earth Center Earth Fixed) to ENU (East North Up). The operation is performed by applying a rotation matrix as shown in: ...
2
votes
0answers
130 views
Transform 3D vectors between planes using a matrix
I've got 6 points in 3D space: $A,B,C,D,E,F$, that represent 4 vectors. $AB$ is perpendicular to $AC$ and $DE$ is perpendicular to $DF$. I need to find a transformation matrix M, that transforms $AB$ ...
2
votes
0answers
132 views
Hyperbolic Universal Covering Space
I have been working with Ricci flow in the euclidean and hyperbolic space but have been having considerable trouble determining how to generate a universal covering space for complex hyperbolic ...
2
votes
0answers
368 views
How to find the center of an (scaled) ellipse?
This question is an extension of How to find the center of an ellipse?. The solution there works well, but in Javascript the floating point calculations are not that accurate. The workaround is to ...
1
vote
0answers
35 views
Prove that the continuous $f: \mathbb C \to \mathbb R$ has a global max and min
I am having this continuous transformation $f: \mathbb C \to \mathbb R$ and $\ f\ (\mathbb C)$ is bounded Now I have to prove that there are a global maximum and a global minimum. My thoughts: I ...
1
vote
0answers
31 views
Transforming 1D Burger's Equation into infinitely many coupled ODE's
I've been working on the following problem but I can't justify my steps, would a savvy mathematician kindly tell me what, if any, violations I've made. Problem: Show Burger's equation can be written ...
1
vote
0answers
21 views
Transformation for two different boundary functions in Stefan problem
Peace be upon on all of you, I have one-dimensional Stefan problem. Let say we have two boundary conditions of $u(t,s_{1}(t))=g_{1}(t)$ and $u(t,s_{2}(t))=g_{2}(t)$, where $u$ is temperature, $t$ is ...
1
vote
0answers
76 views
Dimension of image of a skew symmetric map is even
If $A$ is a skew-symmetric linear transformation on a finite-dimensional Euclidean space, then rank $\rho(A)$ of $A$ i.e., the dimension of image of $A$ is even. I am trying for a geometric proof of ...
1
vote
0answers
56 views
Help me generalize what this divisor transform does.
I have an algorithm which takes as input the series expansion of: $$\frac{-(1 + ax(-2 + x + ax))}{-1 + ax} \tag 1$$ or expressed differently: ...
1
vote
0answers
41 views
Conformal mapping of part of an annulus
I have a question about conformal mapping. I am wanting to map annuli to some other simple domain (probably rectangular). I have an image of my problem below In image A. we see a standard annulus ...
1
vote
0answers
33 views
Complex analysis question, maximum principle application
Let $\Omega=\{z, \text{Re}z>0\}$ Suppose that $f$ is continuous in the closure of $\Omega$ and $f$ is holomoprhic on $\Omega$ and there are constants $A<\infty $ and $\alpha<1$ such that ...
1
vote
0answers
39 views
Equation of smooth spline curve
This is a homework question a)Assume an equilateral triangle ABC of a side AB = a = 10.The coordinate of A is (5, 3).The slope of the segment AB is 2.This triangle controls a curve.This smooth ...
1
vote
0answers
32 views
One question on Matrix Equation
Assume $\hat{M}_1, \hat{M}_2, \hat{T}_{11}, \hat{T}_{12}, \hat{T}_{21}, \hat{T}_{22}$ are $2\times 2$ matrix. And $a, b, A, B, C, D$ are all numbers, satisfying the following relation: \begin{align} ...
1
vote
0answers
29 views
Comparing function to parent function without graphing
How can I compare this function to the parent function without graphing? Where did the 5/4 come from and what steps do I need to take to solve this?
1
vote
0answers
18 views
Transformation as function of time, Solve for time
I'm trying to create a flawless a priori collision solver. I have two local coordinate systems which map to global coordinates using $[translate][rotate][scale]$, and map to eachother using ...
1
vote
0answers
16 views
Questions about a special tensor transformation
Suppose tensor $U_{i\alpha\beta}$ with dimension $M*N*N$ satisfy following condition: $$U_{i\beta\alpha}=W^1_{\alpha\alpha'}W^2_{\beta\beta'}U_{i\alpha'\beta'}$$ where $W^1$ and $W^2$ are $N*N$ ...
1
vote
0answers
41 views
Jacobian determinant of unitary transformation
Is the Jacobian determinant of a unitary transformation equal to one? I ask because I get that impression from the appendix of this paper. They have spherical coordinates for two particles, ...
1
vote
0answers
14 views
A conformal mapping from a sector to a strip
What is the simplest function that maps the sector $r < 1$, $0 < \theta < \pi$ conformally onto the strip $0 < u < \pi/2$, $v > 0$? Here, $r$, $\theta$, $u$, $v$ have their usual ...
1
vote
0answers
32 views
Show that a transform is involutive
Let $\mathcal C$ be the class of continuous, nonnegative, not identically equal to zero, concave, positive homogeneous of first order functions from $\mathbb R^n_+ = \{ x \in \mathbb R^n \colon x \geq ...
1
vote
0answers
82 views
Trick for Jordan-Matrix and transformation of basis
some time ago I found a 'trick' for getting a basis-transformation-matrix for jordan. I'd like to understand it, but at a certain point I stuck. Maybe you can help me? Given is a matrix A: ...
1
vote
0answers
23 views
how to extract frequency from a set of numbers
Given the numbers 4,1,0,4,0,0,4,1,0,4 it is obvious there's a dominating frequency of 4 appearing every four numbers. Given 5,1,1,3,0,0,6,1,0,4 again it looks that there's a spike of about 4 (4.5 to ...
1
vote
0answers
17 views
A question on the procedure of finding the matrix of a linear transformation of a polynomial and a combination of its derivatives
I'm trying to self-study Linear Algebra from Linear Algebra Done Wrong, but the book doesn't have solution manual so my question might be extremely easy, apologize in advance: The question is for the ...
1
vote
0answers
33 views
Linear Probability Density Transformations
Suppose that $\mathbf{y=Ax}$ and that a probability density function over $\mathbf{x}$ is defined as $p(\mathbf{x})$. If $\mathbf{A}$ has an inverse then the PDF over $\mathbf{y}$ is given by ...
1
vote
0answers
42 views
what's a homogeneous transformation?
Minkowski writes in his paper on Time and Space: If, for simplicity, we retain the same zero point of space and time, the first-mentioned group signifies in mechanics that we may subject the axes ...
1
vote
0answers
43 views
$T (x_1,x_2,x_3,…,x_n) = (-x_3,x_3,x_4,x_5,…) $ then $ W \ne ker T$
Let $V$ the vector space of all sequences of real numbers and $W$ the subspace given by $W = \{(a,a,0,0,...) | a \in R\}$ , and $T : V \rightarrow V$ given by $T (x_1,x_2,x_3,...,x_n) = ...
1
vote
0answers
16 views
Existence of a particular transformation
I've a set of data points $S = \{ x | x\in [0,1]\}$ (i.e. real values from the unit interval). In some cases I've big clusters in the data and I want to spread the values in between the unit interval ...
|
__label__pos
| 0.907724 |
Summary
Retrieves the current date and time from a NIST server.
Code (C#)
var result = DateTime.MinValue;
// Initialize the list of NIST time servers
// http://tf.nist.gov/tf-cgi/servers.cgi
string[] servers = new string[] {
"nist1-ny.ustiming.org",
"nist1-nj.ustiming.org",
"nist1-pa.ustiming.org",
"time-a.nist.gov",
"time-b.nist.gov",
"nist1.aol-va.symmetricom.com",
"nist1.columbiacountyga.gov",
"nist1-chi.ustiming.org",
"nist.expertsmi.com",
"nist.netservicesgroup.com"
};
// Try 5 servers in random order to spread the load
Random rnd = new Random();
foreach (string server in servers.OrderBy(s => rnd.NextDouble()).Take(5))
{
try
{
// Connect to the server (at port 13) and get the response
string serverResponse = string.Empty;
using (var reader = new StreamReader(new System.Net.Sockets.TcpClient(server, 13).GetStream()))
{
serverResponse = reader.ReadToEnd();
}
// If a response was received
if (!string.IsNullOrEmpty(serverResponse))
{
// Split the response string ("55596 11-02-14 13:54:11 00 0 0 478.1 UTC(NIST) *")
string[] tokens = serverResponse.Split(' ');
// Check the number of tokens
if (tokens.Length >= 6)
{
// Check the health status
string health = tokens[5];
if (health == "0")
{
// Get date and time parts from the server response
string[] dateParts = tokens[1].Split('-');
string[] timeParts = tokens[2].Split(':');
// Create a DateTime instance
DateTime utcDateTime = new DateTime(
Convert.ToInt32(dateParts[0]) + 2000,
Convert.ToInt32(dateParts[1]), Convert.ToInt32(dateParts[2]),
Convert.ToInt32(timeParts[0]), Convert.ToInt32(timeParts[1]),
Convert.ToInt32(timeParts[2]));
// Convert received (UTC) DateTime value to the local timezone
result = utcDateTime.ToLocalTime();
// Response successfully received; exit the loop
break;
}
}
}
}
catch
{
// Ignore exception and try the next server
}
}
// Output the result
if (result > DateTime.MinValue)
Output.Text = result.ToString();
else
Output.Text = "Unable to get internet time.";
Input Type: Nothing, Output Type: Plain Text
Download Project File
File: Get_NIST_atomic_clock_time.dvp (2.37 KB)
To open this file, DataVoila must be installed on your computer. If this is not yet the case, please click here to download the free demo version.
|
__label__pos
| 0.981672 |
Create an executable FatJar in Gradle
Fat Jar is also know as uber jar which consists of all the classes along with the dependencies required to the run the application.
Setup build.gradle
plugins {
id 'java'
}
repositories {
mavenCentral()
}
dependencies {
compile jackson_libraries.core
compile jackson_libraries.databind
compile jackson_libraries.annotations
}
Override the default JAR task
By default jar task build jar without any dependencies, we will override the behavior of the jar task by adding a few lines of code in the build.gradle which will include all the dependencies to the jar.
jar {
manifest {
attributes "Main-Class": "in.asvignesh.MainClass"
}
from {
configurations.compile.collect { it.isDirectory() ? it : zipTree(it) }
}
}
The final gradle file will look like
plugins {
id 'java'
}
repositories {
mavenCentral()
}
dependencies {
compile jackson_libraries.core
compile jackson_libraries.databind
compile jackson_libraries.annotations
}
jar {
manifest {
attributes "Main-Class": "in.asvignesh.MainClass"
}
from {
configurations.compile.collect { it.isDirectory() ? it : zipTree(it) }
}
}
Now running the jar will generate the executable jar with the dependencies.
Also published on Medium.
Default image
Vignesh A Sathiyanantham
AWS Certified developer with 8 years of extensive experience working for Cloud and Datacenter solutions and leading a small team in a lean startup based on Bangalore, India
Leave a Reply
This site uses Akismet to reduce spam. Learn how your comment data is processed.
|
__label__pos
| 0.997622 |
Skip to content
tc39/proposal-import-attributes
master
Switch branches/tags
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Code
Import Attributes
Champions: Sven Sauleau (@xtuc), Daniel Ehrenberg (@littledan), Myles Borins (@MylesBorins), Dan Clark (@dandclark), and Nicolò Ribaudo (@nicolo-ribaudo).
Status: Stage 3
⚠️ The specification in this proposal might be out of date. tc39/ecma262#3057 is the latest version.
Some of the changes present in the current specification have not been presented to committee yet: #142
Please leave any feedback you have in the issues!
Synopsis
The Import Attributes proposal, formerly known as Import Assertions, adds an inline syntax for module import statements to pass on more information alongside the module specifier. The initial application for such attributes will be to support additional types of modules in a common way across JavaScript environments, starting with JSON modules.
The syntax will be as follows (shown here is the proposed method for importing a JSON module):
import json from "./foo.json" with { type: "json" };
import("foo.json", { with: { type: "json" } });
The specification of JSON modules was originally part of this proposal, but it was resolved during the July 2020 meeting to split JSON modules out into a separate Stage 3 proposal.
Motivation
Standards-track JSON ES modules were proposed to allow JavaScript modules to easily import JSON data files, similarly to how they are supported in many nonstandard JavaScript module systems. This idea quickly got broad support from web developers and browsers, and was merged into HTML, with an implementation for V8/Chromium created by Microsoft.
However, in an issue, Ryosuke Niwa (Apple) and Anne van Kesteren (Mozilla) proposed that security would be improved if some syntactic marker were required when importing JSON modules and similar module types which cannot execute code, to prevent a scenario where the responding server unexpectedly provides a different MIME type, causing code to be unexpectedly executed. The solution was to somehow indicate that a module was JSON, or in general, not to be executed, somewhere in addition to the MIME type.
Some developers have the intuition that the file extension could be used to determine the module type, as it is in many existing non-standard module systems. However, it's a deep web architectural principle that the suffix of the URL (which you might think of as the "file extension" outside of the web) does not lead to semantics of how the page is interpreted. In practice, on the web, there is a widespread mismatch between file extension and the HTTP Content Type header. All of this sums up to it being infeasible to depend on file extensions/suffixes included in the module specifier to be the basis for this checking.
There are other possible pieces of metadata which could be associated with modules, see #8 and tc39/proposal-import-reflection#18 for further discussion.
Proposed ES module types that are blocked by this security concern, in addition to JSON modules, include CSS modules and potentially HTML modules if the HTML module proposal is restricted to not allow script.
Rationale
There are three places where this data could be provided:
• As part of the module specifier (e.g., as a pseudo-scheme)
• Challenges: Adds complexity to URLs or other module specifier syntaxes, and risks being confusing to developers (further discussion: #11)
• webpack supports this sort of construct (docs).
• Demand from users for similar behavior in Parcel, with pushback from some maintainers (#3477)
• Separately, out of band (e.g., a separate resource file)
• Challenges: How to load that resource file; what should the format be; unergonomic to have to jump between files during development (further discussion: #13)
• In the JavaScript source text
• Challenges: Requires a change at the JavaScript language level (this proposal)
This proposal pursues the third option, as we expect it to lead to the best developer experience, and are hopeful that language design/standardization issues can be resolved.
Proposed syntax
Import attributes have to be made available in several different contexts. They use a key-value syntax is used preceded by the with keyword, with the key type used as an example indicating the module type. Such key-value syntax can be used in various different contexts.
import statements
The ImportDeclaration would allow any arbitrary attributes after the with keyword.
For example, the type attribute could be used to indicate a module type, for example importing a JSON module with the following syntax.
import json from "./foo.json" with { type: "json" };
The with syntax in the ImportDeclaration statement uses curly braces, for the following reasons (as discussed in #5):
• JavaScript developers are already used to the Object literal syntax and since it allows a trailing comma copy/pasting attributes will be easy.
• it clearly indicates the end of the attributes list when splitting them across multiple lines.
re-export statements
Similar to import statements, the ExportDeclaration, when re-exporting from another module, would allow any arbitrary attributes after the with keyword.
export { val } from './foo.js' with { type: "javascript" };
dynamic import()
The import() pseudo-function would allow import attributes to be indicated in an options bag in the second argument.
import("foo.json", { with: { type: "json" } })
The second parameter to import() is an options bag, with the only option currently defined to be with: the value here is an object containing the import attributes. There are other proposals for entries to put in the options bag: for example, the Module Source Imports proposal introduces a phase property.
Integration of modules into environments
Host environments (e.g., the Web platform, Node.js) often provide various different ways of loading modules. The analogous string could be passed through these ways of loading other kinds of modules.
Worker instantiation
new Worker("foo.wasm", { type: "module", with: { type: "webassembly" } });
Sidebar about WebAssembly module types and the web: it's still uncertain whether importing WebAssembly modules would need to be marked specially, or would be imported just like JavaScript. Further discussion in #19.
HTML
Although changes to HTML won't be specified by TC39, an idea here would be that each import attribute, preceded by with, becomes an HTML attribute which could be used in script tags.
<script src="foo.wasm" type="module" withtype="webassembly"></script>
(See the caveat about WebAssembly above.)
WebAssembly
In the context of the WebAssembly/ESM integration proposal: for imports of other module types from within a WebAssembly module, this proposal would introduce a new custom section (named importattributes) that will annotate with attributes each imported module (which is listed in the import section).
Proposed semantics and interoperability
This proposal does not specify behavior for any particular attribute key or value. The JSON modules proposal will specify that type: "json" must be interpreted as a JSON module, and will specify common semantics for doing so. It is expected the type attribute will be leveraged to support additional module types in future TC39 proposals as well as by hosts. HTML and CSS modules are under consideration, and these may use similar explicit type syntax when imported.
Attributes in addition than type may also be introduced for purposes not yet foreseen.
JavaScript implementations are encouraged to reject attributes and type values which are not implemented in their environment (rather than ignoring them). This is to allow for maximal flexibility in the design space in the future--in particular, it enables new import attributes to be defined which change the interpretation of a module, without breaking backwards-compatibility.
FAQ
Why not out of band?
Why not both? The champions of this proposal think that exploring both an in- and out of band solutions to various kinds of metadata. While we prefer in-band metadata for module types, we are happy to see the development of various out-of-band manifests of modules being proposed and implemented in certain JS environments:
This proposal does not exclude out-of-band metadata being used for module types. And it definitely doesn't argue that all metadata should be in-band. For example, integrity hashes simply don't work in-band, both because module circularities make them impossible to calculate, and because of the need for a "cascading" update when a deep dependency changes.
Out-of-band solutions face certain downsides; these are not necessarily fatal, but are interesting to take into account when considering the solution space and making tradeoffs:
• By-hand authoring experience: While an in-band solution is somewhat verbose, it is also more straightforward for developers to adopt when writing code without much tooling. For smaller projects developers do not need to create an extra file by hand.
• Tooling complexity for large projects: For large project with many dependencies, developers will not have to worry about creating a large manifest by compiling the metadata of all of their dependencies. Module authors will also not have to worry about shipping a manifest in order for consumers to be able to run their modules.
• Performance tradeoffs: The experience in Node.js's experimental, out-of-band policy files is that they can carry significant startup cost, due to certain aspects of loading and parsing.
How is common behavior ensured across JavaScript environments?
A central goal of this proposal is to share as much syntax and behavior across JavaScript environments as possible. To the same end, we also propose a standardization of JSON modules to the extent that this is possible (omitting just the contents of the redundant type check, which necessarily differs between environments, in addition to the pre-existing host-defined parts such as interpreting the module specifier and fetching the module).
However, at the same time, behavior of modules in general, and the set of module types specifically, is expected to differ across JavaScript environments. For example, WebAssembly, HTML and CSS modules may not make sense in certain minimal embedded JavaScript environments. We hope that environments can experiment and collaborate where it makes sense for them.
We see the management of compatibility issues across environments as similar, independent of whether metadata is held in-band or out-of-band. An out of band solution would also suffer from the risk of inconsistent implementation or support across host environments if some kind of coordination does not occur.
The topic of attribute divergence is further discussed in #34.
How would this proposal work with caching?
Attributes are part of the module cache key and can affect how a module is loaded: the cache key is extended from (referrer, specifier) to (referrer, specifier, attributes).
Why not use more terse syntax to indicate module types, like import json from "./foo.json" as "json"?
Another option considered and not selected has been to use a single string as the attribute, indicating the type. This option is not selected due to its implication that any particular attribute is special; even though this proposal only specifies the type attribute, the intention is to be open to more attributes in the future. (discussion in #12).
Should more than just strings be supported as attribute values?
We could permit import attributes to have more complex values than simply strings, for example:
import value from "module" with { attr: { key1: "value1", key2: [1, 2, 3] } };
This would allow import attributes to scale to support a larger variety of metadata.
We propose to omit this generalization in the initial proposal, as a key/value list of strings already affords significant flexibility to start, but we're open to a follow-on proposal providing this kind of generalization.
What are you open to changing? When do we have to settle down on the details?
We are planning to make descisions and reach consensus during specific stages of this proposal. Here's our plan.
Original plan before Stage 2 and Stage 3
Before stage 2
We have achieved consensus on the following core decisions as part of Stage 2, including:
• The attribute form; key-value or single string (#12)
// Not selected
import value from "module" as "json";
// Not selected
import value from "module" with type: "json";
// Proposal that was approved from Stage 2 to Stage 3 the first time
import value from "module" assert { type: "json" };
Before stage 3
After Stage 2 and before Stage 3, we're open to settling on some less core details, such as:
• Considering alternatives for the with/if/assert keywords (#3)
import value from "module" when { type: 'json' };
import value from "module" given { type: 'json' };
• How dynamic import would accept import attributes:
import("foo.wasm", { with: { type: "webassembly" } });
For consistency the assert key is used for both dynamic and static imports.
An alternative would be to remove the assert nesting in the object:
import("foo.wasm", { type: "webassembly" });
However, that's not possible with the Worker API since it already uses an object with a type key as the second parameter. Which would make the APIs inconsistent.
Before Stage 4
• The integration of import attributes into various host environments.
• For example, in the Web Platform, how import attributes would be enabled when launching a worker (if that is supported in the initial version to be shipped on the Web) or included in a <script> tag.
new Worker("foo.wasm", { type: "module", with: { type: "webassembly" } });
Standardization here would consist of building consensus not just in TC39 but also in WHATWG HTML as well as the Node.js ESM effort and a general audit of semantic requirements across various host environments (#10, #24 and #25).
History
• 2019-12: The proposal, named module attributes is approved for Stage 1 (notes part 1, notes part 2, slides) to explore metadata for module imports, and to explore guarantees about modules with no code execution.
• 2020-06: Module attributes advances to Stage 2 (notes part 1, notes part 2, slides), with consensus based on the restriction that import attributes cannot be part of the cache key in the modules map. The proposed syntax is import { x } from "./mod" with type: "json", something: "else";.
• 2020-09: The proposal, renamed to import assertions, advances to Stage 3 (notes, slides). The rename better describes the agreed assert-only semantics, and the keyword changes from with to assert. However, the proposal relaxes the caching restriction so that HTML can still include the module type as part of the cache key, while still respecting the "spirit" of the proposal.
• 2021-052022-02: The proposal, with the import { x } from "./mod" assert { type: "json" }; syntax, is implemented and shipped in Chrome, Node.js and Deno. They all support the JSON modules proposal.
• 2023-01: Due to incommpatibility with the semantics needed by HTML for non-JavaScript modules, specifically regarding HTTP fetching and CSPs, the proposal is demoted back to Stage 2 (notes part 1, notes part 2, slides) to investigate a solution to the web platform's needs.
• 2023-03: The proposal is renamed to Import attributes and moves back to Stage 3 (TODO: notes, slides). The restriction on the cache key is completely removed, and the keyword changes back from assert to with: import { x } from "./mod" with { type: "json" };. For compatibility with existing implementations, the assert keyword will still be supported until it's safe to remove it, if it will ever be.
Specification
|
__label__pos
| 0.868724 |
Debugging Hard Fault & Other Exceptions
on ARM Cortex-M3 and ARM Cortex-M4 microcontrollers
Introduction
The ARM Cortex-M core implements a set of fault exceptions. Each exception relates to an error condition. If the error occurs, the ARM Cortex-M core stops executing the current instruction, and branches to the exception’s handler function. This mechanism is just like that used for interrupts, where the ARM Cortex-M core branches to an interrupt handler when it accepts an interrupt.
The CMSIS names for the fault handlers are as follows:
• UsageFault_Handler()
• BusFault_Handler()
• MemMang_Handler()
• HardFault_Handler()
The exact circumstances under which the ARM Cortex-M core calls each of these handlers is out of scope of this document. See the ARM Cortex-M literature from ARM, and various other sources, if you are interested in the details. For the purpose of this document it is enough to say that, if your application ends up in one of these handlers, then something has gone wrong. Hard faults are the most common fault type, as other fault types that are not enabled individually will be escalated to become a hard fault.
Despite the numerous RTOS support requests from people explaining that, when using the RTOS kernel, their application ends up in the hard fault handler, when the issue has been worked through, it is always shown that the cause of the hardware fault is not the kernel, but one of the following:
Hard fault debugging should start by ensuring the software application follows the guidelines provided on the two pages linked to in the first two bullet points above. If, after that, hard faults still persist, then it will be necessary to determine the system state at the time the fault occurred. Debuggers do not always make that easy, so the rest of this page describes a software technique than can be used for the purpose.
Determining Which Exception Handler is Executing
It is common for interrupt vector tables to install the same handler for every interrupt/exception source. The default handlers are declared as weak symbols to allow the application writer to install their own handler simply by implementing a function with the correct name. If an interrupt occurs for which the application writer has not provided their own handler then the default handler will execute.
Default interrupt handlers are typically implemented as an infinite loop. If an application ends up in such a default handler it is first necessary to determine which interrupt is actually executing.
The code snippet below demonstrates how to add a few instructions to a default infinite loop handler to load the number of the executing interrupt into register 2 (r2) before the infinite loop is entered.
Interrupt numbers read from the NVIC in this way are relative to the start of the vector table, in which entries for system exceptions (such as the hard fault) appear before entries for peripheral interrupts. If r2 contains the value 3 then, a hard fault exception is being handled. If r2 contains a value equal to or greater than 16, then a peripheral interrupt is being handled – and the interrupting peripheral can be determined by subtracting 16 from the interrupt number.
Default_Handler:
/* Load the address of the interrupt control register into r3. */
ldr r3, NVIC_INT_CTRL_CONST
/* Load the value of the interrupt control register into r2 from the
address held in r3. */
ldr r2, [r3, #0]
/* The interrupt number is in the least significant byte - clear all
other bits. */
uxtb r2, r2
Infinite_Loop:
/* Now sit in an infinite loop - the number of the executing interrupt
is held in r2. */
b Infinite_Loop
.size Default_Handler, .-Default_Handler
.align 4
/* The address of the NVIC interrupt control register. */
NVIC_INT_CTRL_CONST: .word 0xe000ed04
Debugging a ARM Cortex-M Hard Fault
The stack frame of the fault handler contains the state of the ARM Cortex-M registers at the time that the fault occurred. The code below shows how to read the register values from the stack into C variables. Once this is done, the values of the variables can be inspected in a debugger just as an other variable.
First, a very short assembly function is defined to determine which stack was being used when the fault occurred. Once this is done, the fault handler assembly code passes a pointer to the stack into a C function called prvGetRegistersFromStack().
The fault handler is shown below using GCC syntax. Note that the function is declared as being naked, so it does not contain any compiler generated code (for example, there is no function entry prologue code).
/* The prototype shows it is a naked function - in effect this is just an
assembly function. */
static void HardFault_Handler( void ) __attribute__( ( naked ) );
/* The fault handler implementation calls a function called
prvGetRegistersFromStack(). */
static void HardFault_Handler(void)
{
__asm volatile
(
" tst lr, #4 n"
" ite eq n"
" mrseq r0, msp n"
" mrsne r0, psp n"
" ldr r1, [r0, #24] n"
" ldr r2, handler2_address_const n"
" bx r2 n"
" handler2_address_const: .word prvGetRegistersFromStack n"
);
}
The implementation of prvGetRegistersFromStack() is shown below. prvGetRegistersFromStack() copies the register values from the stack into the C variables, then sits in a loop. The variables are named to indicate the register value that they hold. Other registers will not have changed since the fault occurred, and can be viewed directly in the debugger’s CPU register window.
void prvGetRegistersFromStack( uint32_t *pulFaultStackAddress )
{
/* These are volatile to try and prevent the compiler/linker optimising them
away as the variables never actually get used. If the debugger won't show the
values of the variables, make them global my moving their declaration outside
of this function. */
volatile uint32_t r0;
volatile uint32_t r1;
volatile uint32_t r2;
volatile uint32_t r3;
volatile uint32_t r12;
volatile uint32_t lr; /* Link register. */
volatile uint32_t pc; /* Program counter. */
volatile uint32_t psr;/* Program status register. */
r0 = pulFaultStackAddress[ 0 ];
r1 = pulFaultStackAddress[ 1 ];
r2 = pulFaultStackAddress[ 2 ];
r3 = pulFaultStackAddress[ 3 ];
r12 = pulFaultStackAddress[ 4 ];
lr = pulFaultStackAddress[ 5 ];
pc = pulFaultStackAddress[ 6 ];
psr = pulFaultStackAddress[ 7 ];
/* When the following line is hit, the variables contain the register values. */
for( ;; );
}
Using the Register Values
[See also “Handling Imprecise Faults” below]
The first register of interest is the program counter. In the code above, the variable pc contains the program counter value. When the fault is a precise fault, the pc holds the address of the instruction that was executing when the hard fault (or other fault) occurred. When the fault is an imprecise fault, then additional steps are required to find the address of the instruction that caused the fault.
To find the instruction at the address held in the pc variable, either…
1. Open an assembly code window in the debugger, and manually enter the address to view the assembly instructions at that address, or
2. Open the break point window in the debugger, and manually define an execution or access break point at that address. With the break point set, restart the application to see which line of code the instruction relates to.
Knowing the instruction that was being executed when the fault occurred allows you to know which other register values are also of interest. For example, if the instruction was using the value of R7 as an address, then the value of R7 needs to be know. Further, examining the assembly code, and the C code that generated the assembly code, will show what R7 actually holds (it might be the value of a variable, for example).
Handling Imprecise Faults
ARM Cortex-M faults can be precise or imprecise. If the IMPRECISERR bit (bit 2) is set in the BusFault Status Register (or BFSR, which is byte accessible at address 0xE000ED29) is set then the fault is imprecise.
It is harder to determine the cause of an imprecise fault because the fault will not necessarily occur concurrently with the instruction that caused the fault. For example, if writes to memory are cached then there might be a delay between an assembly instruction initiating a write to memory and the write to memory actually occurring. If such a delayed write operation is invalid (for example, a write is being attempted to an invalid memory location) then an imprecise fault will occur, and the program counter value obtained using the code above will not be the address of the assembly instruction that initiated the write operation.
In the above example, turning off write buffering by setting the DISDEFWBUF bit (bit 1) in the Auxiliary Control Register (or ACTLR) will result in the imprecise fault becoming a precise fault, which makes the fault easier to debug, albeit at the cost of slower program execution.
Copyright (C) Amazon Web Services, Inc. or its affiliates. All rights reserved.
Latest News
FreeRTOS v10.2.1 is available for immediate download. MIT licensed, includes 64-bit RISC-V, NXP Cortex-M33 demo & Nuvoton Cortex-M23 demo & STM32H745 dual core (AMP) demo.
New Updates to MIT licensed IoT MQTT and POSIX libraries are now available. New library IoT HTTPS is available. Includes demo projects.
View a recording of the “OTA Update Security and Reliability” webinar, presented by TI and AWS.
Careers
FreeRTOS and other embedded software careers at AWS.
FreeRTOS Partners
ARM Connected RTOS partner for all ARM microcontroller cores
Espressif ESP32
IAR Partner
Microchip Premier RTOS Partner
Renesas
STMicro RTOS partner supporting ARM7, ARM Cortex-M3, ARM Cortex-M4 and ARM Cortex-M0
Texas Instruments MCU Developer Network RTOS partner for ARM and MSP430 microcontrollers
OpenRTOS and SafeRTOS
Xilinx Microblaze and Zynq partner
|
__label__pos
| 0.578416 |
The natural log calculator determines the logarithm to the base of a famous mathematical constant, e, an irrational number with an approximate value of e = 2.71828. But, what is the natural logarithm, ln x, of a given number x? This is the power the number e has to be raised to in order to result in a given number x.
How to use the natural logarithm calculator
Like all other logarithms, the natural logarithm of x returns the power, or exponent, to which a given base e must be raised to yield back the number x. It is easier to understand this notion when the base is an integer, for example 2 or 3:
log2 16 = 4 since 24 = 16
log3 81 = 4 since 34 = 81.
In the case of the natural logarithm, this is somewhat less intuitive, because it's base, e, is not an integer. But, since the value of e is between values of 2 and 3, we understand that e4 has to be somewhere between 24 = 16 and 34 = 81.
It turns out that e4 = 54.498. This equality can be stated in terms of the natural logarithm in the following way, which you can check by using the ln calculator:
ln 54.498 = 4.
Here are some examples of natural logarithm:
• ln 1 = 0 since e0 = 1
• ln 10 = 2.3026 since e2.3026 = 10
• ln 20 = 2.996 since e2.996 = 20
• ln 50 = 3.912 since e3.912 = 50
• ln 100 = 4.605 since e4.605 = 100.
Check out the correctness of the above results by using our natural log calculator and the exponent calculator. In order to get a better grasp of the interplay between the exponential and logarithm functions, you may want to check out our exponential and logarithm calculators.
Other ways to denote the natural logarithm
One way of denoting the natural logarithm is loge. This is the same as, say, when we write the logarithm to the base two as log2.
But, a vastly more common way to write the natural logarithm is ln, which is an abbreviation of the Latin expression logarithmus naturalis, the name the natural logarithm was given when the Latin language was still the lingua franca of science.
There is also a third way of writing the natural logarithm: log. This notation is somewhat problematic though, as it is often mistaken for the logarithm to the base 10, although this is the syntax many software implementations of natural logarithm use, so be careful!
What's so natural about the natural logarithm?
Why exactly does ln x deserve to be called natural? Maybe the most important property of the natural logarithm is that it is the inverse function of the exponential function ex, the only function whose rate of change, or the derivative, is precisely again itself: (ex)' = ex.
In simpler words, the exponential function ex governs its own rate of change, which in some sense makes it self-sufficient and not dependent on any other function to define the way it changes. Exactly this property makes both ex and its inverse function ln x the natural choice when describing many real-world phenomena.
The natural log graph
Another interesting property of the natural logarithm is the way it changes its values as the argument x increases. One way of expressing this is by stating that the derivative of the natural logarithm is inversely proportional to its value x, which can be written as (ln x)' = 1/x.
You can also observe this property by looking at the graph of the natural logarithm. Although it increases as the value of x increases, the rate of growth is getting smaller and smaller as x approaches higher and higher values:
Natural log graph
Natural log graph
Source: Wikipedia Attribution: Elmextube (Public domain)
Where did the number e come from
At first glance, you wouldn't say that the number e bears any importance to the endeavors of humans or nature. But this is not so! It happens that this number is one of the most important constants in mathematics, so much so that it deserves a proper name. It is called either Euler's number or Napier's constant, depending on whom of these two great mathematicians one wants to attribute its discovery.
Nevertheless, it seems that Leonhard Euler (1707 - 1783) did get more credit, based on the fact that the very letter Euler used to denote this constant is how we denoted it today. Although Euler was the first to calculate e to a significant number of decimal places, he wasn't the first one to discover it: read more about it in the next paragraph.
Leonhard Euler
Leonhard Euler
Source: Wikipedia Attribution: Jakob Emanuel Handmann (Public domain)
How to make e amount of money
Swiss mathematician Jacob Bernoulli (1654 - 1705) stumbled upon the existence of the number e when tackling the problem of compound interest. Let us first understand the idea behind simple interest. For a given initial sum of money, let's say 1 USD, you want to know how much will you have after one year has passed if an interest of 100% is credited only once, and at the end of the year? The answer is easy: 2 USD.
Jacob Bernoulli
Jacob Bernoulli
Source: Wikipedia Attribution: Niklaus Bernoulli (1662-1716) (Public domain)
But, with compound interest, things get a bit more complicated. For example, if the same interest of 100% is now split into two equal parts of 50% and credited twice, 50% at the end of first six months, and another 50% at the end of the year, then the final yield is obtained by using the formula
1*(1 + 1/2)2 = 2.25 USD.
Furthermore, if the interest of 100% is split in weekly lumps, you would have the final yield of
1*(1 + 1/52)52 = 2.692 USD.
Bernoulli asked a simple question: what would happen if compounding was continuous? In other words, what would be the final yield if the interest rate of 100% is split into infinite parts, each credited at the end of an infinitely short period of time? To see in more detail how continuous and other types of compounding work, you may want to check out our investment calculator.
This problem of continuous compound interest, stated mathematically, boils down to the challenge of calculating the limit of (1 + 1/n)n as n approaches infinity. It turns out that the result is precisely the number e! Moreover, the above expression may be used as a way to define e. To answer the Bernoulli's question: with continuous compounding the initial dollar would yield precisely e = 2.718281828 USD at the end of the year!
The real-world importance of ln 2 and other natural logarithms
The easiest natural logarithms to calculate are:
ln 1 = 0 since e0 = 1, and
ln e = 1 since e1 = e.
But, presumably the most important natural logarithm is the one that calculates the value of a number between 1 and e, which turns out to be the number 2. Using the natural log calculator we get
ln 2 = 0.6931.
It turns out that ln 2 is also equal to the alternating sum of reciprocals of all natural numbers:
ln 2 = 1 – 1/2 + 1/3 – 1/4 + 1/5 – 1/6 + ....
At first glance, it appears that this number has no particular importance whatsoever. But, ln 2, as obscure as it may seem, appears in some pretty significant and at first glance unrelated real-world problems.
For example, it has its role in the formula for the half-life of radioactively decaying matter, or in the calculation of time needed to double the initial amount of money, if a fixed rate is applied over a given time.
So, if you have 1,000 USD in your bank account, and the bank provides an r = 7% per annum interest rate, you may want to ask yourself how long it will take to double my initial amount? Well, this is where ln 2 comes into play: the natural logarithm formula that calculates the time needed is (100 * ln 2)/r, which can be simplified to the approximate value of 70/r. Besides 70, the number 72 is used even more often for this purpose, because it has more divisors: check out the rule of 72 calculator!
Therefore, in the case of r = 7%, you would get 70/7 = 10 years as an approximate time needed for your initial sum of money to double. Similarly, one can get analogous formulas for the time needed for the initial quantity to triple, quadruple, or n-tuple, given a fixed rate of growth over time.
Other applications of the natural logarithm
From the previous paragraph, we may conclude that natural logarithms occur in every process with a period-related, constant growth or decay of some quantifiable phenomenon.
Apart from already mentioned examples of radioactive decay and the problem of yield with a fixed interest rate, natural logarithms appear when calculating the bacterial, animal and plant population growth and decay, decay rates of a charged capacitor, or the temperature change of an object.
References
Miroslav Jerkovic, PhD
Natural logarithm of ...
equals ...
People also viewed…
Car heat
The hot car calculator shows you how fast the interior of a car heats up during a summers day.
Christmas tree
Welcome to the Christmas tree calculator, where you will find how to decorate your Christmas tree in the best way. Take a look at the perfect Christmas tree formula prepared by math professors and improved by physicists. Plan in advance how many lights and decorations you'll need!
Long subtraction
This long subtraction calculator helps you solve any long subtraction problem for any two whole numbers as well as for numbers with decimal places.
main background
|
__label__pos
| 0.884282 |
The VP of Sales just announced the company closed a major deal that is 100x larger than any other previous contract. The excitement pours over you, you can finally expense that Herman-Miller chair! However, you quickly realize you’ve never tested the production application at that 100x scale before. What do you do?
Scaling a web application is an exciting, and sometimes nerve-wracking problem. PHP buys us a lot of affordances, but we still need to think like engineers to make things scale in a maintainable, and affordable, manner.
We’ll walk through this hypothetical scenario together, taking time to explore options and tradeoffs for major decisions. These topics will include:
* Effective caching
* Keeping your database performing efficiently
* Tradeoffs of moving to microservices
* Security and safety measures
Most importantly, we’ll explore how to know when, and if, it is time for any of these things. Even how we can defer some decisions to keep our team working efficiently. For that, we’ll need to learn:
* How to add and review telemetry for our application
* How to determine key metrics we can know when we’re in trouble
* How to collaborate with the business for best success
Buckle up, because we’re going from zero to web scale in one talk!
Comments
Comments are closed.
|
__label__pos
| 0.582294 |
关注码农话题
做一个实实在在的内行人
C# 预处理器指令
预处理器指令指导编译器在实际编译开始之前对信息进行预处理。
所有的预处理器指令都是以 # 开始。且在一行上,只有空白字符可以出现在预处理器指令之前。预处理器指令不是语句,所以它们不以分号(;)结束。
C# 编译器没有一个单独的预处理器,但是,指令被处理时就像是有一个单独的预处理器一样。在 C# 中,预处理器指令用于在条件编译中起作用。与 C 和 C++ 不同指令不用,它们不是用来创建宏。一个预处理器指令必须是该行上的唯一指令。
C# 预处理器指令列表
下表列出了 C# 中可用的预处理器指令:
预处理器指令 描述
#define 它用于定义一系列成为符号的字符。
#undef 它用于取消定义符号。
#if 它用于测试符号是否为真。
#else 它用于创建复合条件指令,与 #if 一起使用。
#elif 它用于创建复合条件指令。
#endif 指定一个条件指令的结束。
#line 它可以让您修改编译器的行数以及(可选地)输出错误和警告的文件名。
#error 它允许从代码的指定位置生成一个错误。
#warning 它允许从代码的指定位置生成一级警告。
#region 它可以让您在使用 Visual Studio Code Editor 的大纲特性时,指定一个可展开或折叠的代码块。
#endregion 它标识着 #region 块的结束。
#define 预处理器
#define 预处理器指令创建符号常量。
#define 允许您定义一个符号,这样,通过使用符号作为传递给 #if 指令的表达式,表达式将返回 true。它的语法如下:
#define symbol
下面的程序说明了这点:
#define PI
using System;
namespace PreprocessorDAppl
{
class Program
{
static void Main(string[] args)
{
#if (PI)
Console.WriteLine("PI is defined");
#else
Console.WriteLine("PI is not defined");
#endif
Console.ReadKey();
}
}
}
当上面的代码被编译和执行时,它会产生下列结果:
PI is defined
条件指令
您可以使用 #if 指令来创建一个条件指令。条件指令用于测试符号是否为真。如果为真,编译器会执行 #if 和下一个指令之间的代码。
条件指令的语法:
#if symbol [operator symbol]...
其中,symbol 是要测试的符号名称。您也可以使用 true 和 false,或在符号前放置否定运算符。
运算符符号是用于评价符号的运算符。可以运算符可以是下列运算符之一:
• == (equality)
• != (inequality)
• && (and)
• || (or)
您也可以用括号把符号和运算符进行分组。条件指令用于在调试版本或编译指定配置时编译代码。一个以 #if 指令开始的条件指令,必须显示地以一个 #endif 指令终止。
下面的程序演示了条件指令的用法:
#define DEBUG
#define VC_V10
using System;
public class TestClass
{
public static void Main()
{
#if (DEBUG && !VC_V10)
Console.WriteLine("DEBUG is defined");
#elif (!DEBUG && VC_V10)
Console.WriteLine("VC_V10 is defined");
#elif (DEBUG && VC_V10)
Console.WriteLine("DEBUG and VC_V10 are defined");
#else
Console.WriteLine("DEBUG and VC_V10 are not defined");
#endif
Console.ReadKey();
}
}
当上面的代码被编译和执行时,它会产生下列结果:
DEBUG and VC_V10 are defined
入职你的梦想 VS 变现你的技术
IT面试宝典码农市场
|
__label__pos
| 0.949951 |
javascript
javascript
, but that does not initialize to 0, but to
Sign uporlog into customize your list.
I always thought raster was lossy and vector was not lossy, is this true?
// will generate random integers from 1 to 4 var frequencies = [ 0, 0, 0, 0, 0 ]; // not using the first place var randomNumber; for ( var i = 0; i 1*1000*1000; ++i ) randomNumber = Math.ceil(Math.random()*4); frequencies[randomNumber]++; for ( var i = 1; i = 4; ++i ) console.log(i +: + frequencies[i]);
Remove a combination of numbers and symbols from a string using the $VARNAME//pattern/ way
How can Twitter and GitHub be sure that they havent been hacked?
Are there official guidelines for a DM to change the alignment of a players character?
Ive seen a lot of code where random numbers are generated like
Anyway, I feel like Im missing something. Why dont people use the more succint way
Limiting the CPU/Memory utilization for a Query in SQL server 2008R2
About your second question, seeMost efficient way to create a zero filled JavaScript array?
as stated inMDN referenceaboutMath.random()
Why was the Concorde painted white and not black?
It would be a very bad way to get random numbers in the range of [0,10] when using ceil(), because zero effectively is starved.
By posting your answer, you agree to theprivacy policyandterms of service.
How can a colony of teleporters make the most money while keeping their teleportation a secret?
A private, secure home for your teams questions and answers.
site design / logo 2018 Stack Exchange Inc; user contributions licensed undercc by-sa 3.0withattribution required.rev2018.5.7.30308
Unnecessary large white margin for graph with bezier curve
Learn more about Stack Overflow the company
Learn more about hiring developers or posting ads with us
I tried to test the randomness and it seems true so far.
the correct function to use when you want to generate random integers. Always use
Detailed answers to any questions you might have
Group theory: what does it mean for permutations to have an even or odd parity?
If the human body consists of 60% water why cant we put out fire with our body?
and then add the lower limit if it is nonzero. Taking your second example of
How to ask why I was not included without causing a scene?
Did Thanoss calculations account for aftermath effects?
as an attempt to get numbers 0 through 10, the correct way to do this would be
Yes quite right… but it would be a shame to have some part of a system fall over one day because of a
What measures might an early-medieval society take to deal with draugr?
Is there a common saying in English that means Its just business, I dont feel any shame
Since Math.random can return0, thenMath.ceil(Math.random()*10)could also return0and that value is out of your[1..10]range.
Math.floor()is preferred here because of the range ofMath.random().
Start here for a quick overview of the site
Join Stack Overflowto learn, share knowledge, and build your career.
The fact that 0 is almost never taken is not a rare condition though.
random integers in the interval [1, 10]:
For instance,Math.random() * 10gives a range of[0, 10). UsingMath.floor()you willneverget to the value of10, whereasMath.ceil()maygive0.
How do I find the sources which determined the year of the fall of Babylon?
Concerning your OT question: Not really. JavaScript does not have array initialization. JavaScript arrays are (basically) nothing more than objects with numeric key names and a length attribute. The closest you can get is
Stack Overflow for Teams is Now Available
Not sure what you mean. But, if you are counting on 0 not being returned by the random() call then one day you may be unpleasantly surprised. Thats all Im saying. Also the whole point of this answer is to illustrate the difference between the 2 – he was implying they were the same…
Why was nil a reserved word in Pascal?
Discuss the workings and policies of this site
Can an Outsider called via a Planar Binding spell use an Anti-Magic Field to escape a diagram created by Magic Circle?
How to make a holographic reticle shader in cycles
High pitched noise on PowerEdge 1950
Also interesting to find that Math.ceil is ~90% slower than Math.floor /convert-to-integer
Quick OT: Is there a more succint way to declare and initialize frequencies? I mean likefrequencies[5] = 0 ;from C++…
Is it bad form to let the constant of integration equal several different values over a calculation
random integers in the interval [0, 10]:
Returns a floating-point, pseudo-random number in the range [0, 1) that is, from 0 (inclusive) up to but not including 1 (exclusive), which you can then scale to your desired range.
Can tongues allow a PC to speak and understand druidic and any other secret language?
ArcPy Calculate Field Management with Variable
Leave a Reply
|
__label__pos
| 0.999904 |
Don’t Know What The Word Means? Ask Cortana
As Microsoft and the Cortana team continue to refine the powerful AI and assistant, more features are slowly popping up online. A new one noticed by numerous people in our audience is definitions, powered by Oxford Dictionaries.
Load up Cortana and directly ask her ‘What does _____ mean?’ alternatively, ‘What is the meaning of ____?’ and the personal assistant from 500 years in the future pulls up a nice little card, complete with the word category and multiple definitions while exclaiming “I’ve found the meaning of…”.
Additionally, there is on occasion a ‘See more’ link near the bottom, which then opens up the corresponding page on the Oxford site. Some definitions also come up under Bing’s dictionary as well so your results may vary.
Although not a groundbreaking feature, using Cortana to ask quickly what a word means is certainly easier than hunting for that app, launching it, typing in a word and doing the lookup. This tool should also be particularly useful for those learning English as a second language, and we presume this word-lookup feature expands to other languages in the future.
Is looking up words a useful feature for you? How do you think Microsoft could make it better?
I Write Things.
|
__label__pos
| 0.812257 |
Browse Prior Art Database
Integrating Heterogeneous Text Search Engines For A Content Management System
IP.com Disclosure Number: IPCOM000234823D
Publication Date: 2014-Feb-10
Document File: 3 page(s) / 32K
Publishing Venue
The IP.com Prior Art Database
Abstract
Disclosed is a method to integrate dual (or multiple) text search engines to a Content Management System (CMS) on a relational database in a manner which reduces limitations and improves performance.
This text was extracted from a PDF file.
This is the abbreviated version, containing approximately 36% of the total text.
Page 01 of 3
Integrating Heterogeneous Text Search Engines For A Content Management System
A content management system (CMS) supports relational databases, sometimes more than one at a time, and the CMS on each database is integrated with its own unique text search engine/server. There are two separate databases; hence, the CMS on one database is independent from another.
A CMS on a relational database integrates with only one text search engine, resulting in search engine related limitations for search performance, dependability, and search features such as proximity search, fuzzy search, etc. based on the characteristics and capabilities provided by this search engine of the text search server.
To minimize these limitations, a method for integration of dual (or multiple) text search engines to the CMS on a relational database is herein disclosed.
The relational database, as a client of the text search server, has evolved to support both the text search server and Enterprise Content Manager Text Search (ECMTS) servers for text search engines. The new ECMTS server can also be stand-alone as a remote server communicating with a relational database via Transmission Control Protocol/Internet Protocol (TCP/IP) while the text search server can only be integrated with a relational database on the same computer box. The ECMTS being remote makes it possible to maintain the same indexing schedule for both the text search server and ECMTS. The CMS system administrator can configure a CMS text searchable item type with text indexes on both text search engines, and then index on both search engines after the search contents are inserted into the text searchable attributes (columns) or the search documents are imported into the remote repository.
The advantages of the CMS integration with dual indexing/search engines are many. First, the text indexing is an extensive operation; it requires a high Central Processing Unit (CPU) consumption. Since the new ECMTS server can be remote (i.e. separated from the computer box where the text search server resides), the indexing schedule can be maintained the same for both the text search server and ECMTS. The method of dual text search engines disclosed herein allows the same contents under the same CMS item type to be text-indexed in at least two sets, one for text search server, and the other for ECMTS. If one set is down, then the CMS System Administrator can switch to turn on the active flag for the other engine so that all search applications are directed to the active search engine. Second, even when both search engines are running, switching the active flag from one to the other allows user search applications to switch the search from one set of text indexes to another. A relational database
allows one search engine to be active at a time. This allows search engines to complement one another and thus minimizes the search limitations resulting from each search engine. In addition, the method adapts to users'...
|
__label__pos
| 0.971783 |
1. Limited time only! Sign up for a free 30min personal tutor trial with Chegg Tutors
Dismiss Notice
Dismiss Notice
Join Physics Forums Today!
The friendliest, high quality science and math community on the planet! Everyone who loves science is here!
Intro to diffrential equn simple question
1. May 4, 2010 #1
1. The problem statement, all variables and given/known data
hey, it's been on my wish list for some time, i have decided to teach my self diffrential equal, rather than waiting to be taught at school, after having some exposure through vibrations and circuits.
so i got a book and i started to learn, the question came to be;
[tex]x^{3}[/tex] [tex]\frac{dy}{dx}[/tex] = y
2. The attempt at a solution
so i solve it by seperation of variable and arrived at the answer of
y=[tex]e^{-.5x^{2}+c}[/tex]
i am afride it is wrong, or am i just confused.
2. jcsd
3. May 4, 2010 #2
lanedance
User Avatar
Homework Helper
try and show your working, and note you can put a whole equation in tex tags
[tex]x^3 \frac{dy}{dx} = y[/tex]
did you separate like below?
[tex] \frac{dy}{y} = \frac{dx}{x^3} [/tex]
4. May 4, 2010 #3
yes.
5. May 4, 2010 #4
HallsofIvy
User Avatar
Staff Emeritus
Science Advisor
Then you've lost a sign.
If [itex]dy/y= dx/x^3= x^{-3}dx[/itex] then
[tex]ln(y)= -(1/2)x^{-2}+ C[/tex]
and so
[tex]y= e^{-.5x^{-2}+ C[/tex]
It should be [itex]x^{-2}[/itex] in the exponent, not [itex]x^2[/itex].
Know someone interested in this topic? Share this thread via Reddit, Google+, Twitter, or Facebook
Similar Discussions: Intro to diffrential equn simple question
Loading...
|
__label__pos
| 0.587223 |
lkml.org
[lkml] [2011] [Sep] [22] [last100] RSS Feed
Views: [wrap][no wrap] [headers] [forward]
Messages in this thread
/
SubjectRe: rt14: strace -> migrate_disable_atomic imbalance
From
Date
On Thu, 2011-09-22 at 14:09 +0200, Peter Zijlstra wrote:
> On Thu, 2011-09-22 at 13:55 +0200, Mike Galbraith wrote:
> > On Thu, 2011-09-22 at 12:00 +0200, Peter Zijlstra wrote:
> >
> > > OK, this one seems to be better.. But its quite vile, not sure I
> > > actually like it anymore.
> >
> > Well, seemed to work, but I see there's a v3 now.
>
> Yeah, just posted it for completeness, not sure its actually going
> anywhere since its slower than the current code (although its hard to
> say with the results changing from reboot to reboot), and its still
> quite ugly..
Hm. Stracing this proglet will soon leave it stuck forever unless the
timer is left running. Virgin rt14 does the same though...
strace ./jitter -c 3 -p 99 -f 1000 -t 10 -r
rt_sigtimedwait([], NULL, NULL, 8) = 64
timer_settime(0x1, TIMER_ABSTIME, {it_interval={0, 0}, it_value={0, 0}}, NULL) = 0
timer_settime(0x1, TIMER_ABSTIME, {it_interval={0, 0}, it_value={1316698141, 166759038}}, NULL) = 0
rt_sigtimedwait([], NULL, NULL, 8) = 64
timer_settime(0x1, TIMER_ABSTIME, {it_interval={0, 0}, it_value={0, 0}}, NULL) = 0
timer_settime(0x1, TIMER_ABSTIME, {it_interval={0, 0}, it_value={1316698141, 167822701}}, NULL) = 0
rt_sigtimedwait([], NULL, NULL, 8) = 64
timer_settime(0x1, TIMER_ABSTIME, {it_interval={0, 0}, it_value={0, 0}}, NULL) = 0
timer_settime(0x1, TIMER_ABSTIME, {it_interval={0, 0}, it_value={1316698141, 168887375}}, NULL) = 0
--- SIGRT_32 (Real-time signal 30) @ 0 (0) ---
rt_sigreturn(0x40) = 0
rt_sigtimedwait([], NULL, NULL, 8^C <unfinished ...>
#define _GNU_SOURCE
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <unistd.h>
#include <math.h>
#include <values.h>
#include <sched.h>
#include <signal.h>
#include <time.h>
#include <cpuset.h>
#include <getopt.h>
#include <sys/time.h>
#include <sys/types.h>
#include <sys/mman.h>
/* compile with gcc -O jitter.c -o jitter -lrt -lm */
#define NSEC_PER_SEC 1000000000ULL
#define USEC_PER_SEC 1000000ULL
#define NSEC_PER_USEC 1000ULL
int frequency = 1000;
int period;
int tolerance = 5;
int delay = 1;
int samples = 1000;
int cpu;
int priority = 1;
int reset_timer;
double *deltas;
double *deviants;
sigset_t mysigset;
char *usage = "Usage: -c <cpu> -d <delay> -f <freq(Hz)> -p <prio> -t <tolerance(us)>\n";
void parse_options(int argc, char **argv)
{
int ch;
extern char *optarg;
extern int optind;
while ((ch = getopt(argc, argv, "c:d:f:p:rt:")) != EOF) {
switch (ch) {
case 'c':
if (sscanf(optarg, "%d", &cpu) != 1 ||
cpu < 0) {
fprintf(stderr,"Invalid cpu.\n");
exit(EXIT_FAILURE);
}
break;
case 'd':
if (sscanf(optarg, "%d", &delay) != 1 ||
delay <= 0) {
fprintf(stderr,"Invalid delay.\n");
exit(EXIT_FAILURE);
}
break;
case 'f':
if (sscanf(optarg, "%d", &frequency) != 1 ||
frequency <= 0) {
fprintf(stderr,"Invalid frequency.\n");
exit(EXIT_FAILURE);
}
break;
case 'r':
reset_timer = 1;
break;
case 'p':
if (sscanf(optarg, "%d", &priority) != 1 ||
priority < 1 || priority > 99) {
fprintf(stderr,"Invalid priority.\n");
exit(EXIT_FAILURE);
}
break;
case 't':
if (sscanf(optarg, "%d", &tolerance) != 1 ||
tolerance < 0) {
fprintf(stderr,"Invalid tolerance.\n");
exit(EXIT_FAILURE);
}
break;
default:
fprintf(stderr, "%s", usage);
exit(EXIT_FAILURE);
break;
}
}
samples = frequency * delay;
period = NSEC_PER_SEC / frequency;
}
long delta(struct timespec *now, struct timespec *then)
{
long delta = now->tv_sec * NSEC_PER_SEC + now->tv_nsec;
delta -= then->tv_sec * NSEC_PER_SEC + then->tv_nsec;
return delta;
}
void signal_handler(int signo)
{
}
void init_timer(timer_t *timer_id)
{
struct sigaction sa;
struct sigevent se;
memset(&sa, 0, sizeof(sa));
sa.sa_flags = SA_RESTART|SA_SIGINFO;
sa.sa_handler = signal_handler;
sigemptyset(&sa.sa_mask);
sigaddset(&sa.sa_mask, SIGCHLD);
memset(&se, 0, sizeof(se));
se.sigev_notify = SIGEV_SIGNAL;
se.sigev_signo = SIGRTMAX;
se.sigev_value.sival_int = 0;
if (sigaction(SIGRTMAX, &sa, 0) < 0) {
perror("sigaction");
exit(EXIT_FAILURE);
}
if (timer_create(CLOCK_REALTIME, &se, timer_id) < 0) {
perror("timer_create");
exit(EXIT_FAILURE);
}
sigemptyset(&mysigset);
sigaddset(&mysigset,SIGRTMAX);
}
void set_timer(timer_t timer_id, int period, struct timespec *target)
{
struct itimerspec ts;
struct timespec now;
clock_gettime(CLOCK_REALTIME, target);
if (period) {
target->tv_nsec += period;
if (target->tv_nsec >= NSEC_PER_SEC) {
target->tv_sec++;
target->tv_nsec -= NSEC_PER_SEC;
}
ts.it_value = *target;
ts.it_interval.tv_sec = 0;
ts.it_interval.tv_nsec = reset_timer ? 0 : period;
} else
memset(&ts, 0, sizeof(struct itimerspec));
if (timer_settime(timer_id, TIMER_ABSTIME, &ts, NULL) < 0) {
perror("timer_settime");
exit (EXIT_FAILURE);
}
}
void print_stats(void)
{
struct sched_param sp;
double min = MAXDOUBLE, max = MINDOUBLE;
double sum = 0.0, delta, mean, sd;
double tol = (double)tolerance;
int i, deviant = 0;
sp.sched_priority = 0;
if (sched_setscheduler(0, SCHED_OTHER, &sp) == -1) {
perror("sched_setscheduler");
exit(EXIT_FAILURE);
}
for (i = 0; i < samples; i++) {
deltas[i] /= (double)NSEC_PER_USEC;
if (deltas[i] < min)
min = deltas[i];
if (deltas[i] > max)
max = deltas[i];
if (abs((int)deltas[i]) > tol) {
deviants[deviant] = deltas[i];
deviant++;
}
sum += deltas[i];
}
mean = sum / (double)samples;
/* calculate standard deviation */
sum = 0.0;
for (i = 0; i < samples; i++) {
delta = deltas[i] - mean;
sum += delta*delta;
}
sum /= (double)samples;
sd = sqrt(sum);
printf("jitter:%7.2f\tmin: %9.2f max: %9.2f mean: %9.2f stddev: %7.2f\n",
max - min, min, max, mean, sd);
if (!deviant)
goto out;
min = MAXDOUBLE;
max = MINDOUBLE;
sum = 0.0;
for (i = 0; i < deviant; i++) {
if (deviants[i] < min)
min = deviants[i];
if (deviants[i] > max)
max = deviants[i];
sum += deviants[i];
}
mean = sum / (double)deviant;
/* calculate standard deviation */
sum = 0.0;
for (i = 0; i < deviant; i++) {
delta = deviants[i] - mean;
sum += delta*delta;
}
sum /= (double)deviant;
sd = sqrt(sum);
printf("%d > %d us hits\tmin: %9.2f max: %9.2f mean: %9.2f stddev: %7.2f\n\n",
deviant, tolerance, min, max, mean, sd);
out:
fflush(stdout);
sp.sched_priority = priority;
if (sched_setscheduler(0, SCHED_FIFO, &sp) == -1) {
perror("sched_setscheduler");
exit(EXIT_FAILURE);
}
}
int quit;
void exit_handler(int signo)
{
quit = 1;
}
int main(int argc, char **argv)
{
timer_t timer_id;
struct sched_param sp;
cpu_set_t cpuset;
struct timespec now, then;
int i = 0, sig = 0;
parse_options(argc, argv);
signal(SIGINT, exit_handler);
signal(SIGTERM, exit_handler);
if (mlockall(MCL_CURRENT|MCL_FUTURE) < 0) {
perror("mlockall");
exit(EXIT_FAILURE);
}
if (!(deltas = malloc(samples * sizeof(double)))) {
perror("malloc deltas");
exit(EXIT_FAILURE);
} else if (!(deviants = malloc(samples * sizeof(double)))) {
perror("malloc deviants");
exit(EXIT_FAILURE);
}
CPU_ZERO(&cpuset);
CPU_SET(cpu, &cpuset);
if (sched_setaffinity(0, sizeof(cpuset), &cpuset) == -1) {
perror("setaffinity");
exit(EXIT_FAILURE);
}
sp.sched_priority = priority;
if (sched_setscheduler(0, SCHED_FIFO, &sp) == -1) {
perror("sched_setscheduler");
exit(EXIT_FAILURE);
}
printf("CPU%d priority: %d timer freq: %d Hz tolerance: %d usecs, stats interval: %d %s\n\n",
cpu, sp.sched_priority, frequency, tolerance, delay, "secs");
init_timer(&timer_id);
set_timer(timer_id, period, &then);
while (!quit && reset_timer) {
sigwait(&mysigset,&sig);
set_timer(timer_id, 0, &now);
deltas[i] = (double)delta(&now, &then);
if (i++ >= samples) {
print_stats();
i = 0;
}
set_timer(timer_id, period, &then);
}
clock_gettime(CLOCK_REALTIME, &then);
while (!quit && !reset_timer) {
sigwait(&mysigset,&sig);
clock_gettime(CLOCK_REALTIME, &now);
deltas[i] = (double)delta(&now, &then) - period;
if (i++ >= samples) {
set_timer(timer_id, 0, &then);
print_stats();
i = 0;
set_timer(timer_id, period, &then);
}
clock_gettime(CLOCK_REALTIME, &then);
}
set_timer(timer_id, 0, &now);
exit(EXIT_SUCCESS);
}
\
\ /
Last update: 2011-09-22 15:45 [W:0.098 / U:3.180 seconds]
©2003-2017 Jasper Spaans. hosted at Digital OceanAdvertise on this site
|
__label__pos
| 0.980398 |
Building a dynamic JSON Request body with n objects in an array
beitlichebeitliche Posts: 3
Hello,
I have a use case that I'm trying to implement in SOATest and am running into a wall.
I have a Service1 that returns n number of Account objects. There are a varying amount of accounts that could be returned for a given request as that user may have more or less accounts than another.
I have a second service, Service2, that takes a structured request of n Account objects and AccountId is an integer that is required on all Accounts passed.
What I am attempting to do is extract AccountIds from the Service1 response and then build out a request to Service2 in a dynamic fashion. I have tried using a JSON Databank to extract the AccountIds from Service1 and then paramaterized that to the Service2 request but it just pastes ALL the AccountIds into a single AccountId field. Is there any way to dynamically create an array of objects using SOATest, in memory?
See below for samples.
Service1 Response:
{
"AccountSummaryList":[
{
"AccountId":"111111111",
"AccountType:"BLAHBLAH"
},
{
"AccountId":"22222",
"AccountType:"BLAHBLAH"
},
{.....}
]
}
Service2 Request:
{
"Accounts":[
{
"AccountId":111111,
"otherdetails":"blahblah"
},
{
"AccountId":222222,
"otherdetails":"blahblah"
}
]
}
Tagged:
Comments
• melmathmelmath Posts: 1
I second this question!
• Ramiro MartinezRamiro Martinez Posts: 47 admin
Hi Beitliche,
There are possibly more elegant implementations, but off the top of my head I would use an XML data bank to extract all of the element values to a Writable data source.
Modify the Xpath to grab all values not just a single one.
Once written into a data source you can then use the
context.getValues("writable_name","column_name") method to move the values to an arraylist and then simply loop the values while adding the tags. You would then have your xml body.
This Example requires the use of a test suite variable. (Double click the test suite and navigate to then variable tab)
Example script:
import com.parasoft.api.*;
public void compareASC(Object input, ScriptingContext context)
{
String fullString = "";
ArrayList<String> list = context.getValues("data","values");
for(int i = 0; i < list.size() ; i++)
{
String a = list.get(i);
a = "<test>" + a + "</test>";
fullString += a;
}
context.setValue("x", fullString);
}
Now you can reference the variable "x" to get the values.
In your messaging client, switch to "literal mode"(otherwise the background encoding will change the '<' & '>') and reference the variable with ${variable_name} .
The scenario
• benken_parasoftbenken_parasoft Posts: 568 ✭✭✭
edited July 2017
Here is some general information.
It is common for to take elements/objects/arrays from a response and then reuse them in a subsequent request. Typically, you would do the following:
1. Extract the desired element/object/array that you want to reuse to a data bank column. In the data bank, click Modify to open the Modify Selected XPath settings dialog. Make sure "Entire element" is selected and not "Content only".
2. In the subsequent request, replace the desired element/property/item with the data bank column. In the Form view, you would right-click the on the element you want to replace then click "Replace with Data Source Value", select Data Bank, choose your data bank column, then click Finish.
What I mention applies to both JSON and XML. For JSON, you would be using a JSON Data Bank and the Form JSON view. For XML, you would be using an XML Data Bank and the Form Input view.
Sometimes using the extraction as-is is desired. However, in some scenarios you want to transform the data in some way before reusing it. This could be accomplished using scripting (Extension Tool) or using XSL (XSLT Tool). Some simple transformations, like removing or appending values, can be applied by Data Bank itself by enabling the "Allow alteration" box under Options (collapsed by default).
Ramiro's response is one such example where scripting can be used to transform extracted values.
• beitlichebeitliche Posts: 3
Hello,
Thank you for your responses.
@benken_parasoft I have tried the above and am not seeing the intended outcome.
Here is a sample of the response that I am extracting the AccountId values from:
From this response I have the following data bank/xpath setup. As you can see it's set in "AccountId, ####" format. Which I would expect to be able to use.
In the secondary request I am trying to build here is a sample of the form JSON (There will be other elements, I'm just trying to get this one working for now as a POC).
I have tried setting the Replacement at the Accounts, and Item[0] level (as those are the only two that allow it. I cannot add a replacement at the AccountId level). I receive the following error when attempting this.
Please advise if I am missing something but as far as I can tell SOATest does not natively support the use case for which I am trying. Short of coding up an extension to build this request I cannot see a path forward.
Thanks!
• benken_parasoftbenken_parasoft Posts: 568 ✭✭✭
edited July 2017
The steps I described are for extracting the entire array and then replacing the entire array element. If you want to do that then you would extract the value of the AccountSummaryList array and then replace the Accounts array in the subsequent test.
As mentioned, more steps or different steps would be required if you need to transform the contents of the array being extracted (change/add/remove values or rename things). As mentioned, this may have involve scripting or XSL. Ramiro gives one such example. Please note that if you follow Ramiro's example, he's not extracting the entire array but the contents to a Writable Data Source and using scripting to construct the desired result (which is a different approach than what I describe but also fine).
Sign In or Register to comment.
|
__label__pos
| 0.929051 |
Example #1
0
def initialize(self, record_owner_name=None):
# initialize a few helpful variables here
self.record_viewer = self.request.user
self.record_owner = None
if record_owner_name:
self.record_owner = get_object_or_404(User,
username=record_owner_name)
# Is the current user faculty or a CCNMTL staff member
self.is_viewer_faculty = cached_course_is_faculty(self.request.course,
self.record_viewer)
# Can the record_owner edit the records
self.viewing_own_records = (self.record_owner == self.record_viewer)
self.viewing_faculty_records = (
self.record_owner and
cached_course_is_faculty(self.request.course, self.record_owner))
# Does the course allow viewing other user selections?
# The viewer can always view their own records + faculty records
# If the viewer is faculty, they can view all records
self.all_selections_are_visible = \
all_selections_are_visible(self.request.course)
self.all_items_are_visible = \
all_items_are_visible(self.request.course)
self.visible_authors = []
if (not self.is_viewer_faculty and
(not self.all_selections_are_visible or
not self.all_items_are_visible)):
self.visible_authors = [self.record_viewer.id] # me
for user in self.request.course.faculty.all():
self.visible_authors.append(user.id)
Example #2
0
def dispatch(self, *args, **kwargs):
# initialize a few helpful variables here
self.record_viewer = self.request.user
self.record_owner = None
record_owner_name = kwargs.pop("record_owner_name", None)
if record_owner_name:
self.record_owner = get_object_or_404(User, username=record_owner_name)
# Is the current user faculty or a CCNMTL staff member
self.is_viewer_faculty = cached_course_is_faculty(self.request.course, self.record_viewer)
# Can the record_owner edit the records
self.viewing_own_records = self.record_owner == self.record_viewer
self.viewing_faculty_records = self.record_owner and cached_course_is_faculty(
self.request.course, self.record_owner
)
# Does the course allow viewing other user selections?
# The viewer can always view their own records + faculty records
# If the viewer is faculty, they can view all records
self.all_selections_are_visible = all_selections_are_visible(self.request.course)
self.visible_authors = []
if not self.all_selections_are_visible and not self.is_viewer_faculty:
self.visible_authors = [self.record_viewer.id] # me
for user in self.request.course.faculty.all():
self.visible_authors.append(user.id)
return super(RestrictedMaterialsMixin, self).dispatch(*args, **kwargs)
Example #3
0
def apply_authorization_limits(self, request, object_list):
course = self.course or request.course
if (all_selections_are_visible(course) or
cached_course_is_faculty(course, request.user)):
return self.get_unrestricted(request, object_list, course)
else:
return self.get_restricted(request, object_list, course)
Example #4
0
def __init__(self, *args, **kwargs):
r = super(DashboardSettingsForm, self).__init__(*args, **kwargs)
self.fields['publish_to_world'].initial = \
allow_public_compositions(self.instance)
self.fields['homepage_title'].initial = \
course_information_title(self.instance)
self.fields['see_eachothers_items'].initial = \
all_items_are_visible(self.instance)
self.fields['see_eachothers_selections'].initial = \
all_selections_are_visible(self.instance)
self.fields['allow_item_download'].initial = \
allow_item_download(self.instance)
self.fields['allow_roster_changes'].initial = \
allow_roster_changes(self.instance)
return r
Example #5
0
def test_post_disabled_selection_visibility(self):
self.client.login(username=self.instructor_one.username,
password='test')
data = {course_details.ITEM_VISIBILITY_KEY: 0}
response = self.client.post('/dashboard/settings/', data)
self.assertEquals(response.status_code, 302)
# unchanged from defaults
self.assertEquals(course_information_title(self.sample_course),
'From Your Instructor')
self.assertFalse(allow_public_compositions(self.sample_course))
# updated
self.assertFalse(all_items_are_visible(self.sample_course))
self.assertFalse(all_selections_are_visible(self.sample_course))
Example #6
0
def test_post(self):
self.assertTrue(
self.client.login(username=self.instructor_one.username,
password='test'))
data = {
course_details.COURSE_INFORMATION_TITLE_KEY: "Foo",
course_details.SELECTION_VISIBILITY_KEY: 0,
course_details.ITEM_VISIBILITY_KEY: 0,
course_details.ALLOW_PUBLIC_COMPOSITIONS_KEY: 1
}
response = self.client.post('/dashboard/settings/', data)
self.assertEquals(response.status_code, 302)
self.assertEquals(course_information_title(self.sample_course), "Foo")
self.assertTrue(allow_public_compositions(self.sample_course))
self.assertFalse(all_items_are_visible(self.sample_course))
self.assertFalse(all_selections_are_visible(self.sample_course))
Example #7
0
def __init__(self, *args, **kwargs):
r = super(DashboardSettingsForm, self).__init__(*args, **kwargs)
self.fields['publish_to_world'].initial = \
allow_public_compositions(self.instance)
self.fields['homepage_title'].initial = \
course_information_title(self.instance)
self.fields['see_eachothers_items'].initial = \
all_items_are_visible(self.instance)
self.fields['see_eachothers_selections'].initial = \
all_selections_are_visible(self.instance)
self.fields['allow_item_download'].initial = \
allow_item_download(self.instance)
lti_context = LTICourseContext.objects.filter(
group=self.instance.group.id,
faculty_group=self.instance.faculty_group.id).first()
self.fields['lti_integration'].initial = \
(lti_context and lti_context.enable)
return r
Example #8
0
def __init__(self, request, *args, **kwargs):
super(ProjectForm, self).__init__(*args, **kwargs)
lst = [(u.id, get_public_name(u, request))
for u in request.course.user_set.all()]
self.fields['participants'].choices = sorted(
lst, key=lambda participant: participant[1])
self.fields['participants'].widget.attrs = {
'id': "id_participants_%s" % self.instance.id
}
project = kwargs['instance']
if project:
# set initial publish value
col = project.get_collaboration()
if col:
self.initial['publish'] = col.policy_record.policy_name
else:
self.instance = None
choices = self.get_choices(request, project)
self.fields['publish'].choices = choices
# response view policy. limit choices if there is no project
# or the project is a selection assignment
if (not project or not (
project.is_composition() or project.is_sequence())):
choices = [RESPONSE_VIEW_NEVER]
if all_selections_are_visible(request.course):
choices.append(RESPONSE_VIEW_SUBMITTED)
choices.append(RESPONSE_VIEW_ALWAYS)
self.fields['response_view_policy'].choices = choices
self.fields['participants'].required = False
self.fields['body'].required = False
self.fields['submit'].required = False
self.fields['publish'].required = False
# for structured collaboration
self.fields['title'].widget.attrs['maxlength'] = 80
Example #9
0
def apply_limits(self, request, object_list, exclude_global=True):
if request.user.is_authenticated():
if exclude_global:
# only request user's global annotations
object_list = object_list.exclude(~Q(author=request.user),
range1__isnull=True)
# Make sure the requesting user is allowed to see this note
invisible = []
courses = {}
for note in object_list.select_related('asset__course'):
course = note.asset.course
# Cache this out per course/user. It's just too slow otherwise
if not course.id in courses.keys():
courses[course.id] = {'whitelist': None}
is_faculty = cached_course_is_faculty(course, request.user)
if (not course_details.all_selections_are_visible(course)
and not is_faculty):
courses[course.id]['whitelist'] = list(course.faculty)
courses[course.id]['whitelist'].append(request.user)
if not cached_course_is_member(course, request.user):
invisible.append(note.id)
elif (courses[course.id]['whitelist'] and
not note.author in courses[course.id]['whitelist']):
# apply per course limitations
# the user or a faculty member must be the selection author
invisible.append(note.id)
return object_list.exclude(id__in=invisible).order_by('id')
elif request.public:
# attribute "public" set on request when requesting a
# public_to_world essay. all notes are public by default
return object_list.order_by('id')
else:
return []
Example #10
0
def mediathread_activity_by_course(request):
"""STAFF ONLY reporting of entire application activity """
if not request.user.is_staff:
return HttpResponseForbidden("forbidden")
response = HttpResponse(mimetype='text/csv')
response['Content-Disposition'] = \
'attachment; filename=mediathread_activity_by_course.csv'
writer = csv.writer(response)
headers = ['Id', 'Title', 'Instructor', 'Course String',
'Term', 'Year', 'Section', 'Course Number', 'School',
'Students', 'Items', 'Selections',
'Compositions', 'Assignments', 'Discussions',
'Public To World Compositions',
'All Selections Visible']
writer.writerow(headers)
rows = []
for c in Course.objects.all().order_by('-id'):
if (c.faculty_group is None or
(not (c.faculty_group.name.startswith('t1') or
c.faculty_group.name.startswith('t2') or
c.faculty_group.name.startswith('t3')))):
continue
row = []
row.append(c.id)
row.append(c.title)
if 'instructor' in c.details():
row.append(c.details()['instructor'].value)
else:
row.append('')
course_string = c.faculty_group.name
row.append(course_string)
bits = c.faculty_group.name.split('.')
row.append(bits[0]) # term
row.append(bits[1][1:]) # year
row.append(bits[2]) # section
row.append(bits[3]) # courseNo
row.append(bits[4]) # school
row.append(len(c.students))
items = Asset.objects.filter(course=c)
row.append(len(items))
selections = SherdNote.objects.filter(asset__course=c)
row.append(len(selections))
compositions = 0
assignments = 0
projects = Project.objects.filter(course=c)
for p in projects:
if p.visibility_short() == 'Assignment':
assignments += 1
else:
compositions += 1
row.append(compositions)
row.append(assignments)
try:
row.append(len(get_course_discussions(c)))
except Collaboration.DoesNotExist:
row.append(0)
row.append(course_details.allow_public_compositions(c))
row.append(course_details.all_selections_are_visible(c))
rows.append(row)
for row in rows:
try:
writer.writerow(row)
except:
pass
return response
Example #11
0
def get(self, request, *args, **kwargs):
headers = ['Id', 'Title', 'Instructor', 'Course String',
'Term', 'Year', 'Section', 'Course Number', 'School',
'Students', '% Active Students',
'Items', 'Selections',
'Compositions', 'Assignments', 'Discussions',
'Public To World Compositions', 'All Selections Visible',
'# of Active Tags', '% Using Tags',
'% Items Tagged', '% Selections Tagged',
'# of Active Vocabulary Terms', '% Using Vocabulary',
'% Items Classified', '% Selections Classified']
rows = []
for the_course in Course.objects.all().order_by('-id'):
if not self.include_course(the_course):
continue
row = []
row.append(the_course.id)
row.append(the_course.title)
if 'instructor' in the_course.details():
row.append(the_course.details()['instructor'].value)
else:
row.append('')
course_string = the_course.faculty_group.name
row.append(course_string)
bits = the_course.faculty_group.name.split('.')
row.append(bits[0]) # term
row.append(bits[1][1:]) # year
row.append(bits[2]) # section
row.append(bits[3]) # courseNo
row.append(bits[4]) # school
students = self.all_students(the_course)
row.append(len(students))
row.append(self.active_students(students))
items = Asset.objects.filter(course=the_course)
row.append(len(items))
selections = SherdNote.objects.filter(asset__course=the_course)
row.append(len(selections))
compositions, assignments = self.project_count(the_course)
row.append(compositions)
row.append(assignments)
row.append(self.discussion_count(the_course))
row.append(course_details.allow_public_compositions(the_course))
row.append(course_details.all_selections_are_visible(the_course))
# Breakdown tags & vocabulary terms by item & selection
if len(selections) > 0:
item_notes = selections.filter(range1=None, range2=None)
sel_notes = selections.exclude(range1=None, range2=None)
tags = Tag.objects.usage_for_queryset(selections)
row.append(len(tags)) # # of Active Tags',
tagged = selections.filter(tags__isnull=False).values('author')
tag_users = tagged.distinct().count()
if len(students) > 0:
# % users using tags
row.append(float(tag_users) / len(students) * 100)
else:
row.append(0)
# '% Items Tagged', '% Selections Tagged'
t = item_notes.filter(tags__isnull=False).exclude(
tags__exact='')
row.append(float(len(t)) / len(selections) * 100)
t = sel_notes.filter(tags__isnull=False).exclude(
tags__exact='')
row.append(float(len(t)) / len(selections) * 100)
# Vocabulary
vocab = Vocabulary.objects.get_for_object(the_course)
content_type = ContentType.objects.get_for_model(SherdNote)
related = TermRelationship.objects.filter(
term__vocabulary__in=vocab,
content_type=content_type,
object_id__in=selections.values_list('id'))
# '# of Active Vocabulary Terms'
q = related.aggregate(Count('term', distinct=True))
active_terms = q['term__count']
termed = SherdNote.objects.filter(
id__in=related.values_list('object_id')).values('author')
vocab_users = termed.distinct().count()
row.append(active_terms)
if len(students) > 0:
# % users
row.append(float(vocab_users) / len(students) * 100)
else:
row.append(0)
related_ids = related.values_list('object_id')
items = len(SherdNote.objects.filter(id__in=related_ids,
range1=None, range2=None))
row.append(float(items) / len(selections) * 100) # % Items
sel = len(SherdNote.objects.filter(id__in=related_ids).exclude(
range1=None, range2=None))
row.append(float(sel) / len(selections) * 100) # % Selections
rows.append(row)
return self.render_csv_response(
'mediathread_activity_by_course', headers, rows)
Example #12
0
def render_assets(request, record_owner, assets):
course = request.course
logged_in_user = request.user
# Is the current user faculty OR staff
is_faculty = cached_course_is_faculty(course, logged_in_user)
# Can the record_owner edit the records
viewing_own_records = (record_owner == logged_in_user)
viewing_faculty_records = record_owner and course.is_faculty(record_owner)
# Allow the logged in user to add assets to his composition
citable = request.GET.get('citable', '') == 'true'
# Does the course allow viewing other user selections?
owner_selections_are_visible = (
course_details.all_selections_are_visible(course) or
viewing_own_records or viewing_faculty_records or is_faculty)
# Spew out json for the assets
if request.GET.get('annotations', '') == 'true':
resource = AssetResource(owner_selections_are_visible,
record_owner,
{'editable': viewing_own_records,
'citable': citable})
else:
resource = AssetSummaryResource({'editable': viewing_own_records,
'citable': citable})
asset_json = resource.render_list(request, assets)
active_filters = {}
for k, val in request.GET.items():
if (k == 'tag' or k == 'modified' or k.startswith('vocabulary-')):
active_filters[k] = val
user_resource = UserResource()
# #todo -- figure out a cleaner way to do this. Ugli-ness
# Collate tag set & vocabulary set for the result set.
# Get all visible notes for the returned asset set
# These notes may include global annotations for all users,
# whereas the rendered set will not
active_asset_ids = [a['id'] for a in asset_json]
active_notes = []
if record_owner:
if owner_selections_are_visible:
active_notes = SherdNote.objects.filter(
asset__course=course, asset__id__in=active_asset_ids,
author__id=record_owner.id)
else:
if all_selections_are_visible(course) or is_faculty:
# Display all tags for the asset set including globals
active_notes = SherdNote.objects.filter(
asset__course=course, asset__id__in=active_asset_ids)
else:
whitelist = [f.id for f in course.faculty]
whitelist.append(request.user.id)
active_notes = SherdNote.objects.filter(
asset__course=course,
asset__id__in=active_asset_ids,
author__id__in=whitelist)
tags = []
if len(active_notes) > 0:
tags = Tag.objects.usage_for_queryset(active_notes)
tags.sort(lambda a, b: cmp(a.name.lower(), b.name.lower()))
active_vocabulary = []
note_ids = [n.id for n in active_notes]
content_type = ContentType.objects.get_for_model(SherdNote)
term_resource = TermResource()
for v in Vocabulary.objects.get_for_object(request.course):
vocabulary = {
'id': v.id,
'display_name': v.display_name,
'term_set': []
}
related = TermRelationship.objects.filter(term__vocabulary=v,
content_type=content_type,
object_id__in=note_ids)
terms = []
for r in related:
if r.term.display_name not in terms:
the_term = term_resource.render_one(request, r.term)
vocabulary['term_set'].append(the_term)
terms.append(r.term.display_name)
active_vocabulary.append(vocabulary)
# Assemble the context
data = {'assets': asset_json,
'active_tags': TagResource().render_list(request, tags),
'active_filters': active_filters,
'active_vocabulary': active_vocabulary,
'space_viewer': user_resource.render_one(request, logged_in_user),
'editable': viewing_own_records,
'citable': citable,
'is_faculty': is_faculty}
if record_owner:
data['space_owner'] = user_resource.render_one(request, record_owner)
json_stream = simplejson.dumps(data, indent=2)
return HttpResponse(json_stream, mimetype='application/json')
Example #13
0
def mediathread_activity_by_course(request):
"""STAFF ONLY reporting of entire application activity """
if not request.user.is_staff:
return HttpResponseForbidden("forbidden")
response = HttpResponse(mimetype='text/csv')
response['Content-Disposition'] = \
'attachment; filename=mediathread_activity_by_course.csv'
writer = csv.writer(response)
headers = ['Id', 'Title', 'Instructor', 'Course String',
'Term', 'Year', 'Section', 'Course Number', 'School',
'Students', '% Active Students',
'Items', 'Selections',
'Compositions', 'Assignments', 'Discussions',
'Public To World Compositions', 'All Selections Visible',
'# of Active Tags', '% Using Tags',
'% Items Tagged', '% Selections Tagged',
'# of Active Vocabulary Terms', '% Using Vocabulary',
'% Items Classified', '% Selections Classified']
writer.writerow(headers)
rows = []
for the_course in Course.objects.all().order_by('-id'):
if (the_course.faculty_group is None or
(not (the_course.faculty_group.name.startswith('t1') or
the_course.faculty_group.name.startswith('t2') or
the_course.faculty_group.name.startswith('t3')))):
continue
row = []
row.append(the_course.id)
row.append(the_course.title)
if 'instructor' in the_course.details():
row.append(the_course.details()['instructor'].value)
else:
row.append('')
course_string = the_course.faculty_group.name
row.append(course_string)
bits = the_course.faculty_group.name.split('.')
row.append(bits[0]) # term
row.append(bits[1][1:]) # year
row.append(bits[2]) # section
row.append(bits[3]) # courseNo
row.append(bits[4]) # school
students = the_course.group.user_set.all()
if the_course.faculty_group:
ids = the_course.faculty_group.user_set.values('id')
students = students.exclude(id__in=ids)
row.append(len(students))
if len(students) > 0:
active = students.filter(Q(projects__isnull=False) |
Q(sherdnote__isnull=False)).distinct()
row.append(float(len(active)) / len(students) * 100)
else:
row.append(0)
items = Asset.objects.filter(course=the_course)
row.append(len(items))
selections = SherdNote.objects.filter(asset__course=the_course)
row.append(len(selections))
compositions = 0
assignments = 0
projects = Project.objects.filter(course=the_course)
for project in projects:
if project.visibility_short() == 'Assignment':
assignments += 1
else:
compositions += 1
row.append(compositions)
row.append(assignments)
try:
discussions = get_course_discussions(the_course)
row.append(len(discussions))
'# of Discussion Items', '% participating in Discussions',
except Collaboration.DoesNotExist:
row.append(0)
row.append(course_details.allow_public_compositions(the_course))
row.append(course_details.all_selections_are_visible(the_course))
# Breakdown tags & vocabulary terms by item & selection
if len(selections) > 0:
item_notes = selections.filter(range1=None, range2=None)
sel_notes = selections.exclude(range1=None, range2=None)
tags = Tag.objects.usage_for_queryset(selections)
row.append(len(tags)) # # of Active Tags',
tag_users = len(
selections.filter(tags__isnull=False).distinct('author'))
if len(students) > 0:
# % users using tags
row.append(float(tag_users) / len(students) * 100)
else:
row.append(0)
# '% Items Tagged', '% Selections Tagged'
t = item_notes.filter(tags__isnull=False).exclude(tags__exact='')
row.append(float(len(t)) / len(selections) * 100)
t = sel_notes.filter(tags__isnull=False).exclude(tags__exact='')
row.append(float(len(t)) / len(selections) * 100)
# Vocabulary
vocab = Vocabulary.objects.get_for_object(the_course)
content_type = ContentType.objects.get_for_model(SherdNote)
related = TermRelationship.objects.filter(
term__vocabulary__in=vocab,
content_type=content_type,
object_id__in=selections.values_list('id'))
# '# of Active Vocabulary Terms'
q = related.aggregate(Count('term', distinct=True))
active_terms = q['term__count']
vocab_users = len(SherdNote.objects.filter(
id__in=related.values_list('object_id')).distinct(
'author'))
row.append(active_terms)
if len(students) > 0:
row.append(float(vocab_users) / len(students) * 100) # % users
else:
row.append(0)
related_ids = related.values_list('object_id')
items = len(SherdNote.objects.filter(id__in=related_ids,
range1=None, range2=None))
row.append(float(items) / len(selections) * 100) # % Items
sel = len(SherdNote.objects.filter(id__in=related_ids).exclude(
range1=None, range2=None))
row.append(float(sel) / len(selections) * 100) # % Selections
rows.append(row)
for row in rows:
try:
writer.writerow(row)
except:
pass
return response
Example #14
0
def get(self, request, *args, **kwargs):
headers = ['Id', 'Created', 'Title', 'Instructor', 'Course String',
'Term', 'Year', 'Section', 'Course Number', 'School',
'Students', '% Active Students',
'Total Items', 'Student Items', 'Student Selections',
'Compositions', 'Assignments', 'Responses', 'Discussions',
'Public To World Compositions', 'All Selections Visible',
'# of Active Tags', '% Using Tags',
'% Items Tagged', '% Selections Tagged',
'# of Active Vocabulary Terms', '% Using Vocabulary',
'% Items Classified', '% Selections Classified']
rows = []
# Hard-coding date until we have time to code a proper ui
qs = Course.objects.filter(created_at__year__gte='2018')
for the_course in qs.order_by('-id'):
row = []
row.append(the_course.id)
row.append(the_course.created_at.strftime(self.date_fmt))
row.append(the_course.title)
if 'instructor' in the_course.details():
row.append(the_course.details()['instructor'].value)
else:
row.append('')
course_string = the_course.faculty_group.name
row.append(course_string)
bits = the_course.faculty_group.name.split('.')
if len(bits) >= 5:
row.append(bits[0]) # term
row.append(bits[1][1:]) # year
row.append(bits[2]) # section
row.append(bits[3]) # courseNo
row.append(bits[4]) # school
else:
row.append('')
row.append('')
row.append('')
row.append('')
row.append('')
students = self.all_students(the_course)
row.append(len(students))
row.append(self.active_students(students))
items = Asset.objects.filter(course=the_course)
row.append(len(items))
# student work only
student_ids = students.values('id')
items = Asset.objects.filter(
course=the_course, author__id__in=student_ids)
row.append(len(items))
selections = SherdNote.objects.filter(
asset__course=the_course, author__id__in=student_ids)
row.append(len(selections))
compositions, assignments, responses = \
self.project_count(the_course)
row.append(compositions)
row.append(assignments)
row.append(responses)
row.append(self.discussion_count(the_course))
row.append(course_details.allow_public_compositions(the_course))
row.append(course_details.all_selections_are_visible(the_course))
# Breakdown tags & vocabulary terms by item & selection
if len(selections) > 0:
item_notes = selections.filter(range1=None, range2=None)
sel_notes = selections.exclude(range1=None, range2=None)
tags = Tag.objects.usage_for_queryset(selections)
row.append(len(tags)) # # of Active Tags',
tagged = selections.filter(tags__isnull=False).values('author')
tag_users = tagged.distinct().count()
if len(students) > 0:
# % users using tags
row.append(float(tag_users) / len(students) * 100)
else:
row.append(0)
# '% Items Tagged', '% Selections Tagged'
t = item_notes.filter(tags__isnull=False).exclude(
tags__exact='')
row.append(float(len(t)) / len(selections) * 100)
t = sel_notes.filter(tags__isnull=False).exclude(
tags__exact='')
row.append(float(len(t)) / len(selections) * 100)
# Vocabulary
related = TermRelationship.objects.filter(
term__vocabulary__course=the_course,
sherdnote__id__in=selections.values_list('id', flat=True))
# '# of Active Vocabulary Terms'
q = related.aggregate(Count('term', distinct=True))
active_terms = q['term__count']
q = related.aggregate(
Count('sherdnote__author', distinct=True))
vocab_users = q['sherdnote__author__count']
row.append(active_terms)
if len(students) > 0:
# % users
row.append(float(vocab_users) / len(students) * 100)
else:
row.append(0)
related_ids = related.values_list('sherdnote__id', flat=True)
items = len(SherdNote.objects.filter(id__in=related_ids,
range1=None, range2=None))
row.append(float(items) / len(selections) * 100) # % Items
sel = len(SherdNote.objects.filter(id__in=related_ids).exclude(
range1=None, range2=None))
row.append(float(sel) / len(selections) * 100) # % Selections
rows.append(row)
return self.render_csv_response(
'mediathread_activity_by_course', headers, rows)
Example #15
0
def test_all_selections_are_visible(self):
# default
self.assertTrue(all_selections_are_visible(self.sample_course))
|
__label__pos
| 0.996935 |
Windows apps
Collapse the table of content
Expand the table of content
Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.
StringBuilder Class
System_CAPS_noteNote
The .NET API Reference documentation has a new home. Visit the .NET API Browser on docs.microsoft.com to see the new experience.
Represents a mutable string of characters. This class cannot be inherited.
To browse the .NET Framework source code for this type, see the Reference Source.
Namespace: System.Text
Assembly: mscorlib (in mscorlib.dll)
System.Object
System.Text.StringBuilder
[SerializableAttribute]
[ComVisibleAttribute(true)]
public sealed class StringBuilder : ISerializable
NameDescription
System_CAPS_pubmethodStringBuilder()
Initializes a new instance of the StringBuilder class.
System_CAPS_pubmethodStringBuilder(Int32)
Initializes a new instance of the StringBuilder class using the specified capacity.
System_CAPS_pubmethodStringBuilder(Int32, Int32)
Initializes a new instance of the StringBuilder class that starts with a specified capacity and can grow to a specified maximum.
System_CAPS_pubmethodStringBuilder(String)
Initializes a new instance of the StringBuilder class using the specified string.
System_CAPS_pubmethodStringBuilder(String, Int32)
Initializes a new instance of the StringBuilder class using the specified string and capacity.
System_CAPS_pubmethodStringBuilder(String, Int32, Int32, Int32)
Initializes a new instance of the StringBuilder class from the specified substring and capacity.
NameDescription
System_CAPS_pubpropertyCapacity
Gets or sets the maximum number of characters that can be contained in the memory allocated by the current instance.
System_CAPS_pubpropertyChars[Int32]
Gets or sets the character at the specified character position in this instance.
System_CAPS_pubpropertyLength
Gets or sets the length of the current StringBuilder object.
System_CAPS_pubpropertyMaxCapacity
Gets the maximum capacity of this instance.
NameDescription
System_CAPS_pubmethodAppend(Boolean)
Appends the string representation of a specified Boolean value to this instance.
System_CAPS_pubmethodAppend(Byte)
Appends the string representation of a specified 8-bit unsigned integer to this instance.
System_CAPS_pubmethodAppend(Char)
Appends the string representation of a specified Char object to this instance.
System_CAPS_pubmethodAppend(Char*, Int32)
Appends an array of Unicode characters starting at a specified address to this instance.
System_CAPS_pubmethodAppend(Char, Int32)
Appends a specified number of copies of the string representation of a Unicode character to this instance.
System_CAPS_pubmethodAppend(Char[])
Appends the string representation of the Unicode characters in a specified array to this instance.
System_CAPS_pubmethodAppend(Char[], Int32, Int32)
Appends the string representation of a specified subarray of Unicode characters to this instance.
System_CAPS_pubmethodAppend(Decimal)
Appends the string representation of a specified decimal number to this instance.
System_CAPS_pubmethodAppend(Double)
Appends the string representation of a specified double-precision floating-point number to this instance.
System_CAPS_pubmethodAppend(Int16)
Appends the string representation of a specified 16-bit signed integer to this instance.
System_CAPS_pubmethodAppend(Int32)
Appends the string representation of a specified 32-bit signed integer to this instance.
System_CAPS_pubmethodAppend(Int64)
Appends the string representation of a specified 64-bit signed integer to this instance.
System_CAPS_pubmethodAppend(Object)
Appends the string representation of a specified object to this instance.
System_CAPS_pubmethodAppend(SByte)
Appends the string representation of a specified 8-bit signed integer to this instance.
System_CAPS_pubmethodAppend(Single)
Appends the string representation of a specified single-precision floating-point number to this instance.
System_CAPS_pubmethodAppend(String)
Appends a copy of the specified string to this instance.
System_CAPS_pubmethodAppend(String, Int32, Int32)
Appends a copy of a specified substring to this instance.
System_CAPS_pubmethodAppend(UInt16)
Appends the string representation of a specified 16-bit unsigned integer to this instance.
System_CAPS_pubmethodAppend(UInt32)
Appends the string representation of a specified 32-bit unsigned integer to this instance.
System_CAPS_pubmethodAppend(UInt64)
Appends the string representation of a specified 64-bit unsigned integer to this instance.
System_CAPS_pubmethodAppendFormat(IFormatProvider, String, Object)
Appends the string returned by processing a composite format string, which contains zero or more format items, to this instance. Each format item is replaced by the string representation of a single argument using a specified format provider.
System_CAPS_pubmethodAppendFormat(IFormatProvider, String, Object, Object)
Appends the string returned by processing a composite format string, which contains zero or more format items, to this instance. Each format item is replaced by the string representation of either of two arguments using a specified format provider.
System_CAPS_pubmethodAppendFormat(IFormatProvider, String, Object, Object, Object)
Appends the string returned by processing a composite format string, which contains zero or more format items, to this instance. Each format item is replaced by the string representation of either of three arguments using a specified format provider.
System_CAPS_pubmethodAppendFormat(IFormatProvider, String, Object[])
Appends the string returned by processing a composite format string, which contains zero or more format items, to this instance. Each format item is replaced by the string representation of a corresponding argument in a parameter array using a specified format provider.
System_CAPS_pubmethodAppendFormat(String, Object)
Appends the string returned by processing a composite format string, which contains zero or more format items, to this instance. Each format item is replaced by the string representation of a single argument.
System_CAPS_pubmethodAppendFormat(String, Object, Object)
Appends the string returned by processing a composite format string, which contains zero or more format items, to this instance. Each format item is replaced by the string representation of either of two arguments.
System_CAPS_pubmethodAppendFormat(String, Object, Object, Object)
Appends the string returned by processing a composite format string, which contains zero or more format items, to this instance. Each format item is replaced by the string representation of either of three arguments.
System_CAPS_pubmethodAppendFormat(String, Object[])
Appends the string returned by processing a composite format string, which contains zero or more format items, to this instance. Each format item is replaced by the string representation of a corresponding argument in a parameter array.
System_CAPS_pubmethodAppendLine()
Appends the default line terminator to the end of the current StringBuilder object.
System_CAPS_pubmethodAppendLine(String)
Appends a copy of the specified string followed by the default line terminator to the end of the current StringBuilder object.
System_CAPS_pubmethodClear()
Removes all characters from the current StringBuilder instance.
System_CAPS_pubmethodCopyTo(Int32, Char[], Int32, Int32)
Copies the characters from a specified segment of this instance to a specified segment of a destination Char array.
System_CAPS_pubmethodEnsureCapacity(Int32)
Ensures that the capacity of this instance of StringBuilder is at least the specified value.
System_CAPS_pubmethodEquals(Object)
Determines whether the specified object is equal to the current object.(Inherited from Object.)
System_CAPS_pubmethodEquals(StringBuilder)
Returns a value indicating whether this instance is equal to a specified object.
System_CAPS_pubmethodGetHashCode()
Serves as the default hash function. (Inherited from Object.)
System_CAPS_pubmethodGetType()
Gets the Type of the current instance.(Inherited from Object.)
System_CAPS_pubmethodInsert(Int32, Boolean)
Inserts the string representation of a Boolean value into this instance at the specified character position.
System_CAPS_pubmethodInsert(Int32, Byte)
Inserts the string representation of a specified 8-bit unsigned integer into this instance at the specified character position.
System_CAPS_pubmethodInsert(Int32, Char)
Inserts the string representation of a specified Unicode character into this instance at the specified character position.
System_CAPS_pubmethodInsert(Int32, Char[])
Inserts the string representation of a specified array of Unicode characters into this instance at the specified character position.
System_CAPS_pubmethodInsert(Int32, Char[], Int32, Int32)
Inserts the string representation of a specified subarray of Unicode characters into this instance at the specified character position.
System_CAPS_pubmethodInsert(Int32, Decimal)
Inserts the string representation of a decimal number into this instance at the specified character position.
System_CAPS_pubmethodInsert(Int32, Double)
Inserts the string representation of a double-precision floating-point number into this instance at the specified character position.
System_CAPS_pubmethodInsert(Int32, Int16)
Inserts the string representation of a specified 16-bit signed integer into this instance at the specified character position.
System_CAPS_pubmethodInsert(Int32, Int32)
Inserts the string representation of a specified 32-bit signed integer into this instance at the specified character position.
System_CAPS_pubmethodInsert(Int32, Int64)
Inserts the string representation of a 64-bit signed integer into this instance at the specified character position.
System_CAPS_pubmethodInsert(Int32, Object)
Inserts the string representation of an object into this instance at the specified character position.
System_CAPS_pubmethodInsert(Int32, SByte)
Inserts the string representation of a specified 8-bit signed integer into this instance at the specified character position.
System_CAPS_pubmethodInsert(Int32, Single)
Inserts the string representation of a single-precision floating point number into this instance at the specified character position.
System_CAPS_pubmethodInsert(Int32, String)
Inserts a string into this instance at the specified character position.
System_CAPS_pubmethodInsert(Int32, String, Int32)
Inserts one or more copies of a specified string into this instance at the specified character position.
System_CAPS_pubmethodInsert(Int32, UInt16)
Inserts the string representation of a 16-bit unsigned integer into this instance at the specified character position.
System_CAPS_pubmethodInsert(Int32, UInt32)
Inserts the string representation of a 32-bit unsigned integer into this instance at the specified character position.
System_CAPS_pubmethodInsert(Int32, UInt64)
Inserts the string representation of a 64-bit unsigned integer into this instance at the specified character position.
System_CAPS_pubmethodRemove(Int32, Int32)
Removes the specified range of characters from this instance.
System_CAPS_pubmethodReplace(Char, Char)
Replaces all occurrences of a specified character in this instance with another specified character.
System_CAPS_pubmethodReplace(Char, Char, Int32, Int32)
Replaces, within a substring of this instance, all occurrences of a specified character with another specified character.
System_CAPS_pubmethodReplace(String, String)
Replaces all occurrences of a specified string in this instance with another specified string.
System_CAPS_pubmethodReplace(String, String, Int32, Int32)
Replaces, within a substring of this instance, all occurrences of a specified string with another specified string.
System_CAPS_pubmethodToString()
Converts the value of this instance to a String.(Overrides Object.ToString().)
System_CAPS_pubmethodToString(Int32, Int32)
Converts the value of a substring of this instance to a String.
NameDescription
System_CAPS_pubinterfaceSystem_CAPS_privmethodISerializable.GetObjectData(SerializationInfo, StreamingContext)
This API supports the product infrastructure and is not intended to be used directly from your code. Populates a System.Runtime.Serialization.SerializationInfo object with the data necessary to deserialize the current StringBuilder object.
System_CAPS_noteNote
To view the .NET Framework source code for this type, see the Reference Source. You can browse through the source code online, download the reference for offline viewing, and step through the sources (including patches and updates) during debugging; see instructions.
This class represents a string-like object whose value is a mutable sequence of characters.
In this section:
Although StringBuilder and String both represent sequences of characters, they are implemented differently. String is an immutable type. That is, each operation that appears to modify a String object actually creates a new string.
For example, the call to the String.Concat method in the following C# example appears to change the value of a string variable named value. In fact, the Concat method returns a value object that has a different value and address from the value object that was passed to the method. Note that the example must be compiled using the /unsafe compiler option.
using System;
public class Example
{
public unsafe static void Main()
{
string value = "This is the first sentence" + ".";
fixed (char* start = value)
{
value = String.Concat(value, "This is the second sentence. ");
fixed (char* current = value)
{
Console.WriteLine(start == current);
}
}
}
}
// The example displays the following output:
// False
For routines that perform extensive string manipulation (such as apps that modify a string numerous times in a loop), modifying a string repeatedly can exact a significant performance penalty. The alternative is to use StringBuilder, which is a mutable string class. Mutability means that once an instance of the class has been created, it can be modified by appending, removing, replacing, or inserting characters. A StringBuilder object maintains a buffer to accommodate expansions to the string. New data is appended to the buffer if room is available; otherwise, a new, larger buffer is allocated, data from the original buffer is copied to the new buffer, and the new data is then appended to the new buffer.
System_CAPS_importantImportant
Although the StringBuilder class generally offers better performance than the String class, you should not automatically replace String with StringBuilder whenever you want to manipulate strings. Performance depends on the size of the string, the amount of memory to be allocated for the new string, the system on which your app is executing, and the type of operation. You should be prepared to test your app to determine whether StringBuilder actually offers a significant performance improvement.
Consider using the String class under these conditions:
• When the number of changes that your app will make to a string is small. In these cases, StringBuilder might offer negligible or no performance improvement over String.
• When you are performing a fixed number of concatenation operations, particularly with string literals. In this case, the compiler might combine the concatenation operations into a single operation.
• When you have to perform extensive search operations while you are building your string. The StringBuilder class lacks search methods such as IndexOf or StartsWith. You'll have to convert the StringBuilder object to a String for these operations, and this can negate the performance benefit from using StringBuilder. For more information, see the Searching the text in a StringBuilder object section.
Consider using the StringBuilder class under these conditions:
• When you expect your app to make an unknown number of changes to a string at design time (for example, when you are using a loop to concatenate a random number of strings that contain user input).
• When you expect your app to make a significant number of changes to a string.
The StringBuilder.Length property indicates the number of characters the StringBuilder object currently contains. If you add characters to the StringBuilder object, its length increases until it equals the size of the StringBuilder.Capacity property, which defines the number of characters that the object can contain. If the number of added characters causes the length of the StringBuilder object to exceed its current capacity, new memory is allocated, the value of the Capacity property is doubled, new characters are added to the StringBuilder object, and its Length property is adjusted. Additional memory for the StringBuilder object is allocated dynamically until it reaches the value defined by the StringBuilder.MaxCapacity property. When the maximum capacity is reached, no further memory can be allocated for the StringBuilder object, and trying to add characters or expand it beyond its maximum capacity throws either an ArgumentOutOfRangeException or an OutOfMemoryException exception.
The following example illustrates how a StringBuilder object allocates new memory and increases its capacity dynamically as the string assigned to the object expands. The code creates a StringBuilder object by calling its default (parameterless) constructor. The default capacity of this object is 16 characters, and its maximum capacity is more than 2 billion characters. Appending the string "This is a sentence." results in a new memory allocation because the string length (19 characters) exceeds the default capacity of the StringBuilder object. The capacity of the object doubles to 32 characters, the new string is added, and the length of the object now equals 19 characters. The code then appends the string "This is an additional sentence." to the value of the StringBuilder object 11 times. Whenever the append operation causes the length of the StringBuilder object to exceed its capacity, its existing capacity is doubled and the Append operation succeeds.
using System;
using System.Reflection;
using System.Text;
public class Example
{
public static void Main()
{
StringBuilder sb = new StringBuilder();
ShowSBInfo(sb);
sb.Append("This is a sentence.");
ShowSBInfo(sb);
for (int ctr = 0; ctr <= 10; ctr++) {
sb.Append("This is an additional sentence.");
ShowSBInfo(sb);
}
}
private static void ShowSBInfo(StringBuilder sb)
{
foreach (var prop in sb.GetType().GetProperties()) {
if (prop.GetIndexParameters().Length == 0)
Console.Write("{0}: {1:N0} ", prop.Name, prop.GetValue(sb));
}
Console.WriteLine();
}
}
// The example displays the following output:
// Capacity: 16 MaxCapacity: 2,147,483,647 Length: 0
// Capacity: 32 MaxCapacity: 2,147,483,647 Length: 19
// Capacity: 64 MaxCapacity: 2,147,483,647 Length: 50
// Capacity: 128 MaxCapacity: 2,147,483,647 Length: 81
// Capacity: 128 MaxCapacity: 2,147,483,647 Length: 112
// Capacity: 256 MaxCapacity: 2,147,483,647 Length: 143
// Capacity: 256 MaxCapacity: 2,147,483,647 Length: 174
// Capacity: 256 MaxCapacity: 2,147,483,647 Length: 205
// Capacity: 256 MaxCapacity: 2,147,483,647 Length: 236
// Capacity: 512 MaxCapacity: 2,147,483,647 Length: 267
// Capacity: 512 MaxCapacity: 2,147,483,647 Length: 298
// Capacity: 512 MaxCapacity: 2,147,483,647 Length: 329
// Capacity: 512 MaxCapacity: 2,147,483,647 Length: 360
The default capacity of a StringBuilder object is 16 characters, and its default maximum capacity is Int32.MaxValue. These default values are used if you call the StringBuilder() and StringBuilder(String) constructors.
You can explicitly define the initial capacity of a StringBuilder object in the following ways:
• By calling any of the StringBuilder constructors that includes a capacity parameter when you create the object.
• By explicitly assigning a new value to the StringBuilder.Capacity property to expand an existing StringBuilder object. Note that the property throws an exception if the new capacity is less than the existing capacity or greater than the StringBuilder object's maximum capacity.
• By calling the StringBuilder.EnsureCapacity method with the new capacity. The new capacity must not be greater than the StringBuilder object's maximum capacity. However, unlike an assignment to the Capacity property, EnsureCapacity does not throw an exception if the desired new capacity is less than the existing capacity; in this case, the method call has no effect.
If the length of the string assigned to the StringBuilder object in the constructor call exceeds either the default capacity or the specified capacity, the Capacity property is set to the length of the string specified with the value parameter.
You can explicitly define the maximum capacity of a StringBuilder object by calling the StringBuilder(Int32, Int32) constructor. You can't change the maximum capacity by assigning a new value to the MaxCapacity property, because it is read-only.
As the previous section shows, whenever the existing capacity is inadequate, additional memory is allocated and the capacity of a StringBuilder object doubles up to the value defined by the MaxCapacity property.
In general, the default capacity and maximum capacity are adequate for most apps. You might consider setting these values under the following conditions:
• If the eventual size of the StringBuilder object is likely to grow exceedingly large, typically in excess of several megabytes. In this case, there may be some performance benefit from setting the initial Capacity property to a significantly high value to eliminate the need for too many memory reallocations.
• If your app is running on a system with limited memory. In this case, you may want to consider setting the MaxCapacity property to less than Int32.MaxValue if your app is handling large strings that may cause it to execute in a memory-constrained environment.
You instantiate a StringBuilder object by calling one of its six overloaded class constructors, which are listed in the following table. Three of the constructors instantiate a StringBuilder object whose value is an empty string, but set its Capacity and MaxCapacity values differently. The remaining three constructors define a StringBuilder object that has a specific string value and capacity. Two of the three constructors use the default maximum capacity of Int32.MaxValue, whereas the third allows you to set the maximum capacity.
Constructor
String value
Capacity
Maximum capacity
StringBuilder()
String.Empty
16
Int32.MaxValue
StringBuilder(Int32)
String.Empty
Defined by the capacity parameter
Int32.MaxValue
StringBuilder(Int32, Int32)
String.Empty
Defined by the capacity parameter
Defined by the maxCapacity parameter
StringBuilder(String)
Defined by the value parameter
16 or value. Length, whichever is greater
Int32.MaxValue
StringBuilder(String, Int32)
Defined by the value parameter
Defined by the capacity parameter or value. Length, whichever is greater.
Int32.MaxValue
StringBuilder(String, Int32, Int32, Int32)
Defined by value. Substring(startIndex, length)
Defined by the capacity parameter or value. Length, whichever is greater.
Defined by the maxCapacity parameter
The following example uses three of these constructor overloads to instantiate StringBuilder objects.
using System;
using System.Text;
public class Example
{
public static void Main()
{
string value = "An ordinary string";
int index = value.IndexOf("An ") + 3;
int capacity = 0xFFFF;
// Instantiate a StringBuilder from a string.
StringBuilder sb1 = new StringBuilder(value);
ShowSBInfo(sb1);
// Instantiate a StringBuilder from string and define a capacity.
StringBuilder sb2 = new StringBuilder(value, capacity);
ShowSBInfo(sb2);
// Instantiate a StringBuilder from substring and define a capacity.
StringBuilder sb3 = new StringBuilder(value, index,
value.Length - index,
capacity );
ShowSBInfo(sb3);
}
public static void ShowSBInfo(StringBuilder sb)
{
Console.WriteLine("\nValue: {0}", sb.ToString());
foreach (var prop in sb.GetType().GetProperties()) {
if (prop.GetIndexParameters().Length == 0)
Console.Write("{0}: {1:N0} ", prop.Name, prop.GetValue(sb));
}
Console.WriteLine();
}
}
// The example displays the following output:
// Value: An ordinary string
// Capacity: 18 MaxCapacity: 2,147,483,647 Length: 18
//
// Value: An ordinary string
// Capacity: 65,535 MaxCapacity: 2,147,483,647 Length: 18
//
// Value: ordinary string
// Capacity: 65,535 MaxCapacity: 2,147,483,647 Length: 15
Most of the methods that modify the string in a StringBuilder instance return a reference to that same instance. This enables you to call StringBuilder methods in two ways:
• You can make individual method calls and ignore the return value, as the following example does.
using System;
using System.Text;
public class Example
{
public static void Main()
{
StringBuilder sb = new StringBuilder();
sb.Append("This is the beginning of a sentence, ");
sb.Replace("the beginning of ", "");
sb.Insert(sb.ToString().IndexOf("a ") + 2, "complete ");
sb.Replace(",", ".");
Console.WriteLine(sb.ToString());
}
}
// The example displays the following output:
// This is a complete sentence.
• You can make a series of method calls in a single statement. This can be convenient if you want to write a single statement that chains successive operations. The following example consolidates three method calls from the previous example into a single line of code.
using System;
using System.Text;
public class Example
{
public static void Main()
{
StringBuilder sb = new StringBuilder("This is the beginning of a sentence, ");
sb.Replace("the beginning of ", "").Insert(sb.ToString().IndexOf("a ") + 2,
"complete ").Replace(",", ".");
Console.WriteLine(sb.ToString());
}
}
// The example displays the following output:
// This is a complete sentence.
You can use the methods of the StringBuilder class to iterate, add, delete, or modify characters in a StringBuilder object.
You can access the characters in a StringBuilder object by using the StringBuilder.Chars property. In C#, Chars is an indexer; in Visual Basic, it is the default property of the StringBuilder class. This enables you to set or retrieve individual characters by using their index only, without explicitly referencing the Chars property. Characters in a StringBuilder object begin at index 0 (zero) and continue to index Length - 1.
The following example illustrates the Chars property. It appends ten random numbers to a StringBuilder object, and then iterates each character. If the character's Unicode category is UnicodeCategory.DecimalDigitNumber, it decreases the number by 1 (or changes the number to 9 if its value is 0). The example displays the contents of the StringBuilder object both before and after the values of individual characters were changed.
using System;
using System.Globalization;
using System.Text;
public class Example
{
public static void Main()
{
Random rnd = new Random();
StringBuilder sb = new StringBuilder();
// Generate 10 random numbers and store them in a StringBuilder.
for (int ctr = 0; ctr <= 9; ctr++)
sb.Append(rnd.Next().ToString("N5"));
Console.WriteLine("The original string:");
Console.WriteLine(sb.ToString());
// Decrease each number by one.
for (int ctr = 0; ctr < sb.Length; ctr++) {
if (Char.GetUnicodeCategory(sb[ctr]) == UnicodeCategory.DecimalDigitNumber) {
int number = (int) Char.GetNumericValue(sb[ctr]);
number--;
if (number < 0) number = 9;
sb[ctr] = number.ToString()[0];
}
}
Console.WriteLine("\nThe new string:");
Console.WriteLine(sb.ToString());
}
}
// The example displays the following output:
// The original string:
// 1,457,531,530.00000940,522,609.000001,668,113,564.000001,998,992,883.000001,792,660,834.00
// 000101,203,251.000002,051,183,075.000002,066,000,067.000001,643,701,043.000001,702,382,508
// .00000
//
// The new string:
// 0,346,420,429.99999839,411,598.999990,557,002,453.999990,887,881,772.999990,681,559,723.99
// 999090,192,140.999991,940,072,964.999991,955,999,956.999990,532,690,932.999990,691,271,497
// .99999
The StringBuilder class includes the following methods for expanding the contents of a StringBuilder object:
• The Append method appends a string, a substring, a character array, a portion of a character array, a single character repeated multiple times, or the string representation of a primitive data type to a StringBuilder object.
• The AppendLine method appends a line terminator or a string along with a line terminator to a StringBuilder object.
• The AppendFormat method appends a to a StringBuilder object. The string representations of objects included in the result string can reflect the formatting conventions of the current system culture or a specified culture.
• The Insert method inserts a string, a substring, multiple repetitions of a string, a character array, a portion of a character array, or the string representation of a primitive data type at a specified position in the StringBuilder object. The position is defined by a zero-based index.
The following example uses the Append, AppendLine, AppendFormat, and Insert methods to expand the text of a StringBuilder object.
using System;
using System.Text;
public class Example
{
public static void Main()
{
// Create a StringBuilder object with no text.
StringBuilder sb = new StringBuilder();
// Append some text.
sb.Append('*', 10).Append(" Adding Text to a StringBuilder Object ").Append('*', 10);
sb.AppendLine("\n");
sb.AppendLine("Some code points and their corresponding characters:");
// Append some formatted text.
for (int ctr = 50; ctr <= 60; ctr++) {
sb.AppendFormat("{0,12:X4} {1,12}", ctr, Convert.ToChar(ctr));
sb.AppendLine();
}
// Find the end of the introduction to the column.
int pos = sb.ToString().IndexOf("characters:") + 11 +
Environment.NewLine.Length;
// Insert a column header.
sb.Insert(pos, String.Format("{2}{0,12:X4} {1,12}{2}", "Code Unit",
"Character", "\n"));
// Convert the StringBuilder to a string and display it.
Console.WriteLine(sb.ToString());
}
}
// The example displays the following output:
// ********** Adding Text to a StringBuilder Object **********
//
// Some code points and their corresponding characters:
//
// Code Unit Character
// 0032 2
// 0033 3
// 0034 4
// 0035 5
// 0036 6
// 0037 7
// 0038 8
// 0039 9
// 003A :
// 003B ;
// 003C <
The StringBuilder class includes methods that can reduce the size of the current StringBuilder instance. The Clear method removes all characters and sets the Length property to zero. The Remove method deletes a specified number of characters starting at a particular index position. In addition, you can remove characters from the end of a StringBuilder object by setting its Length property to a value that is less than the length of the current instance.
The following example removes some of the text from a StringBuilder object, displays its resulting capacity, maximum capacity, and length property values, and then calls the Clear method to remove all the characters from the StringBuilder object.
using System;
using System.Text;
public class Example
{
public static void Main()
{
StringBuilder sb = new StringBuilder("A StringBuilder object");
ShowSBInfo(sb);
// Remove "object" from the text.
string textToRemove = "object";
int pos = sb.ToString().IndexOf(textToRemove);
if (pos >= 0) {
sb.Remove(pos, textToRemove.Length);
ShowSBInfo(sb);
}
// Clear the StringBuilder contents.
sb.Clear();
ShowSBInfo(sb);
}
public static void ShowSBInfo(StringBuilder sb)
{
Console.WriteLine("\nValue: {0}", sb.ToString());
foreach (var prop in sb.GetType().GetProperties()) {
if (prop.GetIndexParameters().Length == 0)
Console.Write("{0}: {1:N0} ", prop.Name, prop.GetValue(sb));
}
Console.WriteLine();
}
}
// The example displays the following output:
// Value: A StringBuilder object
// Capacity: 22 MaxCapacity: 2,147,483,647 Length: 22
//
// Value: A StringBuilder
// Capacity: 22 MaxCapacity: 2,147,483,647 Length: 16
//
// Value:
// Capacity: 22 MaxCapacity: 2,147,483,647 Length: 0
The StringBuilder.Replace method replaces all occurrences of a character or a string in the entire StringBuilder object or in a particular character range. The following example uses the Replace method to replace all exclamation points (!) with question marks (?) in the StringBuilder object.
using System;
using System.Text;
public class Example
{
public static void Main()
{
StringBuilder MyStringBuilder = new StringBuilder("Hello World!");
MyStringBuilder.Replace('!', '?');
Console.WriteLine(MyStringBuilder);
}
}
// The example displays the following output:
// Hello World?
The StringBuilder class does not include methods similar to the String.Contains, String.IndexOf, and String.StartsWith methods provided by the String class, which allow you to search the object for a particular character or a substring. Determining the presence or starting character position of a substring requires that you search a String value by using either a string search method or a regular expression method. There are four ways to implement such searches, as the following table shows.
Technique
Pros
Cons
Search string values before adding them to the StringBuilder object.
Useful for determining whether a substring exists.
Cannot be used when the index position of a substring is important.
Call ToString and search the returned String object.
Easy to use if you assign all the text to a StringBuilder object, and then begin to modify it.
Cumbersome to repeatedly call ToString if you must make modifications before all text is added to the StringBuilder object.
You must remember to work from the end of the StringBuilder object's text if you're making changes.
Use the Chars property to sequentially search a range of characters.
Useful if you're concerned with individual characters or a small substring.
Cumbersome if the number of characters to search is large or if the search logic is complex.
Convert the StringBuilder object to a String object, and perform modifications on the String object.
Useful if the number of modifications is small.
Negates the performance benefit of the StringBuilder class if the number of modifications is large.
Let's examine these techniques in greater detail.
• If the goal of the search is to determine whether a particular substring exists (that is, if you aren't interested in the position of the substring), you can search strings before storing them in the StringBuilder object. The following example provides one possible implementation. It defines a StringBuilderFinder class whose constructor is passed a reference to a StringBuilder object and the substring to find in the string. In this case, the example tries to determine whether recorded temperatures are in Fahrenheit or Celsius, and adds the appropriate introductory text to the beginning of the StringBuilder object. A random number generator is used to select an array that contains data in either degrees Celsius or degrees Fahrenheit.
using System;
using System.Text;
public class Example
{
public static void Main()
{
Random rnd = new Random();
string[] tempF = { "47.6F", "51.3F", "49.5F", "62.3F" };
string[] tempC = { "21.2C", "16.1C", "23.5C", "22.9C" };
string[][] temps = { tempF, tempC };
StringBuilder sb = new StringBuilder();
var f = new StringBuilderFinder(sb, "F");
var baseDate = new DateTime(2013, 5, 1);
String[] temperatures = temps[rnd.Next(2)];
bool isFahrenheit = false;
foreach (var temperature in temperatures) {
if (isFahrenheit)
sb.AppendFormat("{0:d}: {1}\n", baseDate, temperature);
else
isFahrenheit = f.SearchAndAppend(String.Format("{0:d}: {1}\n",
baseDate, temperature));
baseDate = baseDate.AddDays(1);
}
if (isFahrenheit) {
sb.Insert(0, "Average Daily Temperature in Degrees Fahrenheit");
sb.Insert(47, "\n\n");
}
else {
sb.Insert(0, "Average Daily Temperature in Degrees Celsius");
sb.Insert(44, "\n\n");
}
Console.WriteLine(sb.ToString());
}
}
public class StringBuilderFinder
{
private StringBuilder sb;
private String text;
public StringBuilderFinder(StringBuilder sb, String textToFind)
{
this.sb = sb;
this.text = textToFind;
}
public bool SearchAndAppend(String stringToSearch)
{
sb.Append(stringToSearch);
return stringToSearch.Contains(text);
}
}
// The example displays output similar to the following:
// Average Daily Temperature in Degrees Celsius
//
// 5/1/2013: 21.2C
// 5/2/2013: 16.1C
// 5/3/2013: 23.5C
// 5/4/2013: 22.9C
• Call the StringBuilder.ToString method to convert the StringBuilder object to a String object. You can search the string by using methods such as String.LastIndexOf or String.StartsWith, or you can use regular expressions and the Regex class to search for patterns. Because both StringBuilder and String objects use UTF-16 encoding to store characters, the index positions of characters, substrings, and regular expression matches are the same in both objects. This enables you to use StringBuilder methods to make changes at the same position at which that text is found in the String object.
System_CAPS_noteNote
If you adopt this approach, you should work from the end of the StringBuilder object to its beginning so that you don't have to repeatedly convert the StringBuilder object to a string.
The following example illustrates this approach. It stores four occurrences of each letter of the English alphabet in a StringBuilder object. It then converts the text to a String object and uses a regular expression to identify the starting position of each four-character sequence. Finally, it adds an underscore before each four-character sequence except for the first sequence, and converts the first character of the sequence to uppercase.
using System;
using System.Text;
using System.Text.RegularExpressions;
public class Example
{
public static void Main()
{
// Create a StringBuilder object with 4 successive occurrences
// of each character in the English alphabet.
StringBuilder sb = new StringBuilder();
for (ushort ctr = (ushort)'a'; ctr <= (ushort) 'z'; ctr++)
sb.Append(Convert.ToChar(ctr), 4);
// Create a parallel string object.
String sbString = sb.ToString();
// Determine where each new character sequence begins.
String pattern = @"(\w)\1+";
MatchCollection matches = Regex.Matches(sbString, pattern);
// Uppercase the first occurrence of the sequence, and separate it
// from the previous sequence by an underscore character.
for (int ctr = matches.Count - 1; ctr >= 0; ctr--) {
Match m = matches[ctr];
sb[m.Index] = Char.ToUpper(sb[m.Index]);
if (m.Index > 0) sb.Insert(m.Index, "_");
}
// Display the resulting string.
sbString = sb.ToString();
int line = 0;
do {
int nChars = line * 80 + 79 <= sbString.Length ?
80 : sbString.Length - line * 80;
Console.WriteLine(sbString.Substring(line * 80, nChars));
line++;
} while (line * 80 < sbString.Length);
}
}
// The example displays the following output:
// Aaaa_Bbbb_Cccc_Dddd_Eeee_Ffff_Gggg_Hhhh_Iiii_Jjjj_Kkkk_Llll_Mmmm_Nnnn_Oooo_Pppp_
// Qqqq_Rrrr_Ssss_Tttt_Uuuu_Vvvv_Wwww_Xxxx_Yyyy_Zzzz
• Use the StringBuilder.Chars property to sequentially search a range of characters in a StringBuilder object. This approach may not be practical if the number of characters to be searched is large or the search logic is particularly complex.
The following example is identical in functionality to the previous example but differs in implementation. It uses the Chars property to detect when a character value has changed, inserts an underscore at that position, and converts the first character in the new sequence to uppercase.
using System;
using System.Text;
public class Example
{
public static void Main()
{
// Create a StringBuilder object with 4 successive occurrences
// of each character in the English alphabet.
StringBuilder sb = new StringBuilder();
for (ushort ctr = (ushort) 'a'; ctr <= (ushort) 'z'; ctr++)
sb.Append(Convert.ToChar(ctr), 4);
// Iterate the text to determine when a new character sequence occurs.
int position = 0;
Char current = '\u0000';
do {
if (sb[position] != current) {
current = sb[position];
sb[position] = Char.ToUpper(sb[position]);
if (position > 0)
sb.Insert(position, "_");
position += 2;
}
else {
position++;
}
} while (position <= sb.Length - 1);
// Display the resulting string.
String sbString = sb.ToString();
int line = 0;
do {
int nChars = line * 80 + 79 <= sbString.Length ?
80 : sbString.Length - line * 80;
Console.WriteLine(sbString.Substring(line * 80, nChars));
line++;
} while (line * 80 < sbString.Length);
}
}
// The example displays the following output:
// Aaaa_Bbbb_Cccc_Dddd_Eeee_Ffff_Gggg_Hhhh_Iiii_Jjjj_Kkkk_Llll_Mmmm_Nnnn_Oooo_Pppp_
// Qqqq_Rrrr_Ssss_Tttt_Uuuu_Vvvv_Wwww_Xxxx_Yyyy_Zzzz
• Store all the unmodified text in the StringBuilder object, call the StringBuilder.ToString method to convert the StringBuilder object to a String object, and perform the modifications on the String object. You can use this approach if you have only a few modifications; otherwise, the cost of working with immutable strings may negate the performance benefits of using a StringBuilder object.
The following example is identical in functionality to the previous two examples but differs in implementation. It creates a StringBuilder object, converts it to a String object, and then uses a regular expression to perform all remaining modifications on the string. The Regex.Replace(String, String, MatchEvaluator) method uses a lambda expression to perform the replacement on each match.
using System;
using System.Text;
using System.Text.RegularExpressions;
public class Example
{
public static void Main()
{
// Create a StringBuilder object with 4 successive occurrences
// of each character in the English alphabet.
StringBuilder sb = new StringBuilder();
for (ushort ctr = (ushort)'a'; ctr <= (ushort) 'z'; ctr++)
sb.Append(Convert.ToChar(ctr), 4);
// Convert it to a string.
String sbString = sb.ToString();
// Use a regex to uppercase the first occurrence of the sequence,
// and separate it from the previous sequence by an underscore.
string pattern = @"(\w)(\1+)";
sbString = Regex.Replace(sbString, pattern,
m => (m.Index > 0 ? "_" : "") +
m.Groups[1].Value.ToUpper() +
m.Groups[2].Value);
// Display the resulting string.
int line = 0;
do {
int nChars = line * 80 + 79 <= sbString.Length ?
80 : sbString.Length - line * 80;
Console.WriteLine(sbString.Substring(line * 80, nChars));
line++;
} while (line * 80 < sbString.Length);
}
}
// The example displays the following output:
// Aaaa_Bbbb_Cccc_Dddd_Eeee_Ffff_Gggg_Hhhh_Iiii_Jjjj_Kkkk_Llll_Mmmm_Nnnn_Oooo_Pppp_
// Qqqq_Rrrr_Ssss_Tttt_Uuuu_Vvvv_Wwww_Xxxx_Yyyy_Zzzz
You must convert the StringBuilder object to a String object before you can pass the string represented by the StringBuilder object to a method that has a String parameter or display it in the user interface. You perform this conversion by calling the StringBuilder.ToString method. For an illustration, see the previous example, which calls the ToString method to convert a StringBuilder object to a string so that it can be passed to a regular expression method.
Notes to Callers:
In the.NET Framework 4 and the .NET Framework 4.5, when you instantiate the StringBuilder object by calling the StringBuilder(Int32, Int32) constructor, both the length and the capacity of the StringBuilder instance can grow beyond the value of its MaxCapacity property. This can occur particularly when you call the Append and AppendFormat methods to append small strings.
The following example shows how to call many of the methods defined by the StringBuilder class.
using System;
using System.Text;
public sealed class App
{
static void Main()
{
// Create a StringBuilder that expects to hold 50 characters.
// Initialize the StringBuilder with "ABC".
StringBuilder sb = new StringBuilder("ABC", 50);
// Append three characters (D, E, and F) to the end of the StringBuilder.
sb.Append(new char[] { 'D', 'E', 'F' });
// Append a format string to the end of the StringBuilder.
sb.AppendFormat("GHI{0}{1}", 'J', 'k');
// Display the number of characters in the StringBuilder and its string.
Console.WriteLine("{0} chars: {1}", sb.Length, sb.ToString());
// Insert a string at the beginning of the StringBuilder.
sb.Insert(0, "Alphabet: ");
// Replace all lowercase k's with uppercase K's.
sb.Replace('k', 'K');
// Display the number of characters in the StringBuilder and its string.
Console.WriteLine("{0} chars: {1}", sb.Length, sb.ToString());
}
}
// This code produces the following output.
//
// 11 chars: ABCDEFGHIJk
// 21 chars: Alphabet: ABCDEFGHIJK
Universal Windows Platform
Available since 8
.NET Framework
Available since 1.1
Portable Class Library
Supported in: portable .NET platforms
Silverlight
Available since 2.0
Windows Phone Silverlight
Available since 7.0
Windows Phone
Available since 8.1
Any public static ( Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.
Return to top
Show:
© 2018 Microsoft
|
__label__pos
| 0.986316 |
Logo
Programming-Idioms
This language bar is your friend. Select your favorite languages!
Idiom #316 Count occurrences in a list
Determine the number c of elements in the list x that satisfy the predicate p.
import java.util.ArrayList;
import java.util.Collections;
int c = Collections.frequency(x, p);
c=count(p(x))
c := 0
for _, v := range x {
if p(v) {
c++
}
}
func count[T any](x []T, p func(T) bool) int {
c := 0
for _, v := range x {
if p(v) {
c++
}
}
return c
}
let c = x.filter(p).length
c := 0;
for el in x do if p(el) then Inc(c);
my $c = grep { p($_) } @x;
c = sum(p(v) for v in x)
c = x.count{|el| p(el) }
New implementation...
|
__label__pos
| 0.999573 |
Make your Jenkins as code and gain speed
Why having our Jenkins coded?
One key benefit from having infrastructure and os level coded is the safety it gives to the software administrators. Think with me: what happens if your Jenkins stops working suddenly? What if something happens and nobody can log into it anymore? If these questions make you chill, let’s code our Jenkins!
What we will cover
• Packer tool for creating your SO image with your Jenkins ready to use
• Ansible for installing everything you need on your SO image (Jenkins, Kubectl, Terraform, etc).
• JCasC (Jenkins Configuration as Code) to configure your Jenkins after it is installed.
• You can also find some useful content for the Terraform part here and here.
1. How to run it
Running locally with Vagrant to test your configuration
The Vagrantfile is used for local tests only, and it is a pre-step before creating the image on your cloud with Packer
Vagrant commands:
1. Have (1) Vagrant installed (sudo apt install vagrant) and (2) Oracle’s VirtualBox
2. How to run: navigate to the root of this repo and run sudo vagrant up. After everything is complete, it will create a Jenkins accessible from your host machine at localhost:5555 and localhost:6666. This will create a virtual machine and will install everything listed on the Vagrantfile
3. How to SSH into the created machine: run sudo vagrant ssh
4. How to destroy the VM: run sudo vagrant destroy
Using packer to build your AMI or Az VM Image
Packer is a tool to create an OS image (VM on Azure OR AMI on AWS)
1. Once you have your AMI or Az VM Image created, go for your cloud console and create a new machine pointing to the newly created image.
2. Let’s configure our Jenkins as Code!
I’m listing here a few key configurations among the several you will find in each of these Ansible playbooks:
1. Liquibase version: on ansible_config/roles/ansible-role-liquibase/defaults/main.yml
2. Docker edition and version
3. Terraform version
4. Kubectl packages (adding kubedm or minikube as an example) on ansible_config/roles/ansible-role-kubectl/tasks/main.yml
5. Jenkins configs (I will comment further)
6. HAProxy for handling TLS (https) (will comment further)
3. Configuring your Jenkins
Jenkins pipelines and credentials files
This Jenkins is configured automatically using the Jenkins plugin configuration as code. All the configuration is listed on file jenkins.yaml in this root. On that file, you can add your pipelines and credentials for those pipelines to consume. Full documentation and possibilities can be found here: https://www.jenkins.io/projects/jcasc/
1. With this, we create a folder
2. Item 3 creates one pipeline job as example fetching it from a private GitLab repo that uses the credentials defined in item 1
Jenkins configuration
The plugins that this Jenkins will have installed can be found at: ansible_config/roles/ansible-role-jenkins/defaults/main.yml. If you need to get your current installed plugins, you can find how-to here: https://stackoverflow.com/questions/9815273/how-to-get-a-list-of-installed-jenkins-plugins-with-name-and-version-pair
1. The plugins list you want to have installed on your Jenkins
1. Another configuration you will change when activating TLS (https)
Jenkins’ configuration-as-code plug-in:
For JCasC to work properly, the file jenkins.yml in the project root must be added to Jenkins’ home (default /var/lib/jenkins/). This example has the keys to be used on pipelines and the pipelines as well. There are a few more options on JCasC docs.
Activating TLS (https) and Google SSO
1. As shown on step “Jenkins Configuration”‘s images: Go for ansible_config/roles/ansible-role-jenkins/defaults/main.yml. Uncomment line 15 and change it to your final URL. Comment line 16
2. Go for ansible_config/roles/ansible-role-haproxy/templates/haproxy.cfg. Change line 33 to use your final organization’s URL
3. Rebuild your image with Packer (IMPORTANT! Your new image won’t work locally because you changed Jenkins configuration)
4. Go for your cloud and deploy a new instance using your just created image
1. Move the generated file to your running instance’s folder /home/ubuntu/jenkins/
2. Restart HAProxy with sudo service haproxy restart
3.2 — Google SSO:
1. Log in to Jenkins using regular admin credentials. Go to “Manage Jenkins” > “Global Security”. Under “Authentication” select “Login with Google” and fill in like below:
• Client secret = client_secret
• Google Apps Domain = mycompany.com
--
--
Get the Medium app
A button that says 'Download on the App Store', and if clicked it will lead you to the iOS App store
A button that says 'Get it on, Google Play', and if clicked it will lead you to the Google Play store
Guilherme Sesterheim
Guilherme Sesterheim
Sharing experiences on IT subjects. Working for AWS. DevOps, Kubernetes, Microservices, Terraform, Ansible, and Java
|
__label__pos
| 0.779792 |
Signal jammers are used for safety
For cell phone security reasons, communications experts through a thorough study of the device using electromagnetic technology have finally found an effective way to block the signal and prevent leaks, the signal jammers successfully developed . The benefits of using signal jammer are immense. In many countries it is widely used for security purposes. Jammers are the perfect example for the advancement of contemporary digital communication expertise and electronic expertise. It is also important as a new digital integration technology. Modulation mode and wireless control are the main reason for its increasing popularity.
Signal blockers are even used in universities, schools, government agencies and prisons. Blocking conversation at these places certainly cannot become a distraction. On the contract, defendants and students cannot cheat by contacting others or strangers. So the benefits of using portable cellular wave jammer are immense. It has become a mandatory addition in high security areas such as detention centers and prisons. It prevents illegal communication between visitors and detainees. Nowadays, it is even used in places like libraries and cinemas. As a result, having a jammer can help maintain a calm atmosphere, prevent cheating and increase security. Keep in mind that signal jammers are not designed to harm people or the general public. They give calm and peace to people.
|
__label__pos
| 0.788681 |
Table Editor
Use the table editor to design primary and auxiliary tables. It is displayed when you select a table in App Explorer, or when you double-click a table in the list that is displayed when you select the Tables heading in App Explorer. To hide columns in the table editor or show additional columns, right-click the table header row, select Columns, and then select or clear check boxes for the columns in the menu.
Use the tabs in the Property Editor to view and modify the various aspects of the selected table.
Palette
A palette of field types and system fields is displayed to the right of the table editor. Add fields to the table by dragging them from the Table Palette to the table editor. Each of the system fields (Active/Inactive, Description, and so on) can be used only once in a table. The other (custom) field types can be used as often as needed.
Tip: You can also add a field by right-clicking the table editor, selecting Add New, and selecting the field type.
Delete a field by right-clicking it in the table editor and selecting Delete or Cut. When you delete or cut a system field type, it is returned to the list to make it available for use. Cutting a field also copies it to the Windows Clipboard, so you can paste it into the same or other tables as needed.
Note: You cannot copy a system field, or delete a required system field (such as the Title field in an auxiliary table). The System column (if displayed in the table editor) indicates whether the field is a system field.
Related Topics
Modifying Table Properties
Using the Editor Pane
|
__label__pos
| 0.684344 |
Skip to content Skip to footer
25 JavaScript interview questions (and answers) from basic to senior level
Are you looking to excel in your next JavaScript interview and land your dream developer role? Whether you’re just starting out or have a few years of experience under your belt, mastering JavaScript can open up exciting career opportunities in software engineering. With the right interview preparation strategies, you can showcase your expertise and impress potential employers.
This guide is designed to help you prepare for technical interviews conducted in JavaScript by providing real-life examples of the types of coding challenges and technical questions you can expect to be asked. Practicing with these and other role-specific technical questions, you’ll be well equipped to go into your next interview confident and prepared.
Another excellent resource to consider is CodeSignal Learn, a platform dedicated to learning and practicing technical skills, including JavaScript. Learn offers learning paths for mastering the basics of JavaScript, preparing for technical interviews in JavaScript, and hundreds of other technical topics.
Get ready to debug your way to interviewing success—no ‘stack overflow’ can stop you now!
Jump to a section:
What you will need to start practicing and where to practice
Preparing for a JavaScript interview requires a combination of understanding key concepts and hands-on practice. To start, you should set up your coding environment, such as a local development setup with Node.js or a browser-based environment. Utilize online code editors like CodePen, JSFiddle, or Repl.it for quick experiments and practice. Make use of developer tools in browsers like Chrome DevTools to debug and optimize your code.
You’ll also want to leverage a variety of JavaScript resources, such as documentation, tutorials, and coding blogs, to refresh your knowledge. Engage with practice platforms like CodeSignal Learn to solve coding challenges and algorithms. Consistent practice in these environments will enhance your problem-solving skills and prepare you for the technical aspects of your JavaScript interview.
Basic JavaScript interview questions for early career devs (0 to 2 years of experience)
In your technical interview, junior-level JS developers should be prepared to demonstrate a basic understanding of JavaScript fundamentals. This includes proficiency in JavaScript syntax, such as variable declarations, function definitions, and control structures. You should also be comfortable with debugging basics, such as using the browser console for error tracking and code testing. You’ll want to have a good grasp of JavaScript data types, such as strings, numbers, and objects,and be able to solve simple algorithms efficiently. Below are a few examples of the types of questions you can expect to be asked.
Learning tip: Practice core JavaScript skills in a realistic cloud IDE before your next interview for assessment—Mastering Algorithms and Data Structures in JavaScript in CodeSignal Learn helps you do just that.
Variables and types
Question: Write a JavaScript function checkDataTypes that takes three parameters and returns an array containing the data type of each parameter.
Sample solution:
function checkDataTypes(param1, param2, param3) {
return [typeof param1, typeof param2, typeof param3];
}
console.log(checkDataTypes(42, "hello", true)); // ["number", "string", "boolean"]
console.log(checkDataTypes(null, undefined, {})); // ["object", "undefined", "object"]
console.log(checkDataTypes([], function() {}, 3.14)); // ["object", "function", "number"]
Explanation of solution: The checkDataTypes function takes three parameters and uses the typeof operator to determine the data type of each parameter. It then returns an array containing the results. The typeof operator is a basic JavaScript feature that returns a string indicating the type of the operand.
Question: Write a JavaScript function scopeTest that demonstrates the difference between var, let, and const within different scopes (global, function, and block scope). The function should return an object with the values of the variables declared in different scopes.
Sample solution:
function scopeTest() {
var globalVar = "global var";
let globalLet = "global let";
const globalConst = "global const";
function localScope() {
var localVar = "local var";
let localLet = "local let";
const localConst = "local const";
if (true) {
var blockVar = "block var";
let blockLet = "block let";
const blockConst = "block const";
}
return {
localVar: localVar,
localLet: localLet,
localConst: localConst,
blockVar: blockVar,
blockLet: typeof blockLet !== "undefined" ? blockLet : "blockLet is not defined",
blockConst: typeof blockConst !== "undefined" ? blockConst : "blockConst is not defined"
};
}
return {
globalVar: globalVar,
globalLet: globalLet,
globalConst: globalConst,
localScope: localScope()
};
}
console.log(scopeTest());
Explanation of solution: In this solution, the function scopeTest demonstrates variable declarations using var, let, and const at the global scope. Inside the nested function localScope, it declares variables using the same keywords within both function and block scopes. The var declaration is function-scoped and accessible throughout the localScope function, including within the block. The let and const declarations are block-scoped, so they are only accessible within the block where they are defined. The solution returns an object containing the values of the variables to illustrate the differences in scope.
Operators
Question: Write a JavaScript function compareSums that takes four numbers as input, adds the first two numbers together, and then compares the sum to the sum of the second two numbers. The function should return true if the first sum is greater than the second sum, and false otherwise.
Sample solution:
function compareSums(a, b, c, d) {
let sum1 = a + b;
let sum2 = c + d;
return sum1 > sum2;
}
console.log(compareSums(5, 3, 2, 4)); // true
console.log(compareSums(1, 2, 3, 4)); // false
console.log(compareSums(10, 15, 20, 5)); // false
Explanation of solution: The compareSums function takes four parameters and calculates the sum of the first two (a and b) and the sum of the second two (c and d). It then uses the > comparison operator to check if the first sum is greater than the second sum and returns the result.
Question: Write a JavaScript function logicalCheck that takes three boolean values as input. The function should return true if at least two of the three values are true, and false otherwise.
Sample solution:
function logicalCheck(a, b, c) {
let count = 0;
if (a) count += 1;
if (b) count += 1;
if (c) count += 1;
return count >= 2;
}
console.log(logicalCheck(true, true, false)); // true
console.log(logicalCheck(false, true, false)); // false
console.log(logicalCheck(true, true, true)); // true
Explanation of solution: The logicalCheck function takes three boolean parameters and uses logical operators to determine how many of the values are true. It initializes a count variable and increments it for each true value. The function then checks if the count is greater than or equal to 2 and returns the result.
Control structures
Question: Write a JavaScript function findFirstEven that takes an array of numbers as input and returns the first even number found in the array. If there are no even numbers, return null.
Sample solution:
function findFirstEven(numbers) {
for (let i = 0; i < numbers.length; i++) {
if (numbers[i] % 2 === 0) {
return numbers[i];
}
}
return null;
}
console.log(findFirstEven([1, 3, 7, 8, 5])); // 8
console.log(findFirstEven([1, 3, 7, 5])); // null
console.log(findFirstEven([2, 4, 6])); // 2
Explanation of solution: The findFirstEven function iterates through the input array using a for loop. Within the loop, it uses an if statement to check if the current number is even (i.e., divisible by 2 with no remainder). If an even number is found, it is returned immediately. If the loop completes without finding an even number, the function returns null.
Question: Write a JavaScript function getDayName that takes a number between 1 and 7 as input and returns the corresponding day of the week (1 for Monday, 7 for Sunday). If the input is not a valid number, the function should throw an error.
Sample solution:
function getDayName(dayNumber) {
try {
switch (dayNumber) {
case 1:
return "Monday";
case 2:
return "Tuesday";
case 3:
return "Wednesday";
case 4:
return "Thursday";
case 5:
return "Friday";
case 6:
return "Saturday";
case 7:
return "Sunday";
default:
throw new Error("Invalid day number");
}
} catch (error) {
return error.message;
}
}
console.log(getDayName(1)); // "Monday"
console.log(getDayName(7)); // "Sunday"
console.log(getDayName(0)); // "Invalid day number"
Explanation of solution: The getDayName function uses a switch statement to match the input number (dayNumber) to the corresponding day of the week. If the input is not a number between 1 and 7, the default case is executed, which throws an error with the message “Invalid day number”. The try-catch block is used to handle this error, catching it and returning the error message.
Intermediate JavaScript interview questions (2 to 5 years of experience)
As a mid-level JavaScript developer with 2-5 years of experience, you should expect technical interview questions that dive deeper into your understanding of more advanced JS concepts. Be prepared to tackle questions on asynchronous programming—like handling promises, async/await syntax, and managing callbacks. You’ll want to be able to show you have a strong grasp of ES6 features, like arrow functions, destructuring, and modules, too. You should be able to discuss and implement effective error handling strategies, both synchronously and asynchronously. Familiarity with Web APIs, including the Fetch API and DOM manipulation, will likely be tested. Lastly, you’ll likely be expected to have a solid understanding of framework basics, whether it’s React, Angular, or Vue.js, which are integral to modern JavaScript development.
Learning tip: Want to hone your React skills before your next interview? Front-End Engineering with React is a learning path in CodeSignal Learn that will take you through the core React skills that front-end JS devs need.
Functions and execution contexts
Question: Write a JavaScript function createCounter that returns an object with two methods: increment and getValue. The increment method should increase a private counter variable by 1, and the getValue method should return the current value of the counter. Demonstrate the usage of this function with both function declarations and function expressions.
Sample solution:
// Using function declaration
function createCounter() {
let counter = 0;
return {
increment: function() {
counter += 1;
},
getValue: function() {
return counter;
}
};
}
const counter1 = createCounter();
counter1.increment();
counter1.increment();
console.log(counter1.getValue()); // 2
// Using function expression
const createCounterExpr = function() {
let counter = 0;
return {
increment: function() {
counter += 1;
},
getValue: function() {
return counter;
}
};
};
const counter2 = createCounterExpr();
counter2.increment();
console.log(counter2.getValue()); // 1
Explanation of solution: The createCounter function demonstrates closures by encapsulating a private counter variable within the returned object. The increment method increases the counter, and the getValue method returns the current counter value. The function is implemented twice: once using a function declaration and once using a function expression.
Question: Write a JavaScript function createPerson that takes a name as an argument and returns an object with a method greet. The greet method should return a greeting message including the person’s name. Use an arrow function for the greet method to illustrate the this binding behavior of arrow functions.
Sample solution:
function createPerson(name) {
return {
name: name,
greet: () => `Hello, my name is ${name}`
};
}
const person1 = createPerson("Alice");
console.log(person1.greet()); // "Hello, my name is Alice"
const person2 = createPerson("Bob");
console.log(person2.greet()); // "Hello, my name is Bob"
Explanation of solution: The createPerson function returns an object with a greet method. This method is defined using an arrow function, which captures the this value from the surrounding context (the createPerson function). This ensures that the name property is correctly referenced within the greet method.
DOM manipulation and events
Question: Write a JavaScript function highlightElements that selects all <p> elements within a given container and adds a click event listener to each. When a paragraph is clicked, its background color should change to yellow. Demonstrate how this function works when passed an element ID as the container.
Sample solution:
function highlightElements(containerId) {
const container = document.getElementById(containerId);
const paragraphs = container.getElementsByTagName('p');
for (let i = 0; i < paragraphs.length; i++) {
paragraphs[i].addEventListener('click', function() {
this.style.backgroundColor = 'yellow';
});
}
}
// HTML structure for demonstration
/*
<div id="content">
<p>Paragraph 1</p>
<p>Paragraph 2</p>
<p>Paragraph 3</p>
</div>
*/
highlightElements('content');
Explanation of solution: The highlightElements function first selects the container element by its ID using getElementById. It then selects all <p> elements within the container using getElementsByTagName. A for loop is used to iterate over the paragraphs, adding a click event listener to each. The event listener changes the background color of the clicked paragraph to yellow.
Question: Write a JavaScript function addListItem that dynamically creates a new list item (<li>) with specified text and appends it to an unordered list (<ul>) with a given ID. Implement event delegation so that clicking any list item displays an alert with its text content.
Sample solution:
function addListItem(ulId, text) {
const ul = document.getElementById(ulId);
const li = document.createElement('li');
li.textContent = text;
ul.appendChild(li);
}
function setupEventDelegation(ulId) {
const ul = document.getElementById(ulId);
ul.addEventListener('click', function(event) {
if (event.target && event.target.nodeName === 'LI') {
alert(event.target.textContent);
}
});
}
// HTML structure for demonstration
/*
<ul id="myList">
<li>content</li>
</ul>
*/
addListItem('myList', 'Item 1');
addListItem('myList', 'Item 2');
setupEventDelegation('myList');
Explanation of solution: The addListItem function creates a new <li> element with the specified text and appends it to the <ul> element with the given ID. The setupEventDelegation function sets up event delegation by adding a click event listener to the <ul> element. The event listener checks if the clicked target is an <li> element and, if so, displays an alert with the text content of the clicked list item.
Advanced JavaScript interview questions (5 years experience or more)
Question: Write a JavaScript function debounce that takes a function func and a delay wait as arguments, and returns a debounced version of func. The debounced function should delay the execution of func until after wait milliseconds have elapsed since the last time the debounced function was invoked. Demonstrate how this function can be used to optimize performance by limiting the number of times a search input triggers an API call.
Sample solution:
function debounce(func, wait) {
let timeout;
return function(...args) {
clearTimeout(timeout);
timeout = setTimeout(() => func.apply(this, args), wait);
};
}
// Example usage
function searchApi(query) {
console.log(`API call with query: ${query}`);
}
const debouncedSearch = debounce(searchApi, 300);
// HTML structure for demonstration
/*
<input type="text" id="searchInput" placeholder="Search...">
*/
document.getElementById('searchInput').addEventListener('input', function(event) {
debouncedSearch(event.target.value);
});
Explanation of solution: The debounce function creates a closure that maintains a timeout variable. When the returned function is invoked, it clears any existing timeout and sets a new one to call func after wait milliseconds. This ensures that func is called only once after a specified delay, even if the debounced function is called multiple times within that period. In the example usage, the debounced searchApi function is attached to an input field’s input event, optimizing performance by limiting the number of API calls made during rapid typing.
Question: Write a JavaScript function sanitizeInput that takes a string input and returns a sanitized version of the string to prevent Cross-Site Scripting (XSS) attacks. Then, demonstrate how to implement a scalable architecture to handle form submissions securely on both client-side and server-side.
Sample solution:
function sanitizeInput(input) {
const element = document.createElement('div');
element.textContent = input;
return element.innerHTML;
}
// Example usage on client-side
document.getElementById('submitButton').addEventListener('click', function() {
const userInput = document.getElementById('userInput').value;
const sanitizedInput = sanitizeInput(userInput);
console.log(`Sanitized Input: ${sanitizedInput}`);
// Assume sendToServer is a function that sends data to the server
sendToServer(sanitizedInput);
});
// Server-side (Node.js/Express example)
const express = require('express');
const app = express();
const bodyParser = require('body-parser');
const xssFilters = require('xss-filters');
app.use(bodyParser.urlencoded({ extended: true }));
app.use(bodyParser.json());
app.post('/submit', (req, res) => {
const userInput = req.body.userInput;
const sanitizedInput = xssFilters.inHTMLData(userInput);
console.log(`Sanitized Input on Server: ${sanitizedInput}`);
res.send(`Received sanitized input: ${sanitizedInput}`);
});
app.listen(3000, () => {
console.log('Server running on port 3000');
});
Explanation of solution: The sanitizeInput function creates a div element, sets its textContent to the input string, and then retrieves the innerHTML, effectively escaping any potentially malicious code. On the client-side, this function is used to sanitize user input before sending it to the server. On the server-side, an Express application is set up to receive form submissions. The xss-filters library is used to sanitize input data, providing an additional layer of security.
JavaScript interview questions for senior developers (10+ years of experience)
Question: How would you architect a large-scale, cross-platform application using JavaScript to ensure maintainability, scalability, and high performance? Discuss the key considerations and technologies you would use.
Sample answer:
To architect a large-scale, cross-platform application using JavaScript, I would consider the following key aspects:
• Frontend framework: Utilize a modern frontend framework like React or Angular for building the user interface. These frameworks support component-based architecture, making it easier to maintain and scale the application.
• Backend framework: Use Node.js for the backend to leverage JavaScript’s full-stack capabilities. Frameworks like Express or NestJS can provide a robust foundation for developing scalable server-side applications.
• Cross-platform development: For mobile and desktop applications, consider using frameworks like React Native or Electron. React Native allows you to write code once and deploy it on both iOS and Android, while Electron can be used for cross-platform desktop applications.
• State management: Implement a state management library such as Redux or MobX to manage the application’s state efficiently, ensuring predictable state changes and improving maintainability.
• Microservices architecture: Adopt a microservices architecture for the backend to ensure scalability and flexibility. Each microservice can be developed, deployed, and scaled independently, reducing the risk of bottlenecks.
• API design: Use RESTful APIs or GraphQL to facilitate communication between the frontend and backend. GraphQL can be particularly beneficial for complex queries and reducing the number of API calls.
• Performance optimization: Employ techniques like lazy loading, code splitting, and server-side rendering (SSR) to optimize performance. Tools like Webpack can help with bundling and optimizing assets.
• Testing: Implement comprehensive testing strategies, including unit tests, integration tests, and end-to-end tests, using tools like Jest, Mocha, and Cypress.
• Continuous Integration and Deployment (CI/CD): Set up CI/CD pipelines to automate testing and deployment, ensuring quick and reliable releases. Tools like Jenkins, Travis CI, and GitHub Actions can be useful.
• Security: Implement security best practices, such as input validation, authentication, authorization, and secure data storage. Use libraries like Helmet.js for securing HTTP headers and OAuth for authentication.
Question: What strategies would you employ to optimize the performance of a legacy JavaScript application while managing technical debt and ensuring future scalability? Discuss your approach and the tools you would use.
Sample answer:
To optimize a legacy JavaScript application, I would start with a thorough code audit to identify bottlenecks and areas with high technical debt, refactoring for better readability and maintainability. Using performance profiling tools like Chrome DevTools and Lighthouse, I would analyze metrics such as load time and rendering performance. Optimizing asset delivery through minification, compression, and image optimization, leveraging tools like Webpack, would be my next step. Implementing lazy loading and code splitting would help reduce initial load times, and employing caching strategies, such as browser and server-side caching along with CDNs, would enhance performance.
Database optimization is crucial, so I would ensure queries and indexing are efficient, considering ORM tools for streamlined interactions. I would use asynchronous operations, utilizing Promises and async/await, to prevent blocking of the main thread and improve performance. Establishing robust monitoring and logging with tools like New Relic and Sentry would help track performance metrics and identify real-time issues.
To manage technical debt, I would prioritize critical issues and create a gradual refactoring plan. Lastly, to ensure scalability, I would employ microservices, containerization (Docker), and orchestration tools like Kubernetes, enabling efficient handling of increased load and traffic. This approach balances immediate performance gains with long-term maintainability and scalability.
JavaScript interview questions by focus area
JavaScript front-end interview questions
Question: Write a React component Counter that includes a button and a display of the current count. The count should start at 0 and increment by 1 each time the button is clicked. Use React’s useState hook for state management.
Sample solution:
import React, { useState } from 'react';
function Counter() {
const [count, setCount] = useState(0);
return (
<div>
<p>Current Count: {count}</p>
<button onClick={() => setCount(count + 1)}>Increment</button>
</div>
);
}
export default Counter;
Explanation of solution: The Counter component uses React’s useState hook to manage the count state. The useState hook initializes count to 0 and provides a setCount function to update it. When the button is clicked, the onClick handler increments the count state by 1 using setCount.
Question: Create a simple React application with two routes: Home and About. Use React Router for client-side routing and ensure that both pages are accessible, including appropriate aria attributes.
Sample solution:
import React from 'react';
import { BrowserRouter as Router, Route, Link, Switch } from 'react-router-dom';
function Home() {
return (
<div>
<h1>Home Page</h1>
<p>Welcome to the home page!</p>
</div>
);
}
function About() {
return (
<div>
<h1>About Page</h1>
<p>Learn more about us on this page.</p>
</div>
);
}
function App() {
return (
<Router>
<nav>
<ul>
<li>
<Link to="/" aria-label="Home">Home</Link>
</li>
<li>
<Link to="/about" aria-label="About">About</Link>
</li>
</ul>
</nav>
<Switch>
<Route exact path="/" component={Home} />
<Route path="/about" component={About} />
</Switch>
</Router>
);
}
export default App;
Explanation of solution: The App component sets up client-side routing using React Router. The Router component wraps the entire application, and Switch handles the routing logic. Route components define the paths for Home and About pages, each rendering the respective component. The nav element contains Link components for navigation, with aria-label attributes for accessibility.
JavaScript interview questions for automation testing
Question: Write a simple unit test for a JavaScript function add(a, b) that returns the sum of two numbers. Use the Jest testing framework.
Sample solution:
// add.js
function add(a, b) {
return a + b;
}
module.exports = add;
// add.test.js
const add = require('./add');
test('adds 1 + 2 to equal 3', () => {
expect(add(1, 2)).toBe(3);
});
test('adds -1 + -1 to equal -2', () => {
expect(add(-1, -1)).toBe(-2);
});
Explanation of solution: The add function is a simple utility that returns the sum of two numbers. The unit tests are written using the Jest testing framework. The test function defines individual test cases, where the expect function is used to assert that the result of add(a, b) matches the expected value.
Question: Write a simple end-to-end test using Selenium WebDriver for a web page with a login form. The form includes two inputs (username and password) and a submit button. The test should check that after entering the credentials and submitting the form, the user is redirected to a dashboard page.
Sample solution:
// login.test.js
const { Builder, By, until } = require('selenium-webdriver');
const assert = require('assert');
(async function loginTest() {
let driver = await new Builder().forBrowser('chrome').build();
try {
await driver.get('http://localhost:3000/login');
await driver.findElement(By.name('username')).sendKeys('testuser');
await driver.findElement(By.name('password')).sendKeys('password123');
await driver.findElement(By.css('button[type="submit"]')).click();
await driver.wait(until.urlIs('http://localhost:3000/dashboard'), 5000);
let currentUrl = await driver.getCurrentUrl();
assert.strictEqual(currentUrl, 'http://localhost:3000/dashboard');
} finally {
await driver.quit();
}
})();
Explanation of solution: This solution uses Selenium WebDriver for browser automation. The test script navigates to the login page, enters the username and password, and submits the form. It then waits until the URL changes to the dashboard page and asserts that the current URL is as expected.
JavaScript algorithm interview questions
Question: Write a JavaScript function mergeSort that sorts an array of numbers using the merge sort algorithm. Analyze the time and space complexity of your implementation.
Sample solution:
function mergeSort(arr) {
if (arr.length <= 1) {
return arr;
}
const mid = Math.floor(arr.length / 2);
const left = mergeSort(arr.slice(0, mid));
const right = mergeSort(arr.slice(mid));
return merge(left, right);
}
function merge(left, right) {
let result = [];
let leftIndex = 0;
let rightIndex = 0;
while (leftIndex < left.length && rightIndex < right.length) {
if (left[leftIndex] < right[rightIndex]) {
result.push(left[leftIndex]);
leftIndex++;
} else {
result.push(right[rightIndex]);
rightIndex++;
}
}
return result.concat(left.slice(leftIndex)).concat(right.slice(rightIndex));
}
// Example usage
const array = [38, 27, 43, 3, 9, 82, 10];
console.log(mergeSort(array)); // [3, 9, 10, 27, 38, 43, 82]
Explanation of solution: The mergeSort function recursively divides the array into halves until it has arrays of length 1 or 0. The merge function then combines these smaller arrays back together in sorted order. The time complexity of merge sort is O(n log n) because the array is split in half log n times, and merging the arrays takes linear time. The space complexity is O(n) due to the additional arrays created during the merge process.
Question: Write a JavaScript function binaryTreePaths that takes the root of a binary tree and returns all root-to-leaf paths in the tree as an array of strings. Use recursion to solve this problem.
Sample solution:
function binaryTreePaths(root) {
const paths = [];
function dfs(node, path) {
if (!node) return;
path += node.val;
if (!node.left && !node.right) {
paths.push(path);
} else {
path += '->';
dfs(node.left, path);
dfs(node.right, path);
}
}
dfs(root, '');
return paths;
}
// Example usage
const tree = {
val: 1,
left: {
val: 2,
left: null,
right: {
val: 5,
left: null,
right: null
}
},
right: {
val: 3,
left: null,
right: null
}
};
console.log(binaryTreePaths(tree)); // ["1->2->5", "1->3"]
Explanation of solution: The binaryTreePaths function uses a depth-first search (DFS) approach to traverse the binary tree. The dfs helper function is called recursively, building the path as it traverses the tree. When a leaf node is reached, the current path is added to the paths array.
Tricky JavaScript interview questions
Question: Write a JavaScript function createExpensiveResource that simulates the creation of an expensive resource (e.g., a large array). Use closures to manage access to this resource and implement a method to release it properly to prevent memory leaks.
Sample solution:
function createExpensiveResource() {
let resource = new Array(1000000).fill('some data');
function accessResource() {
if (!resource) {
console.log("Resource has been released.");
return;
}
return resource;
}
function releaseResource() {
resource = null;
console.log("Resource has been released.");
}
return {
access: accessResource,
release: releaseResource
};
}
// Example usage
const resourceManager = createExpensiveResource();
console.log(resourceManager.access()); // Access the resource
resourceManager.release(); // Release the resource
console.log(resourceManager.access()); // Try to access the released resource
Explanation of solution: The createExpensiveResource function creates a large array and uses closures to provide controlled access to it. The accessResource function allows access to the resource, while the releaseResource function sets the resource to null, freeing up memory. This solution demonstrates closure applications and how to prevent memory leaks by properly releasing resources.
Why it’s tricky: This question is tricky because it tests your understanding of closures and how they can inadvertently cause memory leaks if resources are not properly managed. It requires knowledge of both resource management and the use of closures to control access to variables.
Question: Explain the output of the following JavaScript code and why it behaves that way. Discuss the concepts of the event loop and the concurrency model that affect the output.
console.log('Start');
setTimeout(() => {
console.log('Timeout');
}, 0);
Promise.resolve().then(() => {
console.log('Promise');
});
console.log('End');
Sample output:
Start
End
Promise
Timeout
Sample answer:
The output of the code is determined by JavaScript’s event loop and concurrency model. When the script runs:
1. console.log('Start') is executed first, printing “Start”.
2. setTimeout is called with a delay of 0 milliseconds, which schedules the callback to be executed in the next iteration of the event loop.
3. Promise.resolve().then is called, which schedules the callback to be executed after the current execution context finishes, before the next event loop iteration.
4. console.log('End') is executed next, printing “End”.
5. After the current execution context finishes, the microtask queue (containing the resolved promise callback) is processed first.
6. The macrotask queue (containing the setTimeout callback) is then processed. Thus, “Promise” is printed before “Timeout”.
Why it’s tricky: This question is tricky because it explores the intricacies of JavaScript’s event loop and concurrency model. Understanding the order of execution between synchronous code, microtasks (promises), and macrotasks (setTimeout) requires you to have a deep understanding of how JavaScript handles asynchronous operations and task scheduling.
Most common JavaScript practice questions (if you have limited time)
In JavaScript interviews, you will often face a variety of question types designed to assess your technical skills and problem-solving abilities. Common algorithm problems, which require you to demonstrate your understanding of data structures and algorithmic efficiency, are a staple of JavaScript interviews. You’ll likely also be asked about JavaScript quirks, such as type coercion and scope behavior, to gauge your depth of knowledge about the language. Coding challenges are another popular format, often presented in real-time coding environments, where you must solve complex problems using key JavaScript methods. Interview cheat sheets can be valuable resources for quick reference on syntax and common functions.
Question: Write a JavaScript function findDuplicates that takes an array of numbers and returns an array of duplicate numbers. Ensure that each duplicate number appears only once in the output array.
Sample solution:
function findDuplicates(arr) {
const seen = new Set();
const duplicates = new Set();
for (let num of arr) {
if (seen.has(num)) {
duplicates.add(num);
} else {
seen.add(num);
}
}
return Array.from(duplicates);
}
// Example usage
console.log(findDuplicates([1, 2, 3, 1, 2, 4])); // [1, 2]
console.log(findDuplicates([5, 5, 5, 5, 5])); // [5]
console.log(findDuplicates([1, 2, 3, 4, 5])); // []
Explanation of solution: The findDuplicates function uses two sets: seen to track numbers that have already been encountered, and duplicates to track numbers that appear more than once. The function iterates through the array, adding numbers to seen and, if a number is already in seen, adding it to duplicates. The function finally returns an array created from the duplicates set.
Question: Explain the difference between null and undefined in JavaScript. Provide examples to illustrate the key differences.
Sample solution:
null and undefined are both JavaScript primitives representing the absence of a value, but they have different meanings and uses. undefined indicates that a variable has been declared but has not yet been assigned a value. null is an assignment value that represents no value or an empty value. For example:
let uninitializedVar; // undefined
let emptyVar = null; // null
console.log(typeof uninitializedVar); // "undefined"
console.log(typeof emptyVar); // "object"
console.log(uninitializedVar == null); // true
console.log(uninitializedVar === null); // false
console.log(emptyVar == undefined); // true
console.log(emptyVar === undefined); // false
Explanation of solution: In this example, uninitializedVar is declared but not assigned a value, so it is undefined. emptyVar is explicitly assigned the value null. The typeof operator shows that undefined is its own type, while null is considered an object due to a historical bug in JavaScript. The comparison examples demonstrate that == treats both null and undefined as equal, while === does not.
Question: Write a JavaScript function capitalizeWords that takes a string and returns a new string with the first letter of each word capitalized.
Sample solution:
function capitalizeWords(str) {
return str.split(' ').map(word => word.charAt(0).toUpperCase() + word.slice(1)).join(' ');
}
// Example usage
console.log(capitalizeWords('hello world')); // "Hello World"
console.log(capitalizeWords('javascript is fun')); // "Javascript Is Fun"
console.log(capitalizeWords('capitalize each word')); // "Capitalize Each Word"
Explanation of solution: The capitalizeWords function splits the input string into an array of words, capitalizes the first letter of each word, and then joins the words back into a single string. The split, map, charAt, toUpperCase, and slice methods are used to transform the string.
Next steps & resources
JavaScript development is a dynamic, exciting field that merges creative problem-solving with the powerful coding capabilities of JS and JS libraries and frameworks. And, it pays well: according to Glassdoor, JavaScript developers in the US earn an average salary of over $115,000 per year. While securing a JavaScript developer role can be challenging—especially in today’s competitive job market—being well-prepared for the interview can significantly improve your chances.
Whether you’re aiming for a career as a JavaScript developer or looking to enhance your coding skills first, the next step is simple and free: check out the JavaScript learning paths in CodeSignal Learn. You’ll be tackling real-world JavaScript problems and refining your technical skills right away. Start your journey with CodeSignal Learn for free today and prepare for your next JavaScript interview—or explore dozens of other technical skill areas.
|
__label__pos
| 0.9978 |
LibreOffice Module sc (master) 1
externallinkbuffer.cxx
Go to the documentation of this file.
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3 * This file is part of the LibreOffice project.
4 *
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
8 *
9 * This file incorporates work covered by the following license notice:
10 *
11 * Licensed to the Apache Software Foundation (ASF) under one or more
12 * contributor license agreements. See the NOTICE file distributed
13 * with this work for additional information regarding copyright
14 * ownership. The ASF licenses this file to you under the Apache
15 * License, Version 2.0 (the "License"); you may not use this file
16 * except in compliance with the License. You may obtain a copy of
17 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
18 */
19
20 #include <externallinkbuffer.hxx>
21
22 #include <com/sun/star/beans/XPropertySet.hpp>
23 #include <com/sun/star/sheet/DDELinkInfo.hpp>
24 #include <com/sun/star/sheet/ExternalLinkType.hpp>
25 #include <com/sun/star/sheet/XDDELinks.hpp>
26 #include <com/sun/star/sheet/XDDELinkResults.hpp>
27 #include <com/sun/star/sheet/XExternalDocLinks.hpp>
28 #include <com/sun/star/sheet/XSpreadsheetDocument.hpp>
29 #include <o3tl/safeint.hxx>
30 #include <osl/diagnose.h>
31 #include <sal/log.hxx>
32 #include <oox/core/filterbase.hxx>
35 #include <oox/token/namespaces.hxx>
36 #include <oox/token/properties.hxx>
37 #include <oox/core/relations.hxx>
38 #include <oox/token/tokens.hxx>
39 #include <addressconverter.hxx>
40 #include <biffhelper.hxx>
41
42 namespace oox::xls {
43
44 using namespace ::com::sun::star::sheet;
45 using namespace ::com::sun::star::uno;
46
47 using ::oox::core::Relation;
48 using ::oox::core::Relations;
49
50 namespace {
51
52 const sal_uInt16 BIFF12_EXTERNALBOOK_BOOK = 0;
53 const sal_uInt16 BIFF12_EXTERNALBOOK_DDE = 1;
54 const sal_uInt16 BIFF12_EXTERNALBOOK_OLE = 2;
55
56 const sal_uInt16 BIFF12_EXTNAME_AUTOMATIC = 0x0002;
57 const sal_uInt16 BIFF12_EXTNAME_PREFERPIC = 0x0004;
58 const sal_uInt16 BIFF12_EXTNAME_STDDOCNAME = 0x0008;
59 const sal_uInt16 BIFF12_EXTNAME_OLEOBJECT = 0x0010;
60 const sal_uInt16 BIFF12_EXTNAME_ICONIFIED = 0x0020;
61
62 } // namespace
63
65 mbNotify( false ),
66 mbPreferPic( false ),
67 mbStdDocName( false ),
68 mbOleObj( false ),
69 mbIconified( false )
70 {
71 }
72
74 DefinedNameBase( rParentLink ),
75 mrParentLink( rParentLink ),
76 mbDdeLinkCreated( false )
77 {
78 }
79
81 {
82 maModel.maName = rAttribs.getXString( XML_name, OUString() );
83 OSL_ENSURE( !maModel.maName.isEmpty(), "ExternalName::importDefinedName - empty name" );
84 // zero-based index into sheet list of externalBook
85 maModel.mnSheet = rAttribs.getInteger( XML_sheetId, -1 );
86 }
87
89 {
90 maModel.maName = rAttribs.getXString( XML_name, OUString() );
91 OSL_ENSURE( !maModel.maName.isEmpty(), "ExternalName::importDdeItem - empty name" );
92 maExtNameModel.mbOleObj = false;
93 maExtNameModel.mbStdDocName = rAttribs.getBool( XML_ole, false );
94 maExtNameModel.mbNotify = rAttribs.getBool( XML_advise, false );
95 maExtNameModel.mbPreferPic = rAttribs.getBool( XML_preferPic, false );
96 }
97
99 {
100 setResultSize( rAttribs.getInteger( XML_cols, 1 ), rAttribs.getInteger( XML_rows, 1 ) );
101 }
102
104 {
105 maModel.maName = rAttribs.getXString( XML_name, OUString() );
106 OSL_ENSURE( !maModel.maName.isEmpty(), "ExternalName::importOleItem - empty name" );
107 maExtNameModel.mbOleObj = true;
108 maExtNameModel.mbNotify = rAttribs.getBool( XML_advise, false );
109 maExtNameModel.mbPreferPic = rAttribs.getBool( XML_preferPic, false );
110 maExtNameModel.mbIconified = rAttribs.getBool( XML_icon, false );
111 }
112
114 {
115 rStrm >> maModel.maName;
116 OSL_ENSURE( !maModel.maName.isEmpty(), "ExternalName::importExternalName - empty name" );
117 }
118
120 {
121 sal_uInt16 nFlags;
122 sal_Int32 nSheetId;
123 nFlags = rStrm.readuInt16();
124 nSheetId = rStrm.readInt32();
125 // index into sheet list of EXTSHEETNAMES (one-based in BIFF12)
126 maModel.mnSheet = nSheetId - 1;
127 // no flag for built-in names, as in OOXML...
128 maExtNameModel.mbNotify = getFlag( nFlags, BIFF12_EXTNAME_AUTOMATIC );
129 maExtNameModel.mbPreferPic = getFlag( nFlags, BIFF12_EXTNAME_PREFERPIC );
130 maExtNameModel.mbStdDocName = getFlag( nFlags, BIFF12_EXTNAME_STDDOCNAME );
131 maExtNameModel.mbOleObj = getFlag( nFlags, BIFF12_EXTNAME_OLEOBJECT );
132 maExtNameModel.mbIconified = getFlag( nFlags, BIFF12_EXTNAME_ICONIFIED );
134 "ExternalName::importExternalNameFlags - wrong OLE flag in external name" );
135 }
136
138 {
139 sal_Int32 nRows, nCols;
140 nRows = rStrm.readInt32();
141 nCols = rStrm.readInt32();
142 setResultSize( nCols, nRows );
143 }
144
146 {
147 appendResultValue< double >( (rStrm.readuInt8() == 0) ? 0.0 : 1.0 );
148 }
149
151 {
152 appendResultValue( rStrm.readDouble() );
153 }
154
156 {
158 }
159
161 {
163 }
164
165 bool ExternalName::getDdeItemInfo( DDEItemInfo& orItemInfo ) const
166 {
167 if( (mrParentLink.getLinkType() == ExternalLinkType::DDE) && !maModel.maName.isEmpty() )
168 {
169 orItemInfo.Item = maModel.maName;
171 return true;
172 }
173 return false;
174 }
175
176 bool ExternalName::getDdeLinkData( OUString& orDdeServer, OUString& orDdeTopic, OUString& orDdeItem )
177 {
178 if( (mrParentLink.getLinkType() == ExternalLinkType::DDE) && !maModel.maName.isEmpty() )
179 {
180 // try to create a DDE link and to set the imported link results
181 if( !mbDdeLinkCreated ) try
182 {
183 PropertySet aDocProps( getDocument() );
184 Reference< XDDELinks > xDdeLinks( aDocProps.getAnyProperty( PROP_DDELinks ), UNO_QUERY_THROW );
185 mxDdeLink = xDdeLinks->addDDELink( mrParentLink.getClassName(), mrParentLink.getTargetUrl(), maModel.maName, css::sheet::DDELinkMode_DEFAULT );
186 mbDdeLinkCreated = true; // ignore if setting results fails
187 if( !maResults.empty() )
188 {
189 Reference< XDDELinkResults > xResults( mxDdeLink, UNO_QUERY_THROW );
190 xResults->setResults( ContainerHelper::matrixToSequenceSequence( maResults ) );
191 }
192 }
193 catch( Exception& )
194 {
195 OSL_FAIL( "ExternalName::getDdeLinkData - cannot create DDE link" );
196 }
197 // get link data from created DDE link
198 if( mxDdeLink.is() )
199 {
200 orDdeServer = mxDdeLink->getApplication();
201 orDdeTopic = mxDdeLink->getTopic();
202 orDdeItem = mxDdeLink->getItem();
203 return true;
204 }
205 }
206 return false;
207 }
208
209 // private --------------------------------------------------------------------
210
211 void ExternalName::setResultSize( sal_Int32 nColumns, sal_Int32 nRows )
212 {
214 "ExternalName::setResultSize - wrong link type" );
215 OSL_ENSURE( (nRows > 0) && (nColumns > 0), "ExternalName::setResultSize - invalid matrix size" );
216 const ScAddress& rMaxPos = getAddressConverter().getMaxApiAddress();
217 if( (0 < nRows) && (nRows <= rMaxPos.Row() + 1) && (0 < nColumns) && (nColumns <= rMaxPos.Col() + 1) )
218 maResults.resize( static_cast< size_t >( nColumns ), static_cast< size_t >( nRows ), Any( BiffHelper::calcDoubleFromError( BIFF_ERR_NA ) ) );
219 else
220 maResults.clear();
222 }
223
225 {
227 mnDocLink = mnFirst = mnLast = -1;
228 }
229
231 {
233 mnDocLink = -1;
234 mnFirst = mnLast = 0;
235 }
236
237 void LinkSheetRange::setRange( sal_Int32 nFirst, sal_Int32 nLast )
238 {
240 mnDocLink = -1;
241 mnFirst = ::std::min( nFirst, nLast );
242 mnLast = ::std::max( nFirst, nLast );
243 }
244
245 void LinkSheetRange::setExternalRange( sal_Int32 nDocLink, sal_Int32 nFirst, sal_Int32 nLast )
246 {
247 if( nDocLink < 0 )
248 {
249 setDeleted();
250 }
251 else
252 {
254 mnDocLink = nDocLink;
255 mnFirst = ::std::min( nFirst, nLast );
256 mnLast = ::std::max( nFirst, nLast );
257 }
258 }
259
261 WorkbookHelper( rHelper ),
262 meLinkType( ExternalLinkType::Unknown ),
263 meFuncLibType( FUNCLIB_UNKNOWN )
264 {
265 }
266
268 {
269 maRelId = rAttribs.getString( R_TOKEN( id ), OUString() );
270 }
271
272 void ExternalLink::importExternalBook( const Relations& rRelations, const AttributeList& rAttribs )
273 {
274 parseExternalReference( rRelations, rAttribs.getString( R_TOKEN( id ), OUString() ) );
275 }
276
278 {
279 insertExternalSheet( rAttribs.getXString( XML_val, OUString() ) );
280 }
281
283 {
284 createExternalName()->importDefinedName( rAttribs );
285 }
286
288 {
289 OUString aDdeService = rAttribs.getXString( XML_ddeService, OUString() );
290 OUString aDdeTopic = rAttribs.getXString( XML_ddeTopic, OUString() );
291 setDdeOleTargetUrl( aDdeService, aDdeTopic, ExternalLinkType::DDE );
292 }
293
295 {
296 ExternalNameRef xExtName = createExternalName();
297 xExtName->importDdeItem( rAttribs );
298 return xExtName;
299 }
300
301 void ExternalLink::importOleLink( const Relations& rRelations, const AttributeList& rAttribs )
302 {
303 OUString aProgId = rAttribs.getXString( XML_progId, OUString() );
304 OUString aTargetUrl = rRelations.getExternalTargetFromRelId( rAttribs.getString( R_TOKEN( id ), OUString() ) );
305 setDdeOleTargetUrl( aProgId, aTargetUrl, ExternalLinkType::OLE );
306 }
307
309 {
310 ExternalNameRef xExtName = createExternalName();
311 xExtName->importOleItem( rAttribs );
312 return xExtName;
313 }
314
316 {
317 rStrm >> maRelId;
318 }
319
321 {
323 }
324
326 {
328 }
329
331 {
333 }
334
335 void ExternalLink::importExternalBook( const Relations& rRelations, SequenceInputStream& rStrm )
336 {
337 switch( rStrm.readuInt16() )
338 {
339 case BIFF12_EXTERNALBOOK_BOOK:
340 parseExternalReference( rRelations, BiffHelper::readString( rStrm ) );
341 break;
342 case BIFF12_EXTERNALBOOK_DDE:
343 {
344 OUString aDdeService, aDdeTopic;
345 rStrm >> aDdeService >> aDdeTopic;
346 setDdeOleTargetUrl( aDdeService, aDdeTopic, ExternalLinkType::DDE );
347 }
348 break;
349 case BIFF12_EXTERNALBOOK_OLE:
350 {
351 OUString aTargetUrl = rRelations.getExternalTargetFromRelId( BiffHelper::readString( rStrm ) );
352 OUString aProgId = BiffHelper::readString( rStrm );
353 setDdeOleTargetUrl( aProgId, aTargetUrl, ExternalLinkType::OLE );
354 }
355 break;
356 default:
357 OSL_FAIL( "ExternalLink::importExternalBook - unknown link type" );
358 }
359 }
360
362 {
363 // load external sheet names and create the sheet caches in the Calc document
365 "sc.filter",
366 "Invalid link type: " << meLinkType );
367 if( meLinkType == ExternalLinkType::External ) // ignore sheets of external libraries
368 for( sal_Int32 nSheet = 0, nCount = rStrm.readInt32(); !rStrm.isEof() && (nSheet < nCount); ++nSheet )
370 }
371
373 {
374 ExternalNameRef xExtName = createExternalName();
375 xExtName->importExternalName( rStrm );
376 return xExtName;
377 }
378
379 ExternalLinkInfo ExternalLink::getLinkInfo() const
380 {
381 ExternalLinkInfo aLinkInfo;
382 switch( meLinkType )
383 {
386 aLinkInfo.Type = css::sheet::ExternalLinkType::SELF;
387 break;
389 aLinkInfo.Type = css::sheet::ExternalLinkType::DOCUMENT;
390 aLinkInfo.Data <<= maTargetUrl;
391 break;
393 // parser will return library function names in OPCODE_BAD string tokens
394 aLinkInfo.Type = css::sheet::ExternalLinkType::SPECIAL;
395 break;
397 {
398 aLinkInfo.Type = css::sheet::ExternalLinkType::DDE;
399 DDELinkInfo aDdeLinkInfo;
400 aDdeLinkInfo.Service = maClassName;
401 aDdeLinkInfo.Topic = maTargetUrl;
402 ::std::vector< DDEItemInfo > aItemInfos;
403 DDEItemInfo aItemInfo;
404 for( const auto& rxExtName : maExtNames )
405 if( rxExtName->getDdeItemInfo( aItemInfo ) )
406 aItemInfos.push_back( aItemInfo );
407 aDdeLinkInfo.Items = ContainerHelper::vectorToSequence( aItemInfos );
408 aLinkInfo.Data <<= aDdeLinkInfo;
409 }
410 break;
411 default:
412 aLinkInfo.Type = css::sheet::ExternalLinkType::UNKNOWN;
413 }
414 return aLinkInfo;
415 }
416
418 {
420 }
421
423 {
424 OSL_ENSURE( meLinkType == ExternalLinkType::External, "ExternalLink::getDocumentLinkIndex - invalid link type" );
425 return mxDocLink.is() ? mxDocLink->getTokenIndex() : -1;
426 }
427
428 sal_Int32 ExternalLink::getSheetCacheIndex( sal_Int32 nTabId ) const
429 {
430 OSL_ENSURE( meLinkType == ExternalLinkType::External, "ExternalLink::getSheetCacheIndex - invalid link type" );
431 return ContainerHelper::getVectorElement( maSheetCaches, nTabId, -1 );
432 }
433
434 Reference< XExternalSheetCache > ExternalLink::getSheetCache( sal_Int32 nTabId ) const
435 {
436 sal_Int32 nCacheIdx = getSheetCacheIndex( nTabId );
437 if( mxDocLink.is() && (nCacheIdx >= 0) ) try
438 {
439 // existing mxDocLink implies that this is an external link
440 Reference< XExternalSheetCache > xSheetCache( mxDocLink->getByIndex( nCacheIdx ), UNO_QUERY_THROW );
441 return xSheetCache;
442 }
443 catch( Exception& )
444 {
445 }
446 return nullptr;
447 }
448
449 void ExternalLink::getSheetRange( LinkSheetRange& orSheetRange, sal_Int32 nTabId1, sal_Int32 nTabId2 ) const
450 {
451 switch( meLinkType )
452 {
454 orSheetRange.setSameSheet();
455 break;
456
458 orSheetRange.setRange( nTabId1, nTabId2 );
459 break;
460
462 {
463 sal_Int32 nDocLinkIdx = getDocumentLinkIndex();
464 // BIFF12: passed indexes point into sheet list of EXTSHEETLIST
465 orSheetRange.setExternalRange( nDocLinkIdx, getSheetCacheIndex( nTabId1 ), getSheetCacheIndex( nTabId2 ) );
466 }
467 break;
468
469 default:
470 // unsupported/unexpected link type: #REF! error
471 orSheetRange.setDeleted();
472 }
473 }
474
476 {
477 return maExtNames.get( nIndex );
478 }
479
480 // private --------------------------------------------------------------------
481
482 void ExternalLink::setExternalTargetUrl( const OUString& rTargetUrl, const OUString& rTargetType )
483 {
485 if( rTargetType == CREATE_OFFICEDOC_RELATION_TYPE( "externalLinkPath" ) ||
486 rTargetType == CREATE_OFFICEDOC_RELATION_TYPE_STRICT( "externalLinkPath" ) )
487 {
488 maTargetUrl = getBaseFilter().getAbsoluteUrl( rTargetUrl );
489 if( !maTargetUrl.isEmpty() )
491 }
492 else if( rTargetType == CREATE_MSOFFICE_RELATION_TYPE( "xlExternalLinkPath/xlPathMissing" ) )
493 {
495 }
496 else if( rTargetType == CREATE_MSOFFICE_RELATION_TYPE( "xlExternalLinkPath/xlLibrary" ) )
497 {
500 }
501 SAL_WARN_IF( meLinkType == ExternalLinkType::Unknown, "sc.filter", "Empty target URL or unknown target type, URL='" << rTargetUrl << "', type='" << rTargetType << "'" );
502
503 // create the external document link API object that will contain the sheet caches
505 {
506 PropertySet aDocProps( getDocument() );
507 Reference< XExternalDocLinks > xDocLinks( aDocProps.getAnyProperty( PROP_ExternalDocLinks ), UNO_QUERY_THROW );
508 mxDocLink = xDocLinks->addDocLink( maTargetUrl );
509 }
510 catch( Exception& )
511 {
512 }
513 }
514
515 void ExternalLink::setDdeOleTargetUrl( const OUString& rClassName, const OUString& rTargetUrl, ExternalLinkType eLinkType )
516 {
517 maClassName = rClassName;
518 maTargetUrl = rTargetUrl;
519 meLinkType = (maClassName.isEmpty() || maTargetUrl.isEmpty()) ? ExternalLinkType::Unknown : eLinkType;
520 OSL_ENSURE( meLinkType == eLinkType, "ExternalLink::setDdeOleTargetUrl - missing classname or target" );
521 }
522
523 void ExternalLink::parseExternalReference( const Relations& rRelations, const OUString& rRelId )
524 {
525 if( const Relation* pRelation = rRelations.getRelationFromRelId( rRelId ) )
526 setExternalTargetUrl( pRelation->maTarget, pRelation->maType );
527 }
528
529 void ExternalLink::insertExternalSheet( const OUString& rSheetName )
530 {
531 OSL_ENSURE( !rSheetName.isEmpty(), "ExternalLink::insertExternalSheet - empty sheet name" );
532 if( mxDocLink.is() )
533 {
534 Reference< XExternalSheetCache > xSheetCache = mxDocLink->addSheetCache( rSheetName, false );
535 sal_Int32 nCacheIdx = xSheetCache.is() ? xSheetCache->getTokenIndex() : -1;
536 maSheetCaches.push_back( nCacheIdx );
537 }
538 }
539
541 {
542 ExternalNameRef xExtName = std::make_shared<ExternalName>( *this );
543 maExtNames.push_back( xExtName );
544 return xExtName;
545 }
546
548 mnExtRefId( -1 ),
549 mnTabId1( -1 ),
550 mnTabId2( -1 )
551 {
552 }
553
555 {
556 mnExtRefId = rStrm.readInt32();
557 mnTabId1 = rStrm.readInt32();
558 mnTabId2 = rStrm.readInt32();
559 }
560
562 WorkbookHelper( rHelper ),
563 mxSelfRef( std::make_shared<ExternalLink>( rHelper ) ),
564 mbUseRefSheets( false )
565 {
566 mxSelfRef->setSelfLinkType();
567 }
568
570 {
571 ExternalLinkRef xExtLink = createExternalLink();
572 xExtLink->importExternalReference( rAttribs );
573 maExtLinks.push_back( xExtLink );
574 return xExtLink;
575 }
576
578 {
579 mbUseRefSheets = true;
580 ExternalLinkRef xExtLink = createExternalLink();
581 xExtLink->importExternalRef( rStrm );
582 maExtLinks.push_back( xExtLink );
583 return xExtLink;
584 }
585
587 {
588 mbUseRefSheets = true;
589 createExternalLink()->importExternalSelf( rStrm );
590 }
591
593 {
594 mbUseRefSheets = true;
595 createExternalLink()->importExternalSame( rStrm );
596 }
597
599 {
600 mbUseRefSheets = true;
601 createExternalLink()->importExternalAddin( rStrm );
602 }
603
605 {
606 OSL_ENSURE( mbUseRefSheets, "ExternalLinkBuffer::importExternalSheets - missing EXTERNALREFS records" );
607 mbUseRefSheets = true;
608 OSL_ENSURE( maRefSheets.empty(), "ExternalLinkBuffer::importExternalSheets - multiple EXTERNALSHEETS records" );
609 maRefSheets.clear();
610 sal_Int32 nRefCount;
611 nRefCount = rStrm.readInt32();
612 size_t nMaxCount = getLimitedValue< size_t, sal_Int64 >( nRefCount, 0, rStrm.getRemaining() / 12 );
613 maRefSheets.reserve( nMaxCount );
614 for( size_t nRefId = 0; !rStrm.isEof() && (nRefId < nMaxCount); ++nRefId )
615 {
616 RefSheetsModel aRefSheets;
617 aRefSheets.readBiff12Data( rStrm );
618 maRefSheets.push_back( aRefSheets );
619 }
620 }
621
622 Sequence< ExternalLinkInfo > ExternalLinkBuffer::getLinkInfos() const
623 {
624 ::std::vector< ExternalLinkInfo > aLinkInfos;
625 // add entry for implicit index 0 (self reference to this document)
626 aLinkInfos.push_back( mxSelfRef->getLinkInfo() );
627 for( const auto& rxExtLink : maExtLinks )
628 aLinkInfos.push_back( rxExtLink->getLinkInfo() );
629 return ContainerHelper::vectorToSequence( aLinkInfos );
630 }
631
632 ExternalLinkRef ExternalLinkBuffer::getExternalLink( sal_Int32 nRefId, bool bUseRefSheets ) const
633 {
634 ExternalLinkRef xExtLink;
635 // OOXML: 0 = this document, otherwise one-based index into link list
636 if( !bUseRefSheets || !mbUseRefSheets )
637 xExtLink = (nRefId == 0) ? mxSelfRef : maLinks.get( nRefId - 1 );
638 // BIFF12: zero-based index into ref-sheets list
639 else if( const RefSheetsModel* pRefSheets = getRefSheets( nRefId ) )
640 xExtLink = maLinks.get( pRefSheets->mnExtRefId );
641 return xExtLink;
642 }
643
645 {
646 OSL_ENSURE( mbUseRefSheets, "ExternalLinkBuffer::getSheetRange - wrong BIFF version" );
647 LinkSheetRange aSheetRange;
648 if( const ExternalLink* pExtLink = getExternalLink( nRefId ).get() )
649 if( const RefSheetsModel* pRefSheets = getRefSheets( nRefId ) )
650 pExtLink->getSheetRange( aSheetRange, pRefSheets->mnTabId1, pRefSheets->mnTabId2 );
651 return aSheetRange;
652 }
653
654 // private --------------------------------------------------------------------
655
657 {
658 ExternalLinkRef xExtLink = std::make_shared<ExternalLink>( *this );
659 maLinks.push_back( xExtLink );
660 return xExtLink;
661 }
662
663 const RefSheetsModel* ExternalLinkBuffer::getRefSheets( sal_Int32 nRefId ) const
664 {
665 return ((0 <= nRefId) && (o3tl::make_unsigned( nRefId ) < maRefSheets.size())) ?
666 &maRefSheets[ static_cast< size_t >( nRefId ) ] : nullptr;
667 }
668
669 } // namespace oox
670
671 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
Helper class to provide access to global workbook data.
void importDdeItem(const AttributeList &rAttribs)
Imports the ddeItem element describing an item of a DDE link.
css::uno::Reference< css::sheet::XDDELink > mxDdeLink
Current position in result matrix.
void importExternalSelf(SequenceInputStream &rStrm)
Imports the EXTERNALSELF record from the passed stream.
bool getDdeLinkData(OUString &orDdeServer, OUString &orDdeTopic, OUString &orDdeItem)
Returns the complete DDE link data of this DDE item.
ExternalLinkRef getExternalLink(sal_Int32 nRefId, bool bUseRefSheets=true) const
Returns the external link for the passed reference identifier.
OptValue< bool > getBool(sal_Int32 nAttrToken) const
sal_Int32 nRefCount
ExternalLinkVec maLinks
Implicit self reference at index 0.
SCROW Row() const
Definition: address.hxx:261
const sal_uInt8 BIFF_ERR_NA
Definition: biffhelper.hxx:566
static const VectorType::value_type * getVectorElement(const VectorType &rVector, sal_Int32 nIndex)
OptValue< OUString > getXString(sal_Int32 nAttrToken) const
std::shared_ptr< ExternalLink > ExternalLinkRef
OptValue< sal_Int32 > getInteger(sal_Int32 nAttrToken) const
Link refers to the current sheet.
static double calcDoubleFromError(sal_uInt8 nErrorCode)
Converts the passed BIFF error to a double containing the respective Calc error code.
Definition: biffhelper.cxx:58
sal_Int32 mnSheet
The formula string.
void appendResultValue(const Type &rValue)
Appends the passed value to the result set.
ResultMatrix maResults
Additional name data.
#define CREATE_OFFICEDOC_RELATION_TYPE(ascii)
Link refers to the current workbook.
css::uno::Any getAnyProperty(sal_Int32 nPropId) const
const ScAddress & getMaxApiAddress() const
Returns the biggest valid cell address in the own Calc document.
void importExternalNameFlags(SequenceInputStream &rStrm)
Imports the EXTERNALNAMEFLAGS record containing the settings of an external name. ...
value_type get(sal_Int32 nIndex) const
Link refers to an external add-in.
Link refers to an external spreadsheet document.
OptValue< OUString > getString(sal_Int32 nAttrToken) const
ExternalLinkVec maExtLinks
List of link structures for all kinds of links.
std::shared_ptr< T > make_shared(Args &&...args)
void importExternalName(SequenceInputStream &rStrm)
Imports the EXTERNALNAME record containing the name (only).
const ExternalLink & mrParentLink
bool mbOleObj
Name is the StdDocumentName for DDE.
bool mbIconified
Name is an OLE object.
Unknown
sal_Int32 mnTabId1
Zero-based index into list of external documents.
Base class for defined names and external names.
sal_uInt16 readuInt16()
sal_Int32 mnTabId2
Zero-based index to first sheet in external document.
int nCount
sal_Int32 mnDocLink
Link sheet range type.
::oox::core::FilterBase & getBaseFilter() const
Returns the base filter object (base class of all filters).
RefSheetsModel()
Zero-based index to last sheet in external document.
const RefSheetsModel * getRefSheets(sal_Int32 nRefId) const
Returns the specified sheet indexes for a reference identifier.
Just for round-tripping (FIXME: Functionality not actually implemented after all.) ...
bool getFlag(Type nBitField, Type nMask)
ExternalName(const ExternalLink &rParentLink)
void importOleItem(const AttributeList &rAttribs)
Imports the oleItem element describing an object of an OLE link.
#define CREATE_OFFICEDOC_RELATION_TYPE_STRICT(ascii)
void setSameSheet()
Sets this struct to "use current sheet" state.
void importExternalAddin(SequenceInputStream &rStrm)
Imports the EXTERNALADDIN record from the passed stream.
void resize(size_type nWidth, size_type nHeight)
const css::uno::Reference< css::sheet::XSpreadsheetDocument > & getDocument() const
Returns a reference to the source/target spreadsheet document model.
static OUString readString(SequenceInputStream &rStrm, bool b32BitLen=true)
Reads a BIFF12 string with leading 16-bit or 32-bit length field.
Definition: biffhelper.cxx:80
#define CREATE_MSOFFICE_RELATION_TYPE(ascii)
bool mbUseRefSheets
Sheet indexes for reference ids.
constexpr std::enable_if_t< std::is_signed_v< T >, std::make_unsigned_t< T > > make_unsigned(T value)
sal_Int32 mnLast
Index of the first sheet or index of first external sheet cache.
static FunctionLibraryType getFuncLibTypeFromLibraryName(const OUString &rLibraryName)
Returns the library type associated with the passed URL of a function library (function add-in)...
ExternalLinkBuffer(const WorkbookHelper &rHelper)
void readBiff12Data(SequenceInputStream &rStrm)
sal_Int32 mnFirst
Document link token index for external links.
SCCOL Col() const
Definition: address.hxx:266
void setResultSize(sal_Int32 nColumns, sal_Int32 nRows)
Sets the size of the result matrix.
RefSheetsModelVec maRefSheets
Real external links needed for formula parser.
FunctionLibraryType
This enumeration contains constants for all known external libraries containing supported sheet funct...
void importValues(const AttributeList &rAttribs)
Imports the values element containing the size of the DDE result matrix.
ExternalLinkRef importExternalReference(const AttributeList &rAttribs)
Imports the externalReference element containing .
bool mbPreferPic
Notify application on data change.
css::uno::Sequence< css::sheet::ExternalLinkInfo > getLinkInfos() const
Returns the sequence of link infos needed by the XML formula parser.
sal_Int64 getRemaining() const
void setExternalRange(sal_Int32 nDocLink, sal_Int32 nFirst, sal_Int32 nLast)
Sets the passed external sheet cache range to the members of this struct.
void clear()
void setDeleted()
Sets this struct to deleted state.
#define SAL_WARN_IF(condition, area, stream)
ExternalNameModel maExtNameModel
External link this name belongs to.
Represents a REF entry in the BIFF12 EXTERNALSHEETS or in the BIFF8 EXTERNSHEET record.
void importDdeItemValues(SequenceInputStream &rStrm)
Imports the DDEITEMVALUES record containing the size of the DDE result matrix.
void importExternalSame(SequenceInputStream &rStrm)
Imports the EXTERNALSAME record from the passed stream.
static css::uno::Sequence< css::uno::Sequence< typename MatrixType::value_type > > matrixToSequenceSequence(const MatrixType &rMatrix)
LinkSheetRange getSheetRange(sal_Int32 nRefId) const
Returns the sheet range for the specified reference (BIFF8 only).
void importDdeItemError(SequenceInputStream &rStrm)
Imports the DDEITEM_ERROR record containing an error code in a link result.
SfxItemInfo const aItemInfos[]
Definition: docpool.cxx:91
bool empty() const
iterator begin()
void importExternalSheets(SequenceInputStream &rStrm)
Imports the EXTERNALSHEETS record from the passed stream.
static css::uno::Sequence< typename VectorType::value_type > vectorToSequence(const VectorType &rVector)
Contains indexes for a range of sheets in the spreadsheet document.
ExternalLinkRef importExternalRef(SequenceInputStream &rStrm)
Imports the EXTERNALREF record from the passed stream.
void importDdeItemString(SequenceInputStream &rStrm)
Imports the DDEITEM_STRING record containing a string in a link result.
OUString getAbsoluteUrl(const OUString &rUrl) const
bool mbDdeLinkCreated
Interface of a DDE link.
bool isEof() const
ExternalLinkRef createExternalLink()
Creates a new external link and inserts it into the list of links.
void importDdeItemBool(SequenceInputStream &rStrm)
Imports the DDEITEM_BOOL record containing a boolean value in a link result.
bool getDdeItemInfo(css::sheet::DDEItemInfo &orItemInfo) const
Returns the DDE item info needed by the XML formula parser.
void setRange(sal_Int32 nFirst, sal_Int32 nLast)
Sets the passed absolute sheet range to the members of this struct.
void importDefinedName(const AttributeList &rAttribs)
Imports the definedName element.
std::shared_ptr< ExternalName > ExternalNameRef
ResultMatrix::iterator maCurrIt
DDE/OLE link results.
void importDdeItemDouble(SequenceInputStream &rStrm)
Imports the DDEITEM_DOUBLE record containing a double value in a link result.
AddressConverter & getAddressConverter() const
Returns the converter for string to cell address/range conversion.
ExternalNameModel()
Iconified object link.
|
__label__pos
| 0.802569 |
Vb validating
Basically, you want to take two controls on the page: a Radio Button List for the country choice, and a Text Box for the ZIP code. Is Valid to determine whether or not the page is filled in completely. Josef Finsel is a software consultant with a global consulting firm and specializes in . NET, a programming language that works the way programmers have always suspected. When you mix two controls together for validation, it gets a little trickier. Is Valid = True End If The final point of note is that this doesn't keep you from checking Page. The final code, which is available for download, also contains a Required Field Validator for the Country Radio Button List, and the end of the Button Press event actually checks Page. The sample code referenced in this article is available for download. NET, and SQL Server-related articles, and when he isn't hanging around the aspnetpro forums, you can find him working on the syntax for Fizz Bin.It's nothing too exciting - a Radio Button List, a Text Box, and a button to submit it all. This is what the page looks like before the Custom Validator control is added. Text = "Valid data" End If As long as you're doing this, you might as well determine whether the ZIP code is formatted correctly: If (rb Country. The first thing you want to add is a Custom Validator control. Text, " "c) = True Then result = result & "- First Name field has spaces" & vb New Line End If If In Str(txt First Name. Text)) = True Then result = result & "- First Name field has numbers" & vb New Line End If 'last name field validation If txt Last Name. Length = 0 Then result = result & "- Last Name field is empty" & vb New Line End If If In Str(txt Last Name. Text, " "c) = True Then result = result & "- Last Name field has spaces" & vb New Line End If If In Str(txt Last Name. Text)) = True Then result = result & "- Last Name field has numbers" & vb New Line End If 'major validation If txt Major. Length = 0 Then result = result & "- Major field is empty" & vb New Line End If If In Str(txt Major. Click Dim error Str As String = "" error Str = Validate Fields() If error Str = "" Then 'place all the student field data into the array of elements ary Data(0) = txt First Name. add If statements for the fields you want to validate Private Function Is Quick Admission Valid() As String 'return string value containing the missing pieces if it is invalid. Here is what I received when entering your data raventest.
Data Repeater Item Event Args) Handles Data Repeater1. Item Index), Data Row View) Dim txt As Text Box = Direct Cast(e. Controls("Unit_Price Text Box"), Text Box) Add Handler txt. Cancel Event Args) Dim dec As Decimal If Not Decimal. I'll admit, I'm not very well versed in them as I've not taken the time to mess with them but I do know that you can validate these types of situations with them and that there are a lot of knowledgeable people that frequent this forum that can help you with them. Here is what I received when entering your data You could use this same thing for anything where you're testing length of the string. Text, " "c) = True Then result = result & "- First Name field is empty or contains illegal characters" & vb New Line End If Else Msg Box("First Name is empty") End If Public Class Form4 Private Sub Text First Name_Validating(By Val sender As Object, By Val e As System. If that isn't the way you want to go you could simply use . For example 'in the click event Dim str As String = "" str = Is Valid() If str = "" Then ' Its all valid so do w/e here Else msgbox("The following fields are invalid: " & str) End If 'the Is Valid Sub. Text 'join the array elements and place the result into a string variable new Student Record = Join(ary Data, " ") 'create a link between the form and the file with streamwriter and write to the text file If System. Also for: This way you've accomplished both of those in one block. And I can't put a required control on it, because it isn't always required. A: Validator controls come in many different flavors. The problem is if there is no value in the ZIP code box, a custom validation control still considers it valid.
|
__label__pos
| 0.961034 |
Wątki - wait(), notify(), notifyAll();
0
To mój pierwszy post na tym forum więc się przywitam :)))
WITAM ;)))
Post ten zamieścilem już na dwóch forach, ale zero odzewu było więc spróbuje tutaj.... :))
Mam problem, otóż dostałem zadanie do zrobienia z wątków.
Chodzi o program, który ma 3 wątki. Mają one po kolei wypisywać na ekranie 1 , 2 , 3.. Wątek jeden wypusuje 1, drugi 2 itd...
To co się dzieje w metodzie run() ma być w bloku synchronized (nic nowego chyba ;P) ogólnie program ma wyglądać tak jak napisałem...chyba...
Problem tkwi w tym, że to co ja napisałem wykonuje się tylko raz, a nie kilka...
Bardzo bym prosił o wyjaśnienie co mam źle w tym kodzie :)))
oto kod:
class Licznik
{
public int n = 1;
}
class T1 extends Thread
{
Licznik t;
T1(Licznik z)
{
t = z;
}
public void run()
{
synchronized (this)
{
while(true)
{
while(t.n!=1)
{
try {wait();
} catch(InterruptedException exc) {}
}
System.out.println("1 ");
t.n=2;
this.notify();
}
}
}
}
class T2 extends Thread
{
Licznik t;
T2(Licznik z)
{
t = z;
}
public void run()
{
synchronized (this)
{
while(true)
{
while(t.n!=2)
{
try {wait();} catch(InterruptedException exc) {}
}
System.out.println("2 ");
t.n=3;
this.notify();
}
}
}}
class T3 extends Thread
{
Licznik t;
T3(Licznik z)
{
t = z;
}
public void run()
{
synchronized(this)
{
while(true)
{
while(t.n!=3)
{
try {wait();} catch(InterruptedException exc) {}
}
System.out.println("3 ");
t.n=1;
this.notifyAll();
}}
}
}
public class Zadanie
{
public static void main (String [] args)
{
Licznik licznik = new Licznik();
T3 t3 = new T3(licznik);
T1 t1 = new T1(licznik);
T2 t2 = new T2(licznik);
t1.start();
t2.start();
t3.start();
}
}
Czekam na cenne uwagi :)
0
Proste.
Jeżeli synchronizujesz coś takiego:
synchronized(this){
while(true){
//...
}
}
To popatrz co się stanie. Odpalasz pierwszy wątek i w tym momencie zostaje rozpoczęta synchronizacja. Oznacza to, że do momentu aż nie zostanie zakończona operacja przeprowadzana przez ten wątek inne wątki nie będa uruchamiane. Problem polega na tym, że synchronizowaną operacją jest nieskończona pętla! Zatem operacja synchronizowana nigdy się nie zakończy i tym smaym inne wątki nigdy nie zostaną uruchomione.
0
Ten program po skompilowaniu wyświetla 1 , 2 , 3 więc nie są blokowane...
Chodzi o to, ze wyswietla tylko raz, oczywiscie mogę dać tam petle for(int i=0; i<3;i++) ale będzie to samo bo sprawdzałem....
Wydaje mi się, ze to jest kwestia złego rozmieszczenia wait() i notify() (ale moge się mylić...)
Poaztym jeżeli nie dam tego w pętli, to sie nie będzie powtarzało wypisywanie, bo jak sie skończy metoda run() to wtedy wątek kończy swój żywot....
Właśnie spróbowałem dac bloki synchronized() niżej, czyli zaraz po "while(true) {" i taki sam efekt....
0
oj koziolek koziolek
od kiedy to synchronizacja uniemozliwia ruszenie innych watkow?
tutaj problemem jest ze wolana jest metoda wait(), blokujaca watek, a pozniej dalej wolana jest notify() -problem w tym ze do tego wywolania zaden watek nie dojdzie - pamietaj ze zaden watek po wywolaniu wait() sam na sobie nie wywola notify() - to musi zrobic inny watek, a jako ze nie masz nigdy pewnosci ktory z watkow czekajacych na jakis warunek (wait()) zostanie zawiadomiony, bezpieczniej jest wywolac notifyAll()
ty natomiast nie masz na czyms wywolac tego notify(), poniewaz w run() synchronizujesz na this, a zaden inny watek nie ma referencji do pozostalych 2 watkow
dzialanie - wszystkie watki startuja, synchronizuja sie na sobie, i czekaja az ktos wywola na nich notify(), ale NIKT tego nie moze zrobic
polecam koledze zapoznac sie dokladniej z watkami i waitami notifajami itp (koziolkowi rowniez :>)
pozdrawiam
PS rogaty nie obrazaj sie, wiem ze kkazdy moze sie pomylic, tak tylko sobie zartuje ;-) peace
0
Nigdy nie byłem mocny z współbieżności. Sensownie wygląda to co mówisz. Ja bym dodał jeszcze, że wypadało by przerobić te trzy klasy w jedną, która będzie bardziej ogólna. I kodu mniej i jakoś łatwiej zrozumieć jak wszytko w jednym miejscu. Funkcjonalność związaną z numerowaniem można zastąpić warunkiem z resztą z dzielenia.
ide se poczytać.
1
Dzięki wielkie "oj koziołku" :))
Na dwóch forach dałem i nikt nie odpisał :))
Zrobiłem, śmiga, w sumie nie pomyślałem ze tym "this" tak było w przykładach, a wiadomo ze trzeba podać obiekt do którego w danym czasie ma dostęp tylko jeden wątek :))
tutaj zamieszczam poprawiony kod :))) zmienilem while(true) na "for", żeby sie nie wykonywąło w nieskończoność :))
class Licznik
{
public int n = 1;
}
class T1 extends Thread
{
Licznik t;
T1(Licznik z)
{
t = z;
}
public void run()
{
for (int i=0;i<3; i++) {
synchronized (t)
{
while(t.n!=1)
{
try {t.wait();
} catch(InterruptedException exc) {}
}
System.out.print("1, ");
t.n=2;
t.notify();
}
}
}
}
class T2 extends Thread
{
Licznik t;
T2(Licznik z)
{
t = z;
}
public void run()
{
for (int i=0;i<3; i++) {
synchronized (t)
{
while(t.n!=2)
{
try {t.wait();} catch(InterruptedException exc) {}
}
System.out.print("2, ");
t.n=3;
t.notify();
}
}
}}
class T3 extends Thread
{
Licznik t;
T3(Licznik z)
{
t = z;
}
public void run()
{
for (int i=0;i<3; i++){
synchronized(t)
{
while(t.n!=3)
{
try {t.wait();} catch(InterruptedException exc) {}
}
System.out.println("3 ");
t.n=1;
t.notifyAll();
}
} }
}
public class Zadanie
{
public static void main (String [] args)
{
Licznik licznik = new Licznik();
T3 t3 = new T3(licznik);
T1 t1 = new T1(licznik);
T2 t2 = new T2(licznik);
t1.start();
t2.start();
t3.start();
}
}
JESZCZE RAZ WIELKIE DZIĘKI :))))
Jeżeli chodzi o zebranie w jedną klasę, to zadanie wlaśnie miało posiadać trzy klasy z wątkami, wiec już nie bede kombinował :))
Jeżeli chodzi o zastosowanie reszty z dzielenia to wydaje mi sie, że warunek z dodawaniem jest mniej czasochłonny niż operacja dzielenia....
Pozdrawiam
0
zeby sobie pocwiczyc napisalem takie cos, zawierajac wskazowki koziolka:
class Licznik {
public int n = 1;
public Licznik() {
reset();
}
public int getValue() {
return n;
}
/*synchronized*/ public void increment() {
// wydaje sie ze metoda powinna byc synchronizowana
// poniewaz 3 watki beda sie do niej dobierac
// ale to tylko w teorii - poniewaz tak mamy napisany program ze wiemy
// ze na raz tylko jeden watek moze ja wywolac bo reszta czeka na
// notify() wiec mozna synchronized wywalic
// gdybysmy takiej wiedzy nie mieli to bysmy musieli to zostawic
++n;
if (n == 4) {
// jesli 4, to przekrecamy licznik
n = 1;
}
}
public void reset() {
n = 1;
}
}
class MyThread extends Thread {
private Licznik t;
private int output;
public MyThread(Licznik z, int output) {
t = z;
this.output = output;
}
public void run() {
while (true) {
synchronized (t) {
while (t.getValue() != output) {
// jesli nie moja kolej wypisac to czekam
// robimy to w petli ze wzgledu na to ze moze to i tak nie nasza kolej
// tylko tego drugiego ;-)
try {
t.wait();
} catch (InterruptedException e) {
e.printStackTrace();
return;
}
}
// doszlismy tutaj wiec pora wypisac
// jesli to 3, to dajemy nowa linie, ladniej widac wszystko
System.out.print(output + (output == 3 ? "\n" : " "));
// zwiekszyc licznik
t.increment();
// oraz zawiadomic pozostale 2 watki ze ktorys z nich moze
// wykonac swoj kod
t.notifyAll();
}
}
}
}
public class Test {
public static void main(String[] args) {
Licznik licznik = new Licznik();
MyThread t1 = new MyThread(licznik, 1);
MyThread t2 = new MyThread(licznik, 2);
MyThread t3 = new MyThread(licznik, 3);
t1.start();
t2.start();
t3.start();
}
}
0
Jeżeli chcesz nauczyć się wielowątkowość w javie, to zapoznaj się z pakietem java.util.concurrent(od javy 5)
Są tam, np. java.util.concurrent.atomic.AtomicInteger, czyli integer na którym pewne operacje są atomowe, czy java.util.concurrent.ArrayBlockingQueue dzięki której można w banalny sposób wykonać schemat producenci-konsumenci.
Jeżeli do synchronizacji używa się tylko synchronized() i notify(), to po pewnym czasie coraz trudniej przewidzieć wszystkie przebiegi wątków.
/*synchronized*/ public void increment()
Masz rację, w tym szczególnym przypadku synchronized nie jest konieczne.
0
__krzysiek85, dzięki za radę :))
Moim zadaniem było właśnie wykorzystać wait(), notify() i notifyAll()...
Jeżeli będe chcial bardziej zgłębić współbieżność wtedy sięgnę po tę klasę :)))
Pozdro
Temat uważam za zamknięty :))
0
Mimo że temat zamknięty, to coś napiszę. U mnie twój kod nie działa. Zadziałał jak zmieniłem notify() na notifyAll().
pozdrawiam
1 użytkowników online, w tym zalogowanych: 0, gości: 1
|
__label__pos
| 0.584373 |
Uploaded image for project: 'Forum Application'
1. Forum Application
2. XAFORUM-127
At answer and comment, when image-width larger than container, add some padding
Details
• Type: Bug
• Status: Closed
• Priority: Minor
• Resolution: Fixed
• Affects Version/s: 1.5
• Fix Version/s: 1.7
• Labels:
None
• Similar issues:
Description
Steps to reproduce:
1. Create a forum
2. Create a topic
3. Create an answer and a comment to it
4. Include in the answer and comment an image with a larger width than the container.
You'll notice that there is the need of some padding.
Attachments
Issue Links
Activity
People
• Assignee:
gabriela.smeria Gabriela Smeria
Reporter:
gabriela.smeria Gabriela Smeria
• Votes:
0 Vote for this issue
Watchers:
1 Start watching this issue
Dates
• Created:
Updated:
Resolved:
|
__label__pos
| 0.992707 |
Angular code is decoupled from the underlying runtime environment, so in theory our code could run on any type of host. In this post we will show how to use NativeScript in combination with Angular to create a native app.
We have already showed how to execute Angular on the server and in a web worker.
Now it's time to see if we can get our code to run in a native mobile environment as well.
What is NativeScript?
NativeScript is a third party framework created to map Angular code to native code running on IOS and Android devices.
Normally when we write Angular code we often target the browser, but as long as we don't reference browser specific apis, our code is not in any way locked into a browser environment. As I mentioned earlier NativeScript is just one example where we benefit from this abstraction from the runtime environment.
We have only just started looking at NativeScript, but was pleasantly surprised to see how easy it is to port Angular code to native device code. The best part is that we only have to worry about writing our Angular code. NativeScript and its tooling will take care of the conversion to native device code.
To put the theory to the test we decided to port two sample components using NativeScript. We wanted to move beyond a simple “Hello World” app, so we decided to pick components where we use both RxJs and timers.
The code and concepts port over nicely, but perhaps the biggest adjustment is getting used to mobile view terminology. In the native world we can no longer write standard html views, so we have to get used to new ui elements and layout schemes. In some ways the NativeScript layout approach reminded me a bit of Layout Managers in Java Swing.
Anyway, let's take a look at the sample components.
RxJs
The first component is a simple adder component where the user taps three numbers and the component spits out the sum of the numbers. On the surface this is a trivial component to write, but it's done using RxJs to prove that we can still benefit from Rx even in the native world.
As you can see from the code the component part is pretty familiar to anyone who's ever written an Angular application.
import {Component} from '@angular/core'; import {Subject} from 'rxjs/Subject'; @Component({ selector: 'adder', template: ` <Label text="Tap three numbers" class="title"></Label> <Button (tap)="add(number)" class="box" *ngFor="let number of numbers" [text]="number"></Button> <Label *ngIf="showSum" class="sum-box" [text]="calculation.sum"></Label> ` }) export class Adder{ numbers = [1,2,3,4,5]; sum = new Subject<number>(); calculation = {}; showSum = false; add(number){ this.sum.next(number); } ngOnInit(){ this.sum .asObservable() .do(a => this.showSum = false) .bufferCount(3) .subscribe(res => { this.calculation = {sum:res.reduce((a,b) => a + b)}; this.showSum = true; }); } }
The only exception is of course the template where we have to get used to new elements like Label and Button. We also use 'tap' instead of click. But as you can see we can still use RxJs the same way we use it on the web. Change detection is also completely transparent, so the ui will update just like it would on the web.
Timer
The second component is a simple sorting component where we sort a list, but use a timer to delay the sorting updates as the algorithm shuffles through the data. The point here is to show an example where we have to make a few minor adjustments to the code to make it work on “native”.
In my original sample we used setTimeout. SetTimeout is an example of an api specific to the browser, so to make it work we have to make a slight change. Luckily the change is trivial since all we have to do is import a timer from a NativeScript module.
As we can see from the sorting code below, updating the sorting algorithm to use the new timer is trivial.
var timer = require("timer"); export class InsertionSortService{ sort(input){ for(let j = 1; j < input.items.length; j++){ (function(j){ timer.setTimeout(() => { let key = input.items[j].val; let i = j - 1; while(i >= 0 && input.items[i].val > key){ input.items[i + 1].val = input.items[i].val; i = i - 1; } input.items[i + 1].val = key; input.setCurrent(input.items[i + 1]); },500 * j); })(j); } } }
In the component we inject the sorting service and call it to sort the provided list of integers.
import {Component, Input} from '@angular/core'; import {InsertionSortService} from './insertion-sort.service'; @Component({ selector: 'insertion-sort', templateUrl: './components/algorithms/insertion-sort.component.html', providers: [InsertionSortService] }) export class InsertionSortComponent { @Input() list:ValList; btnText = 'Sort'; constructor(private sortingService: InsertionSortService){ this.list = new ValList(); this.list.items = [ new ListItem(5), new ListItem(33), new ListItem(5), new ListItem(4), new ListItem(88), new ListItem(40), new ListItem(-88), new ListItem(6), new ListItem(1), new ListItem(58), new ListItem(30) ]; } sortList(){ this.sortingService.sort(this.list) } } class ValList{ items:Array; setCurrent(item){ this.clearAll(); item.current = true; } clearAll(){ this.items.forEach(i => i.current = false); } } class ListItem{ val:Number; current:Boolean; constructor(val){ this.val = val; this.current = false; } }
Notice in this sample we are using templateUrl instead of an inline template. Unsurprisingly the template url points to a view file where our template is defined. That said, we are not using standard html even though the extension of the template file is .html.
We won't spend too much time on the template, but notice the StackLayout which is an example of a layout scheme in NativeScript.
<StackLayout orientation="horizontal"> <Label class="small-box" *ngFor="let item of list.items" [text]="item.val"></Label> </StackLayout> <Button (tap)="sortList()" [text]="'Sort'">Tee</Button>
Resources
I am not spending a lot of time explaining how to setup a NativeScript project since the NativeScript team has already provided a lot of good examples here. I did however post my sample code on Github in case you are interested in taking a look.
Simulator
To test my code I loaded it up in the IOS simulator in a tabbed view.
Here are two screenshots of the final application:
|
__label__pos
| 0.942376 |
[BUGFIX] Add missing namespace parts
[Packages/TYPO3.CMS.git] / typo3 / sysext / core / Tests / Unit / Cache / Backend / ApcuBackendTest.php
1 <?php
2 namespace TYPO3\CMS\Core\Tests\Unit\Cache\Backend;
3
4 /*
5 * This file is part of the TYPO3 CMS project.
6 *
7 * It is free software; you can redistribute it and/or modify it under
8 * the terms of the GNU General Public License, either version 2
9 * of the License, or any later version.
10 *
11 * For the full copyright and license information, please read the
12 * LICENSE.txt file that was distributed with this source code.
13 *
14 * The TYPO3 project - inspiring people to share!
15 */
16
17 use TYPO3\CMS\Core\Cache\Backend\ApcuBackend;
18 use TYPO3\CMS\Core\Cache\Exception;
19 use TYPO3\CMS\Core\Cache\Frontend\FrontendInterface;
20 use TYPO3\CMS\Core\Utility\GeneralUtility;
21 use TYPO3\Components\TestingFramework\Core\AccessibleObjectInterface;
22
23 /**
24 * Test case for the APCu cache backend.
25 *
26 * NOTE: If you want to execute these tests you need to enable apc in
27 * cli context (apc.enable_cli = 1) and disable slam defense (apc.slam_defense = 0)
28 */
29 class ApcuBackendTest extends \TYPO3\Components\TestingFramework\Core\Unit\UnitTestCase
30 {
31 /**
32 * Set up
33 *
34 * @return void
35 */
36 protected function setUp()
37 {
38 // APCu module is called apcu, but options are prefixed with apc
39 if (!extension_loaded('apcu') || !(bool)ini_get('apc.enabled') || !(bool)ini_get('apc.enable_cli')) {
40 $this->markTestSkipped('APCu extension was not available, or it was disabled for CLI.');
41 }
42 if ((bool)ini_get('apc.slam_defense')) {
43 $this->markTestSkipped('This testcase can only be executed with apc.slam_defense = 0');
44 }
45 }
46
47 /**
48 * @test
49 */
50 public function setThrowsExceptionIfNoFrontEndHasBeenSet()
51 {
52 $backend = new ApcuBackend('Testing');
53 $data = 'Some data';
54 $identifier = $this->getUniqueId('MyIdentifier');
55 $this->expectException(Exception::class);
56 $this->expectExceptionCode(1232986118);
57 $backend->set($identifier, $data);
58 }
59
60 /**
61 * @test
62 */
63 public function itIsPossibleToSetAndCheckExistenceInCache()
64 {
65 $backend = $this->setUpBackend();
66 $data = 'Some data';
67 $identifier = $this->getUniqueId('MyIdentifier');
68 $backend->set($identifier, $data);
69 $this->assertTrue($backend->has($identifier));
70 }
71
72 /**
73 * @test
74 */
75 public function itIsPossibleToSetAndGetEntry()
76 {
77 $backend = $this->setUpBackend();
78 $data = 'Some data';
79 $identifier = $this->getUniqueId('MyIdentifier');
80 $backend->set($identifier, $data);
81 $fetchedData = $backend->get($identifier);
82 $this->assertEquals($data, $fetchedData);
83 }
84
85 /**
86 * @test
87 */
88 public function itIsPossibleToRemoveEntryFromCache()
89 {
90 $backend = $this->setUpBackend();
91 $data = 'Some data';
92 $identifier = $this->getUniqueId('MyIdentifier');
93 $backend->set($identifier, $data);
94 $backend->remove($identifier);
95 $this->assertFalse($backend->has($identifier));
96 }
97
98 /**
99 * @test
100 */
101 public function itIsPossibleToOverwriteAnEntryInTheCache()
102 {
103 $backend = $this->setUpBackend();
104 $data = 'Some data';
105 $identifier = $this->getUniqueId('MyIdentifier');
106 $backend->set($identifier, $data);
107 $otherData = 'some other data';
108 $backend->set($identifier, $otherData);
109 $fetchedData = $backend->get($identifier);
110 $this->assertEquals($otherData, $fetchedData);
111 }
112
113 /**
114 * @test
115 */
116 public function findIdentifiersByTagFindsSetEntries()
117 {
118 $backend = $this->setUpBackend();
119 $data = 'Some data';
120 $identifier = $this->getUniqueId('MyIdentifier');
121 $backend->set($identifier, $data, ['UnitTestTag%tag1', 'UnitTestTag%tag2']);
122 $retrieved = $backend->findIdentifiersByTag('UnitTestTag%tag1');
123 $this->assertEquals($identifier, $retrieved[0]);
124 $retrieved = $backend->findIdentifiersByTag('UnitTestTag%tag2');
125 $this->assertEquals($identifier, $retrieved[0]);
126 }
127
128 /**
129 * @test
130 */
131 public function setRemovesTagsFromPreviousSet()
132 {
133 $backend = $this->setUpBackend();
134 $data = 'Some data';
135 $identifier = $this->getUniqueId('MyIdentifier');
136 $backend->set($identifier, $data, ['UnitTestTag%tag1', 'UnitTestTag%tagX']);
137 $backend->set($identifier, $data, ['UnitTestTag%tag3']);
138 $retrieved = $backend->findIdentifiersByTag('UnitTestTag%tagX');
139 $this->assertEquals([], $retrieved);
140 }
141
142 /**
143 * @test
144 */
145 public function setCacheIsSettingIdentifierPrefixWithCacheIdentifier()
146 {
147 /** @var \PHPUnit_Framework_MockObject_MockObject|FrontendInterface $cacheMock */
148 $cacheMock = $this->createMock(FrontendInterface::class);
149 $cacheMock->expects($this->any())->method('getIdentifier')->will($this->returnValue(
150 'testidentifier'
151 ));
152
153 /** @var $backendMock \PHPUnit_Framework_MockObject_MockObject|ApcuBackend */
154 $backendMock = $this->getMockBuilder(ApcuBackend::class)
155 ->setMethods(['setIdentifierPrefix', 'getCurrentUserData', 'getPathSite'])
156 ->setConstructorArgs(['testcontext'])
157 ->getMock();
158
159 $backendMock->expects($this->once())->method('getCurrentUserData')->will(
160 $this->returnValue(['name' => 'testname'])
161 );
162
163 $backendMock->expects($this->once())->method('getPathSite')->will(
164 $this->returnValue('testpath')
165 );
166
167 $expectedIdentifier = 'TYPO3_' . GeneralUtility::shortMD5('testpath' . 'testname' . 'testcontext' . 'testidentifier', 12);
168 $backendMock->expects($this->once())->method('setIdentifierPrefix')->with($expectedIdentifier);
169 $backendMock->setCache($cacheMock);
170 }
171
172 /**
173 * @test
174 */
175 public function hasReturnsFalseIfTheEntryDoesNotExist()
176 {
177 $backend = $this->setUpBackend();
178 $identifier = $this->getUniqueId('NonExistingIdentifier');
179 $this->assertFalse($backend->has($identifier));
180 }
181
182 /**
183 * @test
184 */
185 public function removeReturnsFalseIfTheEntryDoesntExist()
186 {
187 $backend = $this->setUpBackend();
188 $identifier = $this->getUniqueId('NonExistingIdentifier');
189 $this->assertFalse($backend->remove($identifier));
190 }
191
192 /**
193 * @test
194 */
195 public function flushByTagRemovesCacheEntriesWithSpecifiedTag()
196 {
197 $backend = $this->setUpBackend();
198 $data = 'some data' . microtime();
199 $backend->set('BackendAPCUTest1', $data, ['UnitTestTag%test', 'UnitTestTag%boring']);
200 $backend->set('BackendAPCUTest2', $data, ['UnitTestTag%test', 'UnitTestTag%special']);
201 $backend->set('BackendAPCUTest3', $data, ['UnitTestTag%test']);
202 $backend->flushByTag('UnitTestTag%special');
203 $this->assertTrue($backend->has('BackendAPCUTest1'));
204 $this->assertFalse($backend->has('BackendAPCUTest2'));
205 $this->assertTrue($backend->has('BackendAPCUTest3'));
206 }
207
208 /**
209 * @test
210 */
211 public function flushByTagsRemovesCacheEntriesWithSpecifiedTags()
212 {
213 $backend = $this->setUpBackend();
214 $data = 'some data' . microtime();
215 $backend->set('BackendAPCUTest1', $data, ['UnitTestTag%test', 'UnitTestTag%boring']);
216 $backend->set('BackendAPCUTest2', $data, ['UnitTestTag%test', 'UnitTestTag%special']);
217 $backend->set('BackendAPCUTest3', $data, ['UnitTestTag%test']);
218 $backend->flushByTags(['UnitTestTag%special', 'UnitTestTag%boring']);
219 $this->assertFalse($backend->has('BackendAPCUTest1'), 'BackendAPCTest1');
220 $this->assertFalse($backend->has('BackendAPCUTest2'), 'BackendAPCTest2');
221 $this->assertTrue($backend->has('BackendAPCUTest3'), 'BackendAPCTest3');
222 }
223
224 /**
225 * @test
226 */
227 public function flushRemovesAllCacheEntries()
228 {
229 $backend = $this->setUpBackend();
230 $data = 'some data' . microtime();
231 $backend->set('BackendAPCUTest1', $data);
232 $backend->set('BackendAPCUTest2', $data);
233 $backend->set('BackendAPCUTest3', $data);
234 $backend->flush();
235 $this->assertFalse($backend->has('BackendAPCUTest1'));
236 $this->assertFalse($backend->has('BackendAPCUTest2'));
237 $this->assertFalse($backend->has('BackendAPCUTest3'));
238 }
239
240 /**
241 * @test
242 */
243 public function flushRemovesOnlyOwnEntries()
244 {
245 /** @var \PHPUnit_Framework_MockObject_MockObject|FrontendInterface $thisCache */
246 $thisCache = $this->createMock(FrontendInterface::class);
247 $thisCache->expects($this->any())->method('getIdentifier')->will($this->returnValue('thisCache'));
248 $thisBackend = new ApcuBackend('Testing');
249 $thisBackend->setCache($thisCache);
250
251 /** @var \PHPUnit_Framework_MockObject_MockObject|FrontendInterface $thatCache */
252 $thatCache = $this->createMock(FrontendInterface::class);
253 $thatCache->expects($this->any())->method('getIdentifier')->will($this->returnValue('thatCache'));
254 $thatBackend = new ApcuBackend('Testing');
255 $thatBackend->setCache($thatCache);
256 $thisBackend->set('thisEntry', 'Hello');
257 $thatBackend->set('thatEntry', 'World!');
258 $thatBackend->flush();
259 $this->assertEquals('Hello', $thisBackend->get('thisEntry'));
260 $this->assertFalse($thatBackend->has('thatEntry'));
261 }
262
263 /**
264 * Check if we can store ~5 MB of data
265 *
266 * @test
267 */
268 public function largeDataIsStored()
269 {
270 $backend = $this->setUpBackend();
271 $data = str_repeat('abcde', 1024 * 1024);
272 $identifier = $this->getUniqueId('tooLargeData');
273 $backend->set($identifier, $data);
274 $this->assertTrue($backend->has($identifier));
275 $this->assertEquals($backend->get($identifier), $data);
276 }
277
278 /**
279 * @test
280 */
281 public function setTagsOnlyOnceToIdentifier()
282 {
283 $identifier = $this->getUniqueId('MyIdentifier');
284 $tags = ['UnitTestTag%test', 'UnitTestTag%boring'];
285
286 $backend = $this->setUpBackend(true);
287 $backend->_call('addIdentifierToTags', $identifier, $tags);
288 $this->assertSame(
289 $tags,
290 $backend->_call('findTagsByIdentifier', $identifier)
291 );
292
293 $backend->_call('addIdentifierToTags', $identifier, $tags);
294 $this->assertSame(
295 $tags,
296 $backend->_call('findTagsByIdentifier', $identifier)
297 );
298 }
299
300 /**
301 * Sets up the APCu backend used for testing
302 *
303 * @param bool $accessible TRUE if backend should be encapsulated in accessible proxy otherwise FALSE.
304 * @return AccessibleObjectInterface|ApcuBackend
305 */
306 protected function setUpBackend($accessible = false)
307 {
308 /** @var \PHPUnit_Framework_MockObject_MockObject|FrontendInterface $cache */
309 $cache = $this->createMock(FrontendInterface::class);
310 if ($accessible) {
311 $accessibleClassName = $this->buildAccessibleProxy(ApcuBackend::class);
312 $backend = new $accessibleClassName('Testing');
313 } else {
314 $backend = new ApcuBackend('Testing');
315 }
316 $backend->setCache($cache);
317 return $backend;
318 }
319 }
|
__label__pos
| 0.957185 |
[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]
dpkg-source argument to ignore .git subdirectory
There seems to be some confusion what's the correct way to ignore only
the .git subdirectory (and not anything else gittish, which might have
been present in the .diff.gz before).
Has anybody come up with a proper regexp for -i? Would
-I.git '-i^\.git/'
do the trick?
Reply to:
|
__label__pos
| 0.949746 |
admob 0.1.27
• README.md
• CHANGELOG.md
• Example
• Installing
• Versions
• 9
Admob for Flutter #
A GoogleAdmob plugin for Flutter. Currently supports interstitial ads in both iOS and Android.
Getting Started #
The plugin contains two methods for loading and showing interstitial ads. In order to use them we must first import a couple of packages:
import 'package:admob/admob.dart';
import 'package:flutter/services.dart';
[iOS DEVELOPERS NOTE: Developed for Objective C. You cannot use 'use_frameworks' in your new project's podfile]
Interstitial Ads #
Interstitial ads will display on both Android and iOS devices. In order to display our ads we need to pass Admob a few parameters. For more info on the app id and ad unit id visit http://google.com/admob.
String APP_ID = "Your APP ID";
String AD_UNIT_ID = "Your Ad_unit_id";
String DEVICE_ID = "Only necessary for testing: The device id you are testing with";
bool TESTING = A boolean declaring whether you are testing ads or live;
Async Methods #
There are two asynchronous functions that we use, one to load the ad and one to show it.
The plugin's loadInterstitial method accepts an APP_ID, AD_UNIT_ID, DEVICE_ID, and TESTING. The loadInterstitial method should be called in an init method to load an ad as the app starts. After that the ads will reload themselves whenever you close the previous one. The plugin's showInterstitial method accepts no variables, and as the name implies shows the ad you loaded with loadInterstitial. If the ad is not yet loaded the showInterstitial method will return false.
@override
initState(){
super.initState();
loadInterstitialAd();
}
loadInterstitialAd() async {
bool loadResponse;
try {
loadResponse = await Admob.loadInterstitial(APP_ID, AD_UNIT_ID, DEVICE_ID, TESTING);
} on PlatformException {
loadResponse = false;
}
setState(() {
_loadInterstitialResponse = loadResponse;
});
}
showInterstitialAd() async {
bool showResponse;
try {
showResponse = await Admob.showInterstitial;
} on PlatformException {
showResponse = false;
}
setState(() {
_showInterstitialResponse = showResponse;
});
}
Now whenever we want to show the ad we simply call it:
showInterstitialAd()
An example of how to do that:
@override
Widget build(BuildContext context) {
return new Scaffold(
appBar: new AppBar(
title: new Text('Plugin example app'),
),
body: new Center(child:new Text("$_showInterstitialResponse")),
floatingActionButton: new FloatingActionButton(
onPressed: () => showInterstitialAd(),
child: new Icon(Icons.add),
),
);
}
View the example code included with the plugin in the example folder to see usage. The main.dart file included in the example folder shows an implementation of the plugin.
We currently have limited support for banner ads on the iOS platform. Banner ads work largely the same way as our interstitial do. Unlike interstitial there is no load function. Whenever we want a banner we simply call showBanner. The showBanner method accepts an extra variable over the loadInterstitial:
The important new variable is PLACEMENT. You should pass either "Top" or "Bottom" in this variable when displaying a banner ad. This declares where the ad will be shown.
String APP_ID = "Your app id";
String INTERSTITIAL_AD_UNIT_ID = "Your ad unit id";
String DEVICE_ID = "(NOT REQD): Your device ID, to display test ads on a specific device";
bool TESTING = A Boolean declaring whether ads should be live or testing;
String PLACEMENT = "Top"
We are now left needing our async functions. We have two of them, showBanner and closeBanner, they return a string that can be described as a banner state. If the ad is shown properly it returns "ShowingTop" or "ShowingBottom" depending on placement or else it returns "NotShown". A banner does not have to be closed. It is simple an option for people looking to display one temporarily:
showBannerAd() async {
var showResponse = "";
try {showResponse = await Admob.showBanner(APP_ID, INTERSTITIAL_AD_UNIT_ID, DEVICE_ID, TESTING, PLACEMENT);}
on PlatformException {showResponse = "Not Shown";}
setState(() {
_BannerState = showResponse;
});
}
closeBannerAd() async {
var showResponse = "";
try {
_BannerState = await Admob.closeBanner();
print(_BannerState);
} on PlatformException {
showResponse = "Not Closed";
}
setState(() {
_BannerState = showResponse;
});
}
SUPPORT THE DEVELOPER #
BTC Address:13JN3yubwaPzyuBpj4MtKqirVfweq1b6Sc #
Admob for Flutter #
CHANGELOG #
Version 0.1.27 - June 9th, 2017 #
[UPDATED]
Updated README to include iOS Notice
Version 0.1.26 - June 9th, 2017 #
[FIX]
Fixed pod install issue
Version 0.1.25 - June 6th, 2017 #
[UPDATED]
Updated main.dart example file to reflect changes
Version 0.1.24 - June 6th, 2017 #
[ADDED]
Added banner support for iOS devices, users can now display banners at the top or bottom of iOS apps [Android support in development]
[UPDATED]
Updated README to reflect iOS changes
Updated Changelog formatting
Version 0.1.23 - June 2nd, 2017 #
[ADDED]
Added Changelog
Version 0.1.22 - June 2nd, 2017 #
[CHANGED]
Updated podspec dependency for ios: will no longer throw missing module error
example/main.dart
import 'package:flutter/material.dart';
import 'package:flutter/services.dart';
import 'package:admob/admob.dart';
void main() {
runApp(new MyApp());
}
class MyApp extends StatelessWidget {
// This widget is the root of your application.
@override
Widget build(BuildContext context) {
return new MaterialApp(
title: 'Flutter Demo',
theme: new ThemeData(
primarySwatch: Colors.blue,
),
home: new MyHomePage(title: 'Flutter Demo Home Page'),
);
}
}
class MyHomePage extends StatefulWidget {
MyHomePage({Key key, this.title}) : super(key: key);
final String title;
@override
_MyHomePageState createState() => new _MyHomePageState();
}
class _MyHomePageState extends State<MyHomePage> {
var _showInterstitialResponse = "";
var _loadInterstitialResponse = "";
var _BannerState = "";
String APP_ID = "ca-app-pub-9929690287684724~2116069294";
String INTERSTITIAL_AD_UNIT_ID = "ca-app-pub-9929690287684724/7809349294";
String DEVICE_ID = "FF18F6CCC658F56ECA4C4623DB5082CA";
bool TESTING = true;
String PLACEMENT = "Top";
@override
initState() {
super.initState();
loadInterstitialAd();
}
loadInterstitialAd() async {
String loadResponse = "";
try {
loadResponse = await Admob.loadInterstitial(APP_ID, INTERSTITIAL_AD_UNIT_ID, DEVICE_ID, TESTING);
} on PlatformException {
loadResponse = "Failed to Load";
}
setState(() {
_loadInterstitialResponse = loadResponse;
});
}
showInterstitialAd() async {
var showResponse = "";
try {
showResponse = await Admob.showInterstitial;
} on PlatformException {
showResponse = false;
}
setState(() {
_showInterstitialResponse = showResponse;
});
}
showBannerAd() async {
var showResponse = "";
try {showResponse = await Admob.showBanner(APP_ID, INTERSTITIAL_AD_UNIT_ID, DEVICE_ID, TESTING, PLACEMENT);}
on PlatformException {showResponse = "Not Shown";}
setState(() {
_BannerState = showResponse;
});
}
closeBannerAd() async {
var showResponse = "";
try {
_BannerState = await Admob.closeBanner();
print(_BannerState);
} on PlatformException {
showResponse = "Not Closed";
}
setState(() {
_BannerState = showResponse;
});
}
final List<String> _items = ['Interstitial','Top Banner', 'Bottom Banner'].toList();
String _selection = "Interstitial";
@override
Widget build(BuildContext context) {
final dropdownMenuOptions = _items.map((String item) =>
new DropdownMenuItem<String>(value: item, child: new Text(item))
).toList();
return new Scaffold(
appBar: new AppBar(
title: new Text('Plugin example app'),
),
body: new Column(
mainAxisAlignment: MainAxisAlignment.center,
children: [
new Text(_BannerState),
new DropdownButton<String>(
value: _selection,
items: dropdownMenuOptions,
onChanged: (s) {
setState(() {
_selection = s;
if(s == "Interstitial"){showInterstitialAd();}
if(s == "Top Banner"){
PLACEMENT = "Top";
if(_BannerState == "ShowingBottom"){closeBannerAd();}
if(_BannerState != "ShowingTop"){showBannerAd();}
else{closeBannerAd();}
}
if(s == "Bottom Banner"){
PLACEMENT = "Bottom";
if(_BannerState == "ShowingTop"){closeBannerAd();}
if(_BannerState != "ShowingBottom"){showBannerAd();}
else{closeBannerAd();}
}
});
}
)
]
),
floatingActionButton: new FloatingActionButton(
onPressed: () {
print(_BannerState);
if(_BannerState != "Shown"){showBannerAd();}
else{closeBannerAd();}
},
child: new Icon(Icons.add),
),
);
}
}
Use this package as a library
1. Depend on it
Add this to your package's pubspec.yaml file:
dependencies:
admob: ^0.1.27
2. Install it
You can install packages from the command line:
with pub:
$ pub get
with Flutter:
$ flutter pub get
Alternatively, your editor might support pub get or flutter pub get. Check the docs for your editor to learn more.
3. Import it
Now in your Dart code, you can use:
import 'package:admob/admob.dart';
Version Uploaded Documentation Archive
0.1.27 Jun 9, 2017 Go to the documentation of admob 0.1.27 Download admob 0.1.27 archive
0.1.26 Jun 9, 2017 Go to the documentation of admob 0.1.26 Download admob 0.1.26 archive
0.1.25 Jun 6, 2017 Go to the documentation of admob 0.1.25 Download admob 0.1.25 archive
0.1.24 Jun 6, 2017 Go to the documentation of admob 0.1.24 Download admob 0.1.24 archive
0.1.23 Jun 2, 2017 Go to the documentation of admob 0.1.23 Download admob 0.1.23 archive
0.1.22 Jun 2, 2017 Go to the documentation of admob 0.1.22 Download admob 0.1.22 archive
0.1.21 Jun 2, 2017 Go to the documentation of admob 0.1.21 Download admob 0.1.21 archive
0.1.2 Jun 2, 2017 Go to the documentation of admob 0.1.2 Download admob 0.1.2 archive
0.1.1 Jun 2, 2017 Go to the documentation of admob 0.1.1 Download admob 0.1.1 archive
0.1.0 Jun 2, 2017 Go to the documentation of admob 0.1.0 Download admob 0.1.0 archive
Popularity:
Describes how popular the package is relative to other packages. [more]
17
Health:
Code health derived from static analysis. [more]
--
Maintenance:
Reflects how tidy and up-to-date the package is. [more]
--
Overall:
Weighted score of the above. [more]
9
Learn more about scoring.
The package version is not analyzed, because it does not support Dart 2. Until this is resolved, the package will receive a health and maintenance score of 0.
Analysis issues and suggestions
Support Dart 2 in pubspec.yaml.
The SDK constraint in pubspec.yaml doesn't allow the Dart 2.0.0 release. For information about upgrading it to be Dart 2 compatible, please see https://dart.dev/dart-2#migration.
Maintenance issues and suggestions
Make sure dartdoc successfully runs on your package's source files. (-10 points)
Dependencies were not resolved.
|
__label__pos
| 0.9095 |
Hide
Authorizing with Google for REST APIs
When you want your Android app to access Google APIs using the user's Google account over HTTP, the GoogleAuthUtil class and related APIs provide your users a secure and consistent experience for picking an account and retrieving an OAuth 2.0 token for your app.
You can then use that token in your HTTP-based communications with Google API services that are not included in the Google Play services library, such as the Blogger or Translate APIs.
To get started with GoogleAuthUtil for accessing Google's REST APIs, you must set up your Android app project with the Google Play services library. Follow the procedures in Setup Google Play Services SDK.
Register your app
Before you can publish an app that retrieves an OAuth 2.0 token for Google REST APIs, you must register your Android app with the Google Cloud Console by providing your app's package name and the SHA1 fingerprint of the keystore with which you sign your release APK.
To register your Android app with Google Cloud Console:
1. Visit Google Cloud Console.
2. If you have an existing project to which you're adding an Android app, select the project. Otherwise, click Create project at the top, enter your project name and ID, then click Create. Note: The name you provide for the project is the name that appears to users in the Google Settings app in the list of Connected apps.
3. In the left-side navigation, select APIs & auth.
4. Enable the API you'd like to use by setting the Status to ON.
5. In the left-side navigation, select Credentials.
6. Click Create new client ID or Create new key as appropriate for your app.
7. Complete the form that appears by filling in your Android app details. To get the SHA1 fingerprint for your app, run the following command in a terminal:
keytool -exportcert -alias -keystore -list -v
For example, you're using a debug-key with Eclipse, then the command looks like this:
keytool -exportcert -alias androiddebugkey -keystore ~/.android/debug.keystore -list -v
Then the keystore password is "android".
8. Click Create.
The Credentials page then provides the available credentials such as an OAuth 2.0 client ID and an Android Key, but you don't need these to authorize your Android users. Simply registering your app with the package name and SHA1 makes the Google services accessible by your app.
To acquire the OAuth 2.0 token that will grant you access to Google APIs over HTTP, you need to first identify the user's Google account with which you'll query the servers. For this task, the Google Play services library provides a convenient account picker dialog you can invoke using AccountPicker. The result delivered to your activity from the account picker is the account name you'll use to request the OAuth 2.0 token in the next section.
Note: In order to use the APIs discussed here, you must include the Google Play services library with your project. If you haven't set up your project with the library yet, read the guide to Setup Google Play Services SDK.
Invoke the Account Picker
To open the account picker dialog that's managed by the Google Play services library, call startActivityForResult() using an Intent returned by AccountPicker.newChooseAccountIntent.
For example:
static final int REQUEST_CODE_PICK_ACCOUNT = 1000;
private void pickUserAccount() {
String[] accountTypes = new String[]{"com.google"};
Intent intent = AccountPicker.newChooseAccountIntent(null, null,
accountTypes, false, null, null, null, null);
startActivityForResult(intent, REQUEST_CODE_PICK_ACCOUNT);
}
When this code executes, a dialog appears for the user to pick an account. When the user selects the account, your activity receives the result in the onActivityResult() callback.
Most apps should pass the newChooseAccountIntent() method the same arguments shown in the above example, which indicate that:
• There is no currently selected account.
• There is no restricted list of accounts.
• The dialog should list only accounts from the "com.google" domain.
• Don't prompt the user to pick an account if there's only one available account (just use that one). However, even if only one account currently exists, the dialog may include an option for the user to add a new account.
• There is no custom title for the dialog.
• There is no specific auth token type required.
• There are no restrictions based on account features.
• There are no authenticator-specific options.
For more details about these arguments, see the newChooseAccountIntent() method.
Retrieve the Account Name
Once the user selects an account, your activity receives a call to its onActivityResult() method. The received Intent includes an extra for KEY_ACCOUNT_NAME, specifying the account name (an email address) you must use to acquire the OAuth 2.0 token.
Here's an example implementation of the callback onActivityResult() that receives the selected account:
String mEmail; // Received from newChooseAccountIntent(); passed to getToken()
@Override
protected void onActivityResult(int requestCode, int resultCode, Intent data) {
if (requestCode == REQUEST_CODE_PICK_ACCOUNT) {
// Receiving a result from the AccountPicker
if (resultCode == RESULT_OK) {
mEmail = data.getStringExtra(AccountManager.KEY_ACCOUNT_NAME);
// With the account name acquired, go get the auth token
getUsername();
} else if (resultCode == RESULT_CANCELED) {
// The account picker dialog closed without selecting an account.
// Notify users that they must pick an account to proceed.
Toast.makeText(this, R.string.pick_account, Toast.LENGTH_SHORT).show();
}
}
// Handle the result from exceptions
...
}
You can now pass the account name held by mEmail to GoogleAuthUtil.getToken() (which is what the getUsername() method does), but because it performs network transactions, this method should not be called from the UI thread. The next lesson shows how to create an AsyncTask to get the auth token on a separate thread.
Once you have retrieved the account name for the user's Google account, you can call GoogleAuthUtil.getToken(), which returns the access token string required by Google API services.
Calling this method is generally a straightforward procedure, but you must be aware that:
This lesson shows how you can gracefully handle these concerns by performing authentication in an AsyncTask and providing users with the appropriate information and available actions during known exceptions.
Note: The code shown in this lesson, using GoogleAuthUtil.getToken(), is appropriate when you will be requesting the OAuth token from an Activity. However, if you need to request the OAuth token from a Service, then you should instead use getTokenWithNotification(). This method works the same as GoogleAuthUtil.getToken(), but if an error occurs, it also creates an appropriate notification that allows the user can recover from the error. The sample available for download above includes code showing how to use this method instead.
Extend AsyncTask to Get the Auth Token
The AsyncTask class provides a simple way to create a worker thread for jobs that should not run on your UI thread. This lesson focuses on how to create such a thread to get your auth token; for a more complete discussion about AsyncTask, read Keeping Your App Responsive and the AsyncTask class reference.
The doInBackground() method in your AsyncTask class is where you should call the GoogleAuthUtil.getToken() method. You can also use it to catch some of the generic exceptions that may occur during your network transactions.
For example, here's part of an AsyncTask subclass that calls GoogleAuthUtil.getToken():
public class GetUsernameTask extends AsyncTask{
Activity mActivity;
String mScope;
String mEmail;
GetUsernameTask(Activity activity, String name, String scope) {
this.mActivity = activity;
this.mScope = scope;
this.mEmail = name;
}
/**
* Executes the asynchronous job. This runs when you call execute()
* on the AsyncTask instance.
*/
@Override
protected Void doInBackground(Void... params) {
try {
String token = fetchToken();
if (token != null) {
// **Insert the good stuff here.**
// Use the token to access the user's Google data.
...
}
} catch (IOException e) {
// The fetchToken() method handles Google-specific exceptions,
// so this indicates something went wrong at a higher level.
// TIP: Check for network connectivity before starting the AsyncTask.
...
}
return null;
}
/**
* Gets an authentication token from Google and handles any
* GoogleAuthException that may occur.
*/
protected String fetchToken() throws IOException {
try {
**return GoogleAuthUtil.getToken(mActivity, mEmail, mScope);**
} catch (UserRecoverableAuthException userRecoverableException) {
// GooglePlayServices.apk is either old, disabled, or not present
// so we need to show the user some UI in the activity to recover.
mActivity.handleException(userRecoverableException);
} catch (GoogleAuthException fatalException) {
// Some other type of unrecoverable exception has occurred.
// Report and log the error as appropriate for your app.
...
}
return null;
}
...
}
In order to call GoogleAuthUtil.getToken(), you must provide the app Context, the account name retrieved from the account picker, and the scope for your auth token request. The above sample code (and the attached sample) defines these arguments with class members that the host activity passes to the AsyncTask class constructor. For more information about setting the scope, see the Specifying Scopes section below.
Once you have an AsyncTask subclass defined, you can instantiate and execute an instance after you get the user's account name from the account picker. For example, back in the Activity class you can do something like this:
String mEmail; // Received from newChooseAccountIntent(); passed to getToken()
"oauth2:https://www.googleapis.com/auth/userinfo.profile";
/**
* Attempts to retrieve the username.
* If the account is not yet known, invoke the picker. Once the account is known,
* start an instance of the AsyncTask to get the auth token and do work with it.
*/
private void getUsername() {
if (mEmail == null) {
pickUserAccount();
} else {
if (isDeviceOnline()) {
**new GetUsernameTask(HelloActivity.this, mEmail, SCOPE).execute();**
} else {
Toast.makeText(this, R.string.not_online, Toast.LENGTH_LONG).show();
}
}
}
For information about how to check whether the device is currently online (as performed by the isDeviceOnline() method above), see the attached sample app or the Connecting to the Network lesson.
The only part left is how you should handle the exceptions that may occur when you call GoogleAuthUtil.getToken().
Specifying scopes
The scope string is used to specify which Google services can be accessed by an app using the requested auth token. An auth token can be associated with multiple scopes.
When specifying the scopes in your auth token request, prefix the scope string with "oauth2:" followed by a list of one or more OAuth scope values. Use a space to separate each scope value in the list. To see a list of valid OAuth scope values for Google services, browse the OAuth 2.0 Playground.
Tip: Specify "oauth2:<scope>" for a single scope. Specify "oauth2:<scope1> <scope2> <scopeN>" for multiple scopes (using a space to separate each scope).
For example, to access the Google Books API, the scope is "oauth2:https://www.googleapis.com/auth/books". To add an additional scope, say for Google+ login, your code might look like this:
private final static String BOOKS_API_SCOPE
= "https://www.googleapis.com/auth/books";
private final static String GPLUS_SCOPE
= "https://www.googleapis.com/auth/plus.login";
private final static String mScopes
= "oauth2:" + BOOKS_API_SCOPE + " " + GPLUS_SCOPE;
String token = GoogleAuthUtil.getToken(mActivity, mEmail, mScopes);
Handle Exceptions
As shown in the fetchToken() method above, you must catch all occurrences of GoogleAuthException when you call GoogleAuthUtil.getToken().
To provide users information and a proper solution to issues that may occur while acquiring the auth token, it's important that you properly handle the following subclasses of GoogleAuthException:
For example, the fetchToken() method in the above sample code catches any occurrence of UserRecoverableAuthException and passes it back to the activity with a method called handleException(). Here's what that method in the activity may look like:
static final int REQUEST_CODE_RECOVER_FROM_PLAY_SERVICES_ERROR = 1001;
/**
* This method is a hook for background threads and async tasks that need to
* provide the user a response UI when an exception occurs.
*/
public void handleException(final Exception e) {
// Because this call comes from the AsyncTask, we must ensure that the following
// code instead executes on the UI thread.
runOnUiThread(new Runnable() {
@Override
public void run() {
if (e instanceof GooglePlayServicesAvailabilityException) {
// The Google Play services APK is old, disabled, or not present.
// Show a dialog created by Google Play services that allows
// the user to update the APK
int statusCode = ((GooglePlayServicesAvailabilityException)e)
.getConnectionStatusCode();
Dialog dialog = GooglePlayServicesUtil.getErrorDialog(statusCode,
HelloActivity.this,
REQUEST_CODE_RECOVER_FROM_PLAY_SERVICES_ERROR);
dialog.show();
} else if (e instanceof UserRecoverableAuthException) {
// Unable to authenticate, such as when the user has not yet granted
// the app access to the account, but the user can fix this.
// Forward the user to an activity in Google Play services.
Intent intent = ((UserRecoverableAuthException)e).getIntent();
startActivityForResult(intent,
REQUEST_CODE_RECOVER_FROM_PLAY_SERVICES_ERROR);
}
}
});
}
Notice that in both cases, the REQUEST_CODE_RECOVER_FROM_PLAY_SERVICES_ERROR request code is passed with the request to handle the exception with a dialog or activity. This way, when the user completes the appropriate action to resolve the exception, your onActivityResult() method receives an intent that includes this request code and you can try to acquire the auth token again.
For example, the following code is a complete implementation of onActivityResult() that handles results for both the REQUEST_CODE_PICK_ACCOUNT action and the REQUEST_CODE_RECOVER_FROM_PLAY_SERVICES_ERROR action, which occurs after the user completes one of the actions above to resolve an exception.
@Override
protected void onActivityResult(int requestCode, int resultCode, Intent data) {
if (requestCode == REQUEST_CODE_PICK_ACCOUNT) {
// Receiving a result from the AccountPicker
if (resultCode == RESULT_OK) {
mEmail = data.getStringExtra(AccountManager.KEY_ACCOUNT_NAME);
// With the account name acquired, go get the auth token
getUsername();
} else if (resultCode == RESULT_CANCELED) {
// The account picker dialog closed without selecting an account.
// Notify users that they must pick an account to proceed.
Toast.makeText(this, R.string.pick_account, Toast.LENGTH_SHORT).show();
}
} else if ((requestCode == REQUEST_CODE_RECOVER_FROM_AUTH_ERROR ||
requestCode == REQUEST_CODE_RECOVER_FROM_PLAY_SERVICES_ERROR)
&& resultCode == RESULT_OK) {
// Receiving a result that follows a GoogleAuthException, try auth again
getUsername();
}
}
|
__label__pos
| 0.940188 |
Reflecting User Names Instead of IDs - Key Value Pairs in Dropdowns
#1
When building a chart that gets filtered by different User IDs using a Dropdown, more often than not you’ll want to hide the underlying User IDs. Instead, you can show the corresponding user names so that dashboards aren’t exposing actual User IDs. Accomplishing this is very straightforward in Chartio utilizing Key Value pairs!
( ⌒o⌒)人(⌒-⌒ )v
Once you've created your Dropdown, click the gear and hit Edit Filter. Then just make sure to drag the column you want reflected on the dashboard on the top of the Dimensions box:
Now you’re good to go! :smiley:
#2
Thanks Joe, nice tip! :slight_smile:
In your example
• If I use {DROPDOWN} for filtering or in a chart Title, I will see the User ID.
• Is there a way I can access the corresponding First Name of the chosen User?
#3
Hi there!
The way this example is set up is that you’d see the First Name column displayed in the dropdown, while the User IDs are actually doing the filtering. In other words, the first column filters the chart, the second column displays values in the dropdown.
For a tad bit more explanation you can read our docs here:
Hopefully this helps - let me know if there’s any other questions!
#4
Thanks for the quick answer! :slight_smile:
My question was more related to the chart title of the chart where I do the filtering, not the filter itself. Let’s assume my filter is not multi select and looks like this:
Now, if I have chart which depends on that filter and want to use the {DROPDOWN} variable in the chart title, I would do something like this:
My (aesthetic) problem: I want the chart title to be City for the User Joe not City for the User 5672
Is there a way to archive that?
#5
Oh I see now - my mistake! Unfortunately we don’t support that yet - it’s a current feature request and I definitely see your point about how it could be useful. As of now, I’ve got to be the bearer of bad news, but I’ve added you as a watcher onto the ticket so that you can see any updates to it. Also, the more requesters, the more likely this will get developed!
|
__label__pos
| 0.806123 |
ScrambleTextPlugin
Scrambles the text in a TextField with randomized characters (uppercase by default, but you can define lowercase or a set of custom characters), refreshing new randomized characters at regular intervals while gradually revealing your new text over the course of the tween (left to right). Visually it looks like a computer decoding a string of text. Great for rollovers.
You can simply pass a string of text directly as the scrambleText and it'll use the defaults for revealing it, or you can customize the settings by using a generic object with any of the following properties:
• text : String - the text that should replace the existing text in the TextField (required).
• chars : String - the characters that should be randomly swapped in to the scrambled portion the text. You can use "upperCase", "lowerCase", "upperAndLowerCase", or a custom string of characters, like "XO" or "TMOWACB", or "jompaWB!^", etc. (Default: "upperCase")
• tweenLength : Boolean - if the length of the replacement text is different than the original text, the difference will be gradually tweened so that the length doesn't suddenly jump. For example, if the original text is 50 characters and the replacement text is 100 characters, during the tween the number of characters would gradually move from 50 to 100 instead of jumping immediatley to 100. However, if you'd prefer to have it immediately jump, set tweenLength to false. (Default: true)
• revealDelay : Number - if you'd like the reveal (unscrambling) of the new text to be delayed for a certain portion of the tween so that the scrambled text is entirely visible for a while, use revealDelay to define the time you'd like to elapse before the reveal begins. For example, if the tween's duration is 3 seconds but you'd like the scrambled text to remain entirely visible for first 1 second of the tween, you'd set revealDelay to 1. (Default: 0)
• speed : Number - controls how frequently the scrambled characters are refreshed. The default is 1 but you could slow things down by using 0.2 for example (or any number). (Default: 1)
• delimiter : String - by default, each character is replaced one-by-one, but if you'd prefer to have things revealed word-by-word, you could use a delimiter of " " (space). (Default: "")
Usage
import com.greensock.TweenLite;
import com.greensock.plugins.TweenPlugin;
import com.greensock.plugins.ScrambleTextPlugin;
TweenPlugin.activate([ScrambleTextPlugin]); //activation is permanent in the SWF, so this line only needs to be run once.
//use the defaults
TweenLite.to(yourTextField, 1, {scrambleText:"THIS IS NEW TEXT"});
//or customize things:
TweenLite.to(yourTextField, 1, {scrambleText:{text:"THIS IS NEW TEXT", chars:"XO", revealDelay:0.5, speed:0.3}});
Get GSAP
Version: 2.1.3 updated 2019-05-18
Core
Extras
Plugins
By using GreenSock code, you agree to the terms of use.
For an all-access pass to premium content
Join Club GreenSock
|
__label__pos
| 0.976789 |
13
$\begingroup$
I have two samples ($n \approx 70$ in both cases). The means differ by about twice the pooled std. dev. The resulting $T$ value is approximately 10. Whilst it's great to know that I have conclusively shown that the means are not the same, this seems to me to be driven by the large n. Looking at histograms of the data I certainly do not feel that such as small p-value is really representative of the data and, to be honest, don't really feel comfortable quoting it. I'm probably asking the wrong question. What I'm thinking is: ok, the means are different but does that really matter as the distributions share a significant overlap?
Is this where Bayesian testing is useful? If so, where is a good place to start, a bit of googling hasn't yielded anything useful but I may not by asking the right question. If this is the wrong thing does anyone have any suggestions? Or is this simply a point for discussion as opposed to quantitative analysis?
$\endgroup$
5
• $\begingroup$ I just want to add to all the other answers that your first statement is wrong: you have NOT conclusively shown that the means are different. A t-test's p-value is telling you whether the probability of observing your data or more extreme values of it is likely/unlikely given the null hypothesis (which for the t-test is $\mu_A=\mu_B$, i.e., $H_0$: { "The means are equal" }), which does not mean that the means are, in fact, different. Also, I assume that you also performed an F-test in order to test the equality of the variances before doing the pooled variance t-test, right? $\endgroup$
– Néstor
Jul 6, 2012 at 13:56
• $\begingroup$ Your question is very good since it brings up an important distinction and it shows that you're actually thinking about your data rather than looking for some stars on a statistical output and declaring yourself done. As several answers point out, statistical significance is not the same as meaningful. And when you think about it, they can't be: how would a statistical procedure know that a statistically significant mean difference of 0.01 means something in Field A, but is meaninglessly small in Field B? $\endgroup$
– Wayne
Jul 6, 2012 at 14:32
• $\begingroup$ Fair enough, the langauge wasn't spot on but when the p-value is like the ones i'm getting I tend not to be too fussy about the words. I did do an F-test (and a QQ-plot). Its close enough for jazz, as they say. $\endgroup$
– Bowler
Jul 6, 2012 at 14:34
• 1
$\begingroup$ FWIW, if your means are 2 SD's apart, that seems like a pretty big difference to me. It will depend on your field, of course, but that's a difference people would easily notice w/ the naked eye (eg, the mean heights of US men & women age 20-29 differ by about 1.5 SD's.) IMO, if distributions don't overlap at all, you don't really need to do any data analyses; at a minimum, w/ $N$ as small as 6, $p$ will be <.05 if the distributions do not overlap. $\endgroup$ Sep 4, 2012 at 20:07
• $\begingroup$ I agree the difference is big although utterly irreverent as it turned out. $\endgroup$
– Bowler
Sep 10, 2012 at 17:23
4 Answers 4
12
$\begingroup$
Let $\mu_1$ denote the mean of the first population and $\mu_2$ denote the mean of the second population. It seems that you've used a two-sample $t$-test to test whether $\mu_1=\mu_2$. The significant result implies that $\mu_1\neq\mu_2$, but the difference seems to be to small to matter for your application.
What've you encountered is the fact that statistically significant often can be something else than significant for the application. While the difference may be statistically significant it may still not be meaningful.
Bayesian testing won't solve that problem - you'll still just conclude that a difference exists.
There might however be a way out. For instance, for a one-sided hypothesis you could decide that if $\mu_1$ is $\Delta$ units greater than $\mu_2$ then that would be a meaningful difference that is large enough to matter for your application.
In that case you would test whether $\mu_1-\mu_2\leq \Delta$ instead of whether $\mu_1-\mu_2=0$. The $t$-statistic (assuming equal variances) would in that case be $$ T=\frac{\bar{x}_1-\bar{x}_2-\Delta}{s_p\sqrt{1/n_1+1/n_2}}$$ where $s_p$ is the pooled standard deviation estimate. Under the null hypothesis, this statistic is $t$-distributed with $n_1+n_2-2$ degrees of freedom.
An easy way of carrying out this test is to subtract $\Delta$ from your observations from the first population and then carry out a regular one-sided two-sample $t$-test.
$\endgroup$
8
$\begingroup$
It is valid to compare several approaches, but not with the aim of choosing the one that favours our desires/believes.
My answer to your question is: It is possible that two distributions overlap while they have different means, which seems to be your case (but we would need to see your data and context in order to provide a more precise answer).
I am going illustrate this using a couple of approaches for comparing normal means.
1. $t$-test
Consider two simulated samples of size $70$ from a $N(10,1)$ and $N(12,1)$, then the $t$-value is approximately $10$ as in your case (See the R code below).
rm(list=ls())
# Simulated data
dat1 = rnorm(70,10,1)
dat2 = rnorm(70,12,1)
set.seed(77)
# Smoothed densities
plot(density(dat1),ylim=c(0,0.5),xlim=c(6,16))
points(density(dat2),type="l",col="red")
# Normality tests
shapiro.test(dat1)
shapiro.test(dat2)
# t test
t.test(dat1,dat2)
However the densities show a considerable overlapping. But remember that you are testing a hypothesis about the means, which in this case are clearly different but, due to the value of $\sigma$, there is an overlap of the densities.
enter image description here
2. Profile likelihood of $\mu$
For a definition of the Profile likelihood and likelihood please see 1 and 2.
In this case, the profile likelihood of $\mu$ of a sample of size $n$ and sample mean $\bar{x}$ is simply $R_p(\mu)=\exp\left[-n(\bar{x}-\mu)^2\right]$.
For the simulated data, these can be calculated in R as follows
# Profile likelihood of mu
Rp1 = function(mu){
n = length(dat1)
md = mean(dat1)
return( exp(-n*(md-mu)^2) )
}
Rp2 = function(mu){
n = length(dat2)
md = mean(dat2)
return( exp(-n*(md-mu)^2) )
}
vec=seq(9.5,12.5,0.001)
rvec1 = lapply(vec,Rp1)
rvec2 = lapply(vec,Rp2)
# Plot of the profile likelihood of mu1 and mu2
plot(vec,rvec1,type="l")
points(vec,rvec2,type="l",col="red")
As you can see, the likelihood intervals of $\mu_1$ and $\mu_2$ do not overlap at any reasonable level.
3. Posterior of $\mu$ using Jeffreys prior
Consider the Jeffreys prior of $(\mu,\sigma)$
$$\pi(\mu,\sigma)\propto \dfrac{1}{\sigma^2}$$
The posterior of $\mu$ for each data set can be calculated as follows
# Posterior of mu
library(mcmc)
lp1 = function(par){
n=length(dat1)
if(par[2]>0) return(sum(log(dnorm((dat1-par[1])/par[2])))- (n+2)*log(par[2]))
else return(-Inf)
}
lp2 = function(par){
n=length(dat2)
if(par[2]>0) return(sum(log(dnorm((dat2-par[1])/par[2])))- (n+2)*log(par[2]))
else return(-Inf)
}
NMH = 35000
mup1 = metrop(lp1, scale = 0.25, initial = c(10,1), nbatch = NMH)$batch[,1][seq(5000,NMH,25)]
mup2 = metrop(lp2, scale = 0.25, initial = c(12,1), nbatch = NMH)$batch[,1][seq(5000,NMH,25)]
# Smoothed posterior densities
plot(density(mup1),ylim=c(0,4),xlim=c(9,13))
points(density(mup2),type="l",col="red")
Again, the credibility intervals for the means do not overlap at any reasonable level.
In conclusion, you can see how all these approaches indicate a significant difference of means (which is the main interest), despite the overlapping of the distributions.
$\star$ A different comparison approach
Judging by your concerns about the overlapping of the densities, another quantity of interest might be ${\mathbb P}(X<Y)$, the probability that the first random variable is smaller than the second variable. This quantity can be estimated nonparametrically as in this answer. Note that there are no distributional assumptions here. For the simulated data, this estimator is $0.8823825$, showing some overlap in this sense, while the means are significantly different. Please, have a look to the R code shown below.
# Optimal bandwidth
h = function(x){
n = length(x)
return((4*sqrt(var(x))^5/(3*n))^(1/5))
}
# Kernel estimators of the density and the distribution
kg = function(x,data){
hb = h(data)
k = r = length(x)
for(i in 1:k) r[i] = mean(dnorm((x[i]-data)/hb))/hb
return(r )
}
KG = function(x,data){
hb = h(data)
k = r = length(x)
for(i in 1:k) r[i] = mean(pnorm((x[i]-data)/hb))
return(r )
}
# Baklizi and Eidous (2006) estimator
nonpest = function(dat1B,dat2B){
return( as.numeric(integrate(function(x) KG(x,dat1B)*kg(x,dat2B),-Inf,Inf)$value))
}
nonpest(dat1,dat2)
I hope this helps.
$\endgroup$
1
• 2
$\begingroup$ (+1) Thanks for a really useful reply on baysian methods. Also the P(X<Y) link answers another issue i've been wondering about in the same analysis. $\endgroup$
– Bowler
Jul 11, 2012 at 15:34
7
$\begingroup$
Answering the Right Question
ok, the means are different but does that really matter as the distributions share a significant overlap?
Any test that asks whether group means are different will, when it works right, tell you whether means are different. It will not tell you that distributions of the data itself are different, since that is a different question. That question certainly depends on the whether the means are different but also on many other things that might be (incompletely) summarised as variance, skew, and kurtosis.
You correctly note that certainty about where the means are depends on the amount of data you have to estimate them, so having more data will allow you spot mean differences in more nearly overlapping distributions. But you wonder whether
such as small p-value is really representative of the data
Indeed it is not, at least not directly. And this is by design. It is representative (approximately speaking) of the certainty you can have that a particular pair of sample statistics of the data (not the data itself) are different.
If you wanted to represent the data itself in a more formal way than simply showing the histograms and testing moments of it, then perhaps a pair of density plots might be helpful. It rather depends really on the argument you are using the test to make.
A Bayesian Version
In all these respects, Bayesian difference 'tests' and T-tests will behave the same way because they are trying to do the same thing. The only advantages I can think of for using a Bayesian approach are: a) that it will be easy to do the test allowing possibly different variances for each group, and b) that it will focus on estimating the probable size of the difference in means rather than finding a p-value for some test of difference. That said, these advantages are pretty minor: e.g. in b) you could always report a confidence interval for the difference.
The quote marks above over 'tests' are deliberate. It is certainly possible to do Bayesian hypothesis testing, and people do. However, I would suggest that the comparative advantage of the approach is in the focus on building a plausible model of the data and communicating its important aspects with appropriate levels of uncertainty.
$\endgroup$
3
$\begingroup$
First of all, this is not a problem to pin on frequentist testing. The problem lies in the null hypothesis that the means are exactly equal. Therefore if the populations differ in means by any small amount and the sample size is large enough the chance to reject this null hypothesis is very high. Therefore the p-value for your test turned out to be very small. The culprit is the choice of the null hypothesis. Pick d>0 and take the null hypothesis to be that the means differ by less than d in absolute value. You pick d so that the real difference has to be satisfactorily large to reject. Your problem goes away. Bayesian testing does not solve your problem if you insist on a null hypothesis of exact equality of means.
$\endgroup$
1
• $\begingroup$ I was writing my answer at the same time as the other two. $\endgroup$ Jul 6, 2012 at 10:27
Your Answer
By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy
Not the answer you're looking for? Browse other questions tagged or ask your own question.
|
__label__pos
| 0.857944 |
Variables and Datatypes in JavaScript
Datatypes in JavaScript
There are majorly two types of languages. First, one is Statically typed language where each variable and expression type is already known at compile time. Once a variable is declared to be of a certain data type, it cannot hold values of other data types.Example: C, C++, Java.
filter_none
edit
close
play_arrow
link
brightness_4
code
// Java(Statically typed)
int x = 5 // variable x is of type int and it will not store any other type.
string y = 'abc' // type string and will only accept string values
chevron_right
Other, Dynamically typed languages: These languages can receive different data types over time. For example- Ruby, Python, JavaScript etc.
filter_none
edit
close
play_arrow
link
brightness_4
code
// Javascript(Dynamically typed)
var x = 5; // can store an integer
var name = 'string'; // can also store a string.
chevron_right
JavaScript is dynamically typed (also called loosely typed) scripting language. That is, in javascript variables can receive different data types over time. Datatypes are basically typed of data that can be used and manipulated in a program.
The latest ECMAScript(ES6) standard defines seven data types: Out of which six data types are Primitive(predefined).
• Numbers: 5, 6.5, 7 etc.
• String: “Hello GeeksforGeeks” etc.
• Boolean: Represent a logical entity and can have two values: true or false.
• Null: This type has only one value : null.
• Undefined: A variable that has not been assigned a value is undefined.
• Object: It is the most important data-type and forms the building blocks for modern JavaScript. We will learn about these data types in details in further articles.
Variables in JavaScript:
Variables in JavaScript are containers which hold reusable data. It is the basic unit of storage in a program.
• The value stored in a variable can be changed during program execution.
• A variable is only a name given to a memory location, all the operations done on the variable effects that memory location.
• In JavaScript, all the variables must be declared before they can be used.
Before ES2015, JavaScript variables were solely declared using the var keyword followed by the name of the variable and semi-colon. Below is the syntax to create variables in JavaScript:
var var_name;
var x;
The var_name is the name of the variable which should be defined by the user and should be unique. These type of names are also known as identifiers. The rules for creating an identifier in JavaScript are, the name of the identifier should not be any pre-defined word(known as keywords), the first character must be a letter, an underscore (_), or a dollar sign ($). Subsequent characters may be any letter or digit or an underscore or dollar sign.
Notice in the above code sample, we didn’t assign any values to the variables.We are only saying they exist.If you were to look at the value of each variable in the above code sample,it would be undefined.
We can initialize the variables either at the time of declaration or also later when we want to use them. Below are some examples of declaring and initializing variables in JavaScript:
// declaring single variable
var name;
// declaring multiple variables
var name, title, num;
// initializng variables
var name = "Harsh";
name = "Rakesh";
Javascript is also known as untyped language. This means, that once a variable is created in javascript using the keyword var, we can store any type of value in this variable supported by javascript. Below is the example for this:
// creating variable to store a number
var num = 5;
// store string in the variable num
num = "GeeksforGeeks";
The above example executes well without any error in JavaScript unlike other programming languages.
Variables in JavaScript can also evaluate simple mathematical expressions and assume its value.
// storing a mathematical expression
var x = 5 + 10 + 1;
console.log(x); // 16
After ES2015,we now have two new variable containers : let and const. Now we shall look at both of them one by one. The variable type Let shares lots of similarities with var but unlike var it has scope constraints. To know more about them visit let vs var. Let’s make use of let variable:
// let variable
let x; // undefined
let name = 'Mukul';
// can also declare multiple vlaues
let a=1,b=2,c=3;
// assignment
let a = 3;
a = 4; // works same as var.
Const is another variable type assigned to data whose value cannot and will not change throught the script.
// const variable
const name = 'Mukul';
name = 'Mayank'; // will give Assignment to constant variable error.
Variable Scope in Javascript
Scope of a variable is the part of the program from where the variable may directly be accessible.
In JavaScript, there are two types of scopes:
1. Global Scope – Scope outside the outermost function attached to Window.
2. Local Scope – Inside the function being executed.
Let’s look at the code below. We have a global variable defined in first line in global scope. Then we have a local variable defined inside the function fun().
filter_none
edit
close
play_arrow
link
brightness_4
code
let globalVar = "This is a global variable";
function fun() {
let localVar = "This is a local variable";
console.log(globalVar);
console.log(localVar);
}
fun();
chevron_right
Output:
When we execute the function fun(), the output shows that both global as well as local variables are accessible inside the function as we are able to console.log them. This shows that inside the function we have access to both global variables (declared outside the function) and local variables (declared inside the function).Let’s move the console.log statements outside the function and put them just after calling the function.
filter_none
edit
close
play_arrow
link
brightness_4
code
let globalVar = "This is a global variable";
function fun() {
let localVar = "This is a local variable"
}
fun();
console.log(globalVar);
console.log(localVar);
chevron_right
Output:
We are still able to see the value of the global variable, but for local variable console.log throws an error. This is because now the console.log statements are present in global scope where they have access to global variables but cannot access the local variables.
Also, any variable defined in a function with the same name as a global variable takes precedence over the global variable, shadowing it.To understand variable scopes in details in JavaScript, please refer to the article on understanding variable scopes in Javascript.
My Personal Notes arrow_drop_up
Check out this Author's contributed articles.
If you like GeeksforGeeks and would like to contribute, you can also write an article using contribute.geeksforgeeks.org or mail your article to [email protected]. See your article appearing on the GeeksforGeeks main page and help other Geeks.
Please Improve this article if you find anything incorrect by clicking on the "Improve Article" button below.
Improved By : immukul
Article Tags :
25
Please write to us at [email protected] to report any issue with the above content.
|
__label__pos
| 0.636439 |
Call Toll Free 1.877.60.OWNER
Sign Up | Already Signed Up? Login
Adding OwnerRez widgets to WordPress
For an overview on OwnerRez Widgets, widget setup, etc. look at the Setting up widgets for inquiries, bookings and availability.
There are two main ways to add OwnerRez Widgets to your WordPress site -- shortcodes via Shortcoder or page builder plugins via HTML widgets. I'll cover both here, and two common page builders (Beaver Builder and SiteOrigin Page Builder). If you have questions about adding OwnerRez Widgets via a different method, let us know.
Note: these guides are oriented around setup of widgets for a couple of properties. If you've got many properties and want a parameterized setup that is possible but a bit more complex. Contact us and we'll walk you through that process.
Shortcodes
These steps assume you've already created a page where you want to embed OwnerRez widgets.
1. Install the Shortcoder plugin if it's not currently installed.
2. Go to Settings > Shortcoder to create a new shortcode:
3. Name the shortcode. Note the "Your shortcode is" reference to the right of the Title field -- you'll use this to embed the shortcode later.
4. Copy the widget code from the OwnerRez widget and paste it in to the Content box.
5. Create the Shortcode
6. Now go to the page where you want to add the widget:
7. Enter the "Your shortcode is" reference from the Create shortcode operation
8. Save/Publish the page and view it:
Beaver Builder
These steps assume you've already got the Beaver Builder plugin installed, and have created a page where you want to embed OwnerRez widgets.
1. Open Beaver Builder to the page you want to edit.
2. Click Add Content in the top right:
3. Drag an HTML module from the Basic Modules section:
4. Copy the widget code from the OwnerRez Widget and paste it into the HTML Settings box:
5. Save the HTML settings
6. Save/Publish the page and view it:
SiteOrigin Page Builder
These steps assume you've already got the SiteOrigin Page Builder plugin installed, and have created a page where you want to embed OwnerRez widgets.
1. Open SiteOrigin Editor to the page you want to edit.
2. Click Add Widget to add a new widget:
3. Select the Text widget and add it:
4. Hover over the Text widget and Edit it:
5. Copy the widget code from the OwnerRez Widget and paste it into the Content box:
6. Save the Text widget
7. Save/Publish the page and view it:
|
__label__pos
| 0.92681 |
In this post I'll write about how to reduce a bit of boilerplate code when writing tests in Spring Framework in a situation where we don't want to bring up the whole Spring context in order to test if only a subset of components are working together correctly.
Our goal will be to have Spring load only the components that we are interested in testing, mock out everything else and do it in a simple and readable way.
Let's start with an example. Our example application has a UserService with a registerNewUser method. Whenever a new user is added to the system, UserService's registerNewUser method is called. This method adds the user to the system, hashes user's password, stores user data to the database, updates application's user statistics and sends out confirmation e-mail. To accomplish these tasks, UserService depends on PasswordEncoder, UserRepository, StatisticsService and EmailService.
We want to write an integration test that will verify that when registerNewUser is called, the user is indeed stored correctly to the database and user password is hashed. To do this, we want actual UserService implementation brought up in our test Spring context, along with PasswordEncoder and persistence related components and have everything else mocked out (side note: I'm using the term mock here, but since we're not verifying interactions with mock objects in the example tests, some testing vocabularies would refer to these kind of test objects as dummy objects).
To mock out the beans we'll be using Mockito library. Our JUnit test will be run with SpringJUnit4ClassRunner. Demo application's code is available at GitHub.
Here's the test class:
@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration(loader=AnnotationConfigContextLoader.class)
public class UserServiceImplIntegrationTest {
@Autowired
UserService userService;
@Autowired
UserRepository userRepository;
@Transactional
@Test
public void testRegisterNewUser() {
final String userName = "someone";
final String password = "somepass";
userService.registerNewUser(new User("[email protected]", userName, password));
User user = userRepository.findByUserName(userName);
Assert.assertNotNull(user);
Assert.assertTrue(SCryptUtil.check(password, user.getPassword()));
}
@Configuration
@Import(TestAppConfig.class)
static class ContextConfiguration {
@Bean
public UserService userService() {
return new UserServiceImpl();
}
@Bean
public PasswordEncoder passwordEncoder() {
return new SCryptPasswordEncoder();
}
@Bean
public EmailService emailService() {
return Mockito.mock(EmailService.class);
}
@Bean
public StatisticsService statisticsService() {
return Mockito.mock(StatisticsService.class);
}
}
}
Let's examine the code:
With @ContextConfiguration(loader=AnnotationConfigContextLoader.class) we instruct Spring to load test context configuration from the annotated class. We have defined the configuration class as a static inner class of our test class (ContextConfiguration). We import common configuration that will be shared among different integration tests form TestAppConfig.class. In the ContextConfiguration we define the beans whose actual implementation will participate in the integration test (UserServiceImpl and SCryptPasswordEncoder) and we mock out their dependencies (EmailService, StatisticsService). The inspiration for this pattern of writing integration tests that combine actual and mocked beans originate from great answers found in this stack overflow question: Injecting Mockito mocks into a Spring bean.
The idea is to keep common configuration that we plan to reuse between various tests in TestAppConfig.class (in our example, TestAppConfig contains test database, JPA and Spring-data configuration) and add keep per test specific configuration in an inner class of the test class. We also manually define beans that we need to mock out in order for Spring to satisfy all the dependencies of the beans we plan to test.
This works just fine, expect in certain more complex integration tests, there will be a lot of beans to be mocked out, and we have to write lots of boilerplate code to define those. For example, to mock out EmailService class we write:
@Bean
public EmailService emailService() {
return Mockito.mock(EmailService.class);
}
Characters "EmailService" are typed three times (Type definition, method name and as a parameter to mock method) and we hat to write 4 lines of code. If there's 10 beans to mock out, that's a lot of typing! Is there a way to make things more concise? It turns out there is, using the ImportBeanDefinitionRegistrar. We will create an annotation that we'll use to specify which classes we plan to mock out, and then implement ImportBeanDefinitionRegistrar that will look for the annotation and register bean definitions we specified as a mocked beans.
Here's the custom annotation:
@Import(MockImportRegistar.class)
@Target(ElementType.TYPE)
@Retention(RetentionPolicy.RUNTIME)
@Documented
public @interface MockedBeans {
/**
* Types that need to be mocked.
* @return
*/
Class<?>[] value() default {};
}
Here's the code for ImportBeanDefinitionRegistrar implementation (note that we referenced MockImportRegistar with @Import in MockedBean annotation above):
public class MockImportRegistar implements ImportBeanDefinitionRegistrar {
@Override
public void registerBeanDefinitions(AnnotationMetadata importingClassMetadata, BeanDefinitionRegistry registry) {
if (importingClassMetadata.isAnnotated(MockedBeans.class.getName())) {
Object mockedBeanTypesValue = importingClassMetadata.getAnnotationAttributes(MockedBeans.class.getName()).get("value");
if (mockedBeanTypesValue instanceof Class<?>[]) {
Class<?>[] mockedBeanTypes = (Class<?>[]) mockedBeanTypesValue;
if (mockedBeanTypes != null && mockedBeanTypes.length > 0) {
mockSpecifiedBeanTypes(registry, mockedBeanTypes);
}
}
}
}
private void mockSpecifiedBeanTypes(BeanDefinitionRegistry registry, Class<?>[] mockedBeanTypes) {
for (Class<?> mockedType : mockedBeanTypes) {
registry.registerBeanDefinition("mock" + mockedType.getSimpleName(),
BeanDefinitionBuilder
.rootBeanDefinition(Mockito.class)
.setFactoryMethod("mock")
.addConstructorArgValue(mockedType.getName())
.getBeanDefinition()
);
}
}
}
Now that have defined the annotation and the registrar we can rewrite the ContextConfiguration like this:
@Configuration
@Import(TestAppConfig.class)
@MockedBeans({EmailService.class, StatisticsService.class})
static class ContextConfiguration {
@Bean
public UserService userService() {
return new UserServiceImpl();
}
@Bean
public PasswordEncoder passwordEncoder() {
return new SCryptPasswordEncoder();
}
}
Beans that we need to be mocked are now defined using our @MockedBeans annotation. I find this approach more concise, simpler and easier to maintain, especially for more complex integration tests.
|
__label__pos
| 0.770427 |
cryptoclient.cpp [plain text]
/*
* Copyright (c) 2000-2001 Apple Computer, Inc. All Rights Reserved.
*
* The contents of this file constitute Original Code as defined in and are
* subject to the Apple Public Source License Version 1.2 (the 'License').
* You may not use this file except in compliance with the License. Please obtain
* a copy of the License at http://www.apple.com/publicsource and read it before
* using this file.
*
* This Original Code and all software distributed under the License are
* distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESS
* OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES, INCLUDING WITHOUT
* LIMITATION, ANY WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR
* PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT. Please see the License for the
* specific language governing rights and limitations under the License.
*/
//
// cryptoclient - client interface to CSSM CSP encryption/decryption operations
//
#include <security_cdsa_client/cryptoclient.h>
using namespace CssmClient;
Crypt::Crypt(const CSP &csp, CSSM_ALGORITHMS alg)
: Context(csp, alg), mMode(CSSM_ALGMODE_NONE), mInitVector(NULL),
mPadding(CSSM_PADDING_NONE)
{
}
void Crypt::key(const Key &key)
{
mKey = key;
set(CSSM_ATTRIBUTE_KEY, static_cast<const CssmKey &>(key));
}
void
Crypt::activate()
{
StLock<Mutex> _(mActivateMutex);
if (!mActive)
{
// Key is required unless we have a NULL algorithm (cleartext wrap/unwrap),
// in which case we'll make a symmetric context (it shouldn't matter then).
if (!mKey && mAlgorithm != CSSM_ALGID_NONE)
CssmError::throwMe(CSSMERR_CSP_MISSING_ATTR_KEY);
if (!mKey || mKey->keyClass() == CSSM_KEYCLASS_SESSION_KEY)
{ // symmetric key
check(CSSM_CSP_CreateSymmetricContext(attachment()->handle(), mAlgorithm,
mMode, neededCred(), mKey, mInitVector, mPadding, NULL,
&mHandle));
}
else
{
check(CSSM_CSP_CreateAsymmetricContext(attachment()->handle(), mAlgorithm,
neededCred(), mKey, mPadding, &mHandle));
//@@@ stick mode and initVector explicitly into the context?
}
mActive = true;
}
}
//
// Manage encryption contexts
//
CSSM_SIZE
Encrypt::encrypt(const CssmData *in, uint32 inCount,
CssmData *out, uint32 outCount, CssmData &remData)
{
unstaged();
CSSM_SIZE total;
check(CSSM_EncryptData(handle(), in, inCount, out, outCount, &total, &remData));
return total;
}
void
Encrypt::init()
{
check(CSSM_EncryptDataInit(handle()));
mStaged = true;
}
CSSM_SIZE
Encrypt::encrypt(const CssmData *in, uint32 inCount,
CssmData *out, uint32 outCount)
{
staged();
CSSM_SIZE total;
check(CSSM_EncryptDataUpdate(handle(), in, inCount, out, outCount, &total));
return total;
}
void
Encrypt::final(CssmData &remData)
{
staged();
check(CSSM_EncryptDataFinal(handle(), &remData));
mStaged = false;
}
//
// Manage Decryption contexts
//
CSSM_SIZE
Decrypt::decrypt(const CssmData *in, uint32 inCount,
CssmData *out, uint32 outCount, CssmData &remData)
{
unstaged();
CSSM_SIZE total;
check(CSSM_DecryptData(handle(), in, inCount, out, outCount, &total, &remData));
return total;
}
void
Decrypt::init()
{
check(CSSM_DecryptDataInit(handle()));
mStaged = true;
}
CSSM_SIZE
Decrypt::decrypt(const CssmData *in, uint32 inCount,
CssmData *out, uint32 outCount)
{
staged();
CSSM_SIZE total;
check(CSSM_DecryptDataUpdate(handle(), in, inCount, out, outCount, &total));
return total;
}
void
Decrypt::final(CssmData &remData)
{
staged();
check(CSSM_DecryptDataFinal(handle(), &remData));
mStaged = false;
}
|
__label__pos
| 0.93196 |
Can a bad RAM stick stop a computer from starting up?
Hello,
Can a bad RAM stick stop a computer from starting up? When I power up all the fans and driver run.
Best Buy checked the power supply and it is ok.
Yellow light below power button comes on for a couple minutes. no beeps though. Monitor says power saving mode and goes blank.
Checked out hard drive in a box on the lap top it is good all the files are there. It acts as though it cant find the system bios to start up the OS.
Can a bad ram stick cause this or can the processor find what it needs to run directly from the hard drive?
Answered! View the answer I have this problem too
Is this a good question?
Score 0
Comments:
Please give us the last three figures of your serial number, Thanks.
by mayer
Add a comment
2 Answers
Chosen Solution
MacBook Air's have soldered on DRAM are you sure you have a MacBook Air?
The MacBook Air's do have replaceable HD or SSD units (depending on the model). But given your symptoms it sounds like you have a battery or EFI firmware issue.
It would be helpful if you could supply us the last four digits of your serial number so we can correctly identify your model as well as what OS-X you are running.
Was this answer helpful?
Score 1
Add a comment
Yes. Best Buy should be able to run AHT on it. If they can't (don't know why they didn't) then you may have logic board problems. Each machine goes through a POST (power on self test) that's when the EFI (mac for BIOS) checks and reports hardware errors (though sometimes the is no error code for the problem e.g. too much current draw).
Disconnect all peripherals before attempting to boot.
If this answer is acceptable please remember to return and mark it.
Was this answer helpful?
Score 1
Add a comment
Add your answer
lannister will be eternally grateful.
View Statistics:
Past 24 Hours: 1
Past 7 Days: 3
Past 30 Days: 8
All Time: 227
|
__label__pos
| 0.969909 |
FileStream.cpp [plain text]
/*
* Copyright (C) 2010 Google Inc. 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 Google Inc. 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
* OWNER 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.
*/
#include "config.h"
#if ENABLE(BLOB)
#include "FileStream.h"
#include "PlatformString.h"
namespace WebCore {
FileStream::FileStream()
: m_handle(invalidPlatformFileHandle)
, m_bytesProcessed(0)
, m_totalBytesToRead(0)
{
}
FileStream::~FileStream()
{
ASSERT(!isHandleValid(m_handle));
}
// FIXME: To be removed when we switch to using BlobData.
void FileStream::start()
{
}
void FileStream::stop()
{
close();
}
long long FileStream::getSize(const String& path, double expectedModificationTime)
{
// Check the modification time for the possible file change.
time_t modificationTime;
if (!getFileModificationTime(path, modificationTime))
return -1;
if (expectedModificationTime) {
if (static_cast<time_t>(expectedModificationTime) != modificationTime)
return -1;
}
// Now get the file size.
long long length;
if (!getFileSize(path, length))
return -1;
return length;
}
bool FileStream::openForRead(const String& path, long long offset, long long length)
{
if (isHandleValid(m_handle))
return true;
// Open the file.
m_handle = openFile(path, OpenForRead);
if (!isHandleValid(m_handle))
return false;
// Jump to the beginning position if the file has been sliced.
if (offset > 0) {
if (seekFile(m_handle, offset, SeekFromBeginning) < 0)
return false;
}
m_totalBytesToRead = length;
m_bytesProcessed = 0;
return true;
}
bool FileStream::openForWrite(const String&)
{
// FIXME: to be implemented.
return false;
}
void FileStream::close()
{
if (isHandleValid(m_handle)) {
closeFile(m_handle);
m_handle = invalidPlatformFileHandle;
}
}
int FileStream::read(char* buffer, int bufferSize)
{
if (!isHandleValid(m_handle))
return -1;
long long remaining = m_totalBytesToRead - m_bytesProcessed;
int bytesToRead = (remaining < bufferSize) ? static_cast<int>(remaining) : bufferSize;
int bytesRead = 0;
if (bytesToRead > 0)
bytesRead = readFromFile(m_handle, buffer, bytesToRead);
if (bytesRead < 0)
return -1;
if (bytesRead > 0)
m_bytesProcessed += bytesRead;
return bytesRead;
}
int FileStream::write(const KURL&, long long, int)
{
// FIXME: to be implemented.
return -1;
}
bool FileStream::truncate(long long)
{
// FIXME: to be implemented.
return false;
}
} // namespace WebCore
#endif // ENABLE(BLOB)
|
__label__pos
| 0.988695 |
Main Content
intersect
Set intersection of two arrays
Description
example
C = intersect(A,B) returns the data common to both A and B, with no repetitions. C is in sorted order.
• If A and B are tables or timetables, then intersect returns the set of rows common to both tables. For timetables, intersect takes row times into account to determine equality, and sorts the output timetable C by row times.
example
C = intersect(A,B,setOrder) returns C in a specific order. setOrder can be 'sorted' or 'stable'.
C = intersect(A,B,___,'rows') and C = intersect(A,B,'rows',___) treat each row of A and each row of B as single entities and return the rows common to both A and B, with no repetitions. You must specify A and B and optionally can specify setOrder.
The 'rows' option does not support cell arrays, unless one of the inputs is either a categorical array or a datetime array.
example
[C,ia,ib] = intersect(___) also returns index vectors ia and ib using any of the previous syntaxes.
• Generally, C = A(ia) and C = B(ib).
• If the 'rows' option is specified, then C = A(ia,:) and C = B(ib,:).
• If A and B are tables or timetables, then C = A(ia,:) and C = B(ib,:).
example
[C,ia,ib] = intersect(A,B,'legacy') and [C,ia,ib] = intersect(A,B,'rows','legacy') preserve the behavior of the intersect function from R2012b and prior releases.
The 'legacy' option does not support categorical arrays, datetime arrays, duration arrays, tables, or timetables.
Examples
collapse all
Create two vectors that have some values in common.
A = [7 1 7 7 4];
B = [7 0 4 4 0];
Find the values common to both A and B.
C = intersect(A,B)
C = 1×2
4 7
Create two tables with rows in common.
A = table([1:5]',categorical({'A';'B';'C';'D';'E'}),logical([0;1;0;1;0]))
A=5×3 table
Var1 Var2 Var3
____ ____ _____
1 A false
2 B true
3 C false
4 D true
5 E false
B = table([1:2:10]',categorical({'A';'C';'E';'G';'I'}),logical(zeros(5,1)))
B=5×3 table
Var1 Var2 Var3
____ ____ _____
1 A false
3 C false
5 E false
7 G false
9 I false
Find the rows common to both A and B.
C = intersect(A,B)
C=3×3 table
Var1 Var2 Var3
____ ____ _____
1 A false
3 C false
5 E false
Create two vectors with values in common.
A = [7 1 7 7 4];
B = [7 0 4 4 0];
Find the values common to both A and B, as well as the index vectors ia and ib, such that C = A(ia) and C = B(ib).
[C,ia,ib] = intersect(A,B)
C = 1×2
4 7
ia = 2×1
5
1
ib = 2×1
3
1
Create a table, A, of gender, age, and height for five people.
A = table(categorical({'M';'M';'F';'M';'F'}),...
[27;52;31;46;35],[74;68;64;61;64],...
'VariableNames',{'Gender' 'Age' 'Height'},...
'RowNames',{'Ted' 'Fred' 'Betty' 'Bob' 'Judy'})
A=5×3 table
Gender Age Height
______ ___ ______
Ted M 27 74
Fred M 52 68
Betty F 31 64
Bob M 46 61
Judy F 35 64
Create a table, B, with rows in common with A.
B = table(categorical({'F';'M';'F';'F'}),...
[31;47;35;23],[64;68;62;58],...
'VariableNames',{'Gender' 'Age' 'Height'},...
'RowNames',{'Meg' 'Joe' 'Beth' 'Amy'})
B=4×3 table
Gender Age Height
______ ___ ______
Meg F 31 64
Joe M 47 68
Beth F 35 62
Amy F 23 58
Find the rows common to both A and B, as well as the index vectors ia and ib, such that C = A(ia,:) and C = B(ib,:).
[C,ia,ib] = intersect(A,B)
C=1×3 table
Gender Age Height
______ ___ ______
Betty F 31 64
ia = 3
ib = 1
Two rows that have the same values, but different names, are considered equal. Therefore, we discover that Betty, A(3,:), and Meg, B(1,:) have the same gender, age, and height.
Create two matrices with rows in common.
A = [2 2 2; 0 0 1; 1 2 3; 1 1 1];
B = [1 2 3; 2 2 2; 2 2 0];
Find the rows common to both A and B as well as the index vectors ia and ib, such that C = A(ia,:) and C = B(ib,:).
[C,ia,ib] = intersect(A,B,'rows')
C = 2×3
1 2 3
2 2 2
ia = 2×1
3
1
ib = 2×1
1
2
A and B do not need to have the same number of rows, but they must have the same number of columns.
Use the setOrder argument to specify the ordering of the values in C.
Specify 'stable' if you want the values in C to have the same order as in A.
A = [7 1 7 7 4]; B = [7 0 4 4 0];
[C,ia,ib] = intersect(A,B,'stable')
C = 1×2
7 4
ia = 2×1
1
5
ib = 2×1
1
3
Alternatively, you can specify 'sorted' order.
[C,ia,ib] = intersect(A,B,'sorted')
C = 1×2
4 7
ia = 2×1
5
1
ib = 2×1
3
1
Create two vectors containing NaN.
A = [5 NaN NaN];
B = [5 NaN NaN];
Find the values common to both A and B.
C = intersect(A,B)
C = 5
intersect treats NaN values as distinct.
Create a cell array of character vectors, A.
A = {'dog','cat','fish','horse'};
Create a cell array of character vectors, B, where some of the vectors have trailing white space.
B = {'dog ','cat','fish ','horse'};
Find the character vectors common to both A and B.
[C,ia,ib] = intersect(A,B)
C = 1x2 cell
{'cat'} {'horse'}
ia = 2×1
2
4
ib = 2×1
2
4
intersect treats trailing white space in cell arrays of character vectors as distinct characters.
Create a column vector character array.
A = ['A';'B';'C'], class(A)
A = 3x1 char array
'A'
'B'
'C'
ans =
'char'
Create a 2-by-3 matrix containing elements of numeric type double.
B = [65 66 67;68 69 70], class(B)
B = 2×3
65 66 67
68 69 70
ans =
'double'
Find the values common to both A and B.
[C,ia,ib] = intersect(A,B)
C = 3x1 char array
'A'
'B'
'C'
ia = 3×1
1
2
3
ib = 3×1
1
3
5
intersect interprets B as a character array and returns a character array, C.
class(C)
ans =
'char'
Create a character vector containing animal names that have three letters.
A = ['dog';'cat';'fox';'pig'];
class(A)
ans =
'char'
Create a cell array of character vectors containing animal names of varying lengths.
B = {'cat','dog','fish','horse'};
class(B)
ans =
'cell'
Find the character vectors common to both A and B.
C = intersect(A,B)
C = 2x1 cell
{'cat'}
{'dog'}
The result, C, is a cell array of character vectors.
class(C)
ans =
'cell'
Use the 'legacy' flag to preserve the behavior of intersect from R2012b and prior releases in your code.
Find the intersection of A and B with the current behavior.
A = [7 1 7 7 4];
B = [7 0 4 4 0];
[C1,ia1,ib1] = intersect(A,B)
C1 = 1×2
4 7
ia1 = 2×1
5
1
ib1 = 2×1
3
1
Find the unique elements of A and preserve the legacy behavior.
[C2,ia2,ib2] = intersect(A,B,'legacy')
C2 = 1×2
4 7
ia2 = 1×2
5 4
ib2 = 1×2
4 1
Input Arguments
collapse all
Input arrays. If you specify the 'rows' option, then A and B must have the same number of columns.
A and B must be of the same class with the following exceptions:
• logical, char, and all numeric classes can combine with double arrays.
• Cell arrays of character vectors can combine with character arrays or string arrays.
• Categorical arrays can combine with character arrays, cell arrays of character vectors, or string arrays.
• Datetime arrays can combine with cell arrays of date character vectors or single date character vectors.
There are additional requirements for A and B based on data type:
• If A and B are both ordinal categorical arrays, they must have the same sets of categories, including their order. If neither A nor B are ordinal, they need not have the same sets of categories, and the comparison is performed using the category names. In this case, the categories of C consist of the categories of A followed by the categories of B that are not in A. The categories are in the same order as in A and B, and the category order is used for sorting C.
• If A and B are tables or timetables, they must have the same variable names (except for order). For tables, row names are ignored, so that two rows that have the same values, but different names, are considered equal. For timetables, row times are taken into account, so that two rows that have the same values, but different times, are not considered equal.
• If A and B are datetime arrays, they must be consistent with each other in whether they specify a time zone.
A and B also can be objects with the following class methods:
• sort (or sortrows for the 'rows' option)
• ne
The object class methods must be consistent with each other. These objects include heterogeneous arrays derived from the same root class. For example, A and B can be arrays of handles to graphics objects.
Order flag, specified as 'sorted' or 'stable', indicates the order of the values (or rows) in C.
FlagDescription
'sorted'
The values (or rows) in C return in sorted order as returned by sort.
Example
C = intersect([7 0 1 5],[0 2 7 5],'sorted')
C =
0 5 7
'stable'
The values (or rows) in C return in the same order as they appear in A.
Example
C = intersect([7 0 1 5],[0 2 7 5],'stable')
C =
7 0 5
Data Types: char | string
Output Arguments
collapse all
Data common to A and B, returned as a vector, matrix, or table. If the inputs A and B are tables or timetables, then the order of the variables in C is the same as the order of the variables in A.
The following describes the shape of C when the inputs are vectors or matrices and when the 'legacy' flag is not specified:
• If the 'rows' flag is not specified, then C is a column vector unless both A and B are row vectors, in which case C is a row vector.
• If the 'rows' flag is specified, then C is a matrix containing the rows in common from A and B.
The class of the inputs A and B determines the class of C:
• If the class of A and B are the same, then C is the same class.
• If you combine a char or nondouble numeric class with double, then C is the same class as the nondouble input.
• If you combine a logical class with double, then C is double.
• If you combine a cell array of character vectors with char, then C is a cell array of character vectors.
• If you combine a categorical array with a character vector, cell array of character vectors, or string, then C is a categorical array.
• If you combine a datetime array with a cell array of date character vectors or single date character vector, then C is a datetime array.
• If you combine a string array with a character vector or cell array of character vectors, then C is a string array.
Index to A, returned as a column vector when the 'legacy' flag is not specified. ia identifies the values (or rows) in A that are common to B. If there is a repeated value (or row) in A, then ia contains the index to the first occurrence of the value (or row).
Index to B, returned as a column vector when the 'legacy' flag is not specified. ib identifies the values (or rows) in B that are common to A. If there is a repeated value (or row) in B, then ib contains the index to the first occurrence of the value (or row).
Tips
• To find the intersection with respect to a subset of variables from a table or timetable, you can use column subscripting. For example, you can use intersect(A(:,vars),B(:,vars)), where vars is a positive integer, a vector of positive integers, a variable name, a cell array of variable names, or a logical vector. Alternatively, you can use vartype to create a subscript that selects variables of a specified type.
Extended Capabilities
Thread-Based Environment
Run code in the background using MATLAB® backgroundPool or accelerate code with Parallel Computing Toolbox™ ThreadPool.
Version History
Introduced before R2006a
|
__label__pos
| 0.97269 |
Path icon Learning Paths
Skills
C++20
• Number of Courses10 courses
• Duration28 hours
• Skill IQ available Skill IQ
C++ is a versatile, high-performance programming language that combines the efficiency of low-level languages with the expressiveness of high-level languages. Developed by Bjarne Stroustrup as an extension of the C language, C++ is a truly hybrid language that supports both procedural and object-oriented programming paradigms. With its rich feature set, C++ enables developers to build a wide range of applications, from simple command-line utilities to complex, resource-intensive software systems.
The C++20 standard introduces a host of features and improvements, further enhancing the language's capabilities and making it an even more powerful tool for modern software development. As a developer, mastering the latest advancements in C++ can help you write more efficient, maintainable, and scalable code. This skill path is designed to provide a comprehensive understanding of C++20, covering its fundamentals, language features, advanced algorithms and data structures, and design patterns tailored to the latest standard. By the end of this skill path, you will have a strong foundation in C++ and be equipped to harness the full potential of the C++20 standard in your projects.
Join our learners and upskill
in leading technologies
|
__label__pos
| 0.900514 |
Flash MP3 Player
From Nutwiki
Revision as of 18:02, 27 October 2016 by Harald (Talk | contribs) (1 revision imported)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search
Description
This is a simple MP3 player. It plays an MP3 from Flash. You'll need a data directory in your project directory containing your "example.mp3" file. Also make sure your binary with the included doesn't get larger than your board's Flash.
Source Code
<source lang="c">
1. include <dev/board.h>
2. include <dev/vscodec.h>
3. include <dev/urom.h>
4. include <fs/uromfs.h>
1. include <stdlib.h>
2. include <stdio.h>
3. include <fcntl.h>
4. include <io.h>
5. include <dirent.h>
1. include "urom_data.c"
static char buff[512];
int main(void) {
int fh;
int decoder;
int n;
/* register debug device */
u_long baud = 115200;
NutRegisterDevice(&DEV_DEBUG, 0, 0);
freopen(DEV_DEBUG_NAME, "w", stdout);
_ioctl(_fileno(stdout), UART_SETSPEED, &baud);
/* NOTE: This assumes the hardware codec is present */
if (NutRegisterSpiDevice(&devSpiVsCodec0, &DEV_SPIBUS, 1)) {
puts("Codec unavailable.\n");
}
/* Register UROM device */
if (NutRegisterDevice(&devUrom, 0, 0)) {
printf("UROM error\n");
}
decoder = _open("audio0", _O_WRONLY | _O_BINARY);
fh = _open("UROM:example.mp3", _O_RDONLY | _O_BINARY);
for (;;) {
n = _read(fh, buff, 512);
if (n <= 0) { break; } _write(decoder, buff, n); _write(decoder, NULL, 0);
}
_close(decoder);
_close(fh);
for (;;);
}
</source>
Makefile
Here's the Makefile to build the MP3 player. Note, that all leading spaces have to be tabs instead of spaces. Change the PROJ variable to match the name of your main .c file.
<source lang="text"> PROJ = mp3_example DATADIR = data DATAFILE = urom_data.c
include ../Makedefs
SRCS = $(PROJ).c OBJS = $(SRCS:.c=.o) LIBS = $(LIBDIR)/nutinit.o -lnutpro -lnutos -lnutnet -lnutfs -lnutcrt -lnutdev -lnutarch TARG = $(PROJ).hex
all: $(DATAFILE) $(OBJS) $(TARG) $(ITARG) $(DTARG)
$(DATAFILE): $(DATADIR)/example.mp3 $(CRUROM) -r -o$(DATAFILE) $(DATADIR)
include ../Makerules
clean: -rm -f $(OBJS) -rm -f $(TARG) $(ITARG) $(DTARG) -rm -f $(DATAFILE) </source>
Description
<source lang="c"> u_long baud = 115200;
NutRegisterDevice(&DEV_DEBUG, 0, 0); freopen(DEV_DEBUG_NAME, "w", stdout); _ioctl(_fileno(stdout), UART_SETSPEED, &baud); </source>
Set up the debug device so we can output to the terminal. See the Hello World! sample for more details.
<source lang="c"> /* NOTE: This assumes the hardware codec is present */
if (NutRegisterSpiDevice(&devSpiVsCodec0, &DEV_SPIBUS, 1)) {
puts("Codec unavailable.\n");
} </source>
This line registers the VS Codec. Note that we don't use the normal NutRegisterDevice here. Since the VS Codec is a device on the SPI bus, we have to register it using NutRegisterSpiDevice. The parameter DEV_SPIBUS passes the bus we want to register it to.
Alternatively you can use a software decoder, if your target board can provide sufficient processing power. For ARM-based boards, Nut/OS offers the Helix MP3 decoder. Note, that this is distributed under an incompatible license and you need to this license in the Nut/OS Configurator (last item in the tree).
To register the Helix decoder, use
<source lang="c"> if (NutRegisterDevice(&devHelixCodec, 0, 0)) {
puts("Audio codec not available");
} </source>
There had been a few problems with this decoder lately. Recent Nut/OS versions (4.8 up to 5.0) do not allow to register bit-banging I2C drivers, if I2C hardware (TWI in Atmel terms) is available on that CPU. Check the code repository at [1] for the latest updates of the files dev/hxcodec.c and arch/arm/dev/tlv320dac.c.
<source lang="c"> /* Register UROM device */
if (NutRegisterDevice(&devUrom, 0, 0)) {
printf("UROM error\n");
} </source>
Now we register the uROM device. For more information on uROM access see the Reading UROM Files article.
<source lang="c"> decoder = _open("audio0", _O_WRONLY | _O_BINARY); fh = _open("UROM:example.mp3", _O_RDONLY | _O_BINARY); </source>
For the MP3 Codec to play, we need to pass data directly to it. To achieve this, we open both the decoder (audio0) and the mp3 file we want to use (example.mp3) via the open command. This is a lower level command than fopen and does not return a file pointer but a handle of type integer.
<source lang="c"> for (;;) {
n = _read(fh, buff, 512);
if (n <= 0) {
break;
}
_write(decoder, buff, n);
_write(decoder, NULL, 0);
} </source>
This loop does the actual MP3 playing. It first reads 512 bytes from the MP3 file and stores the number of bytes read in n.
Before writing the data the decoder, we have to make sure there is actually data left for writing. We do this by checking n (the number of bytes read) for a size <= 0. If it is, we have no more data left to write and can safely exit the play loop.
If there's data left to write, we write it to the decoder.
The line "_write(decoder, NULL, 0);" is something special. Usually all data transfers are buffered, sometimes resulting in data that is not yet written when the _write command returns control to your program. By writing a NULL pointer to the audio device, we instruct Nut/OS to flush all data to the decoder. Do NOT use this elsewhere as this is a special trick of Nut/OS and will result in bugs and crashes if used anywhere else.
<source lang="c"> _close(decoder); _close(fh); </source>
We're done playing, now close our open files.
It may happen, that the decoder stops playing before the end of the file has been reached. This had been an issue with early VS10XX hardware drivers and, at the time of this writing, is a problem with the Helix decoder. To force playing up to the end of the file, use
<source lang="c"> int i;
memset(buff, 0, sizeof(buff)); for (i = 0; i < 8; i++) {
_write(dh, buff, sizeof(buff));
} </source>
immediately before closing the decoder.
See also
External Links
• C file input/output The C programming language provides many standard library functions for file input and output.
• MP3 MPEG-1 Audio Layer 3, more commonly referred to as MP3, is a digital audio encoding format using a form of lossy data compression.
Template:Languages
|
__label__pos
| 0.920275 |
File: kupdate.c
package info (click to toggle)
noflushd 2.7.5-6
• links: PTS
• area: main
• in suites: etch, etch-m68k
• size: 792 kB
• ctags: 302
• sloc: ansic: 2,537; sh: 1,142; makefile: 85
file content (497 lines) | stat: -rw-r--r-- 10,813 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
/*
* <kupdate.c>
*
* Handle interaction with kupdate(d)/pdflush kernel daemon.
*
* Copyright (C) 2000-2003 Daniel Kobras
* (C) 2003 Michael Buesch (parts of pdflush support)
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 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 General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*
* $Id: kupdate.c,v 1.21 2004/08/08 15:01:57 nold Exp $
*
*/
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include "kupdate.h"
#include "bug.h"
#include "util.h"
#include "noflushd.h"
#include <stdio.h>
#include <unistd.h>
#include <stdlib.h>
#include <fcntl.h>
#include <dirent.h>
#include <string.h>
#include <ctype.h>
#include <signal.h>
#include <errno.h>
#include <sys/param.h> /* for HZ. (Yeah, I know...) */
#include <sys/types.h>
/*
* Here's a simple yet effective fallback in case everything goes haywire
* and kupdate(d) is left messed up. In fact, this is bdflush's/update's
* fallback behaviour as well.
*/
static void last_resort(long interval)
{
if (interval <= 0)
interval = 1;
ERR("Kernel background updates messed up");
ERR("Falling back to brute-force emergency syncing every %ld secs",
interval);
while (1==1) {
sync();
sleep(interval);
}
}
/*
* Ugly fumbling through /proc to determine the PID of the kupdate kernel
* thread. My, do I hate writing parsers! I wonder how you do it without
* /proc or /proc mounted on a different node. Humm... [peeking through
* pidof source] looks like you're simply screwed. Weird. But then thank
* god the days of messing with /dev/kmem have gone.
*/
static int get_kupdate_pid(kupdate_t k)
{
DIR *proc, *pid_dir;
FILE *f=NULL;
char *line, *s_pid, *name;
char namebuf[267] = "/proc/"; /* d_name[] length of 256 bytes
is hardcoded in <direntry.h>.
We need to store at max
/proc/<d_name[]>/stat. */
int pid, kpid=-1;
struct dirent *procent;
proc = opendir("/proc");
if (!proc) {
ERR("Unable to open /proc");
return 0;
}
/* More space efficient than using scandir()... */
while ((procent = readdir(proc))) {
if (!isdigit((int)(procent->d_name[0])))
continue;
strcpy(namebuf+6, procent->d_name);
if (!(pid_dir = opendir(namebuf)))
continue;
closedir(pid_dir);
strcat(namebuf, "/stat");
if (f)
fclose(f);
f = fopen(namebuf, "r");
line=get_line(f);
if (!line)
continue;
name=_get_entry(line, 1);
if (!name) {
release_line(line);
continue;
}
/* An ordinary user might have started a process named kupdate
* but it will never get a lower pid than the kupdate kernel
* thread. Uh, versions later than 2.4.2 seem to call it
* kupdated. Alan's valentine? Lovely...
*/
if (!strcmp(name, "(kupdate)") || !strcmp(name, "(kupdated)")) {
s_pid=_get_entry(line, 0);
if (!s_pid)
BUG("No pid info on kupdate");
pid=atoi(s_pid);
if((pid < kpid) || (kpid == -1)) {
kpid=pid;
if (k->stat)
fclose(k->stat);
k->stat=f;
f=NULL;
}
DEBUG("Detected process %s at pid %d", name, pid);
}
release_line(line);
}
closedir(proc);
if (kpid == -1) {
ERR("Could not determine PID of kupdate");
return 0;
}
k->pid=(pid_t) kpid;
return 1;
}
/* Check if kupdate is really stopped. */
static int kupdate_check_stop(kupdate_t k)
{
char *line;
char *state;
int ret;
fflush(k->stat);
rewind(k->stat);
line=get_line(k->stat);
if (!line)
BUG("Could not read kupdate stat");
state=_get_entry(line, 2);
if (!state)
BUG("Could not read kupdate state");
ret=(state[0]=='T');
release_line(line);
return ret;
}
/*
* get/set_interval are simple helper functions to wrap [gs]etting the
* basic flush interval of kupdate.
*/
static int _kupdate_get_interval(kupdate_t k, long *interval)
{
long args[9];
int i;
rewind(k->f);
for (i=0; i < 9; i++) {
if (fscanf(k->f, "%ld", &args[i]) != 1) {
ERR("Error reading kupdate(d) control file");
return 0;
}
}
*interval = args[4];
if (k->interval <= 0) {
INFO("Bogus kupdate interval %ld, setting to %d",
*interval, 5*HZ);
*interval = 5*HZ;
}
return 1;
}
static int _kupdate_set_interval(kupdate_t k, long interval)
{
long args[9];
int i;
rewind(k->f);
for (i=0; i < 9; i++) {
if (fscanf(k->f, "%ld", &args[i]) != 1) {
ERR("Error reading kupdate(d) control file");
return 0;
}
}
args[4]=interval;
rewind(k->f);
for (i=0; i < 9; i++) {
if (fprintf(k->f, "%ld", args[i]) <= 0) {
ERR("Error writing to kupdate(d) control file");
return 0;
}
}
fprintf(k->f, "\n");
fflush(k->f);
return 1;
}
static long kupdate_fixup_interval(long interval)
{
return (interval+HZ-1)/HZ;
}
/*
* Handle background flushing of dirty buffers to disk via starting or
* stopping the kupdate kernel thread. kupdate is either (re)started or
* stopped, depending on current setting in struct *k.
* There's one ugly thing: kupdate expects its params scaled by HZ. Which
* is quite funny as HZ is a kernel thingie and nowhere exported to userspace
* (and rightfully so).
*/
static void __kupdate_stop(kupdate_t k)
{
long interval, left;
if (!k)
return;
_kupdate_get_interval(k, &interval);
if (!_kupdate_set_interval(k, 0))
ERR("kupdate interval still set. Expect frequent spinups");
kill(k->pid, SIGSTOP); /* The signal itself is ignored, but it will
* cause kupdate to wakeup now and detect
* interval=0. */
/* Make sure kupdate is really asleep. We poll 5 times per second and
* wait at most 10 kupdate wakeup cycles. (During heavy system load,
* kupdate wakeup might be delayed.) */
left = (10*k->interval*5+HZ-1)/HZ;
while (!kupdate_check_stop(k) && left > 0) {
usleep(200000);
left--;
}
if (!left) {
ERR("Could not stop kupdate. Expect lousy spindown times");
return;
}
k->stopped=1;
DEBUG("kupdate stopped");
}
static void __kupdate_start(kupdate_t k)
{
if (!k)
return;
if (!_kupdate_set_interval(k, k->interval) ||
(-1 == kill(k->pid, SIGCONT))) {
ERR("Could not restart kupdate");
ERR("Falling back to sync()");
last_resort(k->interval);
}
k->stopped=0;
DEBUG("kupdate restarted with interval %ld.", k->interval);
}
/*
* Set up kupdate struct. Determines pid of kupdate kernel daemon.
*/
static int _kupdate_init(kupdate_t k)
{
k->start=__kupdate_start;
k->stop =__kupdate_stop;
k->fixup_interval=kupdate_fixup_interval;
k->stat=NULL;
if (!get_kupdate_pid(k)) {
DEBUG("No kupdate(d) found");
return 0;
}
k->f=fopen("/proc/sys/vm/bdflush","r+");
if (!k->f) {
ERR("Unable to open kupdate(d) control file");
fclose(k->stat);
return 0;
}
if (!_kupdate_get_interval(k, &k->interval)) {
ERR("Could not get valid kupdate interval");
fclose(k->f);
fclose(k->stat);
return 0;
}
return 1;
}
/*
* Linux kernels 2.5 and up handle background flushing via the pdflush
* daemon.
*/
static int pdflush_get_interval(kupdate_t k, long *interval)
{
char *buf;
rewind(k->f);
if (!(buf = get_line(k->f))) {
ERR("Failed to get pdflush update interval");
return 0;
}
*interval = strtol(_get_entry(buf, 0), NULL, 0);
if (*interval < 0) {
ERR("Bogus pdflush interval");
return 0;
}
release_line(buf);
return 1;
}
static int pdflush_set_interval(kupdate_t k, long interval)
{
rewind(k->f);
if (fprintf(k->f, "%ld\n", interval) < 0) {
ERR("Failed to set net update interval");
return 0;
}
fflush(k->f);
return 1;
}
static int check_pdflush(kupdate_t k)
{
long interval;
if (!pdflush_get_interval(k, &k->interval)) {
DEBUG("Failed to get pdflush interval");
return 0;
}
if (k->interval <= 100) {
INFO("pdflush wakeup interval %ld suspiciously low, "
"overriding to 5 seconds\n", k->interval);
k->interval = 500;
}
if (!pdflush_set_interval(k, 0)) {
DEBUG("Failed to set pdflush interval");
return 0;
}
if (!pdflush_get_interval(k, &interval)) {
DEBUG("Failed to get 2nd pdflush interval");
return 0;
}
if (interval != 0) {
DEBUG("pdflush interval inconsistent - giving up");
return 0;
}
if (!pdflush_set_interval(k, k->interval)) {
DEBUG("Failed to set 2nd pdflush interval");
return 0;
}
return 1;
}
static void pdflush_start(kupdate_t k)
{
if (!k)
return;
if (!pdflush_set_interval(k, k->interval)) {
ERR("Failed to set pdflush interval");
last_resort(k->interval);
}
k->stopped = 0;
DEBUG("pdflush restarted with interval %ld.", k->interval);
}
static void pdflush_stop(kupdate_t k)
{
long interval;
if (!k)
return;
if (!pdflush_get_interval(k, &k->interval)) {
ERR("Failed to get pdflush interval");
return;
}
if (!pdflush_set_interval(k, 0))
ERR("Failed to stop pdflush");
else {
/* Need to wait until all pending pdflush timers have
* expired. Unfortunately there's no way to kick them. */
sleep(k->fixup_interval(k->interval));
DEBUG("pdflush stopped");
k->stopped = 1;
}
}
static long pdflush_fixup_interval(long interval)
{
return (interval+100-1)/100;
}
static int pdflush_init(kupdate_t k)
{
FILE *f = NULL;
f = fopen("/proc/sys/vm/dirty_writeback_centisecs", "w+");
if (!f) {
DEBUG("Could not open pdflush control interface");
return 0;
}
k->f = f;
/* On success, check_pdflush() initializes k->interval as a
* side-effect.
*/
if (!check_pdflush(k)) {
ERR("Cannot control pdflush writeback");
return 0;
}
k->start = pdflush_start;
k->stop = pdflush_stop;
k->fixup_interval = pdflush_fixup_interval;
return 1;
}
/* The kupdate kernel interface scales with HZ whereas the pdflush interface
* exports centisecs. Need to take care when converting into secs.
*/
long kupdate_get_interval(kupdate_t k)
{
return k->fixup_interval(k->interval);
}
/* This is the main init function for both kupdate(d) and pdflush support.
* The kupdate prefix for all generic methods is both unfortunate and
* historic. Tough...
*/
kupdate_t kupdate_init(void)
{
kupdate_t k;
k=malloc(sizeof(struct kupdate_s));
if (!k)
return NULL;
if (pdflush_init(k))
DEBUG("Controlling pdflush daemon");
else if (_kupdate_init(k))
DEBUG("Controlling kupdate(d) daemon");
else {
ERR("No kernel support for flush control found");
free(k);
return NULL;
}
k->stopped=k->interval ? 0 : 1;
return k;
}
|
__label__pos
| 0.923843 |
Algorithmic Puzzles
Algorithmic Puzzles
4.11 - 1251 ratings - Source
Algorithmic puzzles are puzzles involving well-defined procedures for solving problems. This book will provide an enjoyable and accessible introduction to algorithmic puzzles that will develop the reader's algorithmic thinking. The first part of this book is a tutorial on algorithm design strategies and analysis techniques. Algorithm design strategies a exhaustive search, backtracking, divide-and-conquer and a few others a are general approaches to designing step-by-step instructions for solving problems. Analysis techniques are methods for investigating such procedures to answer questions about the ultimate result of the procedure or how many steps are executed before the procedure stops. The discussion is an elementary level, with puzzle examples, and requires neither programming nor mathematics beyond a secondary school level. Thus, the tutorial provides a gentle and entertaining introduction to main ideas in high-level algorithmic problem solving. The second and main part of the book contains 150 puzzles, from centuries-old classics to newcomers often asked during job interviews at computing, engineering, and financial companies. The puzzles are divided into three groups by their difficulty levels. The first fifty puzzles in the Easier Puzzles section require only middle school mathematics. The sixty puzzle of average difficulty and forty harder puzzles require just high school mathematics plus a few topics such as binary numbers and simple recurrences, which are reviewed in the tutorial. All the puzzles are provided with hints, detailed solutions, and brief comments. The comments deal with the puzzle origins and design or analysis techniques used in the solution. The book should be of interest to puzzle lovers, students and teachers of algorithm courses, and persons expecting to be given puzzles during job interviews.This book will provide an enjoyable and accessible introduction to algorithmic puzzles that will develop the readera#39;s algorithmic thinking. The first part of this book is a tutorial on algorithm design strategies and analysis techniques.
Title:Algorithmic Puzzles
Author:Anany Levitin, Maria Levitin
Publisher:OUP USA - 2011-10-14
ISBN-13:
Continue
You Must CONTINUE and create a free account to access unlimited downloads & streaming
|
__label__pos
| 0.805905 |
1. HUGE Androidforums.com UPDATE! Learn what's new (and download the new app!)
Dismiss Notice
SE Dev Blog: X10 single finger zoomSupport (Browse All)
Last Updated:
1. kamm
kamm Well-Known Member This Topic's Starter
Joined:
Mar 31, 2010
Messages:
101
Likes Received:
12
Advertisement
2. Busha
Busha Well-Known Member
Joined:
May 12, 2010
Messages:
61
Likes Received:
3
How can we get that on X10 ? I dont get why do they give only some tutorial links, will this be packed in some app on Market or as .apk ?
3. JDwan
JDwan Well-Known Member
Joined:
May 22, 2010
Messages:
191
Likes Received:
24
There is an app on the Market right now for this but it involves doing some coding on your own as it is meant for developers. If you follow the instructions on the tutorials though, I have read that the results work quite nicely but they say that first and foremost, the app and tutorials are for developers who want to develop their own zoom or 3D list software (also included in the app). Hope this helps!
4. Busha
Busha Well-Known Member
Joined:
May 12, 2010
Messages:
61
Likes Received:
3
So in the near future someone will make this app for us to zoom like this and put it on the Market ? If I have understood what you are saying, because I dont want to mess anything with my phone on my own :)
5. JDwan
JDwan Well-Known Member
Joined:
May 22, 2010
Messages:
191
Likes Received:
24
I think that's the general idea, that it'll be released in an update or something.
I think they said in one of the tutorials that it shouldn't mess up anything on your phone but that you shouldn't attempt it without having some kind of background. I was tempted to try but then decided that I was doing alright without it so far, so I could wait until it's officially released by SE or on the Market.
Share This Page
Loading...
|
__label__pos
| 0.560362 |
Problema di Basilea
Da Wikipedia, l'enciclopedia libera.
Il problema di Basilea è un famoso problema dell’analisi, proposto per la prima volta da Pietro Mengoli nel 1644 e risolto da Eulero nel 1735. Il problema aveva resistito agli attacchi dei più grandi matematici dell’epoca quindi la soluzione di Eulero (ancora ventottenne) suscitò stupore e ammirazione. Il problema di Basilea chiede di scoprire la forma chiusa (cioè la formula) a cui tende la somma degli inversi di tutti i quadrati dei numeri naturali, cioè la somma precisa della serie infinita:
\sum_{n=1}^\infin \frac{1}{n^2} =
\frac{1}{1^2} + \frac{1}{2^2} + \cdots
La serie è approssimativamente uguale a 1,644934. Il problema di Basilea chiede la somma esatta di questa serie (nella forma chiusa). Eulero dimostrò che la somma esatta è \frac{\pi^2}{6} e annunciò questa scoperta nel 1735. Le sue dimostrazioni erano basate su passaggi non chiariti appieno. Per una dimostrazione rigorosa bisognerà aspettare fino al 1741.
Indice
[modifica] La funzione zeta di Riemann
La funzione zeta di Riemann è ζ(s) è una delle più importanti della matematica in parte perché è in relazione con la distribuzione dei numeri primi. La funzione è definita per tutti i numeri complessi con parte reale > 1 dalla formula:
\zeta(s) = \sum_{n=1}^\infin \frac{1}{n^s}.
Con s = 2, noi vediamo che ζ(2) è uguale alla somma degli inversi dei quadrati di tutti i numeri naturali.
\zeta(2) =
\sum_{n=1}^\infin \frac{1}{n^2} =
\frac{1}{1^2} + \frac{1}{2^2} + \frac{1}{3^2} + \frac{1}{4^2} + \cdots \approx 1,644934.
Come sappiamo che converge? Si può dimostrare che essa converge con la diseguaglianza:
\sum_{n=1}^N \frac{1}{n^2} < 1 + \sum_{n=2}^N \frac{1}{n(n-1)}
= 1 + \sum_{n=2}^N \left( \frac{1}{n-1} - \frac{1}{n} \right)
= 1 + 1 - \frac{1}{N} \; \stackrel{N \to \infty}{\longrightarrow} \; 2.
e grazie al fatto che tutti i suoi termini sono positivi. Inoltre tale disuguaglianza ci dà il limite superiore ζ(2) < 2.
La dimostrazione di convergenza è anche facilmente ottenibile sostituendo a ciascuna frazione non contenente una potenza di due la frazione contente potenza di due e di valore immediatamente superiore alla frazione sostituita. In tal modo si ottiene una serie che ha somme parziali sempre superiori alla serie data:
\sum_{n=1}^\infin \frac{1}{n^2} =
\frac{1}{1^2} + \frac{1}{2^2} + \frac{1}{3^2} + \frac{1}{4^2} + \cdots \frac{1}{n^2} <
\frac{1}{1^2} + \frac{1}{2^2} + \frac{1}{2^2} + \frac{1}{4^2}+ \frac{1}{4^2}+ \frac{1}{4^2}+ \frac{1}{4^2}+ \cdots \frac{2^n}{{2^n}^2}
Si nota facilmente che la nuova serie equivale alla serie degli inversi delle potenze di due:
\sum_{n=0}^\infin \frac{1}{2^n} =
\frac{1}{2^0}+ \frac{1}{2^1} + \frac{1}{2^2} + \frac{1}{2^3} + \frac{1}{2^4} + \cdots \frac{1}{{2^n}}
che, come noto, converge a 2.
Ma se tale serie è convergente, allora lo è anche la serie di partenza in quanto le sue somme parziali sono sempre inferiori.
[modifica] La dimostrazione di Eulero
La dimostrazione di Eulero è intelligente e originale. Essenzialmente egli suppose che le regole dei polinomi finiti fossero valide anche per le serie infinite. Naturalmente il ragionamento originale di Eulero richiede una dimostrazione di questo, ma anche senza giustificazione, semplicemente ottenendo un valore prossimo a quello ottenuto col calcolo, egli poteva essere piuttosto sicuro della correttezza del suo risultato. Per seguire la dimostrazione di Eulero, bisogna ricordare lo sviluppo in serie di Taylor della funzione seno centrato in 0:
\sin(x) = x - \frac{x^3}{3!} + \frac{x^5}{5!} - \frac{x^7}{7!} + \cdots.
Dividendo per x entrambi i termini, abbiamo:
\frac{\sin(x)}{x} = 1 - \frac{x^2}{3!} + \frac{x^4}{5!} - \frac{x^6}{7!} + \cdots.
Le radici di questo polinomio sono π, 2π, 3π.... Poniamo ora z = x^2 e abbiamo:
\frac{\sin(x)}{x} = 1 - \frac{z}{3!} + \frac{z^2}{5!} - \frac{z^3}{7!} + \cdots.
Le radici di questo polinomio (per la sostituzione operata) sono: π2, 4π2, 9π2... Per le Formule di Viète abbiamo che, se un polinomio ha il termine costante uguale a 1, la somma degli inversi delle sue radici è uguale al coefficiente del termine lineare cambiato di segno. (in altre parole la somma degli inversi delle radici del polinomio a_n{x^n}+...+a_3{x^3}+a_2{x^2}+ bx +1 dà come risultato -b) Supponiamo di poter applicare le regole dei polinomi finiti anche per questo polinomio infinito. Abbiamo che:
+ \frac{1}{3!} = \frac{1}{6} = \frac{1}{\pi^2} + \frac{1}{4\pi^2} + \frac{1}{9\pi^2} + \frac{1}{16\pi^2} + \cdots
Moltiplicando entrambi i termini per \pi^2 otteniamo:
\frac{\pi^2}{6} = 1 + \frac{1}{4} + \frac{1}{9} + \frac{1}{16} + \cdots = \sum_{n=1}^\infin \frac{1}{n^2}
CVD
[modifica] Una dimostrazione rigorosa
La seguente dimostrazione di ζ(2) = π2/6 è la prova più semplice disponibile; mentre la maggior parte delle prove utilizzano i risultati dalla matematica avanzata, quali analisi di Fourier, analisi complessa e calcolo a più variabili.
[modifica] Storia della dimostrazione
L'origine della prova è poco chiara. È comparsa nel giornale Eureka in 1982, attribuita a John Scholes, ma la prova era “conoscenza comune” a Cambridge verso la fine degli anni '60.
[modifica] Che cosa bisogna conoscere
Per capire la dimostrazione dobbiamo conoscere le seguenti nozioni
(Dove il coefficiente binomiale è: {n \choose k}=\frac{n!}{k!(n-k)!}.
• La funzione cot2 x ha una corrispondenza biunivoca nell’intervallo (0, π/2).
• Dimostrazione: supponiamo che cot2 x = cot2 y per alcuni x e y nell'intervallo (0, π/2). Avvalendoci della definizione di cotangente cot x = (cos x)/(sin x) e dell'identità trigonometrica cos2 x = 1 − sin2 x, vediamo che (sin2 x)(1 − sin2 y) = (sin2 y)(1 − sin2 x). Aggiungendo (sin2 x)(sin2 y) a entrambi i termini, otteniamo sin2 x = sin2 y. Poiché la funzione seno non è mai negativa in (0, π/2), si ha sin x = sin y, ma è geometricamente evidente (per esempio dando un'occhiata alla circonferenza goniometrica) che la funzione seno è crescente nell'intervallo (0, π/2), per cui x = y.
• Se p(t) è un polinomio di grado m, p ha esattamente m radici in C, contate con molteplicità.
• Se p(t) = amtm + am − 1tm − 1 + ... + a1t + a0, dove am ≠ 0, allora la somma delle radici di p (contando le molteplicità) è −am − 1/am
• Dimostrazione: Se am = 1, allora p(t) = prodotto di tutti i (ts), dove s spazia tra tutte le radici di p. Espandendo questo prodotto, si vede che il coefficiente di tm − 1 è l'opposto della somma di tutte le altre radici. Se am ≠ 1, allora possiamo dividere per esso ogni termine, ottenendo un nuovo polinomio con le stesse radici, il cui coefficiente di partenza è 1; reiterando lo stesso ragionamento, si vede che la somma di tutte le radici del p(t) = somma di tutte le radici del nuovo polinomio = −am − 1/am.
• L’identità trigonometrica csc 2 x = 1 + cot 2 x.
• Dimostrazione: È conseguenza dell'identità fondamentale 1 = sin2 x + cos2 x dove ogni termine è stato diviso per sin2 x.
• Per un numero reale x compreso tra 0 e π/2, abbiamo la diseguaglianza cot 2 x < 1/x2 < csc2 x.
• Per x piccoli, è ampiamente dimostrato che 0 < sin x < x < tan x, come è possibile vedere qui:
Circle-trig6.svg
Per notare che 0 < sin x < x, si osservi il fatto che nella figura sin θ è la lunghezza della linea AC, e θ è la lunghezza dell'arco circolare AD.
Per notare che x < tan x, si osservi che l'area del triangolo OAE è tan(θ)/2, l'area del settore OAD è θ/2, e che il settore è contenuto nel triangolo.
Ora, si consideri il reciproco di ogni elemento trigonometrico fin qui nominato, e se ne calcoli il quadrato. Si tenga altresì presente che la disequazione, in presenza dei reciproci, cambia direzione.
• Dati tre numeri reali a, b, c con a ≠ 0; il limite della funzione (am + b)/(am + c) con m che tende a infinito è 1.
• Dimostrazione: Si divida ogni termine per m, e si prenda (a + b/m)/(a + c/m). Se dividiamo un numero piccolo per una quantità straordinariamente grande, il quoziente tende a zero; così, sia numeratore che denominatore tendono ad a, e il loro quoziente tende a 1.
• Il teorema del confronto per le funzioni (o dei carabinieri): se una funzione è maggiorata e minorata da due funzioni che tendono allo stesso limite, allora anche la funzione in questione tenderà a tale limite.
• Dimostrazione: vedi articolo.
[modifica] La dimostrazione
L’idea principale di questa dimostrazione è trovare un limite alle somme parziali
\sum_{k=1}^m \frac{1}{k^2} = \frac{1}{1^2} + \frac{1}{2^2} + \cdots + \frac{1}{m^2}
tra due espressioni tendenti ciascuna a π2/6 (con m che tende a infinito). Le due espressioni sono derivate dalle identità che coinvolgono le funzioni di cosecante e di cotangente. Queste identità a loro volta sono derivate dalla formula di De Moivre dato il numero reale x compreso tra 0 e π/2, e n un intero positivo, con la formula di De Moivre abbiamo:
\frac{\cos (nx) + i \sin (nx)}{(\sin x)^n} = \frac{(\cos x + i\sin x)^n}{(\sin x)^n} = \left(\frac{\cos x + i \sin x}{\sin x}\right)^n = (\cot x + i)^n.
Dal teorema binomiale invece ricaviamo:
(\cot x + i)^n = {n \choose 0} \cot^n x + {n \choose 1} (\cot^{n-1} x)i + \cdots + {n \choose {n-1}} (\cot x)i^{n-1} + {n \choose n} i^n
= \left[ {n \choose 0} \cot^n x - {n \choose 2} \cot^{n-2} x \pm \cdots \right] \; + \; i\left[ {n \choose 1}
\cot^{n-1} x - {n \choose 3} \cot^{n-3} x \mp \cdots \right].
La combinazione delle due equazioni dà l’identità:
\frac{\sin (nx)}{(\sin x)^n} = \left[ {n \choose 1} \cot^{n-1} x - {n \choose 3} \cot^{n-3} x \mp \cdots
\right].
Definiamo ora n = 2m + 1, dove m è in naturale, e x = rπ/(2m + 1), (dove r = 1, 2, ..., m): come conseguenza, nx = rπ, e quindi sin(nx) = 0 per ogni valore di n. Portando questi valori all'interno dell'identità sopra esposta, otteniamo: 0 = {{2m+1} \choose 1} \cot^{2m} x - {{2m+1} \choose 3} \cot^{2m-2} x \mp \cdots + (-1)^m{{2m+1} \choose {2m+1}}.
Questa equazione tiene conto dei valori x = rπ/(2m + 1), dove r = 1, 2, ..., m. Questi valori di x sono numeri compresi tra 0 e π/2, e poiché la funzione cot^2(x) ha corrispondenza biunivoca nell’intervallo (0, π/2), ogni cot^2(x) = cot^2(rπ/(2m + 1)) ha un valore diverso per ciascun r = 1, 2, ..., m. Poiché però dalla suddetta equazione ciascuno di questi numeri diversi da m è la radice di un polinomio di grado m,
p(t) := {{2m+1} \choose 1}t^m - {{2m+1} \choose 3}t^{m-1} \mp \cdots + (-1)^m{{2m+1} \choose {2m+1}}.
questo vuol dire che ogni x = cot^2(rπ/(2m + 1)), per r = 1, 2, ..., m è precisamente radice per il polinomio p(t). È dunque possibile calcolare la somma delle radici direttamente esaminando i coefficienti. Inserendo l'identità trigonometrica csc^2 x = cot^2 x + 1, abbiamo:
\csc ^2 \left(\frac{\pi}{2m+1}\right) + \csc ^2 \left(\frac{2 \pi}{2m+1}\right) + \cdots + \csc ^2
\left(\frac{m \pi}{2m+1}\right)
= {{2m+1} \choose 3} / {{2m+1} \choose 1} + m = \frac{(2m)(2m+2)}{6}.
Ora, consideriamo la diseguaglianza cot2 x < 1/x2 < csc2 x. Se aggiungiamo queste diseguaglianze per ciascuno dei numeri x = rπ/(2m + 1) e se usiamo le due identità qui sopra, otteniamo \frac{(2m)(2m-1)}{6} < \left( \frac{2m+1}{\pi} \right) ^2 + \left( \frac{2m+1}{2 \pi} \right) ^2 + \cdots +
\left( \frac{2m+1}{m \pi} \right) ^2 < \frac{(2m)(2m+2)}{6}.
A questo punto, moltiplicando per (π/(2m + 1))2, si ha:
\frac{\pi ^2}{6}\left(\frac{2m}{2m+1}\right)\left(\frac{2m-1}{2m+1}\right) < \frac{1}{1^2} + \frac{1}{2^2} +
\cdots + \frac{1}{m^2} < \frac{\pi ^2}{6}\left(\frac{2m}{2m+1}\right)\left(\frac{2m+2}{2m+1}\right).
Per m divergente a infinito, i termini a sinistra e a destra convergono a π2/6, e abbiamo, dal teorema del confronto:
\zeta(2) =
\sum_{k=1}^\infin \frac{1}{k^2} =
\lim_{m \to \infty}\left(\frac{1}{1^2} + \frac{1}{2^2} + \cdots + \frac{1}{m^2}\right) = \frac{\pi ^2}{6}
E questo completa la dimostrazione. Q.E.D.
[modifica] Altra dimostrazione
Un'altra procedura per il calcolo di ζ(2), che fa uso di integrali, si trova qui.
[modifica] Generalizzazione
Con procedimenti molto simili a quelli che aveva usato per il caso s=2 Eulero riuscì a trovare la forma chiusa per la somma dell'inverso di qualsiasi potenza pari:
\zeta(4) = 1 + \frac{1}{2^4} + \frac{1}{3^4} + \frac{1}{4^4} + \cdots = \frac{\pi^4}{90}
\zeta(6) = 1 + \frac{1}{2^6} + \frac{1}{3^6} + \frac{1}{4^6} + \cdots = \frac{\pi^6}{945}
Più in generale:
\zeta(2k)= \frac{2^{2k-1}\pi^{2k}|B_{2k}|}{(2k)!}
Dove B_k sono i numeri di Bernoulli. Non è stato però compiuto alcun passo nella determinazione di una forma chiusa per i valori dispari di \zeta(s): solo recentemente è stato dimostrato che:\zeta(3) (chiamata costante di Apery) è un numero irrazionale.
[modifica] Voci correlate
[modifica] Bibliografia
matematica Portale Matematica: accedi alle voci di Wikipedia che trattano di matematica
|
__label__pos
| 0.999665 |
Professor Excel
Comments to Cells – 3 Methods for Comments and Notes (+Download)
Many Excel users like to use the comment function in Excel. Unfortunately, they come with some disadvantages (displaced, wrong size, hiding content, bad for printing, often outdated, e.g.) so that I usually recommend not to use them. Instead, I recommend using a comment column. This article describes how to transform Excel comments to cells. Extract comment text or note text of an Excel cell with these 3 methods.
[…]
How to Prevent Add-Ins to Disappear in Excel.
Excel Add-In Disappeared? 4 Methods to Prevent an Add-In to Disappear
You are using an Excel add-in that keeps disappearing? Also our add-ins, for example Professor Excel Tools, sometimes might disappear after restarting Excel. This article introduces four methods of how to prevent Excel (and other Microsoft Office) add-ins from disappearing.
[…]
Count Number of Unique Records in Excel
Count Number of Unique Records in Excel: 5 Methods (+Download)
A common task in Excel is to find out the number of different entries in a list. For example, you have a list of names and want to know, how many different people are listed as some people might be multiple times on the list. This article introduces 5 different methods of counting the number of unique records in a list, regarding two major differences.
1. You simply want to know the number of unique records. There is no other condition to be considered.
2. You want to know the number of different entries under one or more conditions.
[…]
Return Blank Cells Instead of Zeroes in Excel Formulas
If the return cell in an Excel formula is empty, Excel by default returns 0 instead. For example cell A1 is blank and linked to by another cell. But what if you want to show the exact return value – for empty cells as well as 0 as return values? This article introduces three different options for dealing with empty return values.
[…]
Convert Table to Column in Excel
Convert Table to One Column in Excel: 4 Easy Methods to Copy All Columns underneath Each Other
Copy table to one column in Excel
Copy table to one column
Say you have an Excel table and want to copy all column underneath each other so that you only have one column. For example, you have a table 2 rows by 4 columns like in the screenshot on the right-hand side. You want to copy and paste this table to one column. You often need such transformation for inserting PivotTables or to create database formats. This article provides 4 simple methods to transform a 2-dimensional table into one column in Excel.
[…]
Named Ranges in Excel: See and Edit Hidden Names
Named Ranges in Excel: See All Defined Names (Incl. Hidden Names)
Excel has a useful feature: Named Ranges. You can name single cells or ranges of cells in Excel. Instead of just using the cell link, e.g. =A1, you can refer to the cell (or range of cell) by using the name (e.g. =TaxRate). Excel also provides the “Name Manager” which gives you a list of defined names in your current workbook. The problem: It doesn’t show all names. Why that is a problem and how you can solve it is summarized in this article.
[…]
=+A1 vs. =A1, excel, equal-plus, equal, sign, formula
Equal-Plus in Excel: Why You Should Not Start a Formula With “=+”
You’ve probably seen it already: Starting a formula in Excel with “=+” (equal-plus) instead of just equal. So why do people use the “=+” instead of just “=”? Is there any meaning? This article describes the background of the equal-plus signs, the advantages and disadvantages.
[…]
exchange, rates, excel, currency, currencies, conversion
Currency Conversion in Excel: Tutorial + Free Excel Add-In
In today’s business world, there is hardly any Excel workbook not using currencies and exchange rates. Example: When I want to know my revenue for the last month – let’s say of my Excel add-ins or books – I receive an Excel file containing data in various currencies. Because I’m located in Germany, I want to convert everything to Euro. That’s when the trouble starts: Which exchange rate do I use for example for converting US Dollar to Euro? And more importantly: Where do I get the currency exchange rate in a convenient and fast way?
[…]
histogram, histograms, excel, chart
Histograms in Excel: 3 Ways to Create a Histogram Chart (+Download)
A histogram chart is a great way to present your data. It groups your data into bins or classes and shows the number of items per bin. For example: Your data has “Big Mac” prices in different countries. A histogram shows how many countries have a Big Mac price between 1 and 2 USD, 2 and 3 USD and so on.
This article introduces three methods in Excel how to create a histogram. Please also feel free to download all examples in an Excel file.
[…]
|
__label__pos
| 0.918305 |
Importance of Cyber Security Globally
We live in an incredible digitally connected world. We spend our half of the total daytime on social media, games, trading, online transaction and even much more. Every time we connect to the internet, our data is visible to hackers because we are ignoring basic security instructions. There are many reasons for cyber-attacks like inadequate technology, lack of security education, accessing insecure website and portals. In today's era when we are managing our 70% of the data over the internet, we should care about cyber security, whether it is commercial business or residential household.
Internet-based industry such as e-commerce, banking, traveling, insurance and cloud-based is giving high priority to the cyber security. However, companies also accept their safety does not reach to optimum level because they lack of proper security related education in their organization. According to ITRC (Identity Theft Resource Center) report, until July 2016, there were more than 522 data breaches. The report also states that data breach is now diversifying into different sectors such as federal agencies, healthcare, and telecom. Many popular companies such as Centene, Federal Bureau of Investigation, Seagate and Internal Revenue Service are the notable examples of data breach in the USA. Such data breaches cause loss of personal information like Name, Contact Number, Social Security Number and ID cards on a large scale. In 2016, the total cost of cybercrime reached to $450 billion globally. There are various types of cybercrime attacks used by cybercriminals for various purposes such as data breach, vulnerability and much more. The major cyber-attacks are.
1. Cyber Fraud
2. Malware Attacks
3. Social Engineering Attacks
4. Technical Attacks
5. Vulnerability Exploitation
6. Login Attacks
#1. Cyber Fraud Cyber fraud is a process where cybercriminal tries to steal your money, personal, property and financial information. There are different types of cyber fraud such as Phishing attacks, Spear Phishing attacks, unauthorized disclosure, and Whaling.
#2. Malware Attacks
in this type of attack, the malware comes from specific files such as .exe source and adware. The virus activates just after you open the file and in cases, malware file download on your PC without your authorized approval.
#3. Social Engineering Attacks
This attack is currently popular because it targets mainly to non-technical person through the phone internet call such as Skype. They present themselves as company authorized or technical support guys and asked for your personal information such as name number and Ids for regular database updates.
#4. Technical Attacks
Mainly target Organization technical systems such as Database, DNS, and outdated software. There are different types of Technical Attacks that hackers are using and DOS attacks are one of the well-known types, where attacker disrupts the internet usage of the user. Web Page Defacing is a type of attack where a hacker breaks the web page security and change to page visibility such as design and text to warn the owner about the lower level of data security.
#5. Vulnerability Exploitation
Make sure you get your software update from authorized source, because most of the vulnerability attacks come with software updates. In Vulnerability attacks, hackers inject the code in the program, and when the user tries to run that program, the hackers get their desired result.
#6. Login Attacks
Such attacks directly target your personal accounts such as email, bank and social media platforms. Some common login attacks are brute force, password cracking and oAuth exploits. The hackers mainly target large firms such as Google, Microsoft and Sony. Therefore, such companies have some strong organization security rules for their employees. But it doesn't mean small and medium firms are safe. Every organization must set some strict rules to avoid major security threats. Below are some common security rules that every company must follow.
1. Keep your necessary software and system up to date.
2. Create an internal policy to avoid using external drive such as pen drive, memory card or external hard disk with informing technical person. Also block certain website such a free software download, free shareware, and spam sites responsible cyber-attacks.
3. Cloud service is adopted by many companies because cloud service is cost efficient and easy to access from anywhere.
4. Educate your employee about cyber threats and how you can avoid malware downloads.
5. Encourage your employee to use a secure password (alphanumeric, symbol) and change after a period.
Cyber security is a prime issue and must require a specialization to tackle sophisticated cyber threats. The security person must think out of the technical details and should aware to latest cyber-attacks and data breach methods and provide efficient solution to overcome these issue. The Organization responsibility is to set some important policy to avoid entrance of virus and malware through small storage devices like Pen drive and Memory Card. Keeping an eye on cyber security is the only possible solution to prevent cybercrime.
Return to top of page ClickSSL - Start your E-Business with SSL Certificates
|
__label__pos
| 0.536619 |
Home » how to change date and time on windows 11 or 10?
how to change date and time on windows 11 or 10?
Answer
1. There are a few ways to change the date and time on Windows 10 or 11.
2. You can use the Date and Time app, the System Settings app, or the Command Prompt.
How to Change Date and Time in Windows 11 [Tutorial]
How to Change Date and Time in Windows 11
How do I change the date format to dd mm yyyy in Windows 11?
To change the date format in Windows 11, open the Date and Time app and click on the Date tab. In the Date Format section, select your desired format from the drop-down menu.
How do I change the color of the buttons in Windows 11?
There is no built-in way to change the color of the buttons in Windows 11, but there are a few third-party tools that you can use. One such tool is ColorPicker, which is available for free from the Microsoft Store.
How do I change the first day of the week in Windows 11?
There is no built-in way to change the first day of the week in Windows 11. However, you can use a third-party program to do this.
How do I change the date and time color in Windows 11?
There is no built-in way to change the date and time color in Windows 11, but there are a few third-party utilities that can be used. One option is the TimeZoner utility, which can be downloaded from the Microsoft website. Another option is the Date & Time Colorer utility, which can be downloaded from the software publisher’s website.
Why can’t I change time zone Windows 11?
There are a few reasons why you might not be able to change your time zone in Windows 11.
First, your computer might not have the correct drivers installed. You can try to install the correct time zone drivers from Microsoft or from a third-party source.
Second, you might not have administrative privileges on your computer. You need administrator privileges to change your time zone.
Third, you might not be registered with Microsoft’s Time Zone Service.
How do I restore the classic Explorer ribbon in Windows 11?
To restore the classic Explorer ribbon in Windows 11, open the Start menu and select File Explorer. On the Ribbon tab, select the Classic tab and click Restore Defaults.
How do I change the date format on my taskbar Windows 11?
To change the date format on your taskbar in Windows 10, open the Date and Time app (or by pressing Windows+I and typing “time”), select the date or time you want to change, and then click Change Date/Time.
How do I restore the old right click menu in Windows 11?
There are a few ways to restore the old right click menu in Windows 11. You can use the Registry Editor, or you can use a third-party program.
How do I move the clock on my lock screen Windows 10?
There are a few ways to move the clock on your lock screen in Windows 10. You can use the Settings app, type “time” into the search bar, or right-click the clock on the lock screen and select “Set time zone.
How do I change the time display on Windows 10?
There are a few ways to change the time display on Windows 10. You can use the Date and Time app, the Settings app, or the Command Prompt.
How do I get the Windows 10 context menu back in Windows 11?
There are a few ways to get the context menu back in Windows 11. One way is to go to Control Panel, and under Appearance and Personalization, click on the Personalization tab. Under the Customize button, you can select the “Show context menus for all files and folders” option.
How do I get the date and time back on my taskbar Windows 11?
There are a few different ways to get the date and time back on your taskbar in Windows 11. One way is to open the Date and Time app from the Start menu. Another way is to go to the Control Panel, click System and Security, click Time and Date, and then select the “Set time zone” link.
How do I get the date and time on my home screen Windows 11?
There is no one-size-fits-all answer to this question, as the way to get the date and time on your home screen may vary depending on which version of Windows 11 you are using. However, some tips on how to get the date and time on your home screen in Windows 11 include:
Open the Start menu and click Date and Time.
2.
How do I display the Date in Windows 11?
The Date and Time can be easily displayed in Windows 11 by accessing the Clock app. To open the Clock app, click on the Start button, type “clock” and then click on the Clock app. Alternatively, you can press CTRL+D to open the Date and Time dialog box.
How do I view all settings in Windows 11?
To view all settings in Windows 11, open the Settings app and click on the System icon. On the System page, you’ll see a list of all the settings in Windows.
Scroll to Top
|
__label__pos
| 0.994862 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.