잘못
묘사
잘못된 정보에 대한 피드백이 있습니다.설치 후 & 오래된 CSS 파일을 디버깅했습니다 & 이 오류가 발생했습니다
나는
csscss -v body.css
를 실행했다. 나는 이'제1행 제1열에서 css를 해석할 때 문제가 생겼다'는 것을 얻었다.자세한 파서 오류의 경우 CSSCS DEBUG=true를 사용하여 실행합니다'
디버깅 기능이 유사한
--debug
또는 --debug=true
로고였으면 합니다. 왜냐하면 이 글 csscss --help
을 쓸 때 디버깅을 어떻게 하는지 설명하지 않았기 때문입니다.그 다음에 내가 너에게 트위터를 보낸 후에 너는 내가 이렇게 명령을 실행해야 한다고 대답했다
CSSCSS_DEBUG=true csscss -v body.css
. 나는 또 다른 오류Had a problem parsing the css at line: 1, column: 1
Failed to match sequence (SPACE? blocks:((COMMENT / NESTED_RULESET / RULESET) {1, }) SPACE?) at line 1957 char 1. - Don't know what to do with "p.contactu" at line 1957 char 1.
를 얻었다.실제로 선택기는
p.contactussubheading
잘못된 선택기의 이름을 용서해 주십시오. 분명히 이것이 바로 이 파일을 디버깅하기 위해 이 도구가 필요한 이유입니다.) 문제는 1964줄입니다.마지막으로, 나는 그것이 줄 번호가 있다면 출력이 매우 유용할 것이라고 생각한다. 지금은 이렇게 보인다
{.selector} AND {#selector} share 10 rules
-moz-border-radius: 2px 0px 0px 2px
another: rule;
another-rule;
...
그렇게 지도 모른다, 아마, 아마...L:20 {.selector} AND L:45 {#selector} share 10 rules
-moz-border-radius: 2px 0px 0px 2px
another: rule;
another-rule;
...
토론 #1
귀중한 피드백 감사합니다!나는 곧 그 중 일부를 합병하려고 시도할 것이다.토론 #2
안녕, 자크,이 명령을 실행하면 많은 구문 오류가 발생합니다.
/시스템/라이브러리/프레임/루비.framework/Versions/1.8/usr/lib/ruby/1.8/rubygems/custom_require.rb:31:in
gem_original_require': /Library/Ruby/Gems/1.8/gems/csscss-1.0.0/lib/csscss/cli.rb:29: syntax error, unexpected tSYMBEG, expecting kDO or '{' or '(' (SyntaxError)
sass_options = {cache:false}
^
/Library/Ruby/Gems/1.8/gems/csscss-1.0.0/lib/csscss/cli.rb:45: syntax error, unexpected ':', expecting ')'
...ontents).redundancies(minimum: @minimum,
^
/Library/Ruby/Gems/1.8/gems/csscss-1.0.0/lib/csscss/cli.rb:46: syntax error, unexpected ':', expecting '='
... ignored_properties: @ignored_properties,
^
/Library/Ruby/Gems/1.8/gems/csscss-1.0.0/lib/csscss/cli.rb:47: syntax error, unexpected ':', expecting '='
... ignored_selectors: @ignored_selectors)
^
/Library/Ruby/Gems/1.8/gems/csscss-1.0.0/lib/csscss/cli.rb:63: syntax error, unexpected tSYMBEG, expecting kDO or '{' or '('
...eport(verbose:@verbose, color:true)
^
/Library/Ruby/Gems/1.8/gems/csscss-1.0.0/lib/csscss/cli.rb:67: syntax error, unexpected kRESCUE, expecting kEND
rescue Parslet::ParseFailed => e
^
/Library/Ruby/Gems/1.8/gems/csscss-1.0.0/lib/csscss/cli.rb:67: syntax error, unexpected tASSOC
rescue Parslet::ParseFailed => e
^
/Library/Ruby/Gems/1.8/gems/csscss-1.0.0/lib/csscss/cli.rb:79: syntax error, unexpected kDO_BLOCK, expecting kEND
opts = OptionParser.new do |opts|
^
/Library/Ruby/Gems/1.8/gems/csscss-1.0.0/lib/csscss/cli.rb:83: syntax error, unexpected kDO_BLOCK, expecting kEND
opts.on("-v", "--[no-]verbose", "Display each rule") do |v|
^
/Library/Ruby/Gems/1.8/gems/csscss-1.0.0/lib/csscss/cli.rb:87: syntax error, unexpected kDO_BLOCK, expecting kEND
opts.on("--[no-]color", "Colorizes output") do |c|
^
/Library/Ruby/Gems/1.8/gems/csscss-1.0.0/lib/csscss/cli.rb:91: syntax error, unexpected kDO_BLOCK, expecting kEND
...many rules. Defaults to 3") do |n|
^
/Library/Ruby/Gems/1.8/gems/csscss-1.0.0/lib/csscss/cli.rb:95: syntax error, unexpected kDO_BLOCK, expecting kEND
...ties when finding matches") do |ignored_properties|
^
/Library/Ruby/Gems/1.8/gems/csscss-1.0.0/lib/csscss/cli.rb:99: syntax error, unexpected kDO_BLOCK, expecting $end
...tors when finding matches") do |ignored_selectors|
^
from /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/rubygems/custom_require.rb:31:in
요구 사항/Library/Ruby/Gems/1.8/Gems/csscss-1.0/lib/csscss에서 왔습니다.rb:11
/System/Library/Frameworks/Rubyframework/Versions/1.8/usr/lib/ruby/1.8/rubygems/custom_require.rb:31:in
gem_original_require'
from /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/rubygems/custom_require.rb:31:in
요구 사항from/Library/Ruby/Gems/1.8/Gems/csscss-1.0.0/bin/csscss:3
from/usr/bin/csscss:19:in'load'
from/usr/bin/csscss:19
도와 주셔서 감사합니다.
토론 #셋
@beesman 당신의 문제는 #11토론 #4
@beesman@zmoazeni와 완전히 같다.Mountain Lion, Ruby 1.8.7
토론 #5
@nilsborchers예, 1.8.7은 1.9로 지원되지 않습니다.x+토론 #6
응, 그래, 나 지금 1.9.3으로 업데이트했어. 비슷한 걸 얻었어./Library/Ruby/Site/1.8/rubygems/custom_require.rb:36:in `gem_original_require': /Library/Ruby/Gems/1.8/gems/csscss-1.0.0/lib/csscss/cli.rb:29: syntax error, unexpected tSYMBEG, expecting kDO or '{' or '(' (SyntaxError)
sass_options = {cache:false}
^
/Library/Ruby/Gems/1.8/gems/csscss-1.0.0/lib/csscss/cli.rb:45: syntax error, unexpected ':', expecting ')'
...ontents).redundancies(minimum: @minimum,
^
/Library/Ruby/Gems/1.8/gems/csscss-1.0.0/lib/csscss/cli.rb:46: syntax error, unexpected ':', expecting '='
... ignored_properties: @ignored_properties,
^
/Library/Ruby/Gems/1.8/gems/csscss-1.0.0/lib/csscss/cli.rb:47: syntax error, unexpected ':', expecting '='
... ignored_selectors: @ignored_selectors)
^
/Library/Ruby/Gems/1.8/gems/csscss-1.0.0/lib/csscss/cli.rb:63: syntax error, unexpected tSYMBEG, expecting kDO or '{' or '('
...eport(verbose:@verbose, color:true)
^
/Library/Ruby/Gems/1.8/gems/csscss-1.0.0/lib/csscss/cli.rb:67: syntax error, unexpected kRESCUE, expecting kEND
rescue Parslet::ParseFailed => e
^
/Library/Ruby/Gems/1.8/gems/csscss-1.0.0/lib/csscss/cli.rb:67: syntax error, unexpected tASSOC
rescue Parslet::ParseFailed => e
^
/Library/Ruby/Gems/1.8/gems/csscss-1.0.0/lib/csscss/cli.rb:79: syntax error, unexpected kDO_BLOCK, expecting kEND
opts = OptionParser.new do |opts|
^
/Library/Ruby/Gems/1.8/gems/csscss-1.0.0/lib/csscss/cli.rb:83: syntax error, unexpected kDO_BLOCK, expecting kEND
opts.on("-v", "--[no-]verbose", "Display each rule") do |v|
^
/Library/Ruby/Gems/1.8/gems/csscss-1.0.0/lib/csscss/cli.rb:87: syntax error, unexpected kDO_BLOCK, expecting kEND
opts.on("--[no-]color", "Colorizes output") do |c|
^
/Library/Ruby/Gems/1.8/gems/csscss-1.0.0/lib/csscss/cli.rb:91: syntax error, unexpected kDO_BLOCK, expecting kEND
...many rules. Defaults to 3") do |n|
^
/Library/Ruby/Gems/1.8/gems/csscss-1.0.0/lib/csscss/cli.rb:95: syntax error, unexpected kDO_BLOCK, expecting kEND
...ties when finding matches") do |ignored_properties|
^
/Library/Ruby/Gems/1.8/gems/csscss-1.0.0/lib/csscss/cli.rb:99: syntax error, unexpected kDO_BLOCK, expecting $end
...tors when finding matches") do |ignored_selectors|
^
from /Library/Ruby/Site/1.8/rubygems/custom_require.rb:36:in `require'
from /Library/Ruby/Gems/1.8/gems/csscss-1.0.0/lib/csscss.rb:11
from /Library/Ruby/Site/1.8/rubygems/custom_require.rb:36:in `gem_original_require'
from /Library/Ruby/Site/1.8/rubygems/custom_require.rb:36:in `require'
from /Library/Ruby/Gems/1.8/gems/csscss-1.0.0/bin/csscss:3
from /usr/bin/csscss:23:in `load'
from /usr/bin/csscss:23
토론 #7
@nilsborchers에서 이 대화를 #11로 돌려보냅니다.사실this comment이 도움이 될 수도 있어요.토론 #8
@zmoazeni ah thx 네 말이 맞다. 1.8gem를 마운트 해제하고 새gem bin으로 다시 설치해야 한다:)thx!:clap:
토론 #9
@nilsborchers는 1.9를 설치한 후에 1.8gem를 어떻게 마운트 해제합니까?토론 #10
@kevboutin #11에서 1.8대 1.9의 문제를 보류할 수 있습니까?너도 그 선상에서 그를 표시할 수 있다.토론 #11
@ahmedelgabri Ok 한 쌍의 복구 프로그램이 마우스터를 누르면 다음 버전에 발표됩니다(v1.0.0 이후)I would prefer if the debug feature is a flag something like --debug or --debug=true instead cause when I wrote this csscss --help it didn't say anything about how can I turn debug on.
현재는
--show-parser-errors
Had a problem parsing the css at line: 1, column: 1 ...The problem actually was at line 1964.
이것은 마스터에서도 고정되어 있다.나는 백 퍼센트 정확할 수는 없지만, 적어도 그것은 쓸모없는 '행: 1, 열: 1' 보다 더 가깝다.
나는 이 문제를 끝내고 완전히 줄 번호에 관한 문제를 다시 열 것이다.
토론 #12
@Zmoazeni 이거 너무 좋아요. 새로운 버전이 나올 거예요.2013년 4월 12일 금요일 7:52에 자크 모아제니[email protected]="mailto:[email protected]"는 다음과 같이 썼다.
@ahmedelgabri Ok 한 쌍의 복구 프로그램이 메인 제어에 명중하여 다음 버전에서 발표됩니다(v1.0.0 이후)
디버깅 기능은 디버깅이나 디버깅=true와 유사한 로고였으면 합니다. 이 CSSCS를 작성할 때 디버깅을 어떻게 하는지 설명하지 않았기 때문입니다.
이것이 바로--해상도 오류 보이기
첫 번째 줄의 첫 번째 열의 css를 해석할 때 문제가 발생했습니다.문제는 사실 1964행에서 나왔다.
이것은 마스터에서도 고정되어 있다.나는 백 퍼센트 정확할 수는 없지만, 적어도 그것은 쓸모없는 '행: 1, 열: 1' 보다 더 가깝다.
나는 이 문제를 끝내고 완전히 줄 번호에 관한 문제를 다시 열 것이다.
—
이 e-메일에 직접 회신하거나 GitHub에서 확인하십시오.
토론 #13
모두 v1에 설치됩니다.1.0.내 아이폰에서 보내기
2013년 4월 12일 새벽 2:15, 아하마드 엘가브리[email protected]쓰기:
@Zmoazeni This is great, Looking forward for the new release.
On Fri, Apr 12, 2013 at 7:52, Zach Moazeni [email protected]="mailto:[email protected]"> wrote: @ahmedelgabri Ok a couple fixes just hit master and will be released in the next version (after v1.0.0)
I would prefer if the debug feature is a flag something like --debug or --debug=true instead cause when I wrote this csscss --help it didn't say anything about how can I turn debug on.
This is now --show-parser-errors
Had a problem parsing the css at line: 1, column: 1 ...The problem actually was at line 1964.
This is fixed in master too. I can't be 100% accurate but at least it's closer than the useless "line: 1, column: 1" all the time.
I'm going to close this issue and reopen a different one that is solely about line numbers.
— Reply to this email directly or view it on GitHub. — Reply to this email directly or view it on GitHub.
Reference
이 문제에 관하여(잘못), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://github.com/zmoazeni/csscss/issues/9텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)