I'm interested in Google Android Client for XWiki. Since this is not a
development in XWiki build, I could not find any documents related to
this idea. Please give me more details with URLs regarding this gsoc
project idea.
Thank you,
Chamika Weerasinghe
I'd like to edit the text/page generated by the default Notice message and turn it into a more user friendly 404-styled page.
e.g.
---
Notice
The requested document could not be found.
You can edit this page to create it.
---
How do I go about doing that? Where is the message text located?
Thanks in advance for any and all help you can provide,
John Lantz
Respected Sir/Madam,
I want to contribute into the xword project by developing a
feature,this year in Gsoc-2011.
I have a couple of ideas , which i personally feel that,if implemented
shall prove in easy interaction with the word document file, and its
accessibility.The ideas are listed below-
IDEA-1
Apart from various options available in word processors, there exists
few gulfs in the original hard paper writing and word processor
typing.
Many a times and often when we type some text in the word processor,
it needs some real world looks and feels (an informal approach) ,for
example when we study or make notes what we do is we underline the
things make circles around the word make arrows around the pages-
linking that after reading this where we have to jump, etc, in short
we do some free hand sketching work there.
If there exist a tool in the word application where we can enable a
drawing pencil ,to do the similar tasks then interaction with the
document can be made more realistic and handy to use .
IDEA-2
In a traditional word applications when we save our document, the
window that opens up, asks the name of the file, its type and the
location of saving.
If the word processor would scan the document and pick up a list of
words/sentences that occurred maximum number of time along with the
above mentioned options then user may get an additional feature that
may help him in selecting the most promising name for his file.
Looking forward to hear from you.
--
Rahul Vaish
http://in.linkedin.com/in/rahulvaish
LinkedIn
------------Anamaria Stoica requested to add you as a connection on LinkedIn:
------------------------------------------
Guillaume,
I'd like to add you to my professional network on LinkedIn.
- Anamaria Stoica
Accept invitation from Anamaria Stoica
http://www.linkedin.com/e/3vasf0-gltm62jh-3q/9s_c-0fN05p6qjQq9meQgfVB/blk/I…
View invitation from Anamaria Stoica
http://www.linkedin.com/e/3vasf0-gltm62jh-3q/9s_c-0fN05p6qjQq9meQgfVB/blk/I…
------------------------------------------
Why might connecting with Anamaria Stoica be a good idea?
Have a question? Anamaria Stoica's network will probably have an answer:
You can use LinkedIn Answers to distribute your professional questions to Anamaria Stoica and your extended network. You can get high-quality answers from experienced professionals.
http://www.linkedin.com/e/3vasf0-gltm62jh-3q/ash/inv19_ayn/
--
(c) 2011, LinkedIn Corporation
Hi devs,
I'd like to modify the Box macro in the following manner:
* Deprecate the "title" parameter. I don't believe it's needed right now (it's put below the image and before the content) since it can simply be put in the content
* Add a new parameter for positioning the image with respect to the content. Possible values would be: top (ie before the content) or left (ie left of the content), possibly some others if we want (right)
WDYT?
Thanks
-Vincent
PS: Note that one use case I have is to implement http://jira.xwiki.org/jira/browse/XE-723 where I'd like the image to be aligned with the text, left to it. I also find it a bit strange to be able to add any wiki content to the title and I don't see the title as necessary. Also right now if you have a title but no content the macro doesn't work (content is mandatory).
On 03/28/2011 02:58 PM, vmassol (SVN) wrote:
> Author: vmassol
> Date: 2011-03-28 14:58:12 +0200 (Mon, 28 Mar 2011)
> New Revision: 36066
>
> Added:
> rendering/trunk/xwiki-rendering-macros/xwiki-rendering-macro-message/src/main/java/org/xwiki/rendering/internal/macro/message/SuccessMessageMacro.java
> Modified:
> rendering/trunk/xwiki-rendering-macros/xwiki-rendering-macro-message/src/main/resources/META-INF/components.txt
> rendering/trunk/xwiki-rendering-macros/xwiki-rendering-macro-message/src/test/java/org/xwiki/rendering/macro/message/MessageMacroTest.java
> Log:
> XRENDERING-110: Success Macro
>
> Copied: rendering/trunk/xwiki-rendering-macros/xwiki-rendering-macro-message/src/main/java/org/xwiki/rendering/internal/macro/message/SuccessMessageMacro.java (from rev 36018, rendering/trunk/xwiki-rendering-macros/xwiki-rendering-macro-message/src/main/java/org/xwiki/rendering/internal/macro/message/InfoMessageMacro.java)
> ===================================================================
> --- rendering/trunk/xwiki-rendering-macros/xwiki-rendering-macro-message/src/main/java/org/xwiki/rendering/internal/macro/message/SuccessMessageMacro.java (rev 0)
> +++ rendering/trunk/xwiki-rendering-macros/xwiki-rendering-macro-message/src/main/java/org/xwiki/rendering/internal/macro/message/SuccessMessageMacro.java 2011-03-28 12:58:12 UTC (rev 36066)
> @@ -0,0 +1,41 @@
> +/*
> + * See the NOTICE file distributed with this work for additional
> + * information regarding copyright ownership.
> + *
> + * This is free software; you can redistribute it and/or modify it
> + * under the terms of the GNU Lesser General Public License as
> + * published by the Free Software Foundation; either version 2.1 of
> + * the License, or (at your option) any later version.
> + *
> + * This software is distributed in the hope that it will be useful,
> + * but WITHOUT ANY WARRANTY; without even the implied warranty of
> + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
> + * Lesser General Public License for more details.
> + *
> + * You should have received a copy of the GNU Lesser General Public
> + * License along with this software; if not, write to the Free
> + * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
> + * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
> + */
> +package org.xwiki.rendering.internal.macro.message;
> +
> +import org.xwiki.component.annotation.Component;
> +
> +/**
> + * Displays a success message.
> + *
> + * @version $Id:$
This is not a subversion keyword. So, you don't have a properly
configured environment.
> + * @since 2.0M3
^ Really?
> + */
> +@Component("success")
> +public class SuccessMessageMacro extends AbstractMessageMacro
> +{
> + /**
> + * Create and initialize the descriptor of the macro.
> + */
> + public SuccessMessageMacro()
> + {
> + super("Success Message", "Displays a success message note.");
> + setDefaultCategory(DEFAULT_CATEGORY_FORMATTING);
> + }
> +}
--
Sergiu Dumitriu
http://purl.org/net/sergiu/
Hi All
hi i'm a student at University of Moratuwa, Sri Lanka and i'm currently
doing my internship at WSO2 an open source software development company. I
went through the list of ideas that XWiki had posted and came across a
few interesting projects. The project to create a prototype of XWiki for
the App Engine seemed to be interesting mainly because i'm a big fan of the
App Engine and have done a few projects involving it. I think its a great
idea. would like to know if this is to be implemented using a framework
like objectify or just though the services provided by the App Engine. I'm
still new to XWiki and i'm looking into XWiki these days and hope to learn
about it.
Thanks
--
Pulasthi Supun
www.99gears.com
Hi devs,
One thing that was neglected in the preparation of 3.0 is a fresh
default color theme for this new release cycle.
What I propose is to use by default a theme similar with the current
xwiki.org themes: dark grey menus and panel headers, and a lively
colored page header. Besides bringing a fresh look to the default
wiki, this combination has the advantage of having been used and
tested on xwiki.org for several months, so there will be no unpleasant
surprises (like wrong contrasts) coming with this change. Here are two
themes that follow this pattern, both having a stylish gradient as
header image:
- orange:
http://extensions.xwiki.org/xwiki/bin/Extension/Soft+Orange+ColorTheme
- blue: http://extensions.xwiki.org/xwiki/bin/Extension/Soft+Blue+ColorTheme
My +1 goes for using the orange version as default color theme in 3.0.
--
Sergiu Dumitriu
http://purl.org/net/sergiu/