You can subscribe to this list here.
| 2008 |
Jan
|
Feb
|
Mar
(33) |
Apr
|
May
(1) |
Jun
|
Jul
|
Aug
(3) |
Sep
|
Oct
|
Nov
(17) |
Dec
|
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 2009 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
(1) |
Dec
|
| 2011 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
(6) |
Jul
(4) |
Aug
(2) |
Sep
(5) |
Oct
(2) |
Nov
(2) |
Dec
|
| 2012 |
Jan
(1) |
Feb
|
Mar
|
Apr
(1) |
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
| 2013 |
Jan
|
Feb
|
Mar
(2) |
Apr
|
May
(2) |
Jun
|
Jul
|
Aug
|
Sep
(5) |
Oct
(1) |
Nov
|
Dec
(1) |
| 2014 |
Jan
(2) |
Feb
|
Mar
(1) |
Apr
(1) |
May
(1) |
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
| 2015 |
Jan
|
Feb
|
Mar
(1) |
Apr
|
May
|
Jun
(1) |
Jul
|
Aug
(3) |
Sep
|
Oct
(1) |
Nov
|
Dec
|
| 2016 |
Jan
|
Feb
|
Mar
(3) |
Apr
|
May
(1) |
Jun
|
Jul
(1) |
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
| 2017 |
Jan
(2) |
Feb
(1) |
Mar
|
Apr
|
May
(5) |
Jun
(1) |
Jul
|
Aug
|
Sep
|
Oct
(1) |
Nov
|
Dec
|
| 2018 |
Jan
(1) |
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
(2) |
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
| 2019 |
Jan
|
Feb
|
Mar
(1) |
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(1) |
Nov
|
Dec
|
| 2020 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(1) |
Nov
(1) |
Dec
|
| 2022 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
(1) |
| 2025 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
(1) |
Sep
(5) |
Oct
|
Nov
|
Dec
|
| 2026 |
Jan
|
Feb
(1) |
Mar
(1) |
Apr
(1) |
May
(2) |
Jun
(2) |
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
|
From: Ronald B. <rb...@rb...> - 2013-09-07 07:44:37
|
Hi all, i plan a new CSSParser relese during the next weeks. While checking the tasks that have to be done i figured out that we have no update for our web page for a long long time but more importont, we did not offer the files section on sourceforge (http://sourceforge.net/projects/cssparser/files/cssparser/) >From i first look i fear i need project admin rights for changing this. Anybody able to grant this rights? RBRi -------------------------- Wetator Smart web application testing http://www.wetator.org |
|
From: Ronald B. <rb...@rb...> - 2013-05-14 19:01:15
|
Hi Wiebe,
think i have fixed your problems.
A new snapshot build of cssparser is available at sonatype. Please try and report back....
Thanks for your support and the test cases.
RBRi
--------------------------
Wetator
Smart web application testing
http://www.wetator.org
On Mon, 13 May 2013 10:34:20 -0300 Wiebe Ruiter wrote:
>
>
>-----BEGIN PGP SIGNED MESSAGE-----
>Hash: SHA1
>
>Good day. First, thanks for the cssparser project. It is a big help.
>At the moment I am encountering two parsing bugs which are stopping me
>in my current project.
>
>One day I'll get my head around the javacc parser format; right now I
>cannot. I did however created a testcase to show the problem I am
>seeing. Is there any worksround for this bug ? Is there any way I can
>patch the javacc files to handle these situations ?
>
>- -----start testcase-----
>package com.docner.editgui;
>
>import com.steadystate.css.dom.CSSStyleRuleImpl;
>import com.steadystate.css.parser.CSSOMParser;
>import com.steadystate.css.parser.SACParserCSS3;
>import java.io.IOException;
>import java.io.StringReader;
>import static org.junit.Assert.*;
>import org.junit.Before;
>import org.junit.Test;
>import org.w3c.css.sac.InputSource;
>import org.w3c.dom.css.CSSRule;
>import org.w3c.dom.css.CSSStyleDeclaration;
>import org.w3c.dom.css.CSSStyleSheet;
>
>/**
> *
> * @author wiebe
> */
>public class CssParserBugs {
>
> private CSSOMParser parser;
>
> @Before
> public void setUp() {
> parser = new CSSOMParser(new SACParserCSS3());
> }
>
> @Test
> public void testThatCssParserCanHandleTransformRotate() throws
>IOException {
> String stylesheet = ".flipped {\n"
> + " transform: rotateY(180deg);\n"
> + "}\n"
> + "";
>
> CSSStyleDeclaration style = readStyle(stylesheet);
> assertEquals("rotateY(180deg)",
>style.getPropertyCSSValue("transform"));
> }
>
> @Test
> public void testThatCssParserCanHandleRGBA() throws IOException {
> String stylesheet = "#footer {\n"
> + " width:900px;\n"
> + " height:52px;\n"
> + " left: 32px;\n"
> + " top: 530px;\n"
> + " position: absolute;\n"
> + " background-color:rgba(0,0,0,0.2); \n"
> + "}\n"
> + "";
>
> CSSStyleDeclaration style = readStyle(stylesheet);
> assertEquals("rgba(0,0,0,0.2)",
>style.getPropertyCSSValue("background-color"));
> }
>
> protected CSSStyleDeclaration readStyle(String stylesheet) throws
>IOException {
> StringReader reader = new StringReader(stylesheet);
> InputSource source = new InputSource(reader);
> CSSStyleSheet sheet = parser.parseStyleSheet(source, null, null);
> CSSRule rule = sheet.getCssRules().item(0);
> CSSStyleRuleImpl styleRule = (CSSStyleRuleImpl) rule;
> CSSStyleDeclaration style = styleRule.getStyle();
> return style;
> }
>}
>- -----finish testcase-----
>
>-----BEGIN PGP SIGNATURE-----
>Version: GnuPG/MacGPG2 v2.0.18 (Darwin)
>Comment: GPGTools - http://gpgtools.org
>Comment: Using GnuPG with Thunderbird - http://www.enigmail.net/
>
>iQIcBAEBAgAGBQJRkOvcAAoJEGfAtLaF4C04n/wP/0sZkZLFgBsqHKlT9rAl38Xb
>mRQ8qPuBzYJ3UNQU4gH4qjvbsxTWJUl5uL2EgAnrGtfxrILE+UZjyzkzSA3c8SVm
>lNCpex1G21VbWKy1dSPA/eGQ4p389rUfo3djSkEJplHe1SVjT+1cN6qCDOdG4qLJ
>8aoJRdLGG4Y8H6XWSLLKnMnCvfzXOr3+awJXPbV6KmmfblwZXrQ8jsfdwTZgBp0a
>gX89IROX6tUBmu73rL/symXsO8bKPIHl1tgY2ibhc10XZ02h7u6p7SDUfpUViTiq
>9/iewdPJWQ0I4nOeqdCQI4eenggYRgJUcvgy3ZUfXhIwNKJGwqqGrOWw8jseikyd
>XI4xp43rheGK7YhSEJLldi4JtMIUNEoQHZQn7VaX3/uKCMe4GOnZKzuzTHi/S0d1
>w2BpolN6NR3XWqjPIePia1D+zMTkGO9qsBwl6FXP6O0vtfQSiL/M8XbXjBw3pYqp
>S5jgk46PvBXKwJG6AxSwX1o1//nSICs8UXjHpO07WjTLtpqUTpY8kQOeqnEzuJkX
>h9X+nMiJqs45MKvVJHORBric8avPiHvc0yDgi2nMKUSebryv8KZqqrvzqK3BW1ib
>RFdohqUbhR5XG0hfumotYxus8DNyQbKUGw8HQijR1iuQBJOjzywWB9vzLV7CenT7
>WWdgYVLpr5qomoZ1gl/U
>=d/gB
>-----END PGP SIGNATURE-----
>
>
|
|
From: Wiebe R. <wi...@do...> - 2013-05-13 14:01:12
|
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
Good day. First, thanks for the cssparser project. It is a big help.
At the moment I am encountering two parsing bugs which are stopping me
in my current project.
One day I'll get my head around the javacc parser format; right now I
cannot. I did however created a testcase to show the problem I am
seeing. Is there any worksround for this bug ? Is there any way I can
patch the javacc files to handle these situations ?
- -----start testcase-----
package com.docner.editgui;
import com.steadystate.css.dom.CSSStyleRuleImpl;
import com.steadystate.css.parser.CSSOMParser;
import com.steadystate.css.parser.SACParserCSS3;
import java.io.IOException;
import java.io.StringReader;
import static org.junit.Assert.*;
import org.junit.Before;
import org.junit.Test;
import org.w3c.css.sac.InputSource;
import org.w3c.dom.css.CSSRule;
import org.w3c.dom.css.CSSStyleDeclaration;
import org.w3c.dom.css.CSSStyleSheet;
/**
*
* @author wiebe
*/
public class CssParserBugs {
private CSSOMParser parser;
@Before
public void setUp() {
parser = new CSSOMParser(new SACParserCSS3());
}
@Test
public void testThatCssParserCanHandleTransformRotate() throws
IOException {
String stylesheet = ".flipped {\n"
+ " transform: rotateY(180deg);\n"
+ "}\n"
+ "";
CSSStyleDeclaration style = readStyle(stylesheet);
assertEquals("rotateY(180deg)",
style.getPropertyCSSValue("transform"));
}
@Test
public void testThatCssParserCanHandleRGBA() throws IOException {
String stylesheet = "#footer {\n"
+ " width:900px;\n"
+ " height:52px;\n"
+ " left: 32px;\n"
+ " top: 530px;\n"
+ " position: absolute;\n"
+ " background-color:rgba(0,0,0,0.2); \n"
+ "}\n"
+ "";
CSSStyleDeclaration style = readStyle(stylesheet);
assertEquals("rgba(0,0,0,0.2)",
style.getPropertyCSSValue("background-color"));
}
protected CSSStyleDeclaration readStyle(String stylesheet) throws
IOException {
StringReader reader = new StringReader(stylesheet);
InputSource source = new InputSource(reader);
CSSStyleSheet sheet = parser.parseStyleSheet(source, null, null);
CSSRule rule = sheet.getCssRules().item(0);
CSSStyleRuleImpl styleRule = (CSSStyleRuleImpl) rule;
CSSStyleDeclaration style = styleRule.getStyle();
return style;
}
}
- -----finish testcase-----
-----BEGIN PGP SIGNATURE-----
Version: GnuPG/MacGPG2 v2.0.18 (Darwin)
Comment: GPGTools - http://gpgtools.org
Comment: Using GnuPG with Thunderbird - http://www.enigmail.net/
iQIcBAEBAgAGBQJRkOvcAAoJEGfAtLaF4C04n/wP/0sZkZLFgBsqHKlT9rAl38Xb
mRQ8qPuBzYJ3UNQU4gH4qjvbsxTWJUl5uL2EgAnrGtfxrILE+UZjyzkzSA3c8SVm
lNCpex1G21VbWKy1dSPA/eGQ4p389rUfo3djSkEJplHe1SVjT+1cN6qCDOdG4qLJ
8aoJRdLGG4Y8H6XWSLLKnMnCvfzXOr3+awJXPbV6KmmfblwZXrQ8jsfdwTZgBp0a
gX89IROX6tUBmu73rL/symXsO8bKPIHl1tgY2ibhc10XZ02h7u6p7SDUfpUViTiq
9/iewdPJWQ0I4nOeqdCQI4eenggYRgJUcvgy3ZUfXhIwNKJGwqqGrOWw8jseikyd
XI4xp43rheGK7YhSEJLldi4JtMIUNEoQHZQn7VaX3/uKCMe4GOnZKzuzTHi/S0d1
w2BpolN6NR3XWqjPIePia1D+zMTkGO9qsBwl6FXP6O0vtfQSiL/M8XbXjBw3pYqp
S5jgk46PvBXKwJG6AxSwX1o1//nSICs8UXjHpO07WjTLtpqUTpY8kQOeqnEzuJkX
h9X+nMiJqs45MKvVJHORBric8avPiHvc0yDgi2nMKUSebryv8KZqqrvzqK3BW1ib
RFdohqUbhR5XG0hfumotYxus8DNyQbKUGw8HQijR1iuQBJOjzywWB9vzLV7CenT7
WWdgYVLpr5qomoZ1gl/U
=d/gB
-----END PGP SIGNATURE-----
|
|
From: David S. <dav...@gm...> - 2013-03-07 06:12:58
|
Hi Alan, First of all, congratulations on the new job. I hope it is a positive step for you! I know the cssparser project has been a pretty thankless task, but it continues to be in demand. I just did a search on "css" on the SourceForge homepage and we're (almost) the top of the list, where it tells me that we have 115 weekly downloads. I know it has been something like this week-on-week, year-on-year. Alan, you have been a champion. Thank you so much for your efforts. I'll spend some time getting a handle on the Maven release process, and no doubt come back to you with some questions. With best regards, David On 07/03/2013, at 4:24 PM, Alan Krueger <al...@tr...> wrote: > Guys, > > I just changed jobs this week. My new employer is quite a bit more > concerned about employees outside work related to their business, even > open source projects that employees have contributed to in the past. > The requirements to navigate it legally are a bit more than I have time > for at the moment, so I'm planning to step down off the cssparser > project to avoid any possibility of legal issues affecting my employment > or the cssparser project. > > I'll be happy to help transition things off my plate in the near future > as necessary, as time permits. > > Thanks, > Alan > > > ------------------------------------------------------------------------------ > Symantec Endpoint Protection 12 positioned as A LEADER in The Forrester > Wave(TM): Endpoint Security, Q1 2013 and "remains a good choice" in the > endpoint security space. For insight on selecting the right partner to > tackle endpoint security challenges, access the full report. > http://p.sf.net/sfu/symantec-dev2dev > _______________________________________________ > cssparser-developers mailing list > css...@li... > https://lists.sourceforge.net/lists/listinfo/cssparser-developers |
|
From: Alan K. <al...@tr...> - 2013-03-07 06:02:26
|
Guys, I just changed jobs this week. My new employer is quite a bit more concerned about employees outside work related to their business, even open source projects that employees have contributed to in the past. The requirements to navigate it legally are a bit more than I have time for at the moment, so I'm planning to step down off the cssparser project to avoid any possibility of legal issues affecting my employment or the cssparser project. I'll be happy to help transition things off my plate in the near future as necessary, as time permits. Thanks, Alan |
|
From: Ronald B. <rb...@rb...> - 2012-04-20 18:40:38
|
Hi Alan,
i think it is time for another release. All the fixes from the last months are working well (have not seen any new error messages).
So it is time to make them available as release.
RBRi
--------------------------
Wetator
Smart web application testing
http://www.wetator.org
|
|
From: Ronald B. <rb...@rb...> - 2012-01-17 19:42:48
|
Hi all,
another stupid parser exception is fixed.
Alan, can you please create a new public snapshot.
RBRi
--------------------------
Wetator
Smart web application testing
http://www.wetator.org
|
|
From: Ronald B. <rb...@rb...> - 2011-11-19 19:34:50
|
Our Webpage (http://cssparser.sourceforge.net/) is really outdated. Anyone out there has the time to fix this? RBRi -------------------------- Wetator Smart web application testing http://www.wetator.org |
|
From: Ronald B. <rb...@rb...> - 2011-11-19 19:33:27
|
Hi all,
found some time to write some more tests and fix some NPE's.
Hope you like it....
Alan, can you please create a first public snapshot, i need the fixes for HtmlUnit.
RBRi
--------------------------
Wetator
Smart web application testing
http://www.wetator.org
|
|
From: Kevin W. <kev...@gm...> - 2011-10-26 20:30:16
|
What is included in the new release? Does it include CSS3 support? On Wed, Oct 26, 2011 at 8:07 AM, < css...@li...> wrote: > Send cssparser-developers mailing list submissions to > css...@li... > > To subscribe or unsubscribe via the World Wide Web, visit > https://lists.sourceforge.net/lists/listinfo/cssparser-developers > or, via email, send a message with subject or body 'help' to > css...@li... > > You can reach the person managing the list at > css...@li... > > When replying, please edit your Subject line so it is more specific > than "Re: Contents of cssparser-developers digest..." > > > Today's Topics: > > 1. cssparser 0.9.6 released (Alan Krueger) > > > ---------------------------------------------------------------------- > > Message: 1 > Date: Tue, 25 Oct 2011 16:59:27 -0500 > From: Alan Krueger <al...@tr...> > Subject: [cssparser-developers] cssparser 0.9.6 released > To: CSS Parser Developers Mailing List > <css...@li...> > Message-ID: <4EA...@tr...> > Content-Type: text/plain; charset=ISO-8859-1; format=flowed > > Version 0.9.6 has been released to Maven and SourceForge download. > > End of line. > > > > > ------------------------------ > > > ------------------------------------------------------------------------------ > The demand for IT networking professionals continues to grow, and the > demand for specialized networking skills is growing even more rapidly. > Take a complimentary Learning@Cisco Self-Assessment and learn > about Cisco certifications, training, and career opportunities. > http://p.sf.net/sfu/cisco-dev2dev > > ------------------------------ > > _______________________________________________ > cssparser-developers mailing list > css...@li... > https://lists.sourceforge.net/lists/listinfo/cssparser-developers > > > End of cssparser-developers Digest, Vol 9, Issue 1 > ************************************************** > |
|
From: Alan K. <al...@tr...> - 2011-10-25 21:59:36
|
Version 0.9.6 has been released to Maven and SourceForge download. End of line. |
|
From: Martin F. <fox...@gm...> - 2011-09-29 17:59:13
|
Cool, Thanks :) On Thu, Sep 29, 2011 at 2:39 PM, Ronald Brill <rb...@rb...> wrote: > Hi Martin, > > your problem is a known bug (see > https://sourceforge.net/tracker/?func=detail&aid=2042900&group_id=82996&atid=567969 > ). > This one (and some others) are fixed in the upcomming version 0.9.6. > > I did also a quick test with your code. Works fine here. > > You can download the latest snapshot here: > > > http://www.wetator.org/repo/net/sourceforge/cssparser/cssparser/0.9.6-SNAPSHOT/cssparser-0.9.6-SNAPSHOT.jar > > Please try the snapshot and report problems. > > > RBRi > -------------------------- > Wetator > Smart web application testing > http://www.wetator.org > > > > > ------------------------------------------------------------------------------ > All the data continuously generated in your IT infrastructure contains a > definitive record of customers, application performance, security > threats, fraudulent activity and more. Splunk takes this data and makes > sense of it. Business sense. IT sense. Common sense. > http://p.sf.net/sfu/splunk-d2dcopy1 > _______________________________________________ > cssparser-developers mailing list > css...@li... > https://lists.sourceforge.net/lists/listinfo/cssparser-developers > |
|
From: Ronald B. <rb...@rb...> - 2011-09-29 17:39:28
|
Hi Martin, your problem is a known bug (see https://sourceforge.net/tracker/?func=detail&aid=2042900&group_id=82996&atid=567969). This one (and some others) are fixed in the upcomming version 0.9.6. I did also a quick test with your code. Works fine here. You can download the latest snapshot here: http://www.wetator.org/repo/net/sourceforge/cssparser/cssparser/0.9.6-SNAPSHOT/cssparser-0.9.6-SNAPSHOT.jar Please try the snapshot and report problems. RBRi -------------------------- Wetator Smart web application testing http://www.wetator.org |
|
From: Martin F. <fox...@gm...> - 2011-09-29 15:16:30
|
Hi Alan, Thanks for your response, I'm using the 0.9.5 version, as in http://sourceforge.net/projects/cssparser/files/cssparser/ that one is the latest released version. Here is an example code: package pruebitas; import org.w3c.dom.css.CSSStyleDeclaration; import com.steadystate.css.dom.CSSRuleListImpl; import com.steadystate.css.dom.CSSStyleDeclarationImpl; import com.steadystate.css.dom.CSSStyleRuleImpl; import com.steadystate.css.dom.CSSStyleSheetImpl; public class MyParser { public static void main(String[] args){ CSSStyleSheetImpl _styleSheet = null; _styleSheet = new CSSStyleSheetImpl(); _styleSheet.setCssRules(new CSSRuleListImpl()); // Create a new rule CSSStyleRuleImpl foundRule = new CSSStyleRuleImpl(); foundRule.setParentStyleSheet(_styleSheet); foundRule.setSelectorText("#an-id-for-this"); ((CSSRuleListImpl)_styleSheet.getCssRules()).add(foundRule); // set the rule's attribute value CSSStyleDeclaration declaration = foundRule.getStyle(); // If declaration is null, add a new declaration to the above rule. if (declaration == null) { // Create a new Declaration declaration = new CSSStyleDeclarationImpl(foundRule); // Add the declaration to the rule ((CSSStyleRuleImpl)foundRule).setStyle((CSSStyleDeclarationImpl)declaration); } declaration.setProperty("font-family", "arial, verdana, sans-serif", null); System.out.println("<<<<<<<<START>>>>>>>>"); System.out.println(_styleSheet.toString()); System.out.println("<<<<<<<<END>>>>>>>>"); } } On Thu, Sep 29, 2011 at 11:22 AM, Alan Krueger <al...@tr...> wrote: > On 9/22/2011 12:33 PM, Martin Fox wrote: > > I just changed the version to the latest one, and when I run > the getCssText() of a style sheet, the *font-family* value is coming > without the comas that separate the different families in a same rule. > > That was not happening in the previous version :( > > Do you know how can I fix it? > I replaced the version because the last one was giving me error when I > parse an @import(), but now I'm having this issue. > > Could you attach some sample code—maybe even a JUnit test—that > demonstrates the problem? > > Specifically which version are you seeing this on? We're in the middle of > wrapping up 0.9.6 and I'm unsure if you're using one of the snapshot builds > of that, or if you meant that you moved up to 0.9.5 from something else. > > You might want to try one of the snapshots of 0.9.6, as there were a number > of bugfixes applied to that. > > Thanks, > Alan Krueger > > > > ------------------------------------------------------------------------------ > All the data continuously generated in your IT infrastructure contains a > definitive record of customers, application performance, security > threats, fraudulent activity and more. Splunk takes this data and makes > sense of it. Business sense. IT sense. Common sense. > http://p.sf.net/sfu/splunk-d2dcopy1 > _______________________________________________ > cssparser-developers mailing list > css...@li... > https://lists.sourceforge.net/lists/listinfo/cssparser-developers > > |
|
From: Alan K. <al...@tr...> - 2011-09-29 15:02:20
|
On 9/22/2011 12:33 PM, Martin Fox wrote: > I just changed the version to the latest one, and when I run > the getCssText() of a style sheet, the *font-family* value is coming > without the comas that separate the different families in a same rule. > > That was not happening in the previous version :( > > Do you know how can I fix it? > I replaced the version because the last one was giving me error when I > parse an @import(), but now I'm having this issue. > Could you attach some sample code---maybe even a JUnit test---that demonstrates the problem? Specifically which version are you seeing this on? We're in the middle of wrapping up 0.9.6 and I'm unsure if you're using one of the snapshot builds of that, or if you meant that you moved up to 0.9.5 from something else. You might want to try one of the snapshots of 0.9.6, as there were a number of bugfixes applied to that. Thanks, Alan Krueger |
|
From: Martin F. <fox...@gm...> - 2011-09-22 17:33:07
|
Hi, I just changed the version to the latest one, and when I run the getCssText() of a style sheet, the *font-family* value is coming without the comas that separate the different families in a same rule. That was not happening in the previous version :( Do you know how can I fix it? I replaced the version because the last one was giving me error when I parse an @import(), but now I'm having this issue. Thanks in advance. Martin Fox.- |
|
From: Ronald B. <rb...@rb...> - 2011-08-24 19:15:19
|
>Any idea when CSS3 support will be available?
>
Hi Kevin,
at the moment i have no idea.
I'm nearly done with my list of todo's for the next version. A new snapshot build will be available in some days.
The next step is to make a real release.
An than i will spend some time on setting up an initial css3 parser support. So there is hope to have something ready before chrismas...
RBRi
--------------------------
Wetator
Smart web application testing
http://www.wetator.org
|
|
From: Kevin W. <kev...@gm...> - 2011-08-22 03:31:38
|
Any idea when CSS3 support will be available? |
|
From: Daniel G. <djg...@gm...> - 2011-07-26 18:42:24
|
Congrats, Ronald! On Tue, Jul 26, 2011 at 1:21 PM, Alan Krueger <al...@tr...> wrote: > Just added Ronald Brill as a developer to the project. He's been > contributing patches in his role as developer on HtmlUnit, perhaps the > largest client module of the CSS Parser project. With HtmlUnit's > profile in the Java community, I thought it made sense to plug Ronald > into the project directly to meet their needs more quickly. > > > > ------------------------------------------------------------------------------ > Magic Quadrant for Content-Aware Data Loss Prevention > Research study explores the data loss prevention market. Includes in-depth > analysis on the changes within the DLP market, and the criteria used to > evaluate the strengths and weaknesses of these DLP solutions. > http://www.accelacomm.com/jaw/sfnl/114/51385063/ > _______________________________________________ > cssparser-developers mailing list > css...@li... > https://lists.sourceforge.net/lists/listinfo/cssparser-developers > -- Daniel Gredler http://daniel.gredler.net/ |
|
From: Alan K. <al...@tr...> - 2011-07-26 17:21:07
|
Just added Ronald Brill as a developer to the project. He's been contributing patches in his role as developer on HtmlUnit, perhaps the largest client module of the CSS Parser project. With HtmlUnit's profile in the Java community, I thought it made sense to plug Ronald into the project directly to meet their needs more quickly. |
|
From: Alan K. <al...@tr...> - 2011-07-12 18:10:54
|
On 7/8/2011 4:31 PM, Ronald Brill wrote: > Any progress? > I've been fairly swamped with a combination of my own and other developer's (day job) vacations. I'll try to get to it shortly. Would it make sense to bring you in as a developer on the cssparser project? If you don't want/need another commitment, I would completely understand. Thanks, Alan Krueger |
|
From: Ronald B. <rb...@rb...> - 2011-07-08 19:31:16
|
Any progress?
RBRi
--------------------------
Wetator
Smart web application testing
http://www.wetator.org
|
|
From: Daniel G. <djg...@gm...> - 2011-06-27 15:57:15
|
I don't have any notes, but I think there's a web interface to release on SF: http://sourceforge.net/apps/trac/sourceforge/wiki/Release%20files%20for%20download#FileManagerWebInterface The process for releasing to the central Maven repo has also changed since I last messed with it: http://maven.apache.org/guides/mini/guide-central-repository-upload.html I think you're supposed to deploy to the Sonatype repo, which will automatically send things to the central Maven repo: https://docs.sonatype.org/display/Repository/Sonatype+OSS+Maven+Repository+Usage+Guide On Mon, Jun 27, 2011 at 10:34 AM, Alan Krueger <al...@tr...> wrote: > On 3/27/2008 5:08 PM, D&J Gredler wrote: > > I've uploaded it to SF and deployed it to our Maven repo, which I'll > > soon request be sync'ed with the central repo. > Can you share instructions for what SF requires to get a release > published? I've never done that before in SF and I'm trying to be > responsive to the HtmlUtil team's request for another release. I could > try to puzzle it out myself, but if you have some quick notes or > pointers that would be very helpful. > > Thanks, > Alan Krueger > > > > ------------------------------------------------------------------------------ > All of the data generated in your IT infrastructure is seriously valuable. > Why? It contains a definitive record of application performance, security > threats, fraudulent activity, and more. Splunk takes this data and makes > sense of it. IT sense. And common sense. > http://p.sf.net/sfu/splunk-d2d-c2 > _______________________________________________ > cssparser-developers mailing list > css...@li... > https://lists.sourceforge.net/lists/listinfo/cssparser-developers > -- Daniel Gredler http://daniel.gredler.net/ |
|
From: Alan K. <al...@tr...> - 2011-06-27 14:34:26
|
On 3/27/2008 5:08 PM, D&J Gredler wrote: > I've uploaded it to SF and deployed it to our Maven repo, which I'll > soon request be sync'ed with the central repo. Can you share instructions for what SF requires to get a release published? I've never done that before in SF and I'm trying to be responsive to the HtmlUtil team's request for another release. I could try to puzzle it out myself, but if you have some quick notes or pointers that would be very helpful. Thanks, Alan Krueger |
|
From: Ronald B. <rb...@rb...> - 2011-06-23 19:24:43
|
On Thu, 23 Jun 2011 10:44:07 -0500 Alan Krueger wrote: >I agree. Would it be possible to break up the large patch into discrete >functional patches, or are they irretrievably combined? Hi Alan, nice to finally get some response. Breaking the patch up is not really possible. It contains too many different things. And CSSParser has not so many classes to realy work on different parts. The patch is available at http://www.wetator.org/repo/cssparser_2.txt Please have a look. I tried to respect the rules of the project. > >I've not performed releases myself for this project, but I'd be willing >to help get things moving. > Thanks a lot for your help. I'm not at home for the next days; will be back at Monday. RBRi -------------------------- Wetator Smart web application testing http://www.wetator.org |