Hi Vincent,
I liked XWiki on AlternativeTo and shared it on Twitter.
You may also want to consider adding XWiki as a tool on
.
Thanks,
Dylan
--
"If it's a good idea, go ahead and do it. It's much easier to apologize
than it is to get permission."
- Grace Hopper
On Sat, Nov 5, 2016 at 6:00 AM, <users-request(a)xwiki.org> wrote:
Send users mailing list submissions to
users(a)xwiki.org
To subscribe or unsubscribe via the World Wide Web, visit
http://lists.xwiki.org/mailman/listinfo/users
or, via email, send a message with subject or body 'help' to
users-request(a)xwiki.org
You can reach the person managing the list at
users-owner(a)xwiki.org
When replying, please edit your Subject line so it is more specific
than "Re: Contents of users digest..."
Today's Topics:
1. Showing XWiki love! (Vincent Massol)
2. Re: Showing XWiki love! (Vincent Massol)
3. Javascript Extension going wrong (D R)
4. Re: How to fix orphaned pages? (Julio Brum)
5. Re: Content before the blog (Julio Brum)
----------------------------------------------------------------------
Message: 1
Date: Fri, 4 Nov 2016 12:33:59 +0100
From: Vincent Massol <vincent(a)massol.net>
To: XWiki Users <users(a)xwiki.org>
Subject: [xwiki-users] Showing XWiki love!
Message-ID: <2F157234-05AC-44C5-8EAD-9148616154AF(a)massol.net>
Content-Type: text/plain; charset=utf-8
Hi XWiki users,
If you like XWiki, showing some love for it helps us continue the work.
It?s also a nice way to contribute something back to the project.
There are several ways in which you can show this love easily and
especially by sharing it to the outside world:
* Add a testimonial by tweeting it or replying to this thread or any other
place (blog, etc). I aggregate all testimonials I can find here:
https://www.xwiki.org/xwiki/bin/view/References/Testimonials)
* Add a like to XWiki on
http://alternativeto.net/software/xwiki/ + add a
comment / add a review
* Click on ?I use it!? on
https://www.openhub.net/p/xwiki
* Add yourself to the xwiki user map at
http://bit.ly/2ekPlex
* Add an upvote on
https://www.quora.com/What-
are-alternatives-to-Atlassian-Confluence-for-a-developer-
facing-website/answer/Iustin-Justin + add a comment
* Add a review on capterra:
http://www.capterra.com/
collaboration-software/spotlight/149030/XWiki/XWiki
* Add a review on getapp:
https://www.getapp.fr/collaboration-software/a/
xwiki/reviews/
Note: If someone knows of other places on the internet where people can
vote for xwiki and show their love for it, please add it to the list. I?ll
add all those to
http://dev.xwiki.org/xwiki/bin/view/Community/
Contributing#HSpreadtheword a bit later.
Thanks for your love!
-Vincent
XWiki committer
------------------------------
Message: 2
Date: Fri, 4 Nov 2016 13:46:00 +0100
From: Vincent Massol <vincent(a)massol.net>
To: XWiki Users <users(a)xwiki.org>
Subject: Re: [xwiki-users] Showing XWiki love!
Message-ID: <01602FB8-7CF4-4F4C-B9AA-63A0325CAF8F(a)massol.net>
Content-Type: text/plain; charset=utf-8
If you can, let us know here if you?ve done something so that we know
there are some people out there loving XWiki! :)
Thanks
-Vincent
On 04 Nov 2016, at 12:33, Vincent Massol
<vincent(a)massol.net> wrote:
Hi XWiki users,
If you like XWiki, showing some love for it helps us continue the work.
It?s also
a nice way to contribute something back to the project.
There are several ways in which you can show this love easily and
especially by
sharing it to the outside world:
* Add a testimonial by tweeting it or replying to this thread or any
other place
(blog, etc). I aggregate all testimonials I can find here:
https://www.xwiki.org/xwiki/bin/view/References/Testimonials)
a comment
/ add a review
* Click on ?I use it!? on
https://www.openhub.net/p/xwiki
* Add yourself to the xwiki user map at
http://bit.ly/2ekPlex
* Add an upvote on
https://www.quora.com/What-
are-alternatives-to-Atlassian-Confluence-for-a-developer-
facing-website/answer/Iustin-Justin + add a comment
* Add a review on capterra:
http://www.capterra.com/
collaboration-software/spotlight/149030/XWiki/XWiki
* Add a review on getapp:
https://www.getapp.fr/
collaboration-software/a/xwiki/reviews/
Note: If someone knows of other places on the internet where people can
vote for
xwiki and show their love for it, please add it to the list. I?ll
add all those to
http://dev.xwiki.org/xwiki/bin/view/Community/
Contributing#HSpreadtheword a bit later.
Thanks for your love!
-Vincent
XWiki committer
------------------------------
Message: 3
Date: Fri, 4 Nov 2016 14:18:33 +0100
From: D R <rir.ceg(a)gmail.com>
To: XWiki Users <users(a)xwiki.org>
Subject: [xwiki-users] Javascript Extension going wrong
Message-ID:
<CADXv6gRd_MqjiviYMPgBNXMrWWToWPtFsyL2Kqy
etzMCTPBQfg(a)mail.gmail.com>
Content-Type: text/plain; charset=UTF-8
Hi community,
I'm having a hard time getting a Javascript Extension for an
AppWithinMinutes livetable to work.
I have several livetable "enhancements" in it like changing background
color per field value which work properly.
As a reference I've used the example:
http://snippets.xwiki.org/xwiki/bin/view/Extension/Background+color+for+a+
livetable
Now I want to change the display of the value of a specific column, for
example to display an image or a button next to the value. This works only
for the last column in the livetable. All other rows look strange.
Example:
The simplified code:
```
document.observe("xwiki:livetable:newrow", function(ev){
$$('.sTxtUser').each(function(element){
var content = element.innerText;
if(content === undefined){
content = element.textContent;
}
element.replace('<td class="sTxtUser link typetext"
data-title="Username">"' + content + '"</td>')
});
});
```
I have 3 documents for the application with the following values for field
sTxtUser :
testuser1
test12345
anotheruser1
Using the above extension renders the livetable cells like this:
"""anotheruser1"""
""test12345""
"testuser1"
If I change the sort order:
"""testuser1"""
""test12345""
"anotheruser1"
So only the last row shows the desired output.
What am I doing wrong?
Regards,
Dennis
------------------------------
Message: 4
Date: Fri, 4 Nov 2016 16:49:38 -0200
From: Julio Brum <brumpaiva(a)gmail.com>
To: XWiki Users <users(a)xwiki.org>
Subject: Re: [xwiki-users] How to fix orphaned pages?
Message-ID:
<CAEyE4PA4wqBf69D=tc4k8uQ41=gZC6ayVp88gxWiiv-cGLqp_A@mail.
gmail.com>
Content-Type: text/plain; charset=UTF-8
Marius, thank you.
I use the 7.4.4 version. When viewing the panel 'Orphaned Pages' I found
that there are orphaned pages. I can place directly a value on doc.parent
field in the database?
Best Regards,
Julio
2016-11-04 8:25 GMT-02:00 Marius Dumitru Florea <
mariusdumitru.florea(a)xwiki.com>gt;:
What version of XWiki are you using? Starting
with XWiki 7.2 the Orphan
Pages tab in the Page Index is visible only if you enable the
parent-child
hierarchy mode (which is disabled by default).
See
http://jira.xwiki.org/browse/XWIKI-12520 . Also
http://platform.xwiki.org/xwiki/bin/view/Features/ContentOrganization/
NestedPagesMigration/
.
If the version of XWiki you're using is older than 7.2 then simply edit
the
orphan page and set its parent (from the
breadcrumb above the title
input).
Orphan pages don't do any harm. It's just
that the best practice in
content
organization is to have a hierarchy of pages so
each page should have a
parent, unless it's the root page. This helps navigation among other
things.
Hope this helps,
Marius
On Thu, Nov 3, 2016 at 10:54 PM, Julio Brum <brumpaiva(a)gmail.com> wrote:
Hi,
Orphaned pages is a bad thing? Why is that? How to fix?
Thank you in advance
_______________________________________________
users mailing list
users(a)xwiki.org
http://lists.xwiki.org/mailman/listinfo/users
_______________________________________________
users mailing list
users(a)xwiki.org
http://lists.xwiki.org/mailman/listinfo/users
------------------------------
Message: 5
Date: Fri, 4 Nov 2016 16:51:04 -0200
From: Julio Brum <brumpaiva(a)gmail.com>
To: XWiki Users <users(a)xwiki.org>
Subject: Re: [xwiki-users] Content before the blog
Message-ID:
<CAEyE4PCGhUsrxwM+oPdCabvYEuY0jFkPoKcEV9NMgZpB8v
td+Q(a)mail.gmail.com>
Content-Type: text/plain; charset=UTF-8
Marius, thank you.
I needed to do it on the same page (space) blog (because it contains all
others our site content. I was trying to avoid the work of moving the
contents. If there is no other solution, I will make the movement of
content)
Best Regards,
Julio
2016-11-04 8:29 GMT-02:00 Marius Dumitru Florea <
mariusdumitru.florea(a)xwiki.com>gt;:
Maybe the Display Macro
http://extensions.xwiki.org/xwiki/bin/view/Extension/Display+Macro can
help. On a separate page you write the content you want and then you
display the blog post using the Display Macro.
Hope this helps,
Marius
On Thu, Nov 3, 2016 at 10:57 PM, Julio Brum <brumpaiva(a)gmail.com> wrote:
> Hi,
>
> How can I place an additional content (in a space) before a blog?
>
> When I add a blog object (BlogClass), I can not put other content on
the
editing
page. In fact, I can put, but does not appear.
Thank you in advance
_______________________________________________
users mailing list
users(a)xwiki.org
http://lists.xwiki.org/mailman/listinfo/users
_______________________________________________
users mailing list
users(a)xwiki.org
http://lists.xwiki.org/mailman/listinfo/users
------------------------------
Subject: Digest Footer
_______________________________________________
users mailing list
users(a)xwiki.org
http://lists.xwiki.org/mailman/listinfo/users
------------------------------
End of users Digest, Vol 112, Issue 5
*************************************