Path | Component | Query |
---|---|---|
ExploreHomeContainerComponent | (query requires specific params) (query requires specific params) |
|
/account | none | members/self noop |
/account/redesign | RedesignRedirect | members/self noop |
/account/* | Error404Component | members/self noop |
/explore | ExploreFindContainerComponent | members/self noop find/topic_categories find/locations |
/about | AboutContainer | members/self noop |
/about/hostatwework | WolverineFormContainerComponent | members/self noop self/groups |
/about/allforwe | WolverineContainerComponent | members/selfnoop |
This file contains hidden or 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
import string | |
from datetime import datetime | |
from flask import url_for | |
from flask.ext.xmlrpc import XMLRPCHandler, Fault | |
from labs import app, db | |
from labs.models import User, Post, Tag, Category | |
# MetaWeblogAPI XML-RPC | |
handler = XMLRPCHandler('api') | |
handler.connect(app, '/api') |
This file contains hidden or 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
@mixin unfilledInfo($color: $C_darkblue, $backgroundColor: white, $iconSize: 16px, $borderWidth: 1px, $borderColor: false) { | |
// $iconSize must be in px, defaults to small | |
// info icon is "filled" but we want to simulate un-filled | |
// therefore background-color = letter color (the see-through part) | |
// border-color = circle border color | |
// color = color inside circle (the filled-in part of icon) | |
// this might make a good mixin for red-label | |
@if not $borderColor { | |
$borderColor: $color; |
This file contains hidden or 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
diff --git a/src/com/meetup/action/ChapterMemberProfile.java b/src/com/meetup/action/ChapterMemberProfile.java | |
index be4ff09..1138ac4 100644 | |
--- a/src/com/meetup/action/ChapterMemberProfile.java | |
+++ b/src/com/meetup/action/ChapterMemberProfile.java | |
@@ -64,6 +64,14 @@ public class ChapterMemberProfile extends ChapterAction { | |
if (U.isEmpty(op)) | |
op = "index"; | |
+ // if group is private, only members can see | |
+ // unless a pending member is looking at their own profile |
This file contains hidden or 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 composition with inclusion | |
Every template language I have seen provides some mechanism for one template to include another, thus supporting the reuse of repeated elements like headers and footers. The included templates are called partials in Mustache parlance: | |
```html | |
<!-- home.hbs --> | |
<html> | |
<body> | |
{{> header}} | |
<p> HOME </p> | |
{{> footer}} |
This file contains hidden or 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
diff --git a/modules/chapstick/src/main/java/com/meetup/business/MeetstacheBusiness.java b/modules/chapstick/src/main/java/com/meetup/business/MeetstacheBusiness.java | |
index 58fb1ae..a233b91 100644 | |
--- a/modules/chapstick/src/main/java/com/meetup/business/MeetstacheBusiness.java | |
+++ b/modules/chapstick/src/main/java/com/meetup/business/MeetstacheBusiness.java | |
@@ -18,6 +18,7 @@ import com.google.common.cache.CacheBuilder; | |
import com.google.common.cache.CacheLoader; | |
import com.google.common.cache.LoadingCache; | |
import com.google.common.collect.Maps; | |
+import com.google.common.collect.ImmutableMap; | |
This file contains hidden or 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
index a2b9728..7143b31 100644 | |
--- a/src/util/linksHelper.js | |
+++ b/src/util/linksHelper.js | |
@@ -1,6 +1,8 @@ | |
import { | |
generateGroupRoute, | |
generateGroupCommunicationRoute, | |
+ generateRegisterRoute, | |
+ generateRegisterChildRoute, | |
} from './routesHelper'; |
This file contains hidden or 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
{"lastUpload":"2018-01-17T00:54:28.795Z","extensionVersion":"v2.8.7"} |
This file contains hidden or 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
const path = require('path'); | |
const webpack = require('webpack'); | |
const ManifestPlugin = require('webpack-manifest-plugin'); | |
const StatsPlugin = require('webpack-stats-plugin').StatsWriterPlugin; | |
const SWPrecacheWebpackPlugin = require('sw-precache-webpack-plugin'); | |
const paths = require('mwp-cli/lib/config/paths'); | |
const env = require('mwp-cli/lib/config/env'); | |
const prodPlugins = require('mwp-cli/lib/config/webpack/prodPlugins'); | |
const rules = require('mwp-cli/lib/config/webpack/rules'); |
Path | Component | Query |
---|---|---|
/ | AppContainer | (query requires specific params) (query requires specific params) |
/account | none | members/self noop |
/account/redesign | RedesignRedirect | members/self noop |
/account/* | Error404Component | members/self noop |
/about | none | members/self noop |
/about/hostatwework: (no wrapper component - TODO get index) | ||
/about/* | Error404Component | members/self noop |
/media: (no wrapper component - TODO get index) |
OlderNewer