1177
I want to bind to a node inside a loop. The path to the node I bind to chenges for each loop iteration. This is the code:
<wiki:search set ...
4 Weeks of Wonder (A Look Back)
How it started...I'd met with the Jot guys a few times while out on the left coast, and we had a lot of good chats about developer communities ...
A New Perspective...
This is Shravanti Shinde...a Data Warehousing and BI major...Graduate Student...
AboutWikiZone
What's this WikiZone page?
This entire site is a JotSpot wiki. However some pages look more like applications rather than wiki pages, e.g. the Blog and Forum pages ...
AdvancedCalendarTutorial
Advanced Calendar
Description
In the simple calendar cookbook we learned how to enter and display events that occur on a particular date. In this recipe, we will look at how ...
Alpha Wikis Going Away -- Please Gather your Belongings
Last year we had an "alpha wiki" program where we gave developers access to wikis that ran server code straight out of development.
We discountinued the program last December as ...
Alpha Wikis R.I.P. -- Long Live the Bi-Weekly Release Train
Back in July we introduced the alpha wiki program for members of the JDC. Alpha wikis run early release software straight from development, and are designed to give devs a ...
AttachRef
jotlibfcn = page.data.ReferencePageDecoratorForm.fcn;
jot.out.write(jot.lib.util.describe({'function': jotlibfcn}));
BenchTestTag
Page to test benchmarking functionality.
jot.out.write("Instantiating a benchmark object...");
var test = new benchmark;
var testingTags = ['wysiwyg', 'markup', 'xml', 'formatting', 'styles', 'jotscript', 'listener', 'trigger', 'email', 'notification', 'forum', 'mail ...
BlogAuthor
» Back to ${back}
Author: ${req/args/author}
${req/args/blog} posts by author: ${req/args/author}
No blog entries.
Archives
» ${it/Month} ${it/Year} (${it/Total})
BlogCommentsExportTableCode
<wiki:search forFormName="postblogcomment" filter="${it/parent/blogpost/blogname = req/args/blogName}" set="rCom" order="createTime-" limit="10" />
<wiki:table contents="rCom" exportable="true">
<wiki:column>
Blog: ${it/parent/blogpost ...
BlogCSSCode
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:jot="http://www.foopee.com/ns/s3/srvtmpl/">
<style>
TABLE.big {
width: 100%;
border: 0px ! important;
}
TD.big {
border: 0px;
}
.lnk ...
BlogRSS
${pInfo/blog/title}
${pInfo/blog/tagline}
${it/blogpost/title}
${url}
${date:formatDate(it/editTime, 'E, dd MMM yyyy HH:mm:ss zzz')}
BlogUserPicker
Show all posts by user:
Select...
${it/name}
${it/name}
BlogUserPickerCode
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:jot="http://www.foopee.com/ns/s3/srvtmpl/">
<jot:if test="${action/mode = 'view'}">
<jot:then>
<br />
<jot:search forChildren="/_Admin ...
bro
ovovov
CategoriesRef
Categories
The new categories mechanism works like this: any page in the wiki can define sys/categories, which is a stringList of pointers to other pages. Then, you can use ...
CheckboxInputFieldRef
Checkbox Fields
Creates a checkbox control that can either be checked or unchecked ("yes" or "no", "true" or "false", "on" or "off", etc.).
checkedValue (Defaults to "true") The value that ...
CodeExample10
Let's say I have a page named ContactForm that declares a form named ContactForm:
<jot:form name="ContactForm">
<jot:field name="firstName" />
<jot:field name="lastName" />
<jot:field name ...
CodeExample20
<jot:if test="${not(req/user = 'admin')}">
<jot:then>
You are NOT the admin user...
</jot:then>
<jot:else>
Hello mr. administrator sir!
</jot:else>
</jot:if>
<jot:if test ...
CodeExample23
A more complicated example, overriding the header and item blocks:
<jot:search forAll="1" order="name" set="result" />
<jot:indexLayout contents="result">
<jot:header>
Pages starting with ${it}
</jot:header ...
CodeExample36
<jot:switch test="${aaa}">
<jot:case value="1">
It's 1!
</jot:case>
<jot:case value="2">
It's 2!
</jot:case>
</jot:switch>
CodeExample43
This call uses the alternate pname1 : pvalue1, pname2 : pvalue2, etc. map syntax.
<jot:script>
jot.lib.savePage({
path: "/PathTo/SomePage",
pname1: "MyForm/name",
pvalue1: "Elephant",
pname2: "MyForm/size",
pvalue2: "big ...
CodeExample47
The report tag is designed so that the value that it returns can be passed directly to the TableRef. Usually you would use column tags refering to the titles in ...
CodeExample53
<jot:ext type="rss" href="http://slashdot.org/index.rss" set="rss" />
Channel title: ${rss/title}
First item: ${rss/items[1]/title}
<jot:table contents="rss" />
CodeExample65
Here's an example that illustrates the difference between sessions and flows. Let's create a page called TestSession that contains the following code:
<jot:script>
if (!session.count) { session ...
CodeExample67
To send emails from your wiki, you use the Jotlib mail function. You pass the message information in as a propertyValueMap that contains four properties:
to: the mail recipient
from ...
CodeExample698
You can add a button control to jump to another page in the wiki. For example, this code adds a button that displays the GettingStarted page when it's clicked ...
CodeExample701
You can get an XML document that lists all of the pages in the wiki to which you have access with the listAll function. For example, the following code returns ...
CodeExample725
<jot:script>
var p = "/WikiHome/StalePage";
jot.lib.removePage({path: p, breakLock: true, removeChildren: true});
</jot:script>
CodeExample729
This code searches for all pages under WikiHome and lists the 5 that have most recently changed:
<jot:search order="time-" set="recentSet" forDescendants="WikiHome" limit="5" />
<jot:loop over ...
CodeExample730
This code shows the parsing of both comma delimited and tab delimited data. This example hard codes the sample data, but it could easily come from an external data source ...
CodeExample735
The following code displays the current date and time.
<jot:script>
jot.out.write("Today's Date: "+ jot.lib.date.now());
</jot:script>
CodeExample745
Includes a reference to a file called mystylesheet.css that is attached somewhere in the wiki:
<jot:resource href="wiki:mystylesheet.css" />
Generates this code in the page's HTML ...
CodeExample758
<jot:column prop="createTime/date" header="Date Created" sort="true"/>
CodeExample760
Every property of every page has a type. Currently allowed types include string, integer, float, element, date, etc.
When accessed via server-side Javascript, page property objects are normally hidden ...
CodeExample764
This code fetches a http://del.icio.us RSS feed and prints out the contents and feed item details.
<jot:script>
var feedUrl = "http://del.icio.us/rss/scottmcmullan/jotspot ...
CodeExample770
<jot:script>
var currentRevisionNum = jot.pages[req.path].revision;
var prevRevisionNum = (currentRevisionNum - 1);
var l = jot.pages[req.path].otherRevision(currentRevisionNum);
var r = jot.pages[req.path].otherRevision(prevRevisionNum);
var ...
CodeExample772
Code:
${util:urlEncode(req/user/userinfo/email)}
Results:
${util:urlEncode(req/user/userinfo/email)}
CodeExample775
<jot:search forAll="true" order="createTime-" filter="date:sameDay(it/createTime, date:create('6/12/2006'))" />
You can find various date-related functions to use on the DateRef page.
CodeExample779
var prop = jot.lib.types.castProperty(1.0, "integer");
CodeExample817
You can call server-side Javascript functions directly from XPath. For example:
<jot:script>
function myfilter(p) {
return p.name.toLowerCase().indexOf("b") == 0;
}
</jot:script>
<jot:search forAll="1 ...
CodeExample824
Here's an example of makeURL():
<jot:script>
//This works
var myURL = jot.lib.util.makeURL("wiki:/JotDoc", 1);
jot.out.write("myURL = "+myURL);
//This doesn't
var myURL = jot ...
CodeZone. Sharing Code, JotSpot Style.
Abe and I were talking to Ryo Chijiiwa today about wikis, web apps and life when he asked us a pretty basic question. Something like, "How do people get started ...
Comment0
I'm pretty sure that's Maine-with-an-e, as in the state where my brain is most often located :-)
Comment100
Right, that "version thing" again - sorry. The CSS system Diane is working with is avaiable in the current alphas, as well as webspaces provisioned since 8/8 (aka 0.9 ...
Comment102
Of course, anything can break.
When I first started working on Jot wikis they had a different approach, different style sheets and different names in their style sheets. They also ...
Comment113
Worse, I just tried to edit this page to correct a typo, and couldn't.
When you hit edit, you get the following error message:
"Warning: Editing this page with ...
Comment117
You're right, very similar in spirit.
No plans to implement trackback right now. A very quick glance at the trackback spec shows that we would need to HTTP POST ...
Comment120
It would be nice if each alpha's WikiHome page were populated with a "what's new in this release" summary after an update.
Comment123
Great Idea! I hope it goes in the direction of developing new and unique apps and capabilities as well as uncovers enhancements (features) that need to be made.
Comment128
Visual cue suggestions:
1) when I hit "Post Comment", if I'm not logged on, give me an error message with a logon screen, rather than allowing me to go ...
Comment13
Coolio deluxe. This would be a better link to the Codebook: http://codebook.jot.com/DevBlog.
Does working with the IE API mean that we can soon expect Jot to ...
Comment138
Thank you Scott. Bob Haugen volunteered to improve the site and made a huge difference. Way to go Bob!
Comment156
Scott -
Have I been looking at this and simply missing it? Is it possible to hide everything except, say, the Edit button?
Also, it is possible to hook these actions ...
Comment161
Good start, Scott.
Don't forget to check your edit, preview and create pages to make sure they conform, too. I haven't quite gotten to that in my articles ...
Comment172
This is very exciting. However, as guest above says, we need to be able to integrate JotLive into our existing Wikis. How do we do that?
Comment175
This doesn't seem to work on my 0.9.4 dev wiki, although it works fine on my 0.9.44 alpha wiki.
Comment183
Don't get me wrong, I like the app, and I'm glad you did it because it demonstrates more Jot UI possibilities, and this is not a criticism, it ...
Comment184
Very true. I am delighted with Diane's stuff but JotSpot is at least six months past the point where the UI should have been 100% revamped. I have never ...
Comment186
Arghh!
Can't edit the comments (when trying to edit this page, get in a loop - won't let me edit in script mode, won't let me edit in ...
Comment193
Yeah I wasn't suggesting we style WikiZone, just put up some tools, sample stylesheets, and screenshots so folks can get started and share and help each other...
Enter Tweaki ...
Comment200
Actually, I meant for the forum comments, not the blog comments.
And we don't need full HTMLArea, just something like you have for JotLive.
Comment205
RE: wysiwyg mode, in general you use the edit mode that's specified in your default preferences page. This applies to all pages w/fields of type `wiki` (which is ...
Comment211
A few comments about the stylesheet.
First, let me second Scott's thank you for this exhaustive effort--particularly the final, documented stylesheet, which is all an experienced developer needs ...
Comment215
My take is that if you share a theme that requires images, you should distribute copies of the images as well.
Users of that theme can attach them to /System ...
Comment218
[double post deleted]
Comment228
grumble grumble west coast grumble grumble all the fun grumble grumble better weather too grumble grumble envy envy grumble grumble we have foliage grumble grumble big deal grumble grumble you ...
Comment235
I concur with page on-off within a wiki.
More generally, I like it but it feels not-quite-ready-for-prime-time, especially for Mom. Or Dilbert's boss ...
Comment237
I will be there.
Comment248
I did change the page permissions to allow editing etc to '/JotspotGroup, /jsgroup'. I don't know who that includes, however. I had hoped that maybe JotspotGroup is people who ...
Comment261
When I try this I get a popup: "Error, java.lang.ArrayIndexOutOfBoundsException: -1 Please try again" both in IE and Firefox. My version is 0.9.40
Comment264
A First Step
OK, then. I've taken the first step by copying my SubSearchPlugin into /System/Plugins. Try it out! Navigate to, say, JotDoc, and compare the results for ...
Comment276
David, thanks for the detailed writeup. You'll be happy to know that some of your suggestions are in the latest server version. Most importantly, you can widen permissions at ...
Comment281
Diane (or Scott):
Is there a fairly quick way already documented where the CSS has been scrubbed to a simple default case where most stuff is just black-on-white ...
Comment29
I don't know if it's JotSpot or Bloglines but this post comes up everyday on your RSS feed. My guess is that the Apple stock price and news ...
Comment296
Here's an idea for how to approach this:
Start by plugging Scott McMullan's [TagCloudLib] into your wiki. You might want the RelatedTags plugin too, although you might want ...
Comment30
Does this method work for JotBox customers?
If so, where is the collected information stored? On the JotBox or on the StatCounter server?
If not, is there a way to ...
Comment300
Interesting discussion highlights:
http://dglazer.blogspot.com/2005/11/sdforum-collaboration-sig-14-nov-2005.html
My favorite quote:
"Most [collaboration] solutions add work for the people who are supposed ...
Comment304
One other approach you could potentially try would be to add a stringlist field to each table row that contained the tags for an API, then searching over those to ...
Comment310
Should emailPageChange 0.4 now be working? I can't seem to make it kick-in with the email notifications. I do see that it's creating a subscriber list
Comment317
Thanks for these ideas and proposals. Combining David's suggestion to simply allow a leading / to create a new namespace along with Chris' suggestion for some UI help to navigate ...
Comment322
Hi Phil,
I like the AJAX, it'll make navigating via tags much smoother. Your "tag this page/update tags" box is fast and sweet. Good job!
I've looked ...
Comment326
I agree that we need to give some more thought to how we're defining and using tags. We were talking a bit about this the other day--while we ...
Comment345
Nice! Personally, my favorite editor (and the favorite of many web developers) is BBEdit. One of its features is the ability to open files via FTP. If my-site.jot ...
Comment359
The detailed theme customization guide is in the queue. We have paused and not created one for the existing theme architecture (releases 0.9.4 through 2.4) because it ...
Comment363
I find that the simple hierarchy approach works pretty well in most cases, but I consistently run into two exceptions: user preferences and self-registration. And both of them run ...
Comment364
I'm resisting this because of the cloning work involved and need to tear it down immediately to avoid out-of-sync issues. But I hear you about the frustration ...
Comment374
I get the same null pointer exception as Guest above - on a 2.3.3 wiki, using Firefox 1.5.0.1. (P.S. I get the same error in ...
Comment38
You're right, this post's example (the dropdown menus) only exercise CSS/JavaScript...
That said, Dojo will be natively available inside Jot, so the A and X bits are ...
Comment387
What wd get me to develop Jot apps in Eclipse all the time:
Ability to test and debug incrementally in Eclipse - whatever it takes to do that. Jot.lib + http ...
Comment39
This is fantastic! Any chance there will also be a way to tell the page to simply return to its parent? For example, I have a form whose name is ...
Comment392
Project Mgr V0.94 now out. It fixes the excpeption issue mentioned above, along with some other small improvements.
Please see http://feedback.jot.com/WikiHome/2006-2-13-NewProjectManagerApplicationAvailableNow ...
Comment395
Love those skunkworks projects! Selective export without creating packages (such as, based on a jot:search) would be valuable in itself.
But there was a reason that was #2. If ...
Comment400
I love that. The drop-down list under the wiki word. Very cool idea!
Comment414
Wiki 2.3.3 In FF for Mac the app main page comes up blank. In Camino, the same page displays properly. I'm getting notes from others that it ...
Comment417
I have a project to create a "community marketplace" that would be used by artesans, providers of eco-tourism services, producers of certified wood products, etc. from poor communities in ...
Comment418
I totally agree with Jim. There is no FAQ, Help or Tutorial section for new users. There is no tips to assist user. Users need general help and the type ...
Comment43
> Does it mean that without the '?xml=pretty' passing,
> the raw XML page will already be parsed into XHMTL?
> Why is that?
Yes, that's basically the final stage of ...
Comment436
Oops! Forgot to turn off the webcam again...
Comment450
Alright! We're getting the suggestions/issues/problems/opportunities for improvement on the table here! (Although I'm not sure I'm with you on the overweight boy analogy ;)
I ...
Comment46
Thanks, it helped me alot.
Comment482
Meow! I cover the wireframe_v1.11.gif with some "cheese". I notice a few new mice has been fooling around with "New Jot Dev Forum". May be more new ...
Comment488
thanks for the details. The stock theme is good enough for me, and I'm glad glad that you guys decided to pretty up the place!
Comment495
props to Scott Johnston for the title - got a nice laugh at the end of a long day.
woohoo - Jotspot give Google a run for its money :)
Comment50
I can't wait to get my hands on triggers. That will upgrade the usefulness of jot for me times ten
Comment501
I can't say I have experience in this area, but I'm happy to give it a whirl. I can't offer any worthwhile coding skills, but I can ...
Comment504
The Forums are a better place for questions. The blog is better suited for announcements, proposals, dicussions, pontification, etc.
Thanks :)
p.s. yes, the FancyTab widget is pre-installed in ...
Comment508
If I want to add Tab on jot-header section (jotspot version 2.6), how should I do ? I am thinking whether I could add a wiki page on jot ...
Comment509
I'm definitely going to give this a try. Can you tell me if anybody has this up and running on the Intel Mac?
Comment524
XML mode is almost your friend. If you use entities like
» or —
they get translated by the browser textarea into the visible characters (» or —) and you lose the ...
Comment526
W00t! This is very very cool. Man, there have been so many times I wanted to say, "package up this section of the wiki." Now I can.
Thank you Thom ...
Comment550
> I use a lotta software everyday ... this is really off-putting/disappointing.
>
Sorry to hear you're dissapointed. So we can learn, what's the source of your dissapointment? The ...
Comment551
Ok, I'll bite. Here is a rough outline/braindump of potential areas for improvement or enhancement in Jot. I have tried to avoid bugfixes and concentrate on enhancements. No ...
Comment557
I'm not sure how to help other than continue to pattern match directories and settings. Here's an example of me successfully building ja_scott_app in eclipse. Note ...
Comment560
The most important question is: How customizable is the L&F? It is pretty the way it is, of course. I'll have to give it a try sometime.
Comment563
This test is great if it works as it should, but suppose it doesn't? How do you go about debugging where things went wrong? Is there some kind of ...
Comment57
Yep, we use SnagiIt, and love it.
Do you prefer the torn edge look, or the cleaner cut w/dropshadow look?
Comment574
I think the list is pretty good if your target is developers, not just ordinary users.
On this topic: What sort of dev environment should I use? How do I ...
Comment586
P.S. what I'm looking for is a workflow setup that makes the work easier rather than harder.
I've seen some. My stockbroker brother-in-law had one ...
Comment590
I'm trying to migrate a template systems for a Quality Management System to this type of platform and because many of my clinets are medical device manufacturers, I have ...
Comment594
This may seem obvious but wouldn't you need the jot name in the URL? ie
http://YOURJOTNAME.JOT.COM/Lib/Feed/WikiChanges?user=&password=ENTER_YOUR_PASSWORD_HERE
Comment597
I think that append statement is wrong, and Jot does not come with a SystemPropertiesForm, and what you need to do is to copy and implement in your wiki the ...
Comment60
So cool. I want to experiment with 2 on the Get Fancy list - any quick tips on the right approach to take?
Comment605
r.e. previous comments on accuracy vs. flashy, Jot should endeavor to match code samples and embeddings and provide a 'try-it' environment similar to the w3schools site. See http ...
Comment607
Now, you see, here's what I mean. I added a section to the effect that "I stayed away cuz it was too frustrating but came back because I think ...
Comment610
"how do I edit the underlying XML, particularly in the case of pages that have had a form applied to them?"
There's a cluster of Firefox extensions that allow ...
Comment620
Back from holiday ;-)
This sounds good, as you say MUCH nicer than creating little CSS hacks for every application. One key question, which version does this apply to? Does it ...
Comment624
This is not an end-user configuration option. Please send your request to have the limit raised to support@jot.com. Thanks.
Comment646
I'm trying to add this plugin, and I get the same error. Am I doing something wrong?
Thanks.
Comment651
DO NOT use this if you have version 2.7 and use IE 6 until you test it thoroughly - the plug in works very nicely, but can conflict with your ...
Comment653
don't know if this is an existing bug or not, but it looks like the redirect used after the new parenting is incorrect.
I had created MyPage and wanted ...
Comment658
You are a god, Thom. Thank you so much. I can't wait to try this.
Comment660
Thanks for the suggestions Bob. I do like the term "data model", but not "data structure" -- that seems too low level. I chose storage model because I wanted to capture ...
Comment664
Sneak Peak. One of those words is misspelled. Unless you mean to sneak up on the mountain peak.
And on slide 6 you have the same word twice: single place ...
Comment667
Tried it out tonight. What a great time-saver. Thanks.
Comment670
Will updates to 2.8 (over the next week or so) be only for hosted?
What about jotboxes? what ETA can we get there? Will that be a download we ...
Comment673
An example of a required change for 2.8 is the Email page change plugin code.
It used to use HTTP GET like so:
...
...
dojo.io.bind({
url: dojo.uri ...
Comment691
Congratulations to everyone at JotSpot from all of us here at Chordiant. Bravo!!!!
Comment75
Hmmm works for me but there's clearly a problem. Sorry about this. Let me try another few fresh install and see if I can pinpoint the issue...
Comment79
Hi Scott,
What I was trying to ask (and failed badly in the process of trying to ask it) is can the RSS feeds list that the script runs on ...
Comment82
Just out of the blue. It will be best if Jot can incorporated a selection whereby we can choose to have major update say, every month. Or major and minor ...
Comment92
Hmmm. Speaking of which, The previous comment was by me, but there was no indication I was not logged on or that my comment would be posted as "guest".
Probably ...
Comment94
Yes, you are right. :)
The actual agileplanner site is currently laid stagnant. We have shifted development to a temporary agileplanner development site. Hopefully by early next month, those new features ...
Comment97
Another idea: You have specified insertion points. How about in addition to head, bodyStart and bodyEnd, insertion points can be targeted by id attribute?
CommunityToolbar
Welcome ${req/user}
ContactDatabase
lmlmlkmnk;n;knk;n
sksjnksnksnskns
sjssjsbjsbjsb
ContactForm1
Contacts:
CreateRefPages
var docTemp = jot.pages["RefDocTemplate"];
var doc = new XML(docTemp.main.text);
var docList = jot.lib.util.describe({'function': '*'});
for (var x in docList) {
var name = docList[x].getName();
var ...
CustomProducts
Products
Date.createRef
jotlibfcn = page.data.ReferencePageDecoratorForm.fcn;
jot.out.write(jot.lib.util.describe({'function': jotlibfcn}));
Date.formatDateRef
jotlibfcn = page.data.ReferencePageDecoratorForm.fcn;
jot.out.write(jot.lib.util.describe({'function': jotlibfcn}));
Date.nowRef
date.now
Returns a new date object that represents the current date and time.
Syntax
Javascriptjot.lib.date.now();JotScriptdate:now() Usage Restrictions
Available in all embeddings: tags ...
DateManipulation
Date Functions
There are two primary types for dealing with dates and times: the date type, which expresses an instant in time, and the duration type, which expresses the time ...
davidlo-profile
Knowesys - IT Consulting Firm
Junior Chamber International - Civic organization for adults below 40 years old
Crustacean Restaurant - My favorite restaurant in San Francisco
Rei Do Gado - My favorite restaurant in ...
Debug.testObjectRef
jotlibfcn = page.data.ReferencePageDecoratorForm.fcn;
jot.out.write(jot.lib.util.describe({'function': jotlibfcn}));
DeclareFormRef
declareForm
DevDocExampleForm
Code Example
Embedding:
Tags:
DevDocTest
Jot Developer Docs Usability Review
To participate in the usability review of the JotSpot developer docs, click Start.
DevDocTocOld
Documentation: Table of Contents
Start Here (Doc Intro)
1st Apps: Hello World & My Tasks
\JotLib Intro
Hello World
My Tasks App
Page Properties Explained
Forms Explained
Intro Cookbooks
Simple Contact ...
DevHowTo1
There are two ways to find out the name of a form used by a page:
Using Script
This bit of script displays a page's form name:
${page/sys ...
DevHowTo13
There are a few different ways to access properties or parameters from within a page, and knowing which one to use can be confusing at first. Here's the overview ...
DevHowTo23
Use the isInGroup() method from the library described here: GroupManagementUtilities.
DevHowTo28
You can loop directly over a page's attachments property to find attachments for a single page. Or you can find all attachments in the entire wiki by searching with ...
DevHowTo31
Entering server-side Javascript differs slightly depending on whether you use markup or XML editing modes. See ForumTopicReply621 for an overview if you encounter an "InvalidXML" error. The page is ...
DevHowTo41
1. Copy this code to a page in your wiki called EventUnitTest. (Make sure to edit the page in script markup mode to paste the code!)
!!!Code to test \JotPageChanged ...
DevHowTo45
Yes. This is possible by creating a plugin that uses the session to sense when a new user logs in, and then redirects the user to a specific page based ...
DevHowTo46
When you "apply a form to a page", you are really setting the sys/form property of a page to a form name.
There are many ways to set a ...
DevHowTo5
As of version 0.9.40, you can use the InputRef's redirect attribute.
See Control Your Page Flow for more information.
DevIntroduction
Introduction to JotLib
JotLib is the JotSpot's library that enable collaborative web apps in a JotSpot wiki. JotLib consists of functions like search, table, calendar, and include, control flow ...
DevQuestion101
I cannot install the new entry I found in CodeZone (Fancy Tabs Widget 1.0). It propagates a save as. When I save locally and try to install the package ...
DevQuestion106
I am trying to add the exportable tag to a table that is created simply by searching for all pages that use a form. HOwever, including the 'exportable="true"' attibute ...
DevQuestion118
What is my data type option for creating a form field that will be containing currency? INTEGER won't work since we need to use decimals and the TEXT data ...
DevQuestion123
Can I override security settings?
Users will have edit access to ONLY their one page but can comment on any page. I'd like to set the Edit page security ...
DevQuestion127
I am attempting to create a "listener" function within my wiki based on your examples on the forum home page. I started by creating my own "SelectionsListener" page and trying ...
DevQuestion134
Hello,
After using 'apply a form to this page' feature, how do i get rid of the form if i don't like it? Clicking edit only allows me to ...
DevQuestion138
I am having intermittent trouble getting the wiki:include tag to work. I have been trying to narrow it down, and it looks like I can wiki:include pages that ...
DevQuestion139
I am just getting into Jot, but I'm very excited about the platform.
However, I just read an article at ZDNet http://blogs.zdnet.com/BTL/?p=1608 (pointed ...
DevQuestion153
I need to develop for non-english speaking users. Anyone doing the same on jotspot?
DevQuestion157
Is there a way to suppress the automatic linking of Wiki Words on a page? Sometimes, my pages contain company names that I don't want to show as links ...
DevQuestion170
if i have a variable, for example \${variable}, which returns have a pattern like AAA_BBB_CCC.
I want to get part of the text, which is CCC(or any ...
DevQuestion175
I've created a table that is populated by data. I want to have an extra final row in that table as a 'sum'/'total'. I've tried using 'row ...
DevQuestion178
I need to link pages of one form with pages selected from search results over another form. Unfortunately, I have no control over the other form or page names.
I ...
DevQuestion179
My dev wikis(the two non-alpha ones) are supposed to run on the current, public version of Jotspot. But the regular public (non-dev) wikis one sets up through ...
DevQuestion183
After applying a form, which is creating a page after filling the desired properties in the form page, users are brought to the new default page. Is there anyway to ...
DevQuestion186
Using <jot:search> and then <wiki:table>, i've managed to populate a table with search results. I would like to now make the table editable. Say, if i have ...
DevQuestion197
Create a zipped package from this manifest (will prompt your browser to download file)
Using this prompt, I downloaded the BlogApp. I then used Oxygen to translate user-interface prompts ...
DevQuestion200
This code no longer works:
<jot:control type="createPage" label="Create Section" defaultForm="${section/SectionForm/form}" />
I see the button but no text field for naming the page. And when ...
DevQuestion204
Is there a place where the server-side script is explained all in one place? I can find little how-tos, but not general documentation. I'm thinking of writing ...
DevQuestion207
Sorry if I missed the correct post that covered this but how do you escape <something> in WYSIWYG mode?
I have already tried ` and >>>> <<<< but neither would work.
DevQuestion211
Currently WYSIWYG editor format block list has a choice of h1-h6, normal, address and formatted. I know I can override the appearance of these styles (and I have) in ...
DevQuestion225
Kind of bizarre to have the JDC running on 0.9.21...
DevQuestion230
Why is it that JotSpot doesn't support some popular RSS Readers like Bloglines?
I know you reference "security" issues, but as not sure what this refers to.
Thanks,
Jack
DevQuestion235
Is there a single place to go to get started w/a custom CSS theme for JotSpot?
DevQuestion252
A wiki page that has virtually any formatting added to it in the WYSIWYG editor, explodes when you try to add even the simplest Jotscript to it (such as <wiki ...
DevQuestion256
I've tried the following:
|<jot:field name="leftArea" type="textarea" rows="10" columns="35" value="Feature:" /> | <jot:field name="rightArea" type="textarea" rows="10" columns="35" value="Benefit:" />|
and ...
DevQuestion257
You're using the latest template now! And it looks good, too! Congratulations on the upgrade!