Skip to main content


Eclipse Community Forums
Forum Search:

Search      Help    Register    Login    Home
Home » Eclipse Projects » Mylyn » Mylyn WikiText Stand-Alone Package Available
Mylyn WikiText Stand-Alone Package Available [message #61619] Tue, 11 November 2008 16:51 Go to next message
David Green is currently offline David GreenFriend
Messages: 136
Registered: July 2009
Senior Member
I'm pleased to announce that the Mylyn WikiText stand-alone package is
available for download (http://www.eclipse.org/mylyn/downloads/). The
download contains jar files and documentation for including WikiText Ant
tasks in your build or for using WikiText APIs outside of an Eclipse
runtime.

The WikiText project is still in the incubation phase, thus users should
be aware that the download has not yet completed a release review. The
availability of WikiText stand-alone download enables users to try out
WikiText prior to its release, including the much-anticipated
wiki-to-DITA functionality.

This is the first time that WikiText stand-alone jars have been made
available since the move of Textile-J to the WikiText project. WikiText
includes many improvements and fixes since the Textile-J 2.2 release.

Many thanks to Mik Kersten, Steffen Pingel and others at Tasktop who
have facilitated the WikiText project.
WikiText (textile) Markup Question [message #61960 is a reply to message #61619] Wed, 19 November 2008 23:24 Go to previous messageGo to next message
Philip Quitslund is currently offline Philip QuitslundFriend
Messages: 24
Registered: July 2009
Junior Member
Forgive me if this is the wrong forum for this but I haven't seen a more
appropriate group. Please redirect if I've mis-fired! Anyway, I have a really
simple textile markup question. I'm playing with it as a source for my HTML
files and am puzzling over how to set a document's title (changing the document
name is not an ideal option).

Inserting this at the beginning of the file:

<title>Version History</title>

"works" (sort of), in the sense that it renders correctly (FireFox anyway) but
the generated markup is not quite right. As you'd expect, the title is injected
into the body and not into the head:

<head></head>
<body>
<p><title>Version History</title></p>

So... Is there a more proper way to do this? Is this something I need to do in
the build phase (e.g., like the <stylesheet> entries in the online ant example)?
If so, do you have any concrete examples?

Any pointers appreciated!


-phil
Re: Mylyn WikiText Stand-Alone Package Available [message #62033 is a reply to message #61619] Fri, 21 November 2008 12:48 Go to previous messageGo to next message
Oleg Gorobets is currently offline Oleg GorobetsFriend
Messages: 2
Registered: July 2009
Junior Member
Is there a way to download a standalone wikitext? The link on page
forwards me to
http://eclipse.peers.net.ua//tools/mylyn/update/weekly/mylyn -wikitext-standalone-latest_incubation.zip
which gives 404 error. Can I download it from other repository?
Re: Mylyn WikiText Stand-Alone Package Available [message #62082 is a reply to message #62033] Sat, 22 November 2008 12:28 Go to previous messageGo to next message
Eclipse UserFriend
Originally posted by: steffen.pingel.eclipse.org

Oleg Gorobets wrote:

> Is there a way to download a standalone wikitext? The link on page
> forwards me to
>
http://eclipse.peers.net.ua//tools/mylyn/update/weekly/mylyn -wikitext-standalone-latest_incubation.zip
> which gives 404 error. Can I download it from other repository?

Try selecting a different mirror from this page:

http://www.eclipse.org/downloads/download.php?file=/tools/my lyn/update/weekly/mylyn-wikitext-standalone-latest_incubatio n.zip

Steffen
Re: WikiText (textile) Markup Question [message #62227 is a reply to message #61960] Tue, 25 November 2008 22:08 Go to previous messageGo to next message
David Green is currently offline David GreenFriend
Messages: 136
Registered: July 2009
Senior Member
Philip Quitslund wrote:
> Forgive me if this is the wrong forum for this but I haven't seen a more
> appropriate group. Please redirect if I've mis-fired!

This is the right place

> Anyway, I have a
> really simple textile markup question. I'm playing with it as a source
> for my HTML files and am puzzling over how to set a document's title
> (changing the document name is not an ideal option).

As far as I am aware, none of the markup languages supported by WikiText
have syntax for setting the document title. (Textile, MediaWiki,
Confluence, TracWiki and TWiki)

>
> Inserting this at the beginning of the file:
>
> <title>Version History</title>
>
> "works" (sort of), in the sense that it renders correctly (FireFox
> anyway) but the generated markup is not quite right. As you'd expect,
> the title is injected into the body and not into the head:
>
> <head></head>
> <body>
> <p><title>Version History</title></p>

That's a side-effect of lenient browsers, and this is not really
best-practice (as you noticed)

>
> So... Is there a more proper way to do this? Is this something I need
> to do in the build phase (e.g., like the <stylesheet> entries in the
> online ant example)? If so, do you have any concrete examples?
>

The way to do this is via the Ant task. You can specify the title as an
attribute as follows:

<wikitext-to-html markupLanguage="Textile" title="My Title"
file="docs/my-file.textile">
<stylesheet url="docs/styles/main.css"/>
</wikitext-to-html>

I hope that helps.
Re: WikiText (textile) Markup Question [message #62298 is a reply to message #62227] Tue, 25 November 2008 23:02 Go to previous message
Philip Quitslund is currently offline Philip QuitslundFriend
Messages: 24
Registered: July 2009
Junior Member
Hey David,

> As far as I am aware, none of the markup languages supported by WikiText
> have syntax for setting the document title. (Textile, MediaWiki,
> Confluence, TracWiki and TWiki)

I think you're right. A bit surprising but not that big of a deal.
>
> The way to do this is via the Ant task. You can specify the title as an
> attribute as follows:
>
> <wikitext-to-html markupLanguage="Textile" title="My Title"
> file="docs/my-file.textile">
> <stylesheet url="docs/styles/main.css"/>
> </wikitext-to-html>

This is just what I thought.

> I hope that helps.

It does.

Many thanks!


-phil
WikiText (textile) Markup Question [message #594889 is a reply to message #61619] Wed, 19 November 2008 23:24 Go to previous message
Philip Quitslund is currently offline Philip QuitslundFriend
Messages: 24
Registered: July 2009
Junior Member
Forgive me if this is the wrong forum for this but I haven't seen a more
appropriate group. Please redirect if I've mis-fired! Anyway, I have a really
simple textile markup question. I'm playing with it as a source for my HTML
files and am puzzling over how to set a document's title (changing the document
name is not an ideal option).

Inserting this at the beginning of the file:

<title>Version History</title>

"works" (sort of), in the sense that it renders correctly (FireFox anyway) but
the generated markup is not quite right. As you'd expect, the title is injected
into the body and not into the head:

<head></head>
<body>
<p><title>Version History</title></p>

So... Is there a more proper way to do this? Is this something I need to do in
the build phase (e.g., like the <stylesheet> entries in the online ant example)?
If so, do you have any concrete examples?

Any pointers appreciated!


-phil
Re: Mylyn WikiText Stand-Alone Package Available [message #594914 is a reply to message #61619] Fri, 21 November 2008 12:48 Go to previous message
Oleg Gorobets is currently offline Oleg GorobetsFriend
Messages: 2
Registered: July 2009
Junior Member
Is there a way to download a standalone wikitext? The link on page
forwards me to
http://eclipse.peers.net.ua//tools/mylyn/update/weekly/mylyn -wikitext-standalone-latest_incubation.zip
which gives 404 error. Can I download it from other repository?
Re: Mylyn WikiText Stand-Alone Package Available [message #594939 is a reply to message #62033] Sat, 22 November 2008 12:28 Go to previous message
Steffen Pingel is currently offline Steffen PingelFriend
Messages: 706
Registered: July 2009
Senior Member
Oleg Gorobets wrote:

> Is there a way to download a standalone wikitext? The link on page
> forwards me to
>
http://eclipse.peers.net.ua//tools/mylyn/update/weekly/mylyn -wikitext-standalone-latest_incubation.zip
> which gives 404 error. Can I download it from other repository?

Try selecting a different mirror from this page:

http://www.eclipse.org/downloads/download.php?file=/tools/my lyn/update/weekly/mylyn-wikitext-standalone-latest_incubatio n.zip

Steffen
Re: WikiText (textile) Markup Question [message #595005 is a reply to message #61960] Tue, 25 November 2008 22:08 Go to previous message
David Green is currently offline David GreenFriend
Messages: 96
Registered: July 2009
Member
Philip Quitslund wrote:
> Forgive me if this is the wrong forum for this but I haven't seen a more
> appropriate group. Please redirect if I've mis-fired!

This is the right place

> Anyway, I have a
> really simple textile markup question. I'm playing with it as a source
> for my HTML files and am puzzling over how to set a document's title
> (changing the document name is not an ideal option).

As far as I am aware, none of the markup languages supported by WikiText
have syntax for setting the document title. (Textile, MediaWiki,
Confluence, TracWiki and TWiki)

>
> Inserting this at the beginning of the file:
>
> <title>Version History</title>
>
> "works" (sort of), in the sense that it renders correctly (FireFox
> anyway) but the generated markup is not quite right. As you'd expect,
> the title is injected into the body and not into the head:
>
> <head></head>
> <body>
> <p><title>Version History</title></p>

That's a side-effect of lenient browsers, and this is not really
best-practice (as you noticed)

>
> So... Is there a more proper way to do this? Is this something I need
> to do in the build phase (e.g., like the <stylesheet> entries in the
> online ant example)? If so, do you have any concrete examples?
>

The way to do this is via the Ant task. You can specify the title as an
attribute as follows:

<wikitext-to-html markupLanguage="Textile" title="My Title"
file="docs/my-file.textile">
<stylesheet url="docs/styles/main.css"/>
</wikitext-to-html>

I hope that helps.
Re: WikiText (textile) Markup Question [message #595031 is a reply to message #62227] Tue, 25 November 2008 23:02 Go to previous message
Philip Quitslund is currently offline Philip QuitslundFriend
Messages: 24
Registered: July 2009
Junior Member
Hey David,

> As far as I am aware, none of the markup languages supported by WikiText
> have syntax for setting the document title. (Textile, MediaWiki,
> Confluence, TracWiki and TWiki)

I think you're right. A bit surprising but not that big of a deal.
>
> The way to do this is via the Ant task. You can specify the title as an
> attribute as follows:
>
> <wikitext-to-html markupLanguage="Textile" title="My Title"
> file="docs/my-file.textile">
> <stylesheet url="docs/styles/main.css"/>
> </wikitext-to-html>

This is just what I thought.

> I hope that helps.

It does.

Many thanks!


-phil
Previous Topic:Empty password
Next Topic:Mylyn issues with respect to JBoss jira
Goto Forum:
  


Current Time: Thu Mar 28 13:27:43 GMT 2024

Powered by FUDForum. Page generated in 0.04685 seconds
.:: Contact :: Home ::.

Powered by: FUDforum 3.0.2.
Copyright ©2001-2010 FUDforum Bulletin Board Software

Back to the top