This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@cmd.exe /s /c "x.cmd ^ ^" | |
@cmd.exe /s /c "x.cmd ^^ ^^" | |
@cmd.exe /s /c "x.cmd ^^^ ^^^" | |
@cmd.exe /s /c "x.cmd ^^^^ ^^^^" | |
@cmd.exe /s /c "x.cmd ^^^^^ ^^^^^" | |
@cmd.exe /s /c "x.cmd ^^^^^^ ^^^^^^" | |
@cmd.exe /s /c "x.cmd ^^^^^^^ ^^^^^^^" | |
@cmd.exe /s /c "x.cmd ^^^^^^^^ ^^^^^^^^" | |
@echo. | |
@cmd.exe /s /c "x.cmd "^" "^"" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<head> | |
<title>publish-test</title> | |
</head> | |
<body> | |
{{> hello}} | |
</body> | |
<template name="hello"> | |
<p>Elements of A:</p> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[[[[[ ~\Documents\reactive-publish-test ]]]]] | |
=> Meteor server running on: http://localhost:3000/ | |
[34mW20140202-18:23:33.047(4)? (STDERR) [39m[35mC:\Users\Egor Suvorov\Documents\reactive-publish-test\.meteor\local\build\programs\server\boot.js:196[39m | |
[34mW20140202-18:23:33.191(4)? (STDERR) [39m[35m}).run();[39m | |
[34mW20140202-18:23:33.192(4)? (STDERR) [39m[35m ^[39m | |
[34mW20140202-18:23:33.192(4)? (STDERR) [39m[35mTypeError: Cannot call method 'find' of undefined[39m | |
[34mW20140202-18:23:33.193(4)? (STDERR) [39m[35m at Package (packages/reactive-publish\lib\reactive-publish.coffee:15:9)[39m | |
[34mW20140202-18:23:33.193(4)? (STDERR) [39m[35m at packages/reactive-publish.js:194:4[39m | |
[34mW20140202-18:23:33.194(4)? (STDERR) [39m[35m at packages/reactive-publish.js:201:3[39m |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<head> | |
<title>reactive-publish-test</title> | |
</head> | |
<body> | |
{{> hello}} | |
</body> | |
<template name="hello"> | |
<p>Elements of A:</p> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<head> | |
<title>search-test</title> | |
</head> | |
<body> | |
{{> hello}} | |
</body> | |
<template name="hello"> | |
<h1>Paginated:</h1> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<template name="layout"> | |
<p>Current page = {{currentPage}}</p> | |
<p><a href="/">Main</a></p> | |
<p><a href="/notfound">Not found</a></p> | |
{{yield}} | |
</template> | |
<template name="main"> | |
<p>Main page</p> | |
</template> | |
<template name="not_found"> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<head> | |
<title>publish-test</title> | |
</head> | |
<body> | |
{{> hello}} | |
</body> | |
<template name="hello"> | |
<p>Elements of A: (<a href="#" class="subscr">Subscribe</a>, <a href="#" class="unsubscr">Unsubscribe</a>)</p> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"packages": { | |
"publish-composite": {} | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<head> | |
<title>oplog-test-3</title> | |
</head> | |
<body> | |
{{> serverFacts}} | |
{{> items}} | |
</body> | |
<template name="items"> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
all: main.exe | |
main.exe | |
main.exe: a.o b.o | |
g++ -o $@ $^ | |
%.o: %.cpp | |
g++ -o $@ -c $< | |
a.cpp: message.h |
OlderNewer