You can subscribe to this list here.
2003 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
(2) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2004 |
Jan
(83) |
Feb
(10) |
Mar
|
Apr
|
May
|
Jun
(10) |
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
From: <ce...@us...> - 2004-01-12 17:26:39
|
Update of /cvsroot/csseditor/net.sourceforge.csseditor.tests/src/net/sourceforge/csseditor/tests/internal/text In directory sc8-pr-cvs1:/tmp/cvs-serv27265/src/net/sourceforge/csseditor/tests/internal/text Modified Files: CssCodeScannerTest.java Log Message: Removed unneeded 'this' qualifiers Index: CssCodeScannerTest.java =================================================================== RCS file: /cvsroot/csseditor/net.sourceforge.csseditor.tests/src/net/sourceforge/csseditor/tests/internal/text/CssCodeScannerTest.java,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** CssCodeScannerTest.java 27 Dec 2003 18:56:38 -0000 1.3 --- CssCodeScannerTest.java 12 Jan 2004 17:26:36 -0000 1.4 *************** *** 55,60 **** */ protected void setUp() throws Exception { ! this.profile = new Css2Profile(null); ! this.store = new PreferenceStore(); } --- 55,60 ---- */ protected void setUp() throws Exception { ! profile = new Css2Profile(null); ! store = new PreferenceStore(); } *************** *** 63,68 **** */ protected void tearDown() throws Exception { ! this.profile = null; ! this.store = null; } --- 63,68 ---- */ protected void tearDown() throws Exception { ! profile = null; ! store = null; } *************** *** 70,76 **** public void testAtKeywordHighlighted() throws Exception { ! PreferenceConverter.setValue(this.store, CssEditorPreferences.EDITOR_AT_KEYWORD_COLOR, HIGHLIGHT_COLOR); ! this.store.setValue(CssEditorPreferences.EDITOR_AT_KEYWORD_BOLD, true); ITokenScanner scanner = prepareScanner("@import"); //$NON-NLS-1$ assertHighlight(scanner.nextToken()); --- 70,76 ---- public void testAtKeywordHighlighted() throws Exception { ! PreferenceConverter.setValue(store, CssEditorPreferences.EDITOR_AT_KEYWORD_COLOR, HIGHLIGHT_COLOR); ! store.setValue(CssEditorPreferences.EDITOR_AT_KEYWORD_BOLD, true); ITokenScanner scanner = prepareScanner("@import"); //$NON-NLS-1$ assertHighlight(scanner.nextToken()); *************** *** 78,84 **** public void testCdoHighlighted() throws Exception { ! PreferenceConverter.setValue(this.store, CssEditorPreferences.EDITOR_COMMENT_COLOR, HIGHLIGHT_COLOR); ! this.store.setValue(CssEditorPreferences.EDITOR_COMMENT_BOLD, true); ITokenScanner scanner = prepareScanner("<!--"); //$NON-NLS-1$ assertHighlight(scanner.nextToken()); --- 78,84 ---- public void testCdoHighlighted() throws Exception { ! PreferenceConverter.setValue(store, CssEditorPreferences.EDITOR_COMMENT_COLOR, HIGHLIGHT_COLOR); ! store.setValue(CssEditorPreferences.EDITOR_COMMENT_BOLD, true); ITokenScanner scanner = prepareScanner("<!--"); //$NON-NLS-1$ assertHighlight(scanner.nextToken()); *************** *** 86,92 **** public void testCdcHighlighted() throws Exception { ! PreferenceConverter.setValue(this.store, CssEditorPreferences.EDITOR_COMMENT_COLOR, HIGHLIGHT_COLOR); ! this.store.setValue(CssEditorPreferences.EDITOR_COMMENT_BOLD, true); ITokenScanner scanner = prepareScanner("-->"); //$NON-NLS-1$ assertHighlight(scanner.nextToken()); --- 86,92 ---- public void testCdcHighlighted() throws Exception { ! PreferenceConverter.setValue(store, CssEditorPreferences.EDITOR_COMMENT_COLOR, HIGHLIGHT_COLOR); ! store.setValue(CssEditorPreferences.EDITOR_COMMENT_BOLD, true); ITokenScanner scanner = prepareScanner("-->"); //$NON-NLS-1$ assertHighlight(scanner.nextToken()); *************** *** 94,100 **** public void testPropertyHighlighted() throws Exception { ! PreferenceConverter.setValue(this.store, CssEditorPreferences.EDITOR_PROPERTY_COLOR, HIGHLIGHT_COLOR); ! this.store.setValue(CssEditorPreferences.EDITOR_PROPERTY_BOLD, true); ITokenScanner scanner = prepareScanner("text-align:"); //$NON-NLS-1$ assertHighlight(scanner.nextToken()); --- 94,100 ---- public void testPropertyHighlighted() throws Exception { ! PreferenceConverter.setValue(store, CssEditorPreferences.EDITOR_PROPERTY_COLOR, HIGHLIGHT_COLOR); ! store.setValue(CssEditorPreferences.EDITOR_PROPERTY_BOLD, true); ITokenScanner scanner = prepareScanner("text-align:"); //$NON-NLS-1$ assertHighlight(scanner.nextToken()); *************** *** 102,108 **** public void testPropertyWithWhitespaceHighlighted() throws Exception { ! PreferenceConverter.setValue(this.store, CssEditorPreferences.EDITOR_PROPERTY_COLOR, HIGHLIGHT_COLOR); ! this.store.setValue(CssEditorPreferences.EDITOR_PROPERTY_BOLD, true); ITokenScanner scanner = prepareScanner("text-align :"); //$NON-NLS-1$ assertHighlight(scanner.nextToken()); --- 102,108 ---- public void testPropertyWithWhitespaceHighlighted() throws Exception { ! PreferenceConverter.setValue(store, CssEditorPreferences.EDITOR_PROPERTY_COLOR, HIGHLIGHT_COLOR); ! store.setValue(CssEditorPreferences.EDITOR_PROPERTY_BOLD, true); ITokenScanner scanner = prepareScanner("text-align :"); //$NON-NLS-1$ assertHighlight(scanner.nextToken()); *************** *** 110,116 **** public void testPseudoClassHighlighted() throws Exception { ! PreferenceConverter.setValue(this.store, CssEditorPreferences.EDITOR_PSEUDO_CLASS_COLOR, HIGHLIGHT_COLOR); ! this.store.setValue(CssEditorPreferences.EDITOR_PSEUDO_CLASS_BOLD, true); ITokenScanner scanner = prepareScanner(":link"); //$NON-NLS-1$ --- 110,116 ---- public void testPseudoClassHighlighted() throws Exception { ! PreferenceConverter.setValue(store, CssEditorPreferences.EDITOR_PSEUDO_CLASS_COLOR, HIGHLIGHT_COLOR); ! store.setValue(CssEditorPreferences.EDITOR_PSEUDO_CLASS_BOLD, true); ITokenScanner scanner = prepareScanner(":link"); //$NON-NLS-1$ *************** *** 142,146 **** */ private ITokenScanner prepareScanner(String text) { ! CssTextTools tools = new CssTextTools(this.store, this.profile); ITokenScanner scanner = tools.getCodeScanner(); IDocument document = new Document(text); --- 142,146 ---- */ private ITokenScanner prepareScanner(String text) { ! CssTextTools tools = new CssTextTools(store, profile); ITokenScanner scanner = tools.getCodeScanner(); IDocument document = new Document(text); |
From: <ce...@us...> - 2004-01-12 13:56:11
|
Update of /cvsroot/csseditor/net.sourceforge.csseditor/src/net/sourceforge/csseditor/internal/text In directory sc8-pr-cvs1:/tmp/cvs-serv11041/src/net/sourceforge/csseditor/internal/text Modified Files: CssContentAssistProcessor.java Log Message: Remove unneeded this qualifiers Index: CssContentAssistProcessor.java =================================================================== RCS file: /cvsroot/csseditor/net.sourceforge.csseditor/src/net/sourceforge/csseditor/internal/text/CssContentAssistProcessor.java,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** CssContentAssistProcessor.java 14 Dec 2003 21:59:54 -0000 1.1.1.1 --- CssContentAssistProcessor.java 12 Jan 2004 13:56:08 -0000 1.2 *************** *** 115,120 **** retVal = proposeProperties(document, documentOffset, prefix); } ! if ((this.store != null) ! && this.store.getBoolean(ORDER_PROPOSALS)) { sortProposals(retVal); } --- 115,119 ---- retVal = proposeProperties(document, documentOffset, prefix); } ! if ((store != null) && store.getBoolean(ORDER_PROPOSALS)) { sortProposals(retVal); } *************** *** 139,143 **** */ public char[] getCompletionProposalAutoActivationCharacters() { ! String chars = this.store.getString(AUTOACTIVATION_TRIGGERS); if (chars == null) { return null; --- 138,142 ---- */ public char[] getCompletionProposalAutoActivationCharacters() { ! String chars = store.getString(AUTOACTIVATION_TRIGGERS); if (chars == null) { return null; *************** *** 209,217 **** */ private IStyleSheet getStyleSheet() { ! if (this.editor != null) { ! IDocumentProvider provider = this.editor.getDocumentProvider(); if (provider instanceof CssDocumentProvider) { return ((CssDocumentProvider) provider).getStyleSheet( ! this.editor.getEditorInput()); } } --- 208,216 ---- */ private IStyleSheet getStyleSheet() { ! if (editor != null) { ! IDocumentProvider provider = editor.getDocumentProvider(); if (provider instanceof CssDocumentProvider) { return ((CssDocumentProvider) provider).getStyleSheet( ! editor.getEditorInput()); } } *************** *** 321,325 **** Image icon = CssEditorPlugin.getDefault().getImageRegistry().get( CssEditorPlugin.ICON_AT_RULE); ! Collection atRuleNames = this.profile.getAtKeywords(); for (Iterator i = atRuleNames.iterator(); i.hasNext(); ) { String atRuleName = (String) i.next(); --- 320,324 ---- Image icon = CssEditorPlugin.getDefault().getImageRegistry().get( CssEditorPlugin.ICON_AT_RULE); ! Collection atRuleNames = profile.getAtKeywords(); for (Iterator i = atRuleNames.iterator(); i.hasNext(); ) { String atRuleName = (String) i.next(); *************** *** 357,367 **** CssEditorPlugin.getDefault().getImageRegistry().get( CssEditorPlugin.ICON_SHORTHAND); ! Collection propertyNames = this.profile.getProperties(); for (Iterator i = propertyNames.iterator(); i.hasNext(); ) { String propertyName = (String) i.next(); if (propertyName.startsWith(prefix)) { Image icon = propertyIcon; ! IPropertyInfo info = ! this.profile.getPropertyInfo(propertyName); if (info.isShorthand()) { icon = shorthandIcon; --- 356,365 ---- CssEditorPlugin.getDefault().getImageRegistry().get( CssEditorPlugin.ICON_SHORTHAND); ! Collection propertyNames = profile.getProperties(); for (Iterator i = propertyNames.iterator(); i.hasNext(); ) { String propertyName = (String) i.next(); if (propertyName.startsWith(prefix)) { Image icon = propertyIcon; ! IPropertyInfo info = profile.getPropertyInfo(propertyName); if (info.isShorthand()) { icon = shorthandIcon; *************** *** 391,395 **** Image icon = CssEditorPlugin.getDefault().getImageRegistry().get( CssEditorPlugin.ICON_PSEUDO_CLASS); ! Collection pseudoClassNames = this.profile.getPseudoClassNames(); for (Iterator i = pseudoClassNames.iterator(); i.hasNext(); ) { String pseudoClassName = (String) i.next(); --- 389,393 ---- Image icon = CssEditorPlugin.getDefault().getImageRegistry().get( CssEditorPlugin.ICON_PSEUDO_CLASS); ! Collection pseudoClassNames = profile.getPseudoClassNames(); for (Iterator i = pseudoClassNames.iterator(); i.hasNext(); ) { String pseudoClassName = (String) i.next(); |
From: <ce...@us...> - 2004-01-11 19:15:37
|
Update of /cvsroot/csseditor/net.sourceforge.csseditor/src/net/sourceforge/csseditor/internal/parser In directory sc8-pr-cvs1:/tmp/cvs-serv13052/src/net/sourceforge/csseditor/internal/parser Modified Files: DefaultCssParser.java Log Message: - Fix for Bug #873886 [URL containing a semicolon terminates style declaration] - Removed unneeded this qualifiers in test case Index: DefaultCssParser.java =================================================================== RCS file: /cvsroot/csseditor/net.sourceforge.csseditor/src/net/sourceforge/csseditor/internal/parser/DefaultCssParser.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** DefaultCssParser.java 28 Dec 2003 21:58:37 -0000 1.2 --- DefaultCssParser.java 11 Jan 2004 19:15:33 -0000 1.3 *************** *** 287,294 **** (char) fCurrentToken); nextToken(region); ! int newTokens[] = new int[tokens.length + 1]; ! newTokens[0] = peer; ! System.arraycopy(tokens, 0, newTokens, 1, tokens.length); ! ISourceReference ref = parseAnythingUpto(newTokens); if (fCurrentToken != peer) { reportError("expectedToken", //$NON-NLS-1$ --- 287,291 ---- (char) fCurrentToken); nextToken(region); ! ISourceReference ref = parseAnythingUpto(new int[] { peer } ); if (fCurrentToken != peer) { reportError("expectedToken", //$NON-NLS-1$ |
From: <ce...@us...> - 2004-01-11 19:15:32
|
Update of /cvsroot/csseditor/net.sourceforge.csseditor.tests/src/net/sourceforge/csseditor/tests/internal/parser In directory sc8-pr-cvs1:/tmp/cvs-serv13038/src/net/sourceforge/csseditor/tests/internal/parser Modified Files: CssParserDeclarationTest.java Log Message: - Fix for Bug #873886 [URL containing a semicolon terminates style declaration] - Removed unneeded this qualifiers in test case Index: CssParserDeclarationTest.java =================================================================== RCS file: /cvsroot/csseditor/net.sourceforge.csseditor.tests/src/net/sourceforge/csseditor/tests/internal/parser/CssParserDeclarationTest.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** CssParserDeclarationTest.java 27 Dec 2003 18:56:38 -0000 1.2 --- CssParserDeclarationTest.java 11 Jan 2004 19:15:28 -0000 1.3 *************** *** 22,33 **** public void testParseEmptyDeclaration() throws Exception { setInput(""); ! IDeclaration declaration = this.parser.parseDeclaration(null); assertNull(declaration); assertNoProblemsReported(); } public void testDeclarationWithOnlyASemicolon() throws Exception { setInput(":"); ! IDeclaration declaration = this.parser.parseDeclaration(null); assertReferenceIs(declaration, 0, ":"); assertNull(declaration.getProperty()); --- 22,45 ---- public void testParseEmptyDeclaration() throws Exception { setInput(""); ! IDeclaration declaration = parser.parseDeclaration(null); assertNull(declaration); assertNoProblemsReported(); } + public void testDeclarationWithOnlyAColon() throws Exception { + setInput(":"); + IDeclaration declaration = parser.parseDeclaration(null); + assertReferenceIs(declaration, 0, ":"); + assertNull(declaration.getProperty()); + assertNull(declaration.getValue()); + assertNull(declaration.getPriority()); + assertProblemsReported(2); + assertErrorReported(0, "expectedProperty", 0, 1); + assertErrorReported(1, "emptyDeclarationValue", 1, 1); + } + public void testDeclarationWithOnlyASemicolon() throws Exception { setInput(":"); ! IDeclaration declaration = parser.parseDeclaration(null); assertReferenceIs(declaration, 0, ":"); assertNull(declaration.getProperty()); *************** *** 41,45 **** public void testParseDeclarationWithOnlyAProperty() throws Exception { setInput("property"); ! IDeclaration declaration = this.parser.parseDeclaration(null); assertReferenceIs(declaration, 0, "property"); assertReferenceIs(declaration.getProperty(), 0, "property"); --- 53,57 ---- public void testParseDeclarationWithOnlyAProperty() throws Exception { setInput("property"); ! IDeclaration declaration = parser.parseDeclaration(null); assertReferenceIs(declaration, 0, "property"); assertReferenceIs(declaration.getProperty(), 0, "property"); *************** *** 54,58 **** throws Exception { setInput("property:"); ! IDeclaration declaration = this.parser.parseDeclaration(null); assertReferenceIs(declaration, 0, "property:"); assertReferenceIs(declaration.getProperty(), 0, "property"); --- 66,70 ---- throws Exception { setInput("property:"); ! IDeclaration declaration = parser.parseDeclaration(null); assertReferenceIs(declaration, 0, "property:"); assertReferenceIs(declaration.getProperty(), 0, "property"); *************** *** 66,70 **** throws Exception { setInput("property;"); ! IDeclaration declaration = this.parser.parseDeclaration(null); assertReferenceIs(declaration, 0, "property"); assertReferenceIs(declaration.getProperty(), 0, "property"); --- 78,82 ---- throws Exception { setInput("property;"); ! IDeclaration declaration = parser.parseDeclaration(null); assertReferenceIs(declaration, 0, "property"); assertReferenceIs(declaration.getProperty(), 0, "property"); *************** *** 78,82 **** public void testParseDeclarationWithSimpleValue() throws Exception { setInput("property: value"); ! IDeclaration declaration = this.parser.parseDeclaration(null); assertReferenceIs(declaration, 0, "property: value"); assertReferenceIs(declaration.getProperty(), 0, "property"); --- 90,94 ---- public void testParseDeclarationWithSimpleValue() throws Exception { setInput("property: value"); ! IDeclaration declaration = parser.parseDeclaration(null); assertReferenceIs(declaration, 0, "property: value"); assertReferenceIs(declaration.getProperty(), 0, "property"); *************** *** 88,92 **** public void testParseDeclarationWithoutColon() throws Exception { setInput("property value"); ! IDeclaration declaration = this.parser.parseDeclaration(null); assertReferenceIs(declaration, 0, "property value"); assertReferenceIs(declaration.getProperty(), 0, "property"); --- 100,104 ---- public void testParseDeclarationWithoutColon() throws Exception { setInput("property value"); ! IDeclaration declaration = parser.parseDeclaration(null); assertReferenceIs(declaration, 0, "property value"); assertReferenceIs(declaration.getProperty(), 0, "property"); *************** *** 100,104 **** throws Exception { setInput("property: value;"); ! IDeclaration declaration = this.parser.parseDeclaration(null); assertReferenceIs(declaration, 0, "property: value"); assertReferenceIs(declaration.getProperty(), 0, "property"); --- 112,116 ---- throws Exception { setInput("property: value;"); ! IDeclaration declaration = parser.parseDeclaration(null); assertReferenceIs(declaration, 0, "property: value"); assertReferenceIs(declaration.getProperty(), 0, "property"); *************** *** 110,114 **** public void testParseDeclarationEndedByClosingBrace() throws Exception { setInput("property: value }"); ! IDeclaration declaration = this.parser.parseDeclaration(null); assertReferenceIs(declaration, 0, "property: value"); assertReferenceIs(declaration.getProperty(), 0, "property"); --- 122,126 ---- public void testParseDeclarationEndedByClosingBrace() throws Exception { setInput("property: value }"); ! IDeclaration declaration = parser.parseDeclaration(null); assertReferenceIs(declaration, 0, "property: value"); assertReferenceIs(declaration.getProperty(), 0, "property"); *************** *** 120,124 **** public void testParseDeclarationWithMultipleValues() throws Exception { setInput("property: value1 value2 value3"); ! IDeclaration declaration = this.parser.parseDeclaration(null); assertReferenceIs(declaration, 0, "property: value1 value2 value3"); assertReferenceIs(declaration.getProperty(), 0, "property"); --- 132,136 ---- public void testParseDeclarationWithMultipleValues() throws Exception { setInput("property: value1 value2 value3"); ! IDeclaration declaration = parser.parseDeclaration(null); assertReferenceIs(declaration, 0, "property: value1 value2 value3"); assertReferenceIs(declaration.getProperty(), 0, "property"); *************** *** 130,134 **** public void testParseDeclarationWithPriority() throws Exception { setInput("property: value !priority"); ! IDeclaration declaration = this.parser.parseDeclaration(null); assertReferenceIs(declaration, 0, "property: value !priority"); assertReferenceIs(declaration.getProperty(), 0, "property"); --- 142,146 ---- public void testParseDeclarationWithPriority() throws Exception { setInput("property: value !priority"); ! IDeclaration declaration = parser.parseDeclaration(null); assertReferenceIs(declaration, 0, "property: value !priority"); assertReferenceIs(declaration.getProperty(), 0, "property"); *************** *** 140,144 **** public void testParseDeclarationWithExclamationMark() throws Exception { setInput("property: value !"); ! IDeclaration declaration = this.parser.parseDeclaration(null); assertReferenceIs(declaration, 0, "property: value !"); assertReferenceIs(declaration.getProperty(), 0, "property"); --- 152,156 ---- public void testParseDeclarationWithExclamationMark() throws Exception { setInput("property: value !"); ! IDeclaration declaration = parser.parseDeclaration(null); assertReferenceIs(declaration, 0, "property: value !"); assertReferenceIs(declaration.getProperty(), 0, "property"); *************** *** 152,156 **** throws Exception { setInput("property: !priority"); ! IDeclaration declaration = this.parser.parseDeclaration(null); assertReferenceIs(declaration, 0, "property: !priority"); assertReferenceIs(declaration.getProperty(), 0, "property"); --- 164,168 ---- throws Exception { setInput("property: !priority"); ! IDeclaration declaration = parser.parseDeclaration(null); assertReferenceIs(declaration, 0, "property: !priority"); assertReferenceIs(declaration.getProperty(), 0, "property"); *************** *** 164,168 **** throws Exception { setInput("property: function("); ! IDeclaration declaration = this.parser.parseDeclaration(null); assertReferenceIs(declaration, 0, "property: function("); assertReferenceIs(declaration.getProperty(), 0, "property"); --- 176,180 ---- throws Exception { setInput("property: function("); ! IDeclaration declaration = parser.parseDeclaration(null); assertReferenceIs(declaration, 0, "property: function("); assertReferenceIs(declaration.getProperty(), 0, "property"); *************** *** 171,174 **** --- 183,197 ---- assertProblemsReported(1); assertErrorReported(0, "expectedToken", 19, 19); + } + + public void testParseDeclarationWithSemicolonInParenthesis() + throws Exception { + setInput("property: function(;)"); + IDeclaration declaration = parser.parseDeclaration(null); + assertReferenceIs(declaration, 0, "property: function(;)"); + assertReferenceIs(declaration.getProperty(), 0, "property"); + assertReferenceIs(declaration.getValue(), 10, "function(;)"); + assertNull(declaration.getPriority()); + assertNoProblemsReported(); } |
From: <ce...@us...> - 2004-01-11 14:25:01
|
Update of /cvsroot/csseditor/htdocs/templates In directory sc8-pr-cvs1:/tmp/cvs-serv13691/templates Modified Files: common.php Log Message: Add <link>s to RSS feeds Index: common.php =================================================================== RCS file: /cvsroot/csseditor/htdocs/templates/common.php,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -d -r1.11 -r1.12 *** common.php 10 Jan 2004 22:42:57 -0000 1.11 --- common.php 11 Jan 2004 14:24:57 -0000 1.12 *************** *** 44,47 **** --- 44,48 ---- <meta name="robots" content="noindex, nofollow" /> <?php } ?> + <link rel="alternate" type="application/rss+xml" title="RSS" href="wiki?action=rss"/> <link rel="stylesheet" href="style/wiki.css" media="screen" type="text/css"/> <link rel="stylesheet" href="style/print.css" media="print" type="text/css"/> |
From: <ce...@us...> - 2004-01-11 14:25:01
|
Update of /cvsroot/csseditor/htdocs In directory sc8-pr-cvs1:/tmp/cvs-serv13691 Modified Files: index.html Log Message: Add <link>s to RSS feeds Index: index.html =================================================================== RCS file: /cvsroot/csseditor/htdocs/index.html,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -d -r1.10 -r1.11 *** index.html 11 Jan 2004 14:18:29 -0000 1.10 --- index.html 11 Jan 2004 14:24:57 -0000 1.11 *************** *** 7,10 **** --- 7,12 ---- <title>CSS Editor (Eclipse Plugin)</title> <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"> + <link rel="alternate" type="application/rss+xml" title="RSS" + href="http://sourceforge.net/export/rss2_projnews.php?group_id=97094"/> <link rel="stylesheet" type="text/css" media="screen" href="style/layout.css"> <link rel="stylesheet" type="text/css" media="print" href="style/print.css"> |
From: <ce...@us...> - 2004-01-11 14:18:32
|
Update of /cvsroot/csseditor/htdocs In directory sc8-pr-cvs1:/tmp/cvs-serv12687 Modified Files: index.html Log Message: Fix image style on home page Index: index.html =================================================================== RCS file: /cvsroot/csseditor/htdocs/index.html,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** index.html 10 Jan 2004 22:49:52 -0000 1.9 --- index.html 11 Jan 2004 14:18:29 -0000 1.10 *************** *** 49,53 **** </p> <a href="images/screenshot.png" title="Click for a larger view"> ! <img alt="Screenshot" style="float: left; margin-right: 2em" src="images/screenshot_thumb.png"> </a> <ul> --- 49,53 ---- </p> <a href="images/screenshot.png" title="Click for a larger view"> ! <img alt="Screenshot" class="left" src="images/screenshot_thumb.png"> </a> <ul> |
From: <ce...@us...> - 2004-01-11 14:18:32
|
Update of /cvsroot/csseditor/htdocs/style In directory sc8-pr-cvs1:/tmp/cvs-serv12687/style Modified Files: layout.css Log Message: Fix image style on home page Index: layout.css =================================================================== RCS file: /cvsroot/csseditor/htdocs/style/layout.css,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** layout.css 11 Jan 2004 14:16:01 -0000 1.9 --- layout.css 11 Jan 2004 14:18:29 -0000 1.10 *************** *** 108,111 **** --- 108,122 ---- border-top: solid 1px black; } + #content img { + border: none; + } + #content img.left { + float: left; + margin: 0 2em 1em 0; + } + #content img.right { + float: left; + margin: 0 0 1em 2em; + } #content tt, #content pre { color: #069; |
From: <ce...@us...> - 2004-01-11 14:17:13
|
Update of /cvsroot/csseditor/htdocs/style In directory sc8-pr-cvs1:/tmp/cvs-serv12495/style Modified Files: wiki.css Log Message: Fix RCS keyword Index: wiki.css =================================================================== RCS file: /cvsroot/csseditor/htdocs/style/wiki.css,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** wiki.css 8 Jan 2004 16:32:55 -0000 1.3 --- wiki.css 11 Jan 2004 14:17:10 -0000 1.4 *************** *** 1,3 **** ! /* $Revision */ @import url(layout.css); --- 1,3 ---- ! /* $Revision$ */ @import url(layout.css); |
From: <ce...@us...> - 2004-01-11 14:16:05
|
Update of /cvsroot/csseditor/htdocs/style In directory sc8-pr-cvs1:/tmp/cvs-serv12222/style Modified Files: layout.css Log Message: Change binary -> keyword subst Index: layout.css =================================================================== RCS file: /cvsroot/csseditor/htdocs/style/layout.css,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 |
From: <ce...@us...> - 2004-01-10 22:49:55
|
Update of /cvsroot/csseditor/htdocs In directory sc8-pr-cvs1:/tmp/cvs-serv5422 Modified Files: index.html Log Message: Make index.html valid HTML 4.0.1 (because the news feed provided by SF is not valid XML, and not even valid HTML :-( ) Index: index.html =================================================================== RCS file: /cvsroot/csseditor/htdocs/index.html,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** index.html 10 Jan 2004 22:05:53 -0000 1.8 --- index.html 10 Jan 2004 22:49:52 -0000 1.9 *************** *** 6,11 **** <head> <title>CSS Editor (Eclipse Plugin)</title> ! <link rel="stylesheet" type="text/css" media="screen" href="style/layout.css"/> ! <link rel="stylesheet" type="text/css" media="print" href="style/print.css"/> </head> <body> --- 6,12 ---- <head> <title>CSS Editor (Eclipse Plugin)</title> ! <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"> ! <link rel="stylesheet" type="text/css" media="screen" href="style/layout.css"> ! <link rel="stylesheet" type="text/css" media="print" href="style/print.css"> </head> <body> *************** *** 48,52 **** </p> <a href="images/screenshot.png" title="Click for a larger view"> ! <img alt="Screenshot" style="float: left; margin-right: 2em" src="images/screenshot_thumb.png"/> </a> <ul> --- 49,53 ---- </p> <a href="images/screenshot.png" title="Click for a larger view"> ! <img alt="Screenshot" style="float: left; margin-right: 2em" src="images/screenshot_thumb.png"> </a> <ul> |
From: <ce...@us...> - 2004-01-10 22:43:00
|
Update of /cvsroot/csseditor/htdocs/templates In directory sc8-pr-cvs1:/tmp/cvs-serv4289/templates Modified Files: common.php Log Message: Make the search form valid XHTML by nesting the input fields in a <p> element Index: common.php =================================================================== RCS file: /cvsroot/csseditor/htdocs/templates/common.php,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -d -r1.10 -r1.11 *** common.php 10 Jan 2004 22:34:43 -0000 1.10 --- common.php 10 Jan 2004 22:42:57 -0000 1.11 *************** *** 76,82 **** <div id="search"> <form method="get" action="<?php print $FindScript; ?>"> ! <input type="hidden" name="action" value="find" /> ! <label for="find"><?php print TMPL_Search; ?></label> ! <input type="text" id="find" name="find" /> </form> </div> --- 76,84 ---- <div id="search"> <form method="get" action="<?php print $FindScript; ?>"> ! <p> ! <input type="hidden" name="action" value="find" /> ! <label for="find"><?php print TMPL_Search; ?></label> ! <input type="text" id="find" name="find" /> ! </p> </form> </div> |
From: <ce...@us...> - 2004-01-10 22:34:46
|
Update of /cvsroot/csseditor/htdocs/templates In directory sc8-pr-cvs1:/tmp/cvs-serv3187/templates Modified Files: common.php Log Message: Specify field ID for use with the <label> element Index: common.php =================================================================== RCS file: /cvsroot/csseditor/htdocs/templates/common.php,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** common.php 8 Jan 2004 18:33:15 -0000 1.9 --- common.php 10 Jan 2004 22:34:43 -0000 1.10 *************** *** 78,82 **** <input type="hidden" name="action" value="find" /> <label for="find"><?php print TMPL_Search; ?></label> ! <input type="text" name="find" size="20" /> </form> </div> --- 78,82 ---- <input type="hidden" name="action" value="find" /> <label for="find"><?php print TMPL_Search; ?></label> ! <input type="text" id="find" name="find" /> </form> </div> *************** *** 174,181 **** </html> <?php ! ! $size = ob_get_length(); ! header("Content-Length: $size"); ! ob_end_flush(); } ?> --- 174,180 ---- </html> <?php ! $size = ob_get_length(); ! header("Content-Length: $size"); ! ob_end_flush(); } ?> |
From: <ce...@us...> - 2004-01-10 22:33:46
|
Update of /cvsroot/csseditor/htdocs In directory sc8-pr-cvs1:/tmp/cvs-serv3048 Modified Files: .cvsignore Log Message: Ignore the news.html file, which is pulled from SourceForge via the bin/getnews.sh script Index: .cvsignore =================================================================== RCS file: /cvsroot/csseditor/htdocs/.cvsignore,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** .cvsignore 8 Jan 2004 14:13:30 -0000 1.2 --- .cvsignore 10 Jan 2004 22:33:43 -0000 1.3 *************** *** 3,4 **** --- 3,5 ---- .project config.php + news.html |
From: <ce...@us...> - 2004-01-10 22:05:56
|
Update of /cvsroot/csseditor/htdocs In directory sc8-pr-cvs1:/tmp/cvs-serv30157 Modified Files: index.html Log Message: Include news via SSI Index: index.html =================================================================== RCS file: /cvsroot/csseditor/htdocs/index.html,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** index.html 8 Jan 2004 16:31:26 -0000 1.7 --- index.html 10 Jan 2004 22:05:53 -0000 1.8 *************** *** 1,12 **** - <?xml version="1.0"?> <!-- $Revision$ --> <!DOCTYPE html ! PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" ! "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html> <head> <title>CSS Editor (Eclipse Plugin)</title> ! <link rel="stylesheet" type="text/css" media="screen" href="style/layout.css"> ! <link rel="stylesheet" type="text/css" media="print" href="style/print.css"> </head> <body> --- 1,11 ---- <!-- $Revision$ --> <!DOCTYPE html ! PUBLIC "-//W3C//DTD HTML 4.01//EN" ! "http://www.w3.org/TR/html401/strict.dtd"> <html> <head> <title>CSS Editor (Eclipse Plugin)</title> ! <link rel="stylesheet" type="text/css" media="screen" href="style/layout.css"/> ! <link rel="stylesheet" type="text/css" media="print" href="style/print.css"/> </head> <body> *************** *** 20,24 **** </div> <ul> ! <li><a href="wiki">Documentation</a> <li><a href="http://sourceforge.net/project/showfiles.php?group_id=97094">Downloads</a></li> <li><a href="http://sourceforge.net/forum/?group_id=97094">Forums</a></li> --- 19,23 ---- </div> <ul> ! <li><a href="wiki">Documentation</a></li> <li><a href="http://sourceforge.net/project/showfiles.php?group_id=97094">Downloads</a></li> <li><a href="http://sourceforge.net/forum/?group_id=97094">Forums</a></li> *************** *** 38,45 **** <a class="rsslink" href="http://sourceforge.net/export/rss2_projnews.php?group_id=97094">RSS</a> <h2>Latest News</h2> ! <a HREF="http://sourceforge.net/forum/forum.php?forum_id=342455"><b>Initial release</b></a> <i>cell - 2004-01-06 17:34</i> ! <div align="center"><a HREF="http://sourceforge.net/forum/forum.php?forum_id=342455">[Read More/Comment]</a></div> ! <hr width="100%" size="1" noshade> ! <div align="center"><a href="http://sourceforge.net/news/?group_id=97094">[News archive]</a></div> </div> <h2 id="overview">Overview</h2> --- 37,41 ---- <a class="rsslink" href="http://sourceforge.net/export/rss2_projnews.php?group_id=97094">RSS</a> <h2>Latest News</h2> ! <!--#include file="news.html" --> </div> <h2 id="overview">Overview</h2> *************** *** 52,56 **** </p> <a href="images/screenshot.png" title="Click for a larger view"> ! <img alt="Screenshot" border="0" style="float: left; margin-right: 2em" src="images/screenshot_thumb.png"> </a> <ul> --- 48,52 ---- </p> <a href="images/screenshot.png" title="Click for a larger view"> ! <img alt="Screenshot" style="float: left; margin-right: 2em" src="images/screenshot_thumb.png"/> </a> <ul> *************** *** 65,70 **** <li>many configuration options</li> </ul> ! <br clear="both"> ! <p> An important goal of this project is to not only provide an editor for editing "standalone" CSS, but also reusable building blocks for integrating --- 61,65 ---- <li>many configuration options</li> </ul> ! <p style="clear: both"> An important goal of this project is to not only provide an editor for editing "standalone" CSS, but also reusable building blocks for integrating |
From: <ce...@us...> - 2004-01-08 18:35:07
|
Update of /cvsroot/csseditor/htdocs/templates In directory sc8-pr-cvs1:/tmp/cvs-serv1336/templates Modified Files: find.php Log Message: Add title to search results page Index: find.php =================================================================== RCS file: /cvsroot/csseditor/htdocs/templates/find.php,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** find.php 8 Jan 2004 13:23:56 -0000 1.2 --- find.php 8 Jan 2004 18:35:04 -0000 1.3 *************** *** 20,23 **** --- 20,24 ---- 'toolbar' => 1)); ?> + <h2>Search results</h2> <?php print $args['pages']; ?> <?php |
From: <ce...@us...> - 2004-01-08 18:33:17
|
Update of /cvsroot/csseditor/htdocs/templates In directory sc8-pr-cvs1:/tmp/cvs-serv894/templates Modified Files: common.php Log Message: Add documentation sub-navigation Index: common.php =================================================================== RCS file: /cvsroot/csseditor/htdocs/templates/common.php,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** common.php 8 Jan 2004 16:32:09 -0000 1.8 --- common.php 8 Jan 2004 18:33:15 -0000 1.9 *************** *** 65,68 **** --- 65,74 ---- <li><a href="http://sourceforge.net/cvs/?group_id=97094">CVS</a></li> </ul> + <div class="navheader"> + <a href="<?php print viewURL('StartPage'); ?>">Contents</a> + </div> + <ul> + <li><a href="<?php print viewURL('FormattingRules'); ?>">Formatting Rules</a></li> + </ul> </div> <div id="content"> |
From: <ce...@us...> - 2004-01-08 18:16:36
|
Update of /cvsroot/csseditor/htdocs/style In directory sc8-pr-cvs1:/tmp/cvs-serv28477/style Modified Files: layout.css Log Message: Add styles for PRE, TABLE and DT elements Index: layout.css =================================================================== RCS file: /cvsroot/csseditor/htdocs/style/layout.css,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** layout.css 8 Jan 2004 16:32:55 -0000 1.7 --- layout.css 8 Jan 2004 18:16:32 -0000 1.8 *************** *** 108,111 **** --- 108,125 ---- border-top: solid 1px black; } + #content tt, #content pre { + color: #069; + } + #content pre { + margin: 2em 1em; + padding: 0 1ex; + } + #content dt { + font-weight: bold; + } + #content table { + border-collapse: collapse; + margin: 2em 1em; + } #content .timestamp { border-top: solid 1px black; |
From: <ce...@us...> - 2004-01-08 18:15:55
|
Update of /cvsroot/csseditor/htdocs/templates In directory sc8-pr-cvs1:/tmp/cvs-serv28256/templates Modified Files: preview.php Log Message: Fix back button on preview page Index: preview.php =================================================================== RCS file: /cvsroot/csseditor/htdocs/templates/preview.php,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** preview.php 8 Jan 2004 13:23:56 -0000 1.2 --- preview.php 8 Jan 2004 18:15:52 -0000 1.3 *************** *** 26,31 **** 'toolbar' => 1)); ?> ! <form onsubmit="history.back()"> ! <input type="submit" value="Back"/> </form> <?php print $args['html']; ?> --- 26,31 ---- 'toolbar' => 1)); ?> ! <form> ! <input type="submit" value="Back" onclick="history.back(); return false"/> </form> <?php print $args['html']; ?> |
From: <ce...@us...> - 2004-01-08 16:32:58
|
Update of /cvsroot/csseditor/htdocs/style In directory sc8-pr-cvs1:/tmp/cvs-serv4399/style Modified Files: layout.css wiki.css Log Message: Move layout instructions for footer into main layout stylesheet Slightly adjust footer layout Index: layout.css =================================================================== RCS file: /cvsroot/csseditor/htdocs/style/layout.css,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** layout.css 8 Jan 2004 15:44:51 -0000 1.6 --- layout.css 8 Jan 2004 16:32:55 -0000 1.7 *************** *** 70,74 **** #content { font: normal 9pt Verdana, Arial, Helvetica, sans-serif; ! margin: 2em 15px 0 11em; } #content :link, #content :visited { --- 70,74 ---- #content { font: normal 9pt Verdana, Arial, Helvetica, sans-serif; ! margin: 2em 15px 2em 11em; } #content :link, #content :visited { *************** *** 107,110 **** --- 107,119 ---- border: 0; border-top: solid 1px black; + } + #content .timestamp { + border-top: solid 1px black; + font-style: italic; + text-align: right; + } + #content #footer { + font-size: xx-small; + margin-top: 3em; } Index: wiki.css =================================================================== RCS file: /cvsroot/csseditor/htdocs/style/wiki.css,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** wiki.css 8 Jan 2004 14:14:09 -0000 1.2 --- wiki.css 8 Jan 2004 16:32:55 -0000 1.3 *************** *** 12,20 **** } - #footer { - border-top: solid 1px black; - font-size: xx-small; - margin-top: 3em; - } #toolbar-bottom { line-height: 2em; --- 12,15 ---- *************** *** 36,42 **** #content textarea#document { width: 100% } - #content .timestamp { - float: right; - font-style: italic; - margin-top: -2em; - } --- 31,32 ---- |
From: <ce...@us...> - 2004-01-08 16:32:19
|
Update of /cvsroot/csseditor/htdocs/templates In directory sc8-pr-cvs1:/tmp/cvs-serv4362/templates Modified Files: common.php Log Message: Use relative links in navigation Index: common.php =================================================================== RCS file: /cvsroot/csseditor/htdocs/templates/common.php,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** common.php 8 Jan 2004 15:44:12 -0000 1.7 --- common.php 8 Jan 2004 16:32:09 -0000 1.8 *************** *** 39,43 **** <html xmlns="http://www.w3.org/1999/xhtml"> <head> - <base href="http://csseditor.sourceforge.net/wiki"/> <meta name="keywords" content="<?php print $MetaKeywords . $keywords; ?>" /> <meta name="description" content="<?php print $MetaDescription; ?>" /> --- 39,42 ---- *************** *** 56,63 **** <div id="navigation"> <div class="navheader"> ! <a href="http://csseditor.sourceforge.net/">Home</a> </div> <ul> ! <li><a href="http://csseditor.sourceforge.net/wiki">Documentation</a></li> <li><a href="http://sourceforge.net/project/showfiles.php?group_id=97094">Downloads</a></li> <li><a href="http://sourceforge.net/forum/?group_id=97094">Forums</a></li> --- 55,62 ---- <div id="navigation"> <div class="navheader"> ! <a href="./">Home</a> </div> <ul> ! <li><a href="wiki">Documentation</a></li> <li><a href="http://sourceforge.net/project/showfiles.php?group_id=97094">Downloads</a></li> <li><a href="http://sourceforge.net/forum/?group_id=97094">Forums</a></li> *************** *** 159,165 **** </div> <?php if($args['timestamp']) { ?> ! <span class="timestamp"> <?php echo TMPL_DocLastModified . ' '. html_time($args['timestamp']); ?> ! </span> <?php } ?> </div> --- 158,164 ---- </div> <?php if($args['timestamp']) { ?> ! <div class="timestamp"> <?php echo TMPL_DocLastModified . ' '. html_time($args['timestamp']); ?> ! </div> <?php } ?> </div> |
From: <ce...@us...> - 2004-01-08 16:31:29
|
Update of /cvsroot/csseditor/htdocs In directory sc8-pr-cvs1:/tmp/cvs-serv4203 Modified Files: index.html Log Message: Use relative links in navigation; Add last modified footer using SSI) Index: index.html =================================================================== RCS file: /cvsroot/csseditor/htdocs/index.html,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** index.html 8 Jan 2004 14:21:13 -0000 1.6 --- index.html 8 Jan 2004 16:31:26 -0000 1.7 *************** *** 17,24 **** <div id="navigation"> <div class="navheader"> ! <a href="http://csseditor.sourceforge.net/">Home</a> </div> <ul> ! <li><a href="http://csseditor.sourceforge.net/wiki">Documentation</a> <li><a href="http://sourceforge.net/project/showfiles.php?group_id=97094">Downloads</a></li> <li><a href="http://sourceforge.net/forum/?group_id=97094">Forums</a></li> --- 17,24 ---- <div id="navigation"> <div class="navheader"> ! <a href="./">Home</a> </div> <ul> ! <li><a href="wiki">Documentation</a> <li><a href="http://sourceforge.net/project/showfiles.php?group_id=97094">Downloads</a></li> <li><a href="http://sourceforge.net/forum/?group_id=97094">Forums</a></li> *************** *** 91,94 **** --- 91,101 ---- list. </p> + <div id="footer"> + <div class="timestamp"> + Document last modified + <!--#config timefmt="%a, %d %b %Y %T" --> + <!--#echo var="LAST_MODIFIED" --> + </div> + </div> </div> </body> |
From: <ce...@us...> - 2004-01-08 15:44:54
|
Update of /cvsroot/csseditor/htdocs/style In directory sc8-pr-cvs1:/tmp/cvs-serv25194/style Modified Files: layout.css Log Message: Make horizontal rules 1 pixel high and solid Index: layout.css =================================================================== RCS file: /cvsroot/csseditor/htdocs/style/layout.css,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** layout.css 8 Jan 2004 14:14:09 -0000 1.5 --- layout.css 8 Jan 2004 15:44:51 -0000 1.6 *************** *** 104,107 **** --- 104,111 ---- text-decoration: none; } + #content hr { + border: 0; + border-top: solid 1px black; + } #news { *************** *** 148,149 **** --- 152,154 ---- text-decoration: none; } + |
From: <ce...@us...> - 2004-01-08 15:44:18
|
Update of /cvsroot/csseditor/htdocs/templates In directory sc8-pr-cvs1:/tmp/cvs-serv25078/templates Modified Files: common.php Log Message: Close div Index: common.php =================================================================== RCS file: /cvsroot/csseditor/htdocs/templates/common.php,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** common.php 8 Jan 2004 15:08:25 -0000 1.6 --- common.php 8 Jan 2004 15:44:12 -0000 1.7 *************** *** 164,169 **** <?php } ?> </div> </div> - <?php } ?> </body> </html> --- 164,169 ---- <?php } ?> </div> + <?php } ?> </div> </body> </html> |
From: <ce...@us...> - 2004-01-08 15:08:31
|
Update of /cvsroot/csseditor/htdocs/templates In directory sc8-pr-cvs1:/tmp/cvs-serv15379/templates Modified Files: common.php Log Message: Hide footer div when there's nothing to display in the footer Index: common.php =================================================================== RCS file: /cvsroot/csseditor/htdocs/templates/common.php,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** common.php 8 Jan 2004 14:19:10 -0000 1.5 --- common.php 8 Jan 2004 15:08:25 -0000 1.6 *************** *** 127,131 **** global $FindScript, $pagestore; ?> ! <div id="footer"> <div id="toolbar-bottom"> <?php --- 127,133 ---- global $FindScript, $pagestore; ?> ! <?php if ($args['twin'] || $args['edit'] || $args['editver'] ! || $args['history'] || $args['timestamp']) { ?> ! <div id="footer"> <div id="toolbar-bottom"> <?php *************** *** 163,166 **** --- 165,169 ---- </div> </div> + <?php } ?> </body> </html> |