Hi,
When the CSS3 fever began, Raluca Stavro came to me and asked me what I
think about making a HTML5+CSS3 skin. My first answer was that is not gonna
happen. We invest very much in making our skins have cross-browser support
(especially old versions of IE). This is one of our strengths, but also the
reason we limit ourselves from innovation.
When I'm talking about a "modern" skin I'm not only referring about HTML,
JS, CSS (having transparency, corners, multiple backgrounds, shadows without
having to triple the code and the number of hacks), but it's about all
cool/experimentation features, that boosts productivity, minimize code
lines, etc. but lack all/old browser support (SVG, location awareness, CSS3
calc etc).
So, in my opinion this would be an experimentation/shiny skin that by
comparison would make old browsers supporters and lovers to quit their old
behaviors and embrace the future :) :p
So, the questions I have are:
1) would this be possible? would anyone want to do this sort of thing? I
know the biggest problem is gonna be the maintenance, but could bring lots
of innovation and productivity.
2) what feature/improvement/thing do you think it would be the most needed
for a new "modern" "skin" (the topic somehow go beyond the skin boundaries)?
Thanks,
Caty
----- "Ecaterina Valica" <valicac(a)gmail.com> wrote:
> Hi,
>
> When the CSS3 fever began, Raluca Stavro came to me and asked me what
> I
> think about making a HTML5+CSS3 skin. My first answer was that is not
> gonna
> happen. We invest very much in making our skins have cross-browser
> support
> (especially old versions of IE). This is one of our strengths, but
> also the
> reason we limit ourselves from innovation.
>
> When I'm talking about a "modern" skin I'm not only referring about
> HTML,
> JS, CSS (having transparency, corners, multiple backgrounds, shadows
> without
> having to triple the code and the number of hacks), but it's about
> all
> cool/experimentation features, that boosts productivity, minimize
> code
> lines, etc. but lack all/old browser support (SVG, location awareness,
> CSS3
> calc etc).
>
> So, in my opinion this would be an experimentation/shiny skin that by
> comparison would make old browsers supporters and lovers to quit their
> old
> behaviors and embrace the future :) :p
>
> So, the questions I have are:
>
> 1) would this be possible? would anyone want to do this sort of thing?
> I
> know the biggest problem is gonna be the maintenance, but could bring
> lots
> of innovation and productivity.
For lot of cases (that is at least everything that includes JS, and maybe more) we should be able to add such new features on top of the existing UI, i.e. without the need to create a dedicated skin. Take for example attachment Drag & Drop in the attachment footer tab. We just detect the feature and offer it if supported (do nothing if not).
>
> 2) what feature/improvement/thing do you think it would be the most
> needed
> for a new "modern" "skin" (the topic somehow go beyond the skin
> boundaries)?
Right now I think of
- attachments D&D
- upload with progress bar
- growl-like client notifications (w/ WebSocket)
- local drafts (with localStorage)
- a profile picture sizing/cropping tool using canvas
- ... I'm sure a lot more :)
Jerome.
>
> Thanks,
> Caty
> _______________________________________________
> devs mailing list
> devs(a)xwiki.org
> http://lists.xwiki.org/mailman/listinfo/devs
Hello guys, I want to tell u first that all of XWiki is awesome °¬° (and
the developers too =D )
But, I need to know when you (you mean XWiki org) are going to liberate
the XEnterprise 2.4M2, I need... really I need the Templates Pages =(
this is the URL if u doest'n know what I mean
http://code.xwiki.org/xwiki/bin/view/Applications/AdministrationApplication
in the sub-section "Easy Templates Creation and Administration (Starting
with XWiki Enterprise 2.4M2)" ...
Maybe I'm wrong and this is a User-Application maybe not, but I want to
know if this "templates" are going to be in the Milestone 2, if not,
then tell me if that "Templates" are a User-Application (and if u can
tell me how to make it please =( )
Also, I have a little problem with the Import of Documents in
OpenOfficeServer, I tried to set up a OOffice in a Linux Server, but i
cant to make it a service D=!!! I was looking for a tip of "How to make
OpenOffice a Service in Linux" and what i found doesnt work =(. My
server details are:
- SO: OpenSuse 10, Server
- XWiki: Enterprise 2.3
- OpenOffice: 3.2
If someone can help me please with this 2 Issues I'll be really happy.
Thank you for your time!!!!
Adriana Escamilla Alvarado
Ing. Tecnologías Computacionales
Particular: (614) 260-0732
Móvil: (614) 219-7213
Contact Me Facebook
<http://www.facebook.com/#%21/adriana.escamilla.alvarado>Twitter
<http://twitter.com/Ing_Patito>
--- @ WiseStamp Signature
<http://my.wisestamp.com/link?u=6qp9k36s775m7jfq&site=www.wisestamp.com/emai…>.
Get it now
<http://my.wisestamp.com/link?u=6qp9k36s775m7jfq&site=www.wisestamp.com/emai…>
Hi,
Is there a way to integrate Gliffy and XWiki? I am looking something similar
to the Balsamiq Mockups for Xwiki. I read this new feature request
http://jira.gliffy.com/browse/GLIFFY-566 on the JIRA Gliffy site. The
request is a "Gliffy Plugin for XWiki/Velocity". On the comments of the new
feature request the Gliffy people said they are going to "follow up with
Jerome to see what the best next steps are".
Thanks,
Abel
Hi XWiki'ers friends,
I've implemented this great wiki engine on my enterprise, and lots of questions appeared. One at a time in different emails:
I've made a new Skin and changed the Logo successfully, but I don't know how to set the relative URL of it, in a way that, regardless the space a user is (Panels, Sandbox, MyDepartmentSpace etc), it points to the xwiki/bin/view/Main space (or other than thatt). I've noticed that it points to the WbHome of the space the user is actually, not the "start-of-everything" page - which I want. I want it static to a specific space.
How can I change this?
Ramon Gomes Brandão
I added page in the xwiki through Rest Api in following way. Would somebody
please advise me how to add user to the xwiki system in the similiar way.
public void add()
{
final String CONTENT = "Content 101";
final String TITLE = "Title 101";
final String PARENT = "Private.WebHome";
ObjectFactory objectFactory = new ObjectFactory();
Page page = objectFactory.createPage();
page.setContent(CONTENT);
page.setTitle(TITLE);
page.setParent(PARENT);
HttpClient httpClient = new HttpClient();
httpClient.getState().setCredentials(AuthScope.ANY, new
UsernamePasswordCredentials("admin", "admin"));
httpClient.getParams().setAuthenticationPreemptive(true);
JAXBContext context;
try {
context = JAXBContext.newInstance("org.xwiki.rest.model.jaxb");
Marshaller marshaller = context.createMarshaller();
Unmarshaller unmarshaller = context.createUnmarshaller();
PutMethod putMethod = new
PutMethod("http://localhost:8080/xwiki/rest/wikis/xwiki/spaces/Private/pages/NewPage001");
putMethod.addRequestHeader("Accept",
MediaType.APPLICATION_XML.toString());
StringWriter writer = new StringWriter();
marshaller.marshal(page, writer);
RequestEntity entity;
entity = new StringRequestEntity(writer.toString(),
MediaType.APPLICATION_XML.toString(), "UTF-8");
putMethod.setRequestEntity(entity);
httpClient.executeMethod(putMethod);
} catch (JAXBException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (UnsupportedEncodingException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (HttpException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
--
View this message in context: http://xwiki.475771.n2.nabble.com/Adding-user-through-Rest-API-tp5206186p52…
Sent from the XWiki- Users mailing list archive at Nabble.com.
I've imported the .xar in the playground and it works. But in my XWiki (XWiki
Enterprise 2.4-milestone-1.29254) I get:
"Error number 4001 in 4: Error while parsing velocity page
xwiki:Todo.WebHome Wrapped Exception: Failed to evaluate content with id Web
Home"
Here ist the code:
http://xwiki.475771.n2.nabble.com/file/n5204599/ExtendedTodoApplication.txt
ExtendedTodoApplication.txt
If I erase this line:
#set ($count = $xwiki.getXWiki().search("select count(doc) from
XWikiDocument doc ${hql}", $context.context).get(0))
the error message is gone and I can see the table but the app doesn't work
as it should.
Can someone tell me whats wrong?
--
View this message in context: http://xwiki.475771.n2.nabble.com/Extended-Todo-Application-1-3-tp5204599p5…
Sent from the XWiki- Users mailing list archive at Nabble.com.
Hi,
I would like to apply some CSS styling to a panel only.
I have some velocity code creating a <ul> list
I would like to use the CSS as documented on
http://meyerweb.com/eric/css/edge/menus/demo.html
but it should only apply to the panel,
I use the same velocity code also on a document, and there the styling should not be applied
Gerritjan
Hi!,
i want to automate the html export of a space.
How can I trigger the html export from crontab?
Best regards,
H.-Dirk Schmitt
--
------------------------------------------------------------------------
*
H.-Dirk Schmitt <http://www.computer42.org> *
Dipl. Math.
eMail:/dirk.schmitt@computer42.org/
mobile:/+49 177 616 8564/
phone: /+49 2642 99 41 10/
fax: /+49 2642 99 41 15/
Kripper Str. 35, D-53489 Sinzig
I am out of the office until 06/28/2010.
On holiday. I will not have access to email. If you need help with the
wiki, please contact Kim Dillon or Jenny Purushotma. If this is an
emergency, please leave a message on my cell phone. Thank you!
Note: This is an automated response to your message "users Digest, Vol 35,
Issue 54" sent on 6/19/10 6:00:04.
This is the only notification you will receive while this person is away.