Hello,
I can now edit sections on my 1.9RCx (modifications where light so I could
retrofit them)
But when I do sthg like:
{{include document="MyDocument"/}}
I don't see the section editing for the included content.
Is it the default behavior not to propose section editing when the document
is included into another one?
regards
Pascal
Hello,
apparently this feature is no more "directly" available in wiki/2.0.
But when I use /xwiki/bin/edit/MySpace/MyDoc?section=1, it edits the section
1 of my doc but when I save it, it keeps only section 1 in the doc and
removes everything else.
Is it a bug?
regards
Pascal
Hi all!
If you were curious about how is going with XOO, you can install it in your
OpenOffice 3.0. You can find more details about how to install it and the
extension archive in my blog :
http://gsoc.myxwiki.org/xwiki/bin/view/XWiki+Integration+With+Open+Office/X…
There are still a lot of features to implement, but your feedback is very
important to me.
Thank you,
Cristina
Hi Devs,
This is about the wiki-macro-bridge. According to our previous discussion, I
was going to put document listening, macro creation and macro registration
logic into xwiki-core-rendering-macro-wikibridge module. But as it seems the
macro creation part is going to be highly dependant on bridges (DAB) and
would require a couple of more methods on DAB. Since DAB is becomming heavy
and poluted, I'm proposing that we split the wikimacrobridge as follows:
* Keep document listening, macro registration and macro de-registration
logic inside xwiki-core-rendering-macro-wikibridge module as it is.
* Differ the macro instantiation logic into some component interface
(WikiMacroGenerator).
* Have the default WikiMacroGenerator in xwiki-core. (perhaps inside
com.xpn.xwiki.doc? any other place?)
Here is my +1.
Thanks.
- Asiri
All,
I just started using XWiki recently and was curious as to how I can access its source. The reason I ask is because there's a link on the Main page that I'd like to modify but can't. The link itself is what users click to log into the wiki and is located above the Registration link on the Main page. I've added another link on the Main page as a temporary solution to the problem but would like to either redirect or remove the link altogether.
Thank you in advance for your time.
Respectfully,
Joe Lawry
Hi
With a seemingly futile attempt I finally was able to create blog documents with 2.0 syntax. The blog is displaying the the entries as well as the blog web home nicely. The only thing I noticed is that the document of the blog entry is still marked xwiki/1.0.
For now except the Blog.WebHome all the changed documents contain a '2' prefix so that it is possible to compare them when needed. I am sure that there is more to be done but for now I am happy that at least the first step is done.
As soon as I am back home I will export the blog documents and zip up the changed files. Because I cannot upload them onto this mailing list I was wondering if I should create a JIRA report and attached there.
Have fun
Andreas Schaefer
CEO of Madplanet.com Inc.
EMail: andreas.schaefer(a)madplanet.com
schaefera(a)me.com
Twitter: andy_mpc
AIM: schaefera(a)me.com
Using the XWiki blog quite often I am sometimes frustrated by the fact that still in 2.0 M1 the syntax based on 1.0.
Beside the fact that nobody found time and/or urge to attack that is there any other reason why this cannot be done ?
In case it is possible and someone could tell me where to start looking into it I would try to accomplish that. For now I cannot promise anything because my time is very limited and free time is quite unpredictable.
Cheers
Andreas Schaefer
CEO of Madplanet.com Inc.
EMail: andreas.schaefer(a)madplanet.com
schaefera(a)me.com
Twitter: andy_mpc
AIM: schaefera(a)me.com
Is there anything like the Xwiki-feed-plugin except that instead of fetching
a feed, it would fetch an HTML document via HTTP, returning a DOM structure
that can be scanned or filtered by API-calls, e.g.:
$fetchedDom = $xwiki.FetchPlugin.getDocumentDOM("http://nielsmayer.com")
$images = $fetchedDom.getImgList()
$media = $fetchedDom.getAnchorHREFsByExtension([".mp3", ".mv4", ".mp4"])
$content = $fetchedDom.getDivListById(['xwikicontent, 'container',
'content'])
Since this would happen on the server, you'd probably need to "fake" being a
real browser (or just capture the user's browser configuration and pass it
via the call to the hypothetical "getDocumentDOM()" in order to capture an
accurate scraped representation of a modern site.)
The existing examples I've seen store an Xwiki document in the database
first. I was hoping there was an "in memory" option that would allow for the
document to be maintained in the app's context for long enough to process
the remaining stream of plugin calls such as "getDivListById()" or
"getAnchorHREFsByExtension()" and then appropriately dispose the DOM when no
longer referenced, via garbage collection. Maybe compared to the
implementation headaches -- of retrieving a potentially large document into
memory incrementally, parsing it into a DOM incrementally, making that
available in the context, etc -- maybe I should just write the damn document
into the database, scrape it, and delete it.
Since I would use Xwiki to store a JSON "scrape" of the document in the DB
(as a xwiki doc), I could store it in XWiki.JavaScriptExtension[0] of the
retrieved document, and then just delete the wiki-contents after
scraping.... So actually, if anybody has any suggestions for "scraping" with
a retrieved document, stored as Xwiki doc, please, suggest as well! This
seems like an area potentially fraught with peril that many people have
already dealt with, so I would appreciate advice.
Thanks,
Niels
http://nielsmayer.com
Hi
Well, right now it is 1 step forward and 2 steps back.
After much trial and error I finally did this:
Convert to 2.0:
- BlogSheet
- CreatePost
- BlogPostTemplate
- BlogPostSheet
This enables me to create a 2.0 blog entry but the display of that
entry fails miserable.
For example the Edit Tools (Publish/Hide, Edit, Delete) are having
comment added to it because 2.0 adds comments of what it is doing into
the HTML page but when that is inside a string ("") and the code
contains double quotes as well all hell breaks loose.
But when I tried to convert BlogCode (which contains the creation of
the Edit Tools) then the panels start to fail. In turn these panels
are still 1.0 and so I cannot convert all of them.
Any idea how to fix that?
Thanks - Andy