##- Please type your reply above this line -##

Request received: [polymer-dev] Digest for [email protected] - 16 
updates in 4 topics

Your request (#227397) has been received, and is being reviewed by our support 
staff. To add additional comments, reply to this email.

----------------------------------------------

Polymer-dev, Apr 14, 11:18 AM

[email protected] 
(https://groups.google.com/forum/?utm_source=digest&utm_medium=email#!forum/polymer-dev/topics)
 Google Groups 
(https://groups.google.com/forum/?utm_source=digest&utm_medium=email/#!overview)

Topic digest
View all topics 
(https://groups.google.com/forum/?utm_source=digest&utm_medium=email#!forum/polymer-dev/topics)

Vulcanize v1 factored out --csp. How-to now? (#14cb7d99e16fcecd_group_thread_0) 
- 7 Updates
Material Design date and time pickers (#14cb7d99e16fcecd_group_thread_1) - 2 
Updates
why polymer not work at all on windows phone IE11? 
(#14cb7d99e16fcecd_group_thread_2) - 4 Updates
Polymer Repositories Status Report Now Available 
(#14cb7d99e16fcecd_group_thread_3) - 3 Updates

Vulcanize v1 factored out --csp. How-to now?  
(http://groups.google.com/group/polymer-dev/t/14b38712ab0ecb13?utm_source=digest&utm_medium=email)
Silver Techar <[email protected]>: Apr 13 07:32AM -0700

Hi,

How do you do following v.0.7 vulcanize command in the braeking v.1 ?

My vulacnize v.0.7 command was: vulcanize -o ../build.html ../index.html
--strip --csp

where index.html looked something like

<!doctype html>
<html>
<head>
<script src="all.js"></script>

<link rel="import" href="bower_components/paper-input/paper-input.html">
..etc..
</head>
<body>
<x-app></x-app>
</body>
</html>

Ref: https://github.com/Polymer/vulcanize/blob/master/CHANGELOG.md

Kr,
Ainur

Eric Bidelman <[email protected]>: Apr 13 03:38PM

+Daniel Freedman <[email protected]>

On Mon, Apr 13, 2015 at 7:32 AM Silver Techar <[email protected]>
wrote:

Daniel Freedman <[email protected]>: Apr 13 11:30AM -0700

I factored out the CSP component into a new project called crisper:
https://github.com/polymerlabs/crisper.

You can pipe the output of vulcanize through crisper to make separate JS
and HTML files:

vulcanize target.html | crisper --html build.html --js build.js

I'll put this into the README of vulcanize.

Silver Techar <[email protected]>: Apr 13 10:35PM -0700

Hi and thanks, breaking change was glued now :)

Back you get some quick feedback:
1.) Not nice. I expected help

C:\>crisper

path.js:116
throw new TypeError('Arguments to path.resolve must be strings');
^
TypeError: Arguments to path.resolve must be strings
at Object.exports.resolve (path.js:116:15)
at Object.exports.relative (path.js:240:18)
at Object.<anonymous>
(C:\Users\x\AppData\Roaming\npm\node_modules\crisper\bin\crisper:35:25)
at Module._compile (module.js:456:26)
at Object.Module._extensions..js (module.js:474:10)
at Module.load (module.js:356:32)
at Function.Module._load (module.js:312:12)
at Function.Module.runMain (module.js:497:10)
at startup (node.js:119:16)
at node.js:902:3

2.) You could also mention that linking to scripts in index.html is not
necessary anymore (since I was using it like this). Guess this part is in
crisper now
<script src="all.js"></script>

3.) You could also say that crisper command should be
crisper --source vulcanized.html --html build.html --js build.js
since vulcanized.html is vulcanize's default output file name

instead of
crisper --source index.html --html build.html --js build.js
which produces 0byte build.js and a copy of index.html and appended
build.js at the end in the build.html file (as observed)

4.) Piping does not work
vulcanize index.html | crisper --html build.html --js build.js

produces 0byte build.js and following line in build.html
<html><head></head><body><script src="build.js"></script></body></html>

5.) What worked (from my point of view / as I expect)

vulcanize index.html
crisper --source vulcanized.html --html build.html --js build.js

Kr,
Ainur

On Monday, April 13, 2015 at 8:30:34 PM UTC+2, Daniel Freedman wrote:

Silver Techar <[email protected]>: Apr 13 11:01PM -0700

Typo correction:

Wrong:
instead of
crisper --source index.html --html build.html --js build.js
which produces 0byte build.js and a copy of index.html and appended
build.js at the end inside of build.html (observed)

Corrected:
instead of
crisper --source index.html --html build.html --js build.js
which produces 0byte build.js and a copy of index.html and appended

<x-app></x-app>
<script src="build.js"></script></body></html>

at the end inside of build.html (observed)

Silver Techar <[email protected]>: Apr 13 11:03PM -0700

Typo correction to minor detail in 3)

Wrong:
instead of
crisper --source index.html --html build.html --js build.js
which produces 0byte build.js and a copy of index.html and appended
build.js at the end inside of build.html (observed)

Corrected:
instead of
crisper --source index.html --html build.html --js build.js
which produces 0byte build.js and a copy of index.html and appended

<x-app></x-app>
<script src="build.js"></script></
body></html>

at the end inside of build.html (observed)

Silver Techar <[email protected]>: Apr 13 11:31PM -0700

Hi and thanks,
breaking change was glued now :)

Here is some quick feedback:

1.) I expected help when executing command without arguments

C:\>crisper

path.js:116
throw new TypeError('Arguments to path.resolve must be strings');
^
TypeError: Arguments to path.resolve must be strings
at Object.exports.resolve (path.js:116:15)
at Object.exports.relative (path.js:240:18)
at Object.<anonymous>
(C:\Users\x\AppData\Roaming\npm\node_modules\crisper\bin\crisper:35:25)
at Module._compile (module.js:456:26)
at Object.Module._extensions..js (module.js:474:10)
at Module.load (module.js:356:32)
at Function.Module._load (module.js:312:12)
at Function.Module.runMain (module.js:497:10)
at startup (node.js:119:16)
at node.js:902:3

2.) You could say that crisper command should be
crisper --source vulcanized.html --html build.html --js build.js
since vulcanized.html is vulcanize's default output file name

instead of
crisper --source index.html --html build.html --js build.js
which produces 0byte build.js and a copy of index.html and appended
<x-app></x-app><script src="build.js"></script></body></html> at the end
inside of build.html (as observed)

3.) Piping does not work
vulcanize index.html | crisper --html build.html --js build.js

produces 0byte build.js and following line in build.html
<html><head></head><body><script src="build.js"></script></body></html>

What worked (from my point of view / as I expect)

vulcanize index.html
crisper --source vulcanized.html --html build.html --js build.js

Thx for polymer and vulcanize!

Kr,
Ainur

Back to top (#14cb7d99e16fcecd_digest_top)

Material Design date and time pickers  
(http://groups.google.com/group/polymer-dev/t/3416e7dfc9b39c75?utm_source=digest&utm_medium=email)
Ben <[email protected]>: Apr 13 08:36PM -0700

Hi all, I've created date and time picker components based on the material
design spec. I'd greatly appreciate any feedback! (click "demo" link to
see them in action).

http://bendavis78.github.io/paper-date-picker/
http://bendavis78.github.io/paper-time-picker/

<http://bendavis78.github.io/paper-date-picker/>
<http://bendavis78.github.io/paper-time-picker/>

<http://bendavis78.github.io/paper-date-picker/>

<http://bendavis78.github.io/paper-time-picker/>

Peng Kim <[email protected]>: Apr 13 09:54PM -0700

Great works,is it just for 2015 year?

On Tuesday, April 14, 2015 at 11:36:12 AM UTC+8, Ben wrote:

Back to top (#14cb7d99e16fcecd_digest_top)

why polymer not work at all on windows phone IE11?  
(http://groups.google.com/group/polymer-dev/t/9a430b62db413224?utm_source=digest&utm_medium=email)
Eric Bidelman <[email protected]>: Apr 13 03:42PM

I'm not familiar with the version of IE 11 on windows phone, but the web
components polyfills should work on IE 11. What sort of JS errors are you
getting? Does the page work on desktop IE 11?

Peng Kim <[email protected]>: Apr 13 11:53AM -0700

IE11 on desktop is kind of different from chrome.Despite of UI,it's a
little bit more slower than chrome,what's more,when the home page of my
site first loaded and showed up,the data stored in db were not loaded
unless i click somewhere or any action triggers,i checked the developer
tools and found that there were no data request,the console just tell
XMLHttpRequest needs CORS,because my sever and client are separated,I
hava configured the client-side and server-side to support CORS,and that
worked perfectly in chrome,so these are most obvious differences of
two,.BUT on windows phone ,i didn't test it yet!
On Monday, April 13, 2015 at 11:42:13 PM UTC+8, Eric Bidelman wrote:

Peng Kim <[email protected]>: Apr 13 12:24PM -0700

IE11 on desktop is kind of different from chrome.Despite of UI,it's a
little bit more slower than chrome,what's more,when the home page of my
site first loaded and showed up,the data stored in db were not loaded
unless i click somewhere or any action triggers,i checked the developer
tools and found that there were no data request,the console just tell
XMLHttpRequest needs CORS,because my sever and client are separated,I
hava configured the client-side and server-side to support CORS,and that
worked perfectly in chrome,so these are most obvious differences of
two,.BUT on windows phone ,i didn't test it yet!

On Monday, April 13, 2015 at 11:42:13 PM UTC+8, Eric Bidelman wrote:

Peng Kim <[email protected]>: Apr 13 08:13PM -0700

IE11 on desktop is kind of different from chrome.Despite of UI,it's a
little bit more slower than chrome,what's more,when the home page of my
site first loaded and showed up,the data stored in db were not loaded
unless i click somewhere or any action triggers,i checked the developer
tools and found that there were no data request,the console just tell
XMLHttpRequest needs CORS,because my sever and client are separated,I
hava configured the client-side and server-side to support CORS,and that
worked perfectly in chrome,so these are most obvious differences of
two,.BUT on windows phone ,i didn't test it yet!

On Monday, April 13, 2015 at 11:42:13 PM UTC+8, Eric Bidelman wrote:

Back to top (#14cb7d99e16fcecd_digest_top)

Polymer Repositories Status Report Now Available  
(http://groups.google.com/group/polymer-dev/t/c6de6448d05be957?utm_source=digest&utm_medium=email)
James Nadeau <[email protected]>: Apr 13 06:06AM -0700

Thank you for this, great work!

On Sunday, April 12, 2015 at 5:53:27 PM UTC-4, Chuck Horton wrote:

DS Morse <[email protected]>: Apr 13 06:25AM -0700

That is sooo AWESOME!... It will be a huge time saver. Thanks!

On Wednesday, March 18, 2015 at 3:20:26 PM UTC-6, Chuck Horton wrote:

Chuck Horton <[email protected]>: Apr 13 01:30PM -0700

Thanks. I updated Convert Code with the following:

- Save button to save converted code to local file
- Converts ?= to $=
- Converts template repeat, auto-binding and if to is="x-..."
- Added line comments to change on-xxx to remove {{}}
- Partial convert with comment for mixins
- Now ignores comment lines
- Update Conversion Notes TODO list

On Monday, April 13, 2015 at 6:25:49 AM UTC-7, DS Morse wrote:

Back to top (#14cb7d99e16fcecd_digest_top)

You received this digest because you're subscribed to updates for this group. 
You can change your settings on the group membership page 
(https://groups.google.com/forum/?utm_source=digest&utm_medium=email#!forum/polymer-dev/join).
To unsubscribe from this group and stop receiving emails from it send an email 
to [email protected].

--

Benjamin Haas | Manager, Software Engineering | CONTROL GROUP | 233 Broadway, 
21st Floor | New York, NY 10279 | 212-343-2525 x626 | www.controlgroup.com 
(http://www.controlgroup.com/)

--------------------------------
This email is a service from Control Group.









[3FMM-7YBN]

Follow Polymer on Google+: plus.google.com/107187849809354688692
--- 
You received this message because you are subscribed to the Google Groups 
"Polymer" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To view this discussion on the web visit 
https://groups.google.com/d/msgid/polymer-dev/3FMM7YBN_552d30875081c_7ec63faa552cd32014834d6_sprut%40zendesk.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to