Hello everyone,
My name is Venkata Rama Koundinya Lanka, studying third year, computer
science in Vasireddy Venkatadri Institute of Technology. I have experience
in developing android apps and I have previously done an internship in
android. I would like to contribute to the project *Finish and improve
Android XWiki Authenticator and Contacts Synchronization* for this Google
Summer of Code. I will be obliged if someone can guide me on how to get
started and how to proceed.
Thanking You,
Venkata Rama Koundinya Lanka
Hello everyone,
My name is Venkata Rama Koundinya Lanka, studying third year, computer
science in Vasireddy Venkatadri Institute of Technology. I have experience
in developing android apps and I have previously done an internship in
android. I would like to contribute to the project *Finish and improve
Android XWiki Authenticator and Contacts Synchronization* for this Google
Summer of Code. I will be obliged if someone can guide me on how to get
started and how to proceed.
Thanking You,
Venkata Rama Koundinya Lanka
Hi devs,
I need your input on some questions:
1. (Important) Where to commit Color Themes?
2. Where do we move old / deprecated Color Themes?
3. What should a Flamingo Theme contain?
---
1. Where to commit Color Themes?
We have a running vote for a new default Color Theme. So where should this
theme be committed? When considering this question think about the default
theme, but also to the other Color Themes variations that won't be voted as
a default.
A. Platform (
https://github.com/xwiki/xwiki-platform/tree/master/xwiki-platform-core/xwi…
)
PRO: Being default makes sense to be committed in Platform and to not have
a dependency towards a Contrib extension.
CON: It will depends on an 10.x XWiki version. The themes could be used for
any XWiki > 6.2. Having them outside Platform would allow installation also
on older versions.
CON: Slow release process for outside contributions
CON: Grouped: in the current implementation they come as a package, you
cannot install an individual module in a separate Flavor.
B. Grouped on Contrib but as individual modules (example
https://github.com/xwiki-contrib/color-themes/tree/master/color-theme-icebe…
)
CON: Grouped versioning and release process. Each theme could have its own
component on JIRA.
PRO: Medium contributions: The Maven / JIRA / module setup is done only in
the beginning, but still there are technical knowledge to be known how to
contribute a theme.
PRO: XWiki version independent - can be installed on older instances
C. Individual on Contrib (example
https://github.com/xwiki-contrib/color-theme-iceberg)
PRO/CON: Independent versioning and release process. Still we will be
spammed with JIRA projects for each theme.
CON: Slow contributions since you need to know how to create Maven modules,
provide JIRA components for each theme, release on Nexus, always ask for a
repo, etc.
D. Individual as XARs on e.x.o
PRO: Easy / rapid contributions: you just need to provide a XAR
PRO: Platform version independent
CON: Cannot be referenced as a dependency from a .pom
CON: No blaming or versioning of sources
---
IMO the default theme should be committed in Platform (A), but all the
other proposals should be in Contrib either grouped (B) or individual (C).
I prefer version B (grouped on Contrib) since the themes are very similar
in concept and for me it doesn't justify all the independent projects on
JIRA, etc. It would be similar to what I did for Icon Themes, see
https://github.com/xwiki-contrib/icon-themes
Other notes:
1.1 The themes from Platform that were not default, should be made as
extensions. This is the case for Garder, Kitty, Marina.
1.2 xwiki-platform-flamingo-theme-bootswatch
https://github.com/xwiki/xwiki-platform/tree/master/xwiki-platform-core/xwi…
should be put in Contrib, as extensions, since they don't relate to XWiki.
1.3 Keeping just the default in Platform is also good for Flavors. Not all
themes work for all Flavors. Each Flavor would add the dependency they
want. Still this means more work in selecting these themes.
---
2. Where do we move old / deprecated Color Themes?
This question applies for old Color Themes. For example when we retired
Colibri, we moved all the themes in the Attic
https://github.com/xwiki-attic/skin-colibri/tree/master/xwiki-platform-colo…
even though those themes still worked (since we made them backwards
compatible).
Also the majority of themes on e.x.o are as XARs. How will we deprecate
those?
Also how do we mark themes that are not good looking anymore? Also this
point is very subjective.
I guess the answer to this question depends on what were we vote to commit
the Color Themes.
---
3. What should a Flamingo Theme contain? (difference between Skin and CT)
The Colibri Color Themes contained just colors. Now with the Flamingo
Themes's Advanced section you could easily remove the need to have a Skin
and add there also CSS rules, etc.
The Bootswatch (xwiki-platform-flamingo-theme-bootswatch) themes are a very
bad example, since they change quite a lot of styling and not just
variables.
I just want to enforce that default themes and especially themes that are
provided by XWiki Development Theme should contain only variables. If there
are things we need to override we should fix them first in the Skin, not
just abuse the "Advanced" section capabilities and power.
This is important since the changes done in the Skin apply for all the
Themes. You don't need to duplicate the "hack" for all the themes.
---
Let me know what you think.
Thanks,
Caty
+1
Thanks,
Alex
On Mar 15, 2018 12:26, "Thomas Mortagne" <thomas.mortagne(a)xwiki.com> wrote:
+1
On Thu, Mar 15, 2018 at 9:30 AM, Vincent Massol <vincent(a)massol.net> wrote:
> Hi devs,
>
> As part of the STAMP research project, we’ve developed a new tool
(Descartes, based on Pitest) to measure the quality of tests. It generates
a mutation score for your tests, defining how good the tests are. Technical
Descartes performs some extreme mutations on the code under test (e.g.
remove content of void methods, return true for methods returning a
boolean, etc - See https://github.com/STAMP-project/pitest-descartes). If
the test continues to pass then it means it’s not killing the mutant and
thus its mutation score decreases.
>
> So in short:
> * Jacoco/Clover: measure how much of the code is tested
> * Pitest/Descartes: measure how good the tests are
>
> Both provide a percentage value.
>
> I’m proposing to compute the current mutation scores for xwiki-commons
and xwiki-rendering and fail the build when new code is added that reduce
the mutation score threshold (exactly the same as our jacoco threshold and
strategy).
>
> I consider this is an experiment to push the limit of software
engineering a bit further. I don’t know how well it’ll work or not. I
propose to do the work and test this for over 2-3 months and see how well
it works or not. At that time we can then decide whether it works or not
(i.e whether the gains it brings are more important than the problems it
causes).
>
> Here’s my +1 to try this out.
>
> Some links:
> * pitest: http://pitest.org/
> * descartes: https://github.com/STAMP-project/pitest-descartes
> * http://massol.myxwiki.org/xwiki/bin/view/Blog/ControllingTestQuality
> * http://massol.myxwiki.org/xwiki/bin/view/Blog/MutationTestingDescartes
>
> If you’re curious, you can see a screenshot of a mutation score report at
http://massol.myxwiki.org/xwiki/bin/download/Blog/MutationTestingDescartes/
report.png
>
> Please cast your votes.
>
> Thanks
> -Vincent
--
Thomas Mortagne
Hi devs,
See below
> Begin forwarded message:
>
> From: admin(a)xwiki.org
> Subject: [xwiki-notifications] XWiki updates, 22 pages have been modified since 2018/03/12
> Date: 13 March 2018 at 00:00:20 CET
> To: notifications(a)xwiki.org
> Reply-To: devs(a)xwiki.org
>
> Contents <>
> extensions <x-msg://310/#extensions>
> Extension <x-msg://310/#extensions:Extension>
> Diagram Application <x-msg://310/#extensions:Extension.Diagram Application>
> Extension <x-msg://310/#extensions:Extension.Figure Macro>
> Figure Macro <x-msg://310/#extensions:Extension.Figure Macro.WebHome>
> Extension.LaTeX <x-msg://310/#extensions:Extension.LaTeX.Syntax 1\.0>
> LaTeX Syntax 1.0 <x-msg://310/#extensions:Extension.LaTeX.Syntax 1\.0.WebHome>
> Extension <x-msg://310/#extensions:Extension.Numbered Reference Macro>
> Numbered Reference Macro <x-msg://310/#extensions:Extension.Numbered Reference Macro.WebHome>
> Extension <x-msg://310/#extensions:Extension.Organizational Chart Macro>
> Organizational Chart Macro <x-msg://310/#extensions:Extension.Organizational Chart Macro.WebHome>
> Extension <x-msg://310/#extensions:Extension>
> Syntax Highlighting Application <x-msg://310/#extensions:Extension.Syntax Highlighting Application>
> xwiki <x-msg://310/#xwiki>
> Documentation.DevGuide.DataModel <x-msg://310/#xwiki:Documentation.DevGuide.DataModel.Computed Pseudofield>
> Computed Pseudofield <x-msg://310/#xwiki:Documentation.DevGuide.DataModel.Computed Pseudofield.WebHome>
> ReleaseNotes.Data.XWiki.10\.2RC1 <x-msg://310/#xwiki:ReleaseNotes.Data.XWiki.10\.2RC1.Change002>
> Figure Macro <x-msg://310/#xwiki:ReleaseNotes.Data.XWiki.10\.2RC1.Change002.WebHome>
> XWiki <x-msg://310/#xwiki:XWiki>
> Adi <x-msg://310/#xwiki:XWiki.Adi>
> AutomationX <x-msg://310/#xwiki:XWiki.AutomationX>
> Han <x-msg://310/#xwiki:XWiki.Han>
> Metatricity <x-msg://310/#xwiki:XWiki.Metatricity>
> QueenEche <x-msg://310/#xwiki:XWiki.QueenEche>
> The_CHIRIk <x-msg://310/#xwiki:XWiki.The_CHIRIk>
> a <x-msg://310/#xwiki:XWiki.a>
> asasa <x-msg://310/#xwiki:XWiki.asasa>
> Profile of Ilie Andriuta <x-msg://310/#xwiki:XWiki.iandriuta>
> koi <x-msg://310/#xwiki:XWiki.koi>
> koundi <x-msg://310/#xwiki:XWiki.koundi>
> queeneche <x-msg://310/#xwiki:XWiki.queeneche>
> rsihieee <x-msg://310/#xwiki:XWiki.rsihieee>
> vaibhav <x-msg://310/#xwiki:XWiki.vaibhav>Hello Developers,
>
> This message is sent by XWiki. Here are the pages in your watchlist that have been modified since the last notification:
[snip]
>
> Profile of Ilie Andriuta <http://www.xwiki.org/xwiki/bin/view/XWiki/iandriuta> <x-msg://310/#nav>XWiki.iandriuta
>
> Between 2018/03/12 and 2018/03/12, the page has been modified 26 times, by 1 user: Ilie Andriuta
> XWiki.WatchListClass
> documents:
> xwiki:XWiki.iandriuta test:QA.XWiki 9\.5 RC1 test:QA.Google Chrome 59 test:Administration Tests.Annotations In Old Syntax test:TestReportingExecutions.Administration Tests\.Create And Delete Group9 test:TestReportingExecutions.Administration Tests\.Create And Delete User9 test:TestReportingExecutions.Administration Tests\.Create Page From Template9 test:TestReportingExecutions.Administration Tests\.Register From Administration9 test:TestReportingExecutions.Administration Tests\.Image Selection Limited To Current Page9 test:Administration Tests.Space Rights Show Users test:TestReportingExecutions.Nested Spaces\.Copy a space9 test:TestReportingExecutions.Nested Spaces\.Copy a WebHome page from one space to another9 test:Nested Spaces.Copy and Paste the link of a document test:TestReportingExecutions.Nested Spaces\.Create a child document of any current document9 test:TestReportingExecutions.Nested Spaces\.Create a child document to store information about sub aspects of documents9 test:TestReportingExecutions.Nested Spaces\.Create a L1 Nested Document9 test:TestReportingExecutions.Nested Spaces\.Create a L4 Nested Document9 test:TestReportingExecutions.Nested Spaces\.Create terminal page9 test:TestReportingExecutions.Nested Spaces\.Delete non terminal page9 test:TestReportingExecutions.Nested Spaces\.Expand tree structure9 test:TestReportingExecutions.Nested Spaces\.Export Import a document with defined permissions9 test:TestReportingExecutions.Nested Spaces\.Export Import a document with history9 test:TestReportingExecutions.Nested Spaces\.Grant view rights on a document for a group9 test:TestReportingExecutions.Nested Spaces\.Inherit permissions to any child document (with no overridden permissions on the child)9 test:TestReportingExecutions.Nested Spaces\.Move document to top-level path non-existing parents9 test:TestReportingExecutions.Nested Spaces\.Move only parent9 test:TestReportingExecutions.Nested Spaces\.Navigate through the parents using the breadcrumb9 test:TestReportingExecutions.Nested Spaces\.Preserve document permissions after move9 test:TestReportingExecutions.Nested Spaces\.Rename Document9 test:TestReportingExecutions.Nested Spaces\.Share the link containing a nested space to another person9 test:TestReportingExecutions.Nested Spaces\.The breadcrumb displays the correct path9 test:Security Tests.Deny Comment Right For A Group test:TestReportingExecutions.Security Tests\.Deny Comment Right For A Group9 test:Security Tests.Deny Comment Rights For An User test:Security Tests.Deny Edit and Comment right on a page for Admin test:Security Tests.Deny edit right for a group and grant edit right for a user test:Security Tests.Deny Edit Rights For A Group test:Security Tests.Deny Edit Rights For An User test:Security Tests.Deny the rights for a user at document level and give the rights to a group test:Security Tests.Deny the rights for a user at space level and give the rights to a group at document level test:Security Tests.Deny View Rights For A Group test:Security Tests.Deny View Rights For An User test:TestReportingExecutions.Security Tests\.Deny Comment Rights For An User9 test:TestReportingExecutions.Security Tests\.Deny Edit and Comment right on a page for Admin9 test:TestReportingExecutions.Security Tests\.Deny edit right for a group and grant edit right for a user9 test:TestReportingExecutions.Security Tests\.Deny Edit Rights For A Group9 test:TestReportingExecutions.Security Tests\.Deny Edit Rights For An User9 test:TestReportingExecutions.Security Tests\.Deny the rights for a user at document level and give the rights to a group9 test:TestReportingExecutions.Security Tests\.Deny the rights for a user at space level and give the rights to a group at document level9 test:TestReportingExecutions.Security Tests\.Deny the rights for a user at wiki level and give rights to a group at space level9 test:TestReportingExecutions.Security Tests\.Deny View Rights For A Group9 test:TestReportingExecutions.Security Tests\.Deny View Rights For An User9 test:TestReportingExecutions.Security Tests\.Grant Create Wiki Right For An User9 test:Security Tests.Grant edit right for a user on a page test:TestReportingExecutions.Security Tests\.Grant edit right for a user on a page9 test:Security Tests.Group rights on a space test:Security Tests.Group rights on a space with a Subgroup included test:Security Tests.Subwiki: Group rights on a space test:Security Tests.Subwiki: Group rights on a space with a Subgroup included test:TestReportingExecutions.Security Tests\.Group rights on a space9 test:TestReportingExecutions.Security Tests\.Group rights on a space with a Subgroup included9 test:QA.XWiki 9\.5\.1 test:TestReportingExecutions.Security Tests\.Deny Create Wiki Right For A Group9 test:Security Tests.Subwiki: Deny the rights for a user at document level and give the rights to a group test:TestReportingExecutions.Security Tests\.Subwiki: Deny the rights for a user at document level and give the rights to a group9 test:Security Tests.Subwiki: Deny the rights for a user at space level and give the rights to a group at document level test:TestReportingExecutions.Security Tests\.Subwiki: Deny the rights for a user at space level and give the rights to a group at document level9 test:TestReportingExecutions.Security Tests\.Subwiki: Deny the rights for a user at wiki level and give rights to a group at space level9 test:TestReportingExecutions.Security Tests\.Subwiki: Group rights on a space9 test:TestReportingExecutions.Security Tests\.Subwiki: Group rights on a space with a Subgroup included9 test:TestReportingExecutions.Search Tests\.Modify Page And Search9 test:TestReportingExecutions.Search Tests\.Search Location Facet9 test:CKEditor.Div select test:TestReportingExecutions.CKEditor\.Div select9 test:TestReportingExecutions.CKEditor\.Remove a link9 test:TestReportingExecutions.CKEditor\.Text styles9 test:TestReportingExecutions.CKEditor\.Use XWiki link syntax in CKEditor9 test:TestReportingExecutions.WYSIWYG Tests\.Add Italic Text In WYSIWYG Mode9 test:WYSIWYG Tests.Insert Translation Macro test:WYSIWYG Tests.Insert Velocity Macro test:TestReportingExecutions.WYSIWYG Tests\.Add Subscript Text In WYSIWYG Mode9 test:TestReportingExecutions.WYSIWYG Tests\.Add Superscript Text In WYSIWYG Mode9 test:TestReportingExecutions.WYSIWYG Tests\.Add Title Formatting To Selected Text9 test:TestReportingExecutions.WYSIWYG Tests\.Add Underline Text In WYSIWYG Mode9 test:TestReportingExecutions.WYSIWYG Tests\.Apply And Remove Numbering Styling In WYSIWYG Mode9 test:TestReportingExecutions.WYSIWYG Tests\.Apply Bold Styling in WYSIWYG Mode9 test:TestReportingExecutions.WYSIWYG Tests\.Apply Bullets Styling In WYSIWYG Mode9 test:TestReportingExecutions.WYSIWYG Tests\.Apply Plain Text Styling9 test:TestReportingExecutions.WYSIWYG Tests\.Attached Image Wysiwyg Center Alignment9 test:TestReportingExecutions.WYSIWYG Tests\.Attached Image Wysiwyg Left Alignment9 test:TestReportingExecutions.WYSIWYG Tests\.Attached Image Wysiwyg Right Alignment9 test:TestReportingExecutions.WYSIWYG Tests\.Attached Image Wysiwyg Top Alignment9 test:TestReportingExecutions.WYSIWYG Tests\.Cancel Fullscreen Wysiwyg9 test:TestReportingExecutions.WYSIWYG Tests\.Cancel Wysiwyg9 test:TestReportingExecutions.WYSIWYG Tests\.Changing an existing link9 test:TestReportingExecutions.WYSIWYG Tests\.Collapse And Expand Selected Macros9 test:TestReportingExecutions.WYSIWYG Tests\.Create Link To Email Address9 test:TestReportingExecutions.WYSIWYG Tests\.Create Link To Existing Page9 test:TestReportingExecutions.WYSIWYG Tests\.Create Link To Attachment9 test:TestReportingExecutions.WYSIWYG Tests\.Create Link To Web Page With Changed Label9 test:TestReportingExecutions.WYSIWYG Tests\.Create Link To Web Page With Tooltip That Opens In New Window9 test:TestReportingExecutions.WYSIWYG Tests\.Delete Macro9 test:TestReportingExecutions.WYSIWYG Tests\.Delete Table9 test:TestReportingExecutions.WYSIWYG Tests\.Delete Table Row9 test:TestReportingExecutions.WYSIWYG Tests\.Edit HTML Macro9 test:TestReportingExecutions.WYSIWYG Tests\.Edit In Full Screen WYSIWYG Mode9 test:TestReportingExecutions.WYSIWYG Tests\.Edit Section In WYSIWYG Mode9 test:TestReportingExecutions.WYSIWYG Tests\.Edit Source Cancel9 test:TestReportingExecutions.WYSIWYG Tests\.Edit Source Save Continue9 test:TestReportingExecutions.WYSIWYG Tests\.Edit Source Save View9 test:WYSIWYG Tests.Edit Title Wysiwyg test:TestReportingExecutions.WYSIWYG Tests\.Edit Title Wysiwyg9 test:TestReportingExecutions.WYSIWYG Tests\.Insert A Horizontal Ruler In WYSIWYG Mode9 test:TestReportingExecutions.WYSIWYG Tests\.Insert Activity Macro9 test:TestReportingExecutions.WYSIWYG Tests\.Insert Attachment Selector Macro9 test:TestReportingExecutions.WYSIWYG Tests\.Insert Box Macro9 test:TestReportingExecutions.WYSIWYG Tests\.Insert Cache Macro9 test:TestReportingExecutions.WYSIWYG Tests\.Insert Chart Macro9 test:TestReportingExecutions.WYSIWYG Tests\.Insert Container Macro9 test:TestReportingExecutions.WYSIWYG Tests\.Insert Content Macro With Syntax 1x9 test:TestReportingExecutions.WYSIWYG Tests\.Insert Context Macro9 test:TestReportingExecutions.WYSIWYG Tests\.Insert Display Macro9 test:TestReportingExecutions.WYSIWYG Tests\.Insert Error Message Macro9 test:TestReportingExecutions.WYSIWYG Tests\.Insert External Image9 test:TestReportingExecutions.WYSIWYG Tests\.Insert External Link9 test:TestReportingExecutions.WYSIWYG Tests\.Insert Footnote Macro9 test:TestReportingExecutions.WYSIWYG Tests\.Insert Formula Macro9 test:TestReportingExecutions.WYSIWYG Tests\.Insert Code Macro9 test:TestReportingExecutions.WYSIWYG Tests\.Insert Groovy Macro9 test:TestReportingExecutions.WYSIWYG Tests\.Insert Image From All Pages9 test:TestReportingExecutions.WYSIWYG Tests\.Insert Include Macro9 test:TestReportingExecutions.WYSIWYG Tests\.Insert Documents Macro9 test:WYSIWYG Tests.Insert Id Macro test:TestReportingExecutions.WYSIWYG Tests\.Insert Id Macro9 test:TestReportingExecutions.WYSIWYG Tests\.Insert PDF Macro9 test:TestReportingExecutions.WYSIWYG Tests\.Insert Put Footnote Macro9 test:TestReportingExecutions.WYSIWYG Tests\.Insert Rss Macro9 test:TestReportingExecutions.WYSIWYG Tests\.Insert Script Macro9 test:TestReportingExecutions.WYSIWYG Tests\.Insert Space Index Macro9 test:TestReportingExecutions.WYSIWYG Tests\.Insert Success Message Macro9 test:TestReportingExecutions.WYSIWYG Tests\.Insert Symbol9 test:TestReportingExecutions.WYSIWYG Tests\.Insert Table9 test:TestReportingExecutions.WYSIWYG Tests\.Insert Table Uncheck First Row Is A Header Row9 test:WYSIWYG Tests.Insert Tag Cloud Macro test:TestReportingExecutions.WYSIWYG Tests\.Insert TOC Macro9 test:TestReportingExecutions.WYSIWYG Tests\.Insert Translation Macro9 test:TestReportingExecutions.WYSIWYG Tests\.Insert Velocity Macro9 test:TestReportingExecutions.WYSIWYG Tests\.Insert Warning Message Macro9 test:TestReportingExecutions.WYSIWYG Tests\.Insert Watchlist Macro9 test:TestReportingExecutions.WYSIWYG Tests\.Insert Wikis Macro9 test:TestReportingExecutions.WYSIWYG Tests\.Link Attached File Wysiwyg9 test:TestReportingExecutions.WYSIWYG Tests\.Link Wiki Page Wysiwyg9 test:TestReportingExecutions.WYSIWYG Tests\.Paste From Clipboard With Filter Styles9 test:TestReportingExecutions.WYSIWYG Tests\.Paste From Clipboard Without Filter Styles9 test:TestReportingExecutions.WYSIWYG Tests\.Paste some content in the WYSIWYG editor9 test:TestReportingExecutions.WYSIWYG Tests\.Preview A Page In Fullscreen WYSIWYG Mode9 test:TestReportingExecutions.WYSIWYG Tests\.Preview A Page In WYSIWYG Mode9 test:TestReportingExecutions.WYSIWYG Tests\.Save Continue Minor Wysiwyg9 test:TestReportingExecutions.WYSIWYG Tests\.Save Continue Version Summary Wysiwyg9 test:TestReportingExecutions.WYSIWYG Tests\.Save Continue Wysiwyg9 test:TestReportingExecutions.WYSIWYG Tests\.Save View Minor Wysiwyg9 test:TestReportingExecutions.WYSIWYG Tests\.Save View Version Summary Wysiwyg9 test:TestReportingExecutions.WYSIWYG Tests\.Save View Wysiwyg9 test:TestReportingExecutions.WYSIWYG Tests\.Script Macro9 test:TestReportingExecutions.WYSIWYG Tests\.Table Delete Column9 test:TestReportingExecutions.WYSIWYG Tests\.Table Insert Column After9 test:TestReportingExecutions.WYSIWYG Tests\.Table Insert Column Before9 test:TestReportingExecutions.WYSIWYG Tests\.Table Insert Row After9 test:TestReportingExecutions.WYSIWYG Tests\.Table Insert Row Before9 test:TestReportingExecutions.WYSIWYG Tests\.Undo And Redo in WYSIWYG Mode9 test:TestReportingExecutions.WYSIWYG Tests\.Insert Message Sender Macro9 test:TestReportingExecutions.WYSIWYG Tests\.Insert Office Document Viewer9 test:TestReportingExecutions.WYSIWYG Tests\.Insert Python Macro9 test:TestReportingExecutions.WYSIWYG Tests\.Insert User Avatar Macro9 test:Wiki Tests.Cancel the deleting process of a wiki test:Wiki Tests.Delete Wiki test:Wiki Tests.Edit a translation test:Wiki Tests.Install extensions only on subwikis test:TestReportingExecutions.Web Tests\.Add A Comment9 test:TestReportingExecutions.Web Tests\.Add A Heading2 In Wiki Mode9 test:TestReportingExecutions.Web Tests\.Add A Heading4 In Wiki Mode9 test:TestReportingExecutions.Web Tests\.Delete an attachment from More Actions Menu9 test:TestReportingExecutions.Web Tests\.Add Italic Text In Wiki Mode9 test:TestReportingExecutions.Web Tests\.Add Property In Class Edit Mode9 test:TestReportingExecutions.Web Tests\.Add Strikethrough Text In Wiki Mode9 test:TestReportingExecutions.Web Tests\.Add Underline Text In Wiki Mode9 test:TestReportingExecutions.Web Tests\.Add Velocity Code In Wiki Mode9 test:TestReportingExecutions.Web Tests\.Apply Bullets Styling In Wiki Mode9 test:TestReportingExecutions.Web Tests\.Apply HTML To Selected Text9 test:TestReportingExecutions.Web Tests\.Attach A File Twice from More Actions Menu9 test:Web Tests.Attach a office document from More Actions Menu test:TestReportingExecutions.Web Tests\.Attach Two Files9 test:TestReportingExecutions.Web Tests\.Cancel A Comment9 test:TestReportingExecutions.Web Tests\.Cancel a comment from More Actions Menu9 test:TestReportingExecutions.Web Tests\.Cancel Editing In Fullscreen Wiki Mode9 test:TestReportingExecutions.Web Tests\.Cancel Editing In Wiki Mode9 test:TestReportingExecutions.Web Tests\.Compare Two Minor Versions9 test:Web Tests.Copy A Page test:TestReportingExecutions.Web Tests\.Copy A Page9 test:TestReportingExecutions.Web Tests\.Correct Url Is Accessed After Login9 test:Web Tests.Create External Link In Wiki Mode test:Web Tests.Create Internal Link In Wiki Mode test:TestReportingExecutions.Web Tests\.Create Internal Link In Wiki Mode9 test:TestReportingExecutions.Web Tests\.Create Page9 test:TestReportingExecutions.Web Tests\.Default Attachment Size Limit of 32MB9 test:TestReportingExecutions.Web Tests\.Delete a comment from More Actions Menu9 test:TestReportingExecutions.Web Tests\.Delete A Page9 test:TestReportingExecutions.Web Tests\.Delete An Attachment9 test:TestReportingExecutions.Web Tests\.Delete Comment9 test:TestReportingExecutions.Web Tests\.Delete version range from More Actions Menu9 test:Web Tests.Create Space test:TestReportingExecutions.Web Tests\.Edit A Page In Object Mode9 test:TestReportingExecutions.Web Tests\.Edit A Page Inline9 test:Web Tests.Edit Title In Wiki Mode test:Web Tests.Exit Fullscreen In Wiki Mode test:TestReportingExecutions.Web Tests\.Edit Title In Wiki Mode9 test:TestReportingExecutions.Web Tests\.Forgot your username9 test:TestReportingExecutions.Web Tests\.Information from More Actions Menu9 test:Web Tests.Insert A Horizontal Ruler In Wiki Mode test:TestReportingExecutions.Web Tests\.Insert A Horizontal Ruler In Wiki Mode9 test:Web Tests.Insert HTML Code In Wiki Mode test:Web Tests.Preview A Page In Fullscreen Wiki Mode test:Web Tests.Preview A Page In Wiki Mode test:TestReportingExecutions.Web Tests\.Jump To A Page Using Ctrl-G9 test:TestReportingExecutions.Web Tests\.Login And Logout9 test:TestReportingExecutions.Web Tests\.Login With Invalid Credentials9 test:TestReportingExecutions.Web Tests\.Login With Invalid Username9 test:TestReportingExecutions.Web Tests\.Preview A Comment9 test:TestReportingExecutions.Web Tests\.Preview a comment from More Actions Menu9 test:TestReportingExecutions.Web Tests\.Preview A Page In Fullscreen Wiki Mode9 test:TestReportingExecutions.Web Tests\.Preview A Page In Wiki Mode9 test:Web Tests.Quick Links Jump to a Page test:TestReportingExecutions.Web Tests\.Quick Links Jump to a Page9 test:TestReportingExecutions.Web Tests\.Redirect To The Reset Password Page9 test:TestReportingExecutions.Web Tests\.Register John Smith9 test:TestReportingExecutions.Web Tests\.Rename Page9 test:TestReportingExecutions.Web Tests\.Reply To A Comment9 test:TestReportingExecutions.Web Tests\.Import Office Document9 test:TestReportingExecutions.Web Tests\.Rollback To A Minor Version9 test:TestReportingExecutions.Web Tests\.Save A Page As A Minor Version9 test:TestReportingExecutions.Web Tests\.Save And Continue A Page9 test:Web Tests.Save And Continue In Fullscreen Wiki Mode test:Web Tests.Save And Continue With A Version Summary In Wiki Mode test:Web Tests.Save And View In Fullscreen Wiki Mode test:Web Tests.Save View Version Summary Wiki test:TestReportingExecutions.Web Tests\.Save And Continue In Fullscreen Wiki Mode9 test:TestReportingExecutions.Web Tests\.Save And Continue With A Version Summary In Wiki Mode9 test:TestReportingExecutions.Web Tests\.Save And View In Fullscreen Wiki Mode9 test:TestReportingExecutions.Web Tests\.Save View Version Summary Wiki9 test:TestReportingExecutions.Web Tests\.See A Specific Version Of A Page9 test:TestReportingExecutions.Web Tests\.See Information About A Page9 test:Web Tests.Select Text And Create External Link In Wiki Mode test:Web Tests.Select Text And Create Internal Link In Wiki Mode test:Web Tests.Select An Image With The Attached Image Button test:TestReportingExecutions.Web Tests\.Select An Image With The Attached Image Button9 test:TestReportingExecutions.Web Tests\.Select Text And Create External Link In Wiki Mode9 test:TestReportingExecutions.Web Tests\.Select Text And Create Internal Link In Wiki Mode9 test:TestReportingExecutions.Web Tests\.Share Email9 test:TestReportingExecutions.Web Tests\.Share page by email9 test:TestReportingExecutions.Web Tests\.Show And Hide Minor Edits In History Tab9 test:TestReportingExecutions.Web Tests\.View An Office Attachment9 test:TestReportingExecutions.Web Tests\.View Source9 test:User Tests.Change Avatar Image test:User Tests.Change Avatar Image Select Another Image test:TestReportingExecutions.User Tests\.Edit Profile9 test:User Tests.Watch Page And Delete It From Watchlist test:Notification Tests.Clear All test:Notification Tests.Load older notifications test:Notification Tests.Notification Filters (Notification Menu) test:TestReportingExecutions.Notification Tests\.Notification Filters (Notification Menu)9 test:Notification Tests.Notification Filters (E-Mail) test:TestReportingExecutions.Notification Tests\.Notification Filters (E-Mail)9 test:Installers.Test EXE installer on Windows 10 test:Installers.Test EXE Installer on Windows 7 test:Installers.Test EXE Installer on Windows 8\.1 test:Installers.WebHome test:XPoll Application Tests.Add characters into title test:XPoll Application Tests.Add proposals test:XPoll Application Tests.Change the description test:XPoll Application Tests.Change the name test:TestReportingExecutions.XPoll Application Tests\.Change the name9 test:XPoll Application Tests.Change the proposals test:XPoll Application Tests.Change the Status test:XPoll Application Tests.Change the Status to Active test:XPoll Application Tests.Change the Status to Finished test:TestReportingExecutions.XPoll Application Tests\.Change the Status9 test:TestReportingExecutions.XPoll Application Tests\.Change the Status to Active9 test:TestReportingExecutions.XPoll Application Tests\.Create a new poll9 test:XPoll Application Tests.Delete a poll test:TestReportingExecutions.XPoll Application Tests\.Delete a poll9 test:XPoll Application Tests.Deny view rights for a user test:XPoll Application Tests.Filter the polls test:TestReportingExecutions.XPoll Application Tests\.Deny view rights for a user9 test:TestReportingExecutions.XPoll Application Tests\.Filter the polls9 test:TestReportingExecutions.XPoll Application Tests\.Multiple clicks on Save button9 test:XPoll Application Tests.Sort the polls test:XPoll Application Tests.Vote a poll test:XPoll Application Tests.Winners are accurate in the livetable test:XPoll Application Tests.Remove proposals test:TestReportingExecutions.XPoll Application Tests\.Sort the polls9 test:XPoll Application Tests.Special characters from pool title into Recent pools panel test:TestReportingExecutions.XPoll Application Tests\.Special characters from pool title into Recent pools panel9 test:TestReportingExecutions.XPoll Application Tests\.Vote a poll9 test:TestReportingExecutions.XPoll Application Tests\.Winners are accurate in the livetable9 test:TestReportingExecutions.Flash Messages Application Tests\.Change the group9 test:TestReportingExecutions.Flash Messages Application Tests\.Change the message9 test:TestReportingExecutions.Flash Messages Application Tests\.Create new Flash entry9 test:TestReportingExecutions.Flash Messages Application Tests\.Delete an entry9 test:TestReportingExecutions.Flash Messages Application Tests\.Deny view rights for a user9 test:Flash Messages Application Tests.Filter the entries test:TestReportingExecutions.Flash Messages Application Tests\.Filter the entries9 test:TestReportingExecutions.Flash Messages Application Tests\.Modify the Navigation bar height9 test:Flash Messages Application Tests.Switch between entries test:TestReportingExecutions.Flash Messages Application Tests\.Switch between entries9 test:Flash Messages Application Tests.Uninstall Flash Application test:TestReportingExecutions.Flash Messages Application Tests\.Check the installation logs9 test:TestReportingExecutions.Flash Messages Application Tests\.Add an image to the Flash message9 test:Forum Application Tests.Add a comment test:Forum Application Tests.Add a comment to a flag test:Forum Application Tests.Delete a comment test:Forum Application Tests.Delete a topic test:Forum Application Tests.Add forum test:TestReportingExecutions.Forum Application Tests\.Add an answer9 test:Forum Application Tests.Change the reason to a flag test:Forum Application Tests.Change the status to a flag test:TestReportingExecutions.Forum Application Tests\.Check the breadcrumb9 test:TestReportingExecutions.Forum Application Tests\.Delete a comment9 test:TestReportingExecutions.Forum Application Tests\.Delete Forums9 test:TestReportingExecutions.Forum Application Tests\.Deny the view Rights for a user on a Topic page9 test:TestReportingExecutions.Forum Application Tests\.Deny View rights for a group on a Topic page9 test:TestReportingExecutions.Forum Application Tests\.Edit a comment9 test:TestReportingExecutions.Forum Application Tests\.Edit an answer9 test:TestReportingExecutions.Forum Application Tests\.Flag an answer9 test:TestReportingExecutions.Forum Application Tests\.Permalinks for answers9 test:TestReportingExecutions.Forum Application Tests\.Permalinks for topics9 test:TestReportingExecutions.Forum Application Tests\.Rename the forum9 test:TestReportingExecutions.Forum Application Tests\.Total topics counter9 test:TestReportingExecutions.Forum Application Tests\.Sorting by Dates, Votes, Comments9 test:TestReportingExecutions.Forum Application Tests\.Uninstall the Forum Application9 test:TestReportingExecutions.Mocca Calendar Application Tests\.Calendar view month, week, day9 test:TestReportingExecutions.Mocca Calendar Application Tests\.Change the calendar's description9 test:TestReportingExecutions.Mocca Calendar Application Tests\.Change the calendar's title9 test:TestReportingExecutions.Mocca Calendar Application Tests\.Change the event's calendar9 test:Mocca Calendar Application Tests.Change the event's description test:Mocca Calendar Application Tests.Change the event's end date test:TestReportingExecutions.Mocca Calendar Application Tests\.Change the event's end date9 test:Mocca Calendar Application Tests.Change the event's start date test:TestReportingExecutions.Mocca Calendar Application Tests\.Change the event's start date9 test:Mocca Calendar Application Tests.Change the event's title test:TestReportingExecutions.Mocca Calendar Application Tests\.Change the event's title9 test:TestReportingExecutions.Mocca Calendar Application Tests\.Create a new event9 test:TestReportingExecutions.Mocca Calendar Application Tests\.Delete a calendar9 test:Mocca Calendar Application Tests.Deny view rights for a group test:TestReportingExecutions.Mocca Calendar Application Tests\.Deny view rights for a group9 test:Mocca Calendar Application Tests.Deny view rights for a user test:TestReportingExecutions.Mocca Calendar Application Tests\.Deny view rights for a user9 test:TestReportingExecutions.Mocca Calendar Application Tests\.Drag and drop an event in month view9 test:Mocca Calendar Application Tests.Expand an event in month view test:TestReportingExecutions.Mocca Calendar Application Tests\.Drag and drop an event in week view9 test:Mocca Calendar Application Tests.Expand an event in day view test:TestReportingExecutions.Mocca Calendar Application Tests\.Expand an event in day view9 test:Mocca Calendar Application Tests.Expand an event in week view test:TestReportingExecutions.Mocca Calendar Application Tests\.Expand an event in week view9 test:TestReportingExecutions.Mocca Calendar Application Tests\.Filter the calendars9 test:Mocca Calendar Application Tests.Mocca Calendar App accessible through Applications panel test:TestReportingExecutions.Mocca Calendar Application Tests\.Mocca Calendar Macro9 test:TestReportingExecutions.Mocca Calendar Application Tests\.Multiple events with the same name in a calendar9 test:TestReportingExecutions.Mocca Calendar Application Tests\.Navigate through calendar's days9 test:TestReportingExecutions.Mocca Calendar Application Tests\.Navigate through calendar's months9 test:TestReportingExecutions.Mocca Calendar Application Tests\.Navigate through calendar's weeks9 test:Mocca Calendar Application Tests.Shrink an event in month view test:TestReportingExecutions.Mocca Calendar Application Tests\.Shrink an event in day view9 test:TestReportingExecutions.Mocca Calendar Application Tests\.Shrink an event in week view9 test:TestReportingExecutions.Mocca Calendar Application Tests\.Sort the calendars9 test:TestReportingExecutions.Mocca Calendar Application Tests\.Start Page9 test:Statistics Application Tests.Statistics in Apps Panel test:CKEditor.Apply Bold Styling test:CKEditor.Apply Italic Styling test:CKEditor.Add Underline Styling test:CKEditor.Add Strikethrough Styling test:CKEditor.Add Subscript text test:CKEditor.Add Superscript text test:CKEditor.Remove text format test:CKEditor.Insert%2FRemove Numbered List test:CKEditor.Insert%2FRemove Bulleted List test:CKEditor.Decrease Indent test:CKEditor.Increase Indent test:CKEditor.Block Quote test:CKEditor.Cut text test:CKEditor.Copy text test:CKEditor.Undo and Redo actions test:CKEditor.Find and Replace text test:CKEditor.Insert Horizontal Line test:CKEditor.Delete a macro test:CKEditor.Add a simple macro in CKEditor test:CKEditor.Insert HTML Macro test:CKEditor.Insert Activity Macro test:CKEditor.Insert Attachment Selector Macro test:CKEditor.Insert Box Macro test:CKEditor.Insert Cache Macro test:CKEditor.Insert Chart Macro test:CKEditor.Insert Code Macro test:CKEditor.Insert Comment Macro test:CKEditor.Insert Container Macro test:WYSIWYG Tests.Insert Content Macro With Syntax 1x test:CKEditor.Insert Context Macro test:CKEditor.Insert Display Macro test:CKEditor.Insert Error Message Macro test:CKEditor.Insert Footnote Macro test:CKEditor.Insert Formula Macro test:CKEditor.Insert Gallery Macro test:CKEditor.Insert Groovy Macro test:CKEditor.Insert Id Macro test:CKEditor.Insert Include Macro test:CKEditor.Insert Message Sender Macro test:CKEditor.Insert Pages Macro test:CKEditor.Insert PDF Macro test:CKEditor.Insert Put Footnote Macro test:CKEditor.Insert Python Macro test:CKEditor.Insert RSS Macro test:CKEditor.Insert Script Macro test:CKEditor.Insert Space Index Macro test:CKEditor.Insert Spaces Macro test:CKEditor.Insert Success Message Macro test:CKEditor.Insert Tag Cloud Macro test:CKEditor.Insert "Table of Contents" Macro test:CKEditor.Insert Table of Contents Macro test:CKEditor.Insert Translations Macro test:CKEditor.Insert User Avatar Macro test:CKEditor.Insert Velocity Macro test:CKEditor.Insert Warning Message Macro test:CKEditor.Insert Watchlist Macro test:CKEditor.Insert Wikis Macro test:CKEditor.Script Macro test:CKEditor.Text styles test:CKEditor.Paste as plain text test:CKEditor.Paste from Word test:CKEditor.Add a link using the CKEditor menu test:CKEditor.Add a link to an Email address test:CKEditor.Add link to searched page test:CKEditor.Delete a table test:CKEditor.Insert%2FDelete a table cell%2Frow%2Fcolumn test:CKEditor.Cell operations test:CKEditor.Edit source cancel test:CKEditor.Edit source preview test:CKEditor.Edit source Save & Continue test:CKEditor.Edit source Save and View test:CKEditor.Edit title test:CKEditor.Insert Office Document Viewer Macro test:CKEditor.Insert Special Character test:CKEditor.Save and Continue Minor Edit test:CKEditor.Save and Continue Version Summary test:CKEditor.Preview A Page In Fullscreen Mode test:CKEditor.Preview A Page test:CKEditor.Save and Continue test:CKEditor.Save and Continue Fullscreen test:CKEditor.Save and View test:CKEditor.Save and View Fullscreen test:CKEditor.Save and View Minor Edit test:CKEditor.Save and View Version Summary test:CKEditor.Text Alignment test:CKEditor.Font and text size test:CKEditor.Text color and background color test:CKEditor.Insert Children Macro test:CKEditor.Insert Dashboard Macro test:CKEditor.Insert Diagram Macro test:CKEditor.Insert Example Macro test:CKEditor.Insert Icon Picker Macro test:CKEditor.Insert Menu Macro test:CKEditor.Insert Page Tree Macro test:CKEditor.Insert Publication Workflow Macro test:CKEditor.Insert Tree Macro test:CKEditor.Insert Template Macro test:Wiki Tests.Update a subwiki using Distribution Wizard test:QA.XWiki 9\.6 test:QA.Google Chrome 60 test:QA.PostgreSQL 9\.6\.3 test:QA.Mozilla Firefox 55 test:Admin Tools Application.Make a Sanity Check test:Admin Tools Application.Run Query test:Admin Tools Application.Show Large History test:Admin Tools Application.Show spammed pages test:Admin Tools Application.Access Space Used test:Ideas Application Tests.WebHome test:TestReportingExecutions.Menu Application\.Global Menu display Inside the left or right panel8 test:TestReportingExecutions.Invitation\.Show Invitation in the Applications panel8 test:Menu Application.Add an image with a link reference in the menu test:TestReportingExecutions.Invitation\.Type the message on multiple lines8 test:TestReportingExecutions.Flash Messages Application Tests\.Repeat the flash message9 test:Flash Messages Application Tests.Deny view rights for a user test:Flash Messages Application Tests.Deny view rights for a group test:TestReportingExecutions.Mocca Calendar Application Tests\.Calendar view month, week, day5 test:Publication Workflow Tests.Access the Overview Page test:Mocca Calendar Application Tests.Old events in a renamed calendar test:TestReportingExecutions.Mocca Calendar Application Tests\.Uninstall Mocca Calendar using Extension Manager8 test:TestReportingExecutions.Publication Workflow Tests\.Access the Overview Page8 test:Forum Application Tests.Uninstall the Forum Application test:Totem.Uninstall Totem Application test:TestReportingExecutions.Totem\.Uninstall Totem Application8 test:Statistics Application Tests.Uninstall Statistics Application test:TestReportingExecutions.Statistics Application Tests\.Uninstall Statistics Application8 test:TestReportingExecutions.Holiday Request Application Tests\.Install Holiday Request Application with Extension Manager8 test:TestReportingExecutions.Holiday Request Application Tests\.Holiday Request Application in Apps Panel8 test:TestReportingExecutions.Holiday Request Application Tests\.Create a new Holiday Request8 test:TestReportingExecutions.Holiday Request Application Tests\.Manualy change the number of days8 test:TestReportingExecutions.Holiday Request Application Tests\.Overview option8 test:TestReportingExecutions.Holiday Request Application Tests\.Reject a holiday request8 test:TestReportingExecutions.Holiday Request Application Tests\.Reject a holiday request without a comment8 test:TestReportingExecutions.Holiday Request Application Tests\.Calendar option8 test:Holiday Request Application Tests.Change the manager test:TestReportingExecutions.Holiday Request Application Tests\.Change the manager8 test:TestReportingExecutions.Holiday Request Application Tests\.Change the Status8 test:TestReportingExecutions.Holiday Request Application Tests\.Change the Type of holidays8 test:TestReportingExecutions.Holiday Request Application Tests\.Edit a holiday request with a different user than employee and manager8 test:TestReportingExecutions.Holiday Request Application Tests\.Filter the entries8 test:TestReportingExecutions.Holiday Request Application Tests\.Hover over a username from the livetable8 test:QA.XWiki 9\.7 test:TestReportingExecutions.Administration Tests\.Change Invitation Application Settings9 test:Administration Tests.Create a New Template Provider test:Administration Tests.Make Version Summaries Mandatory test:Administration Tests.WYSIWYG Editor - Modify the Color settings test:Administration Tests.WYSIWYG Editor - Modify the Font settings test:Administration Tests.WYSIWYG Editor - Modify the Menu Bar test:Administration Tests.WYSIWYG Editor - Modify the Plugins list test:Administration Tests.WYSIWYG Editor - Modify the Style settings test:Administration Tests.WYSIWYG Editor - Modify the Tool Bar test:Administration Tests.Source Editor And External Images Disabled In Wysiwyg test:Administration Tests.Image Selection Limited To Current Page test:Administration Tests.Do Not Clean Paste Content Automatically test:Administration Tests.Attachment Selection Limited To Current Page test:Nested Spaces.Export Import a document with history test:Security Tests.Deny Create Wiki Right For An User test:Security Tests.Deny Create Wiki Right For A Group test:Syntax.Link to an anchor in a page test:TestReportingExecutions.CKEditor\.Add a link to an Email address9 test:TestReportingExecutions.CKEditor\.Add link to searched page9 test:TestReportingExecutions.CKEditor\.Add Strikethrough Styling9 test:TestReportingExecutions.CKEditor\.Add Subscript text9 test:TestReportingExecutions.CKEditor\.Add Superscript text9 test:TestReportingExecutions.CKEditor\.Apply Italic Styling9 test:TestReportingExecutions.CKEditor\.Apply Bold Styling9 test:TestReportingExecutions.CKEditor\.Block Quote9 test:TestReportingExecutions.CKEditor\.Cell operations9 test:TestReportingExecutions.CKEditor\.Copy text9 test:TestReportingExecutions.CKEditor\.Cut text9 test:TestReportingExecutions.CKEditor\.Decrease Indent9 test:TestReportingExecutions.CKEditor\.Delete a macro9 test:TestReportingExecutions.CKEditor\.Delete a table9 test:TestReportingExecutions.CKEditor\.Edit source cancel9 test:TestReportingExecutions.CKEditor\.Edit source preview9 test:TestReportingExecutions.CKEditor\.Edit source Save & Continue9 test:TestReportingExecutions.CKEditor\.Edit source Save and View9 test:TestReportingExecutions.CKEditor\.Edit title9 test:TestReportingExecutions.CKEditor\.Find and Replace text9 test:TestReportingExecutions.CKEditor\.Font and text size9 test:TestReportingExecutions.CKEditor\.Increase Indent9 test:TestReportingExecutions.CKEditor\.Insert Activity Macro9 test:TestReportingExecutions.CKEditor\.Insert Attachment Selector Macro9 test:TestReportingExecutions.CKEditor\.Insert Box Macro9 test:TestReportingExecutions.CKEditor\.Insert Cache Macro9 test:TestReportingExecutions.CKEditor\.Insert Chart Macro9 test:TestReportingExecutions.CKEditor\.Insert Children Macro9 test:TestReportingExecutions.CKEditor\.Insert Code Macro9 test:TestReportingExecutions.CKEditor\.Insert Comment Macro9 test:TestReportingExecutions.CKEditor\.Insert Container Macro9 test:TestReportingExecutions.CKEditor\.Insert Context Macro9 xwiki:TestReports.ManualTestReportXWiki97RC1.WebHome xwiki:TestReports.ManualTestReportSummaryXWiki97RC1.WebHome xwiki:TestReports.ManualTestReportXWiki97.WebHome test:Notification Tests.Notifications OFF test:Notification Tests.Notifications ON test:Administration Tests.Compare 2 versions from History Tab test:Administration Tests.Show document version history test:Administration Tests.Document version history options test:Notification Tests.Advanced filtering options test:TestReportingExecutions.Notification Tests\.Advanced filtering options9 test:TestReportingExecutions.Administration Tests\.Document version history options9 test:TestReportingExecutions.Administration Tests\.Show document version history9 test:Notification Tests.Advanced notification filter is activated by default test:TestReportingExecutions.Notification Tests\.Advanced notification filter is activated by default9 test:Notification Tests.Add exclusive filters test:TestReportingExecutions.Notification Tests\.Add exclusive filters9 test:QA.Google Chrome 61 test:Notification Tests.Live email notifications with filter test:TestReportingExecutions.Notification Tests\.Live email notifications with filter9 xwiki:TestReports.ManualTestReportSummaryXWiki97.WebHome xwiki:ReleaseNotes.Data.XWiki.9\.7.WebHome test:Notification Tests.Add inclusive filters test:TestReportingExecutions.Notification Tests\.Add inclusive filters9 xwiki:TestReports.WebHome test:TestReportingExecutions.CKEditor\.Insert Dashboard Macro9 test:TestReportingExecutions.CKEditor\.Insert Diagram Macro9 test:TestReportingExecutions.CKEditor\.Insert Display Macro9 test:TestReportingExecutions.CKEditor\.Insert Error Message Macro9 test:TestReportingExecutions.CKEditor\.Insert Example Macro9 test:TestReportingExecutions.CKEditor\.Insert Footnote Macro9 test:TestReportingExecutions.CKEditor\.Insert Formula Macro9 test:TestReportingExecutions.CKEditor\.Insert Gallery Macro9 xwiki:ReleaseNotes.Data.XWiki.9\.7RC1.WebHome test:TestReportingExecutions.CKEditor\.Insert Groovy Macro9 test:TestReportingExecutions.CKEditor\.Insert Horizontal Line9 test:TestReportingExecutions.CKEditor\.Insert HTML Macro9 test:TestReportingExecutions.CKEditor\.Insert Icon Picker Macro9 test:TestReportingExecutions.CKEditor\.Insert Id Macro9 test:TestReportingExecutions.CKEditor\.Insert Include Macro9 test:TestReportingExecutions.CKEditor\.Insert Menu Macro9 test:TestReportingExecutions.CKEditor\.Insert Message Sender Macro9 test:TestReportingExecutions.CKEditor\.Insert Office Document Viewer Macro9 test:TestReportingExecutions.CKEditor\.Insert Page Tree Macro9 test:TestReportingExecutions.CKEditor\.Insert Pages Macro9 test:TestReportingExecutions.CKEditor\.Insert PDF Macro9 test:TestReportingExecutions.CKEditor\.Insert Publication Workflow Macro9 test:TestReportingExecutions.CKEditor\.Insert Put Footnote Macro9 test:TestReportingExecutions.CKEditor\.Insert Python Macro9 test:TestReportingExecutions.CKEditor\.Insert Script Macro9 test:TestReportingExecutions.CKEditor\.Insert Tag Cloud Macro9 test:TestReportingExecutions.CKEditor\.Insert RSS Macro9 test:TestReportingExecutions.CKEditor\.Insert Space Index Macro9 test:TestReportingExecutions.CKEditor\.Insert Spaces Macro9 test:TestReportingExecutions.CKEditor\.Insert Special Character9 test:TestReportingExecutions.CKEditor\.Insert Success Message Macro9 test:TestReportingExecutions.CKEditor\.Insert Table of Contents Macro9 test:TestReportingExecutions.CKEditor\.Insert Translations Macro9 test:TestReportingExecutions.CKEditor\.Insert Tree Macro9 test:TestReportingExecutions.CKEditor\.Insert User Avatar Macro9 test:TestReportingExecutions.CKEditor\.Insert Velocity Macro9 test:TestReportingExecutions.CKEditor\.Insert Warning Message Macro9 test:TestReportingExecutions.CKEditor\.Insert Watchlist Macro9 test:TestReportingExecutions.CKEditor\.Insert Wikis Macro9 test:TestReportingExecutions.CKEditor\.Insert%2FDelete a table cell%2Frow%2Fcolumn9 test:TestReportingExecutions.CKEditor\.Insert%2FRemove Numbered List9 test:TestReportingExecutions.CKEditor\.Insert%2FRemove Bulleted List9 test:TestReportingExecutions.CKEditor\.Paste as plain text9 test:TestReportingExecutions.CKEditor\.Paste from Word9 test:TestReportingExecutions.CKEditor\.Preview A Page9 test:TestReportingExecutions.CKEditor\.Preview A Page In Fullscreen Mode9 test:TestReportingExecutions.CKEditor\.Remove text format9 test:TestReportingExecutions.CKEditor\.Save and Continue9 test:TestReportingExecutions.CKEditor\.Save and Continue Fullscreen9 test:TestReportingExecutions.CKEditor\.Save and Continue Minor Edit9 test:TestReportingExecutions.CKEditor\.Save and Continue Version Summary9 test:TestReportingExecutions.CKEditor\.Save and View9 test:TestReportingExecutions.CKEditor\.Save and View Fullscreen9 test:TestReportingExecutions.CKEditor\.Save and View Minor Edit9 test:TestReportingExecutions.CKEditor\.Save and View Version Summary9 test:TestReportingExecutions.CKEditor\.Script Macro9 test:TestReportingExecutions.CKEditor\.Text Alignment9 test:TestReportingExecutions.CKEditor\.Text color and background color9 test:TestReportingExecutions.CKEditor\.Undo and Redo actions9 test:TestReportingExecutions.CKEditor\.Insert Template Macro9 test:Wiki Tests.Login With Local User From Main Wiki test:Dashboard Tests.Edit Dashboard And Add Source Parameter test:Web Tests.Import Office Document test:Dashboard Tests.Include Dashboard Page test:Color Themes Tests.Bootswatch Change Color Themes xwiki:TestReports.ManualTestReportXWiki98RC1.WebHome xwiki:TestReports.ManualTestReportSummaryXWiki98RC1.WebHome test:Web Tests.Replace attachment with Attachment Selector test:Macros.Activate Piwik test:Macros.Add JW Player as a gadget into a dashboard test:Macros.Add Map Macro to a dashboard test:Macros.Freemind Macro collapse test:TestReportingExecutions.Macros\.Freemind Macro Uninstalled with Extension Manager5 test:Macros.Rollback to a previous version with PDF Viewer test:Macros.Rotate a file in PDF Viewer test:Macros.Open PDF Viewer in other browser tab test:Macros.Download a file through PDF Viewer test:Macros.Navigate through pages in PDF Viewer test:Macros.Minimize and Maximize the PDF Viewer test:Macros.Select a specific page size in PDF Viewer test:Macros.Show list of all macros in the wiki test:Macros.TableEdit Macro inside a page test:Macros.Toggle Slidebar in PDF Viewer test:Index Tests.Filter Nested Document test:Admin Tools Application.Access Shrink Recycle Bins test:FAQ Application Tests.FAQ Application accessible through Applications panel test:File Manager Tests.Filter the files test:Ideas Application Tests.Insert only numbers at Estimated Cost test:Ideas Application Tests.Only numbers can be saved in 'Estimated Cost' Field test:TestReportingExecutions.Ideas Application Tests\.Only numbers can be saved in 'Estimated Cost' Field9 test:Menu Application.Add a single link with a icon in the menu test:Menu Application.Add an extendable menu tab test:Menu Application.Add an internal link in the menu test:Menu Application.Edit an existing test test:Menu Application.Menu display location - Inside the left panel test:Menu Application.Menu display location - Inside the right panel test:QA.Mozilla Firefox 56 test:Meeting Application Tests.Add a different value into participants filelds test:Holiday Request Application Tests.Cancel a holiday request test:TestReportingExecutions.Holiday Request Application Tests\.Cancel a holiday request9 test:Notes Application Tests.Uninstall Notes Application with Extension Manager test:TestReportingExecutions.SVN Application\.Pages with status: ?9 test:SVN Application.Use XML format option test:Holiday Request Application Tests.Uninstall Holiday Request Application with Extension Manager xwiki:TestReports.ManualTestReportXWiki981.WebHome xwiki:TestReports.ManualTestReportSummaryXWiki981.WebHome test:Index Tests.Page Index Deleted Pages test:Index Tests.Restore a deleted page test:Index Tests.Permanently delete a page test:TestReportingExecutions.Index Tests\.Restore a deleted page9 test:TestReportingExecutions.Index Tests\.Permanently delete a page9 test:Other Tests.Help Application test:Diagram Application Tests.Diagram Macro test:TestReportingExecutions.Diagram Application Tests\.Diagram Macro9 xwiki:TestReports.ManualTestReportSummaryXWiki99RC2.WebHome xwiki:TestReports.ManualTestReportXWiki99RC2.WebHome xwiki:ReleaseNotes.Data.XWiki.9\.8\.1.WebHome test:Administration Tests.Show Document Attachments Tab test:Nested Spaces.Move document to top-level path existing parents test:Nested Spaces.Move document to top-level path non-existing parents test:Nested Spaces.Move L1 document test:Security Tests.Access Rights for a page creator xwiki:TestReports.ManualTestReportXWiki99.WebHome xwiki:TestReports.ManualTestReportSummaryXWiki99.WebHome test:Wiki Tests.See Activity Stream Of A Wiki test:Ideas Application Tests.Filter the ideas test:Ideas Application Tests.Sort the ideas test:Menu Application.Install Menu Application test:TestReportingExecutions.Meeting Application Tests\.Sort the meetings5 test:Administration Tests.Add a favicon for the wiki test:Administration Tests.Add Delete User In Group test:Administration Tests.Change the MailSenderPlugin Logger test:Administration Tests.Configure Mail Sending test:Administration Tests.Disconnect from Office Server test:Administration Tests.Display Right Panel Column test:Administration Tests.Display the diff summary before the extension changes test:Administration Tests.Disable Message Stream test:Administration Tests.Extension Difference View test:Administration Tests.Extension installed as dependencies test:Administration Tests.Extensions installed as dependency test:Administration Tests.Footer Space Copyright test:Administration Tests.Install Extension test:Administration Tests.Panel Wizard Width Settings test:Administration Tests.See The Logging Page test:Administration Tests.Show Document Annotations Tab test:Administration Tests.Show Document Information Tab test:Administration Tests.Solr Add to Index test:Administration Tests.Solr Delete from Index test:Administration Tests.Solr Reindex test:Administration Tests.Space Panel Wizard Panels Homepage test:Administration Tests.Switch the language test:Administration Tests.Uninstall Extension test:Administration Tests.Upload And Delete XAR test:Administration Tests.User group displayer test:Nested Spaces.Access documents from Index Tree test:Nested Spaces.Create a child document of any current document test:Nested Spaces.Create a child document to store information about sub aspects of documents test:Nested Spaces.Create terminal page test:Nested Spaces.Delete a space test:Nested Spaces.Delete non terminal page test:Nested Spaces.Delete non terminal page and children test:Nested Spaces.Export Import a document test:Nested Spaces.Export Import a document with defined permissions test:Nested Spaces.Grant edit rights on a document for a group test:Nested Spaces.Grant view rights on a document for a group test:Nested Spaces.Inherit permissions to any child document (with no overridden permissions on the child) test:Nested Spaces.Move document to new parent with existing rights test:Nested Spaces.URL pointing to the current document test:Nested Spaces.Move L2 document test:Nested Spaces.Move only parent test:Nested Spaces.Navigate through the parents using the breadcrumb test:Nested Spaces.Override a right at page level test:Nested Spaces.Preserve document permissions after move test:Nested Spaces.Rename Document test:Nested Spaces.The breadcrumb displays the correct path test:Security Tests.Deny the rights for a user at wiki level and give rights to a group at space level test:Security Tests.Subwiki: Deny the rights for a user at wiki level and give rights to a group at space level test:Search Tests.Faceted Search test:Search Tests.Search For Content test:AppWithinMinutes Tests.Add Entry test:AppWithinMinutes Tests.Code and Data Pages test:AppWithinMinutes Tests.Create a AWM application in a nested document test:AppWithinMinutes Tests.Create Application test:CKEditor.Add a table into a cell table test:CKEditor.Add multiple text styles into a table test:CKEditor.CKEditor in fullscreen test:CKEditor.H select test:CKEditor.Heading styles test:CKEditor.Image properties test:CKEditor.Resize the CK edit box test:Wiki Tests.Accept Join Request test:Wiki Tests.Check if Edit button appears after leaving a sub wiki with advanced user test:Wiki Tests.Check if Edit button appears after leaving a sub wiki with normal user test:Wiki Tests.Create a wiki with local users test:Wiki Tests.Create Wiki From A Template With Extensions Installed test:Wiki Tests.Login With Local User From Subwiki test:Wiki Tests.Login With Global User and Logout test:Wiki Tests.Migrate XWiki using Distribution Wizard test:Wiki Tests.Reject Join Request test:Wiki Tests.Search For Wiki test:Wiki Tests.See The Wiki Members test:Web Tests.Delete an attachment from More Actions Menu test:Web Tests.Attach Same File Twice test:Web Tests.Create Page test:Web Tests.Default Attachment Size Limit of 32MB test:Web Tests.Forgot your username test:Web Tests.Forgot your password test:Web Tests.Edit A Page Inline test:Web Tests.Edit A Page In Object Mode test:Web Tests.Delete A Version test:Web Tests.Information from More Actions Menu test:Web Tests.Redirect To The Reset Password Page test:Web Tests.Restore A Page test:Web Tests.See Information About A Page test:Web Tests.Share page by email test:Web Tests.View Source test:User Tests.Change Password test:User Tests.Edit Profile test:User Tests.Watch the parent page and its children test:User Tests.Watch Page Rss test:Notification Tests.Live notifications test:Notification Tests.Notifications sent by email test:Annotations Tests.Reply To Annotation test:Other Tests.Add Properties to a Class test:Other Tests.Check Menu separators test:Other Tests.Create a Class test:Other Tests.Create the Class Template for your Class test:Other Tests.Create the Class Sheet for your Class test:Other Tests.Create XWiki Macro Through Wiki Page test:Other Tests.Display the State of External Links test:Other Tests.Enable Filesystem Attachment Store test:Other Tests.Multiselect Custom Display Test test:Other Tests.Port attachments from the database to the filesystem store test:Other Tests.XWiki Multipage PDF Export Test test:Message Stream Tests.Follow User test:Message Stream Tests.Send Message To Everyone test:Message Stream Tests.Send Message To Followers test:Message Stream Tests.Send Message To Group test:Message Stream Tests.Send Message To User test:Message Stream Tests.Unfollow User From Network Tab test:Message Stream Tests.Unfollow User From User Homepage test:Admin Tools Application.Access Flush Cache test:Admin Tools Application.Access Show Rights test:Admin Tools Application.Access XWiki Configuration Check test:Admin Tools Application.Check the number of Activity stream events test:Blog Tests.Blog Hide Article test:Blog Tests.Blog panels test:Blog Tests.Include a blog article in multiple categories test:Blog Tests.Rollback to a previous version test:FAQ Application Tests.Filter Questions test:FAQ Application Tests.Search Question test:File Manager Tests.Add a Doc file test:File Manager Tests.Add a Excel file test:File Manager Tests.Add a file with HTML code test:File Manager Tests.Add a PDF file test:File Manager Tests.Add a picture test:File Manager Tests.Add a PPT file test:File Manager Tests.Add New File test:File Manager Tests.All Files test:Ideas Application Tests.Add or remove your support test:Ideas Application Tests.Delete ideas test:Menu Application.Add an external link in the menu test:Menu Application.Create a 2nd menu bar test:Menu Application.Create a new menu test:Meeting Application Tests.Calendar view month, week, day test:Meeting Application Tests.Change the duration of a meeting from the calendar test:Meeting Application Tests.Check the invitation form test:Meeting Application Tests.Drag and drop a meeting test:Meeting Application Tests.Navigate through calendar's months test:Meeting Application Tests.Navigate through calendar's weeks test:Meeting Application Tests.Remove participants test:Invitation.Accept an invitation after it was rescinded test:Invitation.Accept an invitation after registration test:Invitation.Accept an invitation after you declined it test:Invitation.Accept invitation page - Check for accuracy test:Invitation.Accept invitation to join wiki from mail test:Invitation.Check the status of a reported invitation test:Invitation.Configure Invitation Application test:Invitation.Decline invitation from mail test:Invitation.Decline invitation page - Check for accuracy test:Invitation.Mark an invitation as not Spam test:Invitation.Reload the confirmation page after sending an invitation test:Invitation.Report an invitation test:Invitation.Report invitation page - Check for accuracy test:Invitation.Rescind a invitation in status Pending test:Invitation.Rescind an invitation in status Declined test:Invitation.Rescind an invitation in status Reported as Spam test:Invitation.Send invitation to multiple addressed test:Invitation.Status of a new sent invitation test:Invitation.Type the message on multiple lines test:Notification Tests.Access document history changes test:QA.XWiki 9\.10 RC1 test:QA.Mozilla Firefox 57 test:TestReportingExecutions.Notification Tests\.Access document history changes9 test:Notification Tests.Stop following a user test:TestReportingExecutions.Notification Tests\.Stop following a user9 xwiki:TestReports.Manual Test Report for XWiki 9\.10 RC1.WebHome xwiki:TestReports.ManualTestReportXWiki910RC1.WebHome xwiki:TestReports.ManualTestReportSummaryXWiki910RC1.WebHome xwiki:ReleaseNotes.Data.XWiki.9\.10RC1.WebHome test:XPoll Application Tests.Create a new poll test:XPoll Application Tests.Recent Polls Macro test:XPoll Application Tests.Vote multiple proposals xwiki:TestReports.ManualTestReportXWiki910.WebHome xwiki:TestReports.ManualTestReportSummaryXWiki910.WebHome test:Flash Messages Application Tests.Add a big text content in a Flash message test:Flash Messages Application Tests.Add an image to the Flash message test:Flash Messages Application Tests.Bullets test:Flash Messages Application Tests.Change the group test:Flash Messages Application Tests.Change the message test:Flash Messages Application Tests.Check the parent for Flash messages live-table entries test:Flash Messages Application Tests.Navigate through the entries test:Flash Messages Application Tests.Pop up test:Flash Messages Application Tests.Repeat the flash message test:Flash Messages Application Tests.Sort the entries test:Forum Application Tests.Delete an answer test:Forum Application Tests.Delete Forums test:Forum Application Tests.Deny the view Rights for a user on a Topic page test:Forum Application Tests.Deny View rights for a group on a Topic page test:Forum Application Tests.Edit a comment test:Forum Application Tests.Social sharing functionalities test:Forum Application Tests.Sorting by Dates, Votes, Comments xwiki:ReleaseNotes.Data.XWiki.9\.10.WebHome xwiki:TestReports.ManualTestReportXWiki9101.WebHome xwiki:TestReports.ManualTestReportSummaryXWiki9101.WebHome xwiki:ReleaseNotes.Data.XWiki.9\.10\.1.WebHome test:QA.XWiki 9\.10\.1 test:QA.Google Chrome 63 xwiki:TestReports.ManualTestReportXWiki911RC1.WebHome xwiki:TestReports.ManualTestReportSummaryXWiki911RC1.WebHome test:Notification Tests.See a user's own activity test:QA.XWiki 9\.11 RC1 test:TestReportingExecutions.Notification Tests\.See a user's own activity9 test:Notification Tests.Configure notification email details test:TestReportingExecutions.Notification Tests\.Configure notification email details9 test:Notification Tests.Table of contents in the notifications email test:TestReportingExecutions.Notification Tests\.Table of contents in the notifications email9 xwiki:ReleaseNotes.Data.XWiki.9\.11RC1.WebHome xwiki:TestReports.ManualTestReportXWiki9110.WebHome xwiki:TestReports.ManualTestReportSummaryXWiki9110.WebHome xwiki:ReleaseNotes.Data.XWiki.9\.11.WebHome test:QA.XWiki 9\.11 test:Activity Stream Tests.Attach Page test:Activity Stream Tests.Comment Page test:Activity Stream Tests.Delete Page test:Annotations Tests.Annotate Twice Same Content test:Annotations Tests.Edit annotated text xwiki:TestReports.ManualTestReportXWiki9111.WebHome xwiki:TestReports.ManualTestReportSummaryXWiki9111.WebHome test:QA.XWiki 9\.11\.1 xwiki:ReleaseNotes.Data.XWiki.9\.11\.1.WebHome test:Menu Application.Menu visibility scope - Current wiki test:XPoll Application Tests.XPoll Application accessible through Applications panel test:Totem.Create a new totem test:Notification Tests.Activate Notifications Application test:Administration Tests.Administer Page - Presentation - Change Color Theme test:Administration Tests.Change Invitation Application Settings test:Administration Tests.Change the Icon Theme from Administer Page test:Administration Tests.Add User from Admin Wiki test:Administration Tests.Export Whole Wiki test:Administration Tests.Extend User Profile xwiki:ReleaseNotes.Data.XWiki.Release Notes for XWiki 8\.4\.6.WebHome xwiki:ReleaseNotes.Data.XWiki.8\.4\.6.WebHome test:QA.XWiki 8\.4\.6 test:TestReportingExecutions.Administration Tests\.Upgrade Extension using Add Extensions8 test:TestReportingExecutions.CKEditor\.Add Strikethrough Styling8 test:TestReportingExecutions.CKEditor\.Add Subscript text8 test:TestReportingExecutions.CKEditor\.Add Superscript text8 test:TestReportingExecutions.CKEditor\.Add Underline Styling8 test:TestReportingExecutions.CKEditor\.Apply Bold Styling8 test:TestReportingExecutions.CKEditor\.Apply Italic Styling8 test:TestReportingExecutions.CKEditor\.Copy text8 test:TestReportingExecutions.CKEditor\.Delete a macro8 test:TestReportingExecutions.CKEditor\.Delete a table8 test:TestReportingExecutions.CKEditor\.Edit source cancel8 test:TestReportingExecutions.CKEditor\.Edit title8 test:TestReportingExecutions.CKEditor\.Insert Activity Macro8 test:TestReportingExecutions.CKEditor\.Insert Chart Macro8 test:TestReportingExecutions.CKEditor\.Insert Box Macro8 test:TestReportingExecutions.CKEditor\.Insert Dashboard Macro8 test:TestReportingExecutions.CKEditor\.Insert Diagram Macro8 test:TestReportingExecutions.CKEditor\.Insert Formula Macro8 test:TestReportingExecutions.CKEditor\.Insert Comment Macro8 test:TestReportingExecutions.CKEditor\.Insert Gallery Macro8 test:TestReportingExecutions.CKEditor\.Insert HTML Macro8 test:TestReportingExecutions.CKEditor\.Insert Groovy Macro8 test:TestReportingExecutions.CKEditor\.Insert Office Document Viewer Macro8 test:TestReportingExecutions.CKEditor\.Insert Page Tree Macro8 test:TestReportingExecutions.CKEditor\.Insert Python Macro8 test:TestReportingExecutions.CKEditor\.Insert Spaces Macro8 test:TestReportingExecutions.CKEditor\.Insert Tag Cloud Macro8 test:TestReportingExecutions.CKEditor\.Insert Tree Macro8 test:TestReportingExecutions.CKEditor\.Insert Success Message Macro8 test:TestReportingExecutions.CKEditor\.Insert Warning Message Macro8 test:TestReportingExecutions.CKEditor\.Insert%2FDelete a table cell%2Frow%2Fcolumn8 test:TestReportingExecutions.CKEditor\.Paste as plain text8 test:TestReportingExecutions.CKEditor\.Paste from Word8 test:TestReportingExecutions.CKEditor\.Preview A Page8 test:TestReportingExecutions.CKEditor\.Save and Continue Fullscreen8 test:TestReportingExecutions.CKEditor\.Save and Continue Minor Edit8 test:TestReportingExecutions.CKEditor\.Save and View8 test:TestReportingExecutions.CKEditor\.Save and View Minor Edit8 test:TestReportingExecutions.CKEditor\.Save and View Version Summary8 test:TestReportingExecutions.CKEditor\.Undo and Redo actions8 test:TestReportingExecutions.CKEditor\.Save and Continue Version Summary8 test:TestReportingExecutions.CKEditor\.Script Macro8 test:TestReportingExecutions.Color Themes Tests\.Buttons Success Background8 test:Color Themes Tests.Dropdown Divider Background test:TestReportingExecutions.Color Themes Tests\.Edit And Cancel Color Themes8 test:TestReportingExecutions.Color Themes Tests\.Forms Legend Border Color8 test:TestReportingExecutions.Color Themes Tests\.Navigation Bar Default Link Active Color8 xwiki:TestReports.ManualTestReportSummaryXWiki846.WebHome xwiki:TestReports.ManualTestReportXWiki846.WebHome test:QA.XWiki 10\.0 test:QA.XWiki 9\.11\.2 test:TestReportingExecutions.Index Tests\.Permanently delete a page8 test:TestReportingExecutions.Index Tests\.Restore a deleted page8 xwiki:TestReports.ManualTestReportXWiki9112.WebHome xwiki:TestReports.ManualTestReportSummaryXWiki9112.WebHome xwiki:Documentation.AdminGuide.Installation.InstallationWAR.InstallationOracle.WebHome xwiki:ReleaseNotes.Data.XWiki.9\.11\.2.WebHome xwiki:TestReports.ManualTestReportXWiki100.WebHome xwiki:TestReports.ManualTestReportSummaryXWiki100.WebHome xwiki:ReleaseNotes.Data.XWiki.10\.0.WebHome xwiki:TestReports.ManualTestReportXWiki101RC1.WebHome xwiki:TestReports.ManualTestReportSummaryXWiki101RC1.WebHome test:Notification Tests.Filter events marked as read test:QA.XWiki 10\.1 RC1 test:QA.Mozilla Firefox 58 test:QA.Google Chrome 64 test:TestReportingExecutions.Notification Tests\.Filter events marked as read10 test:Notification Tests.Filter hidden pages notifications test:TestReportingExecutions.Notification Tests\.Filter hidden pages notifications10 test:Macros.Notifications Applications Preferences Macro test:TestReportingExecutions.Macros\.Notifications Applications Preferences Macro10 test:Macros.Notifications Email Preferences Macro test:TestReportingExecutions.Macros\.Notifications Email Preferences Macro10 test:Macros.Notifications Filters Preferences Macro test:TestReportingExecutions.Macros\.Notifications Filters Preferences Macro10 xwiki:TestReports.ManualTestReportXWiki101.WebHome xwiki:TestReports.ManualTestReportSummaryXWiki101.WebHome xwiki:ReleaseNotes.Data.XWiki.10\.1RC1.WebHome test:Notification Tests.Notification Application View xwiki:ReleaseNotes.Data.XWiki.10\.1.WebHome xwiki:TestReports.ManualTestReportXWiki9113.WebHome xwiki:TestReports.ManualTestReportSummaryXWiki9113.WebHome xwiki:ReleaseNotes.Data.XWiki.9\.11\.3.WebHome test:TestReportingExecutions.Administration Tests\.Add a favicon for the wiki10 test:TestReportingExecutions.Administration Tests\.Add Delete User In Group10 test:TestReportingExecutions.Administration Tests\.Add Subgroup To Group10 test:TestReportingExecutions.Administration Tests\.Administer Page - Presentation - Change Color Theme10 test:TestReportingExecutions.Administration Tests\.AppWithinMinutes parent10 test:TestReportingExecutions.Administration Tests\.Change Date Format10 test:TestReportingExecutions.Administration Tests\.Change Page Layout10 test:TestReportingExecutions.Administration Tests\.Change Invitation Application Settings10 test:TestReportingExecutions.Administration Tests\.Change the EmbeddedSolrInstance Logger10 test:TestReportingExecutions.Administration Tests\.Change the Icon Theme from Administer Page10 test:TestReportingExecutions.Administration Tests\.Change the language10 test:TestReportingExecutions.Administration Tests\.Change the MailSenderPlugin Logger10 test:TestReportingExecutions.Administration Tests\.Change Timezone10 test:TestReportingExecutions.Administration Tests\.Compare 2 versions from History Tab10 test:TestReportingExecutions.Administration Tests\.Create a New Template Provider10 test:TestReportingExecutions.Administration Tests\.Create a template with descendent documents10 test:TestReportingExecutions.Administration Tests\.Create And Delete Group10 test:TestReportingExecutions.Administration Tests\.Create And Delete User10 test:Administration Tests.Create Page from Office test:TestReportingExecutions.Administration Tests\.Create Page from Office10 test:TestReportingExecutions.Administration Tests\.Create Page From Template10 test:TestReportingExecutions.Administration Tests\.Register From Administration10 test:TestReportingExecutions.Administration Tests\.Disconnect from Office Server10 test:TestReportingExecutions.Administration Tests\.Display Left Panel Column10 test:TestReportingExecutions.Administration Tests\.Display Right Panel Column10 test:TestReportingExecutions.Administration Tests\.Display the diff summary before the extension changes10 test:TestReportingExecutions.Administration Tests\.Document version history options10 test:TestReportingExecutions.Administration Tests\.Downgrade Extension10 test:TestReportingExecutions.Administration Tests\.Groups Edit Group10 test:TestReportingExecutions.Administration Tests\.Disable Message Stream10 test:TestReportingExecutions.Administration Tests\.Enable Minor Edits10 test:TestReportingExecutions.Administration Tests\.Enable Version Summaries10 test:TestReportingExecutions.Administration Tests\.Expand debug tree10 test:TestReportingExecutions.Administration Tests\.Extend User Profile10 test:TestReportingExecutions.Administration Tests\.Extension Difference View10 test:TestReportingExecutions.Administration Tests\.Export Whole Wiki10 test:TestReportingExecutions.Administration Tests\.Extension installed as dependencies10 test:TestReportingExecutions.Administration Tests\.Extension Manager Advanced Search10 test:TestReportingExecutions.Administration Tests\.Extensions installed as dependency10 test:TestReportingExecutions.Administration Tests\.Footer Space Copyright10 test:TestReportingExecutions.Administration Tests\.Google Analytics10 test:TestReportingExecutions.Administration Tests\.Import XAR10 test:TestReportingExecutions.Administration Tests\.Install Extension10 test:TestReportingExecutions.Administration Tests\.Localization Filter Box10 test:TestReportingExecutions.Administration Tests\.Discard Success Statuses10 test:TestReportingExecutions.Administration Tests\.Main Wiki Preferences10 test:TestReportingExecutions.Administration Tests\.Make Version Summaries Mandatory10 test:TestReportingExecutions.Administration Tests\.Obfuscate Email Addresses10 test:TestReportingExecutions.Administration Tests\.Space Panel Wizard Drag And Drop Panel From Panel List To Side10 test:TestReportingExecutions.Administration Tests\.Panel Wizard Accordion Headers10 test:TestReportingExecutions.Administration Tests\.Panel Wizard Change Order Of The Panels10 test:TestReportingExecutions.Administration Tests\.Panel Wizard Drag And Drop Panel From Panel List To Side10 test:TestReportingExecutions.Administration Tests\.Panel Wizard Drag And Drop Panel From Side To Panel List10 test:TestReportingExecutions.Administration Tests\.Panel Wizard Width Settings10 test:TestReportingExecutions.Administration Tests\.Panels Expand And Collapse10 test:TestReportingExecutions.Administration Tests\.Presentation Change Color Theme10 test:TestReportingExecutions.Administration Tests\.Registration Change Field10 test:TestReportingExecutions.Administration Tests\.See The Logging Page10 test:TestReportingExecutions.Administration Tests\.Set Language Settings10 test:TestReportingExecutions.Administration Tests\.Show document version history10 test:TestReportingExecutions.Administration Tests\.Show Document Annotations Tab10 test:TestReportingExecutions.Administration Tests\.Show Document Attachments Tab10 test:TestReportingExecutions.Administration Tests\.Show Document Comments Tab10 test:TestReportingExecutions.Administration Tests\.Show Document History Tab10 test:TestReportingExecutions.Administration Tests\.Show Document Information Tab10 test:TestReportingExecutions.Administration Tests\.Show User Rights10 test:TestReportingExecutions.Administration Tests\.Solr Add to Index10 test:TestReportingExecutions.Administration Tests\.Solr Delete from Index10 test:TestReportingExecutions.Administration Tests\.Solr Reindex10 test:TestReportingExecutions.Administration Tests\.Space Panel Wizard Drag And Drop Panel From Side To Panel List10 test:TestReportingExecutions.Administration Tests\.Space Panel Wizard Panels Expand And Collapse10 test:TestReportingExecutions.Administration Tests\.Space Panel Wizard Panels Homepage10 test:TestReportingExecutions.Administration Tests\.Space Panel Wizard Panels Order10 test:TestReportingExecutions.Administration Tests\.Space Rights Show Users10 test:TestReportingExecutions.Administration Tests\.Switch between Icon Themes10 test:TestReportingExecutions.Administration Tests\.Upgrade Extension10 test:TestReportingExecutions.Administration Tests\.Uninstall Extension10 test:TestReportingExecutions.Administration Tests\.Upgrade Extension using Add Extensions10 test:TestReportingExecutions.Administration Tests\.Upload And Delete XAR10 test:TestReportingExecutions.Administration Tests\.Users Modify User Information10 test:TestReportingExecutions.Administration Tests\.View Core Extensions10 test:TestReportingExecutions.Administration Tests\.User group displayer10 test:TestReportingExecutions.Nested Spaces\.Automatic Redirect on Page Rename10 test:TestReportingExecutions.Nested Spaces\.Convert a Nested Document to a Terminal Document10 test:TestReportingExecutions.Nested Spaces\.Convert a Terminal Document to a Nested Document10 test:TestReportingExecutions.Nested Spaces\.Copy a space10 test:TestReportingExecutions.Nested Spaces\.Copy a WebHome page from one space to another10 test:TestReportingExecutions.Nested Spaces\.Create a child document of any current document10 test:TestReportingExecutions.Nested Spaces\.Create a child document to store information about sub aspects of documents10 test:TestReportingExecutions.Nested Spaces\.Create a L1 Nested Document10 test:TestReportingExecutions.Nested Spaces\.Create a L3 Nested Document10 test:TestReportingExecutions.Nested Spaces\.Create a L4 Nested Document10 test:TestReportingExecutions.Nested Spaces\.Create a child document10 test:TestReportingExecutions.Nested Spaces\.Create a new Nested Document10 test:Nested Spaces.Delete a document test:TestReportingExecutions.Nested Spaces\.Delete a document10document10 test:TestReportingExecutions.Nested Spaces\.Delete a space10 test:TestReportingExecutions.Nested Spaces\.Delete non terminal page and children10 test:TestReportingExecutions.Nested Spaces\.Document does not exist10 test:TestReportingExecutions.Nested Spaces\.Expand tree structure10 test:TestReportingExecutions.Nested Spaces\.Export Import a document10 test:TestReportingExecutions.Nested Spaces\.Export Import a document with defined permissions10 test:TestReportingExecutions.Nested Spaces\.Export Import a document with history10 test:TestReportingExecutions.Nested Spaces\.Grant edit rights on a document for a group10 test:TestReportingExecutions.Nested Spaces\.Grant view rights on a document for a group10 test:TestReportingExecutions.Nested Spaces\.Inherit permissions to any child document (with no overridden permissions on the child)10 test:TestReportingExecutions.Nested Spaces\.Move document to new parent with existing rights10 test:TestReportingExecutions.Nested Spaces\.Move document to top-level path existing parents10 test:TestReportingExecutions.Nested Spaces\.Move document to top-level path non-existing parents10 test:TestReportingExecutions.Nested Spaces\.Override a right at page level10 test:TestReportingExecutions.Nested Spaces\.Rename Document10 test:TestReportingExecutions.Nested Spaces\.Move L1 document10 test:TestReportingExecutions.Nested Spaces\.Move only parent10 test:TestReportingExecutions.Nested Spaces\.Move document and implied children10 test:TestReportingExecutions.Nested Spaces\.Navigate through the parents using the breadcrumb10 test:TestReportingExecutions.Nested Spaces\.Preserve document permissions after move10 test:TestReportingExecutions.Nested Spaces\.Share the link containing a nested space to another person10 test:TestReportingExecutions.Nested Spaces\.The breadcrumb displays the correct path10 test:TestReportingExecutions.Nested Spaces\.Tree navigation inside the breadcrumb10 test:TestReportingExecutions.Nested Spaces\.URL pointing to the current document10 test:TestReportingExecutions.Security Tests\.Deny Comment Right For A Group10 test:TestReportingExecutions.Security Tests\.Deny Comment Rights For An User10
I think we need to improve something here…. :)
Maybe we could improve the diff so that it doesn’t show the full content?
Any other idea?
Thanks
-Vincent
First time I’m hearing about this library. Could be useful for us in some places.
See http://juneau.apache.org/#documentation.html <http://juneau.apache.org/#documentation.html>
Seems pretty feature rich.
• A universal toolkit for marshalling POJOs to a wide variety of content types using a common framework.
• A universal REST server API for creating Swagger-based self-documenting REST interfaces using POJOs, simply deployed as one or more top-level servlets in any Servlet 3.1 or above container.
• A universal REST client API for interacting with Juneau or 3rd-party REST interfaces using POJOs and proxy interfaces.
…
Serializers and parsers for:
• JSON
• XML
• HTML
• UON
• URL-Encoding
• MessagePack
• SOAP/XML
• CSV
• BSON (coming soon)
• YAML (coming soon)
• Protobuf (coming soon)
Serializers and parsers for:
• RDF/XML
• RDF/XML-Abbrev
• N-Triple
• Turtle
• N3
Anyone heard about it?
Thanks
-Vincent
> Begin forwarded message:
>
> From: James Bognar <jamesbognar(a)apache.org>
> Subject: [ANNOUNCEMENT] Apache Juneau 7.1.0 Released
> Date: 9 March 2018 at 22:08:27 CET
> To: announce(a)apache.org, dev(a)juneau.apache.org
>
> Hello all,
>
> The Apache Juneau team is proud to announce the release of Juneau 7.1.0!
>
> Apache Juneau is...
> A universal Java toolkit for marshalling POJOs to a wide variety of content types using a common framework with no external library dependencies.
> A universal REST server API for creating Swagger-based self-documenting REST interfaces using POJOs, simply deployed as one or more top-level servlets in any Servlet 3.1.0+ container.
> A universal REST client API for interacting with Juneau or 3rd-party REST interfaces using POJOs and proxy interfaces.
> A REST microservice API that combines all the features above with a simple configurable Jetty server for creating lightweight standalone REST interfaces that start up in milliseconds.
> This is the first major release of Apache Juneau since becoming a top-level project under the Apache umbrella.
> It includes significant across-the-board improvements to both the Core and REST components.
>
> The full list of changes can be found here:
> http://juneau.apache.org/site/apidocs/overview-summary.html#7.1.0 <http://juneau.apache.org/site/apidocs/overview-summary.html#7.1.0>
>
> A lot of work has been done in cleaning up and improving the documentation and Javadocs throughout the code.
> All documentation is now centrally located and can be found here:
> http://juneau.apache.org/#documentation.html <http://juneau.apache.org/#documentation.html>
>
> The release is available here (don't forget to verify the signatures):
> http://juneau.apache.org/#downloads.html
> <http://juneau.apache.org/#downloads.html>
> We welcome your help and feedback. For more information on the project and how to get involved, visit the project website at
> http://juneau.apache.org/ <http://juneau.apache.org/>
Hi devs,
We have users that complain that configuring and starting the Office Server
is very hard/technical.
This is mostly because the configuration is done in xwiki.properties, plus
some bugs, plus the missing documentation link towards the Office Server
operating system values.
I've made 2 proposals on
http://design.xwiki.org/xwiki/bin/view/Proposal/IdeaOfficeServer
The first one just makes some rearranging, adds a documentation link and
propose we fix some bugs by adding support to newer versions of Office (in
order for the auto-detect to function properly).
The other proposal also transforms the configuration from read-only values,
to inputs that can be changed from Administration.
Let me know what you think,
Caty
Hi,
I'd like a repository for a macro to generate organizational charts.
macro-orgchart
This macro uses a javascript library to display an organizational chart
either from wiki syntax or from a json description of the org chart or
finally by querying the user database using a "manager" field.
Thanks
Ludovic
--
*Ludovic Dubost*
*Founder and CEO*
ludovic(a)xwiki.com
skype: ldubost
Blog: http://blog.ludovic.orgTry XWiki on the cloud
<http://www.xwiki.com/en/products/try-xwiki-cloud> - Try Cryptpad: Secure
realtime Wysiwyg Editing <https://cryptpad.fr>