summaryrefslogtreecommitdiff
path: root/app/unused_apps/ccg_notes
diff options
context:
space:
mode:
Diffstat (limited to 'app/unused_apps/ccg_notes')
-rw-r--r--app/unused_apps/ccg_notes/__init__.py0
-rw-r--r--app/unused_apps/ccg_notes/admin.py32
-rw-r--r--app/unused_apps/ccg_notes/autocomplete_light_registry.py24
-rw-r--r--app/unused_apps/ccg_notes/build.py36
-rw-r--r--app/unused_apps/ccg_notes/forms.py17
-rw-r--r--app/unused_apps/ccg_notes/mdx_urlize.py81
-rw-r--r--app/unused_apps/ccg_notes/migrations/0001_initial.py33
-rw-r--r--app/unused_apps/ccg_notes/migrations/__init__.py0
-rw-r--r--app/unused_apps/ccg_notes/models.py36
-rw-r--r--app/unused_apps/ccg_notes/urls.py62
-rw-r--r--app/unused_apps/ccg_notes/views.py85
11 files changed, 0 insertions, 406 deletions
diff --git a/app/unused_apps/ccg_notes/__init__.py b/app/unused_apps/ccg_notes/__init__.py
deleted file mode 100644
index e69de29..0000000
--- a/app/unused_apps/ccg_notes/__init__.py
+++ /dev/null
diff --git a/app/unused_apps/ccg_notes/admin.py b/app/unused_apps/ccg_notes/admin.py
deleted file mode 100644
index 5aec3ae..0000000
--- a/app/unused_apps/ccg_notes/admin.py
+++ /dev/null
@@ -1,32 +0,0 @@
-from django.contrib import admin
-
-from utils.widgets import OLAdminBase
-from utils.widgets import TagListFilter
-
-from .models import CcgNote
-from .forms import CcgNoteForm
-
-class CcgNoteAdmin(OLAdminBase):
- form = CcgNoteForm
- prepopulated_fields = {"slug": ('title',)}
- list_display = ('slug', 'pub_date',)
- list_filter = ['status', TagListFilter]
- fieldsets = (
- ('Note', {
- 'fields': (
- ('title', 'slug'),
- 'body_markdown',
- 'tags',
- ('pub_date', 'status'),
- ),
- 'classes': (
- 'show',
- 'extrapretty',
- 'wide'
- )
- }
- ),
- )
-
-
-admin.site.register(CcgNote, CcgNoteAdmin)
diff --git a/app/unused_apps/ccg_notes/autocomplete_light_registry.py b/app/unused_apps/ccg_notes/autocomplete_light_registry.py
deleted file mode 100644
index 0781848..0000000
--- a/app/unused_apps/ccg_notes/autocomplete_light_registry.py
+++ /dev/null
@@ -1,24 +0,0 @@
-import autocomplete_light.shortcuts as al
-from taggit.models import Tag
-
-# This will generate a PersonAutocomplete class
-al.register(Tag,
- # Just like in ModelAdmin.search_fields
- search_fields=['name'],
- attrs={
- # This will set the input placeholder attribute:
- 'placeholder': 'Tags...',
- # This will set the yourlabs.Autocomplete.minimumCharacters
- # options, the naming conversion is handled by jQuery
- 'data-autocomplete-minimum-characters': 1,
-},
- # This will set the data-widget-maximum-values attribute on the
- # widget container element, and will be set to
- # yourlabs.Widget.maximumValues (jQuery handles the naming
- # conversion).
- widget_attrs={
- 'data-widget-maximum-values': 4,
- # Enable modern-style widget !
- 'class': 'modern-style',
- },
-)
diff --git a/app/unused_apps/ccg_notes/build.py b/app/unused_apps/ccg_notes/build.py
deleted file mode 100644
index 499adc6..0000000
--- a/app/unused_apps/ccg_notes/build.py
+++ /dev/null
@@ -1,36 +0,0 @@
-import os
-from django.core.urlresolvers import reverse
-from builder.base import BuildNew
-
-
-class BuildNotes(BuildNew):
-
- def build(self):
- self.build_detail_view()
- self.build_list_view(
- base_path=reverse("notes:live_redirect"),
- paginate_by=24
- )
- self.build_year_view("notes:list_year")
- self.build_month_view("notes:list_month")
-
- def get_model_queryset(self):
- return self.model.objects.all()
-
- def build_detail_view(self):
- '''
- write out all the expenses for each trip
- '''
- for obj in self.get_model_queryset():
- url = obj.get_absolute_url()
- path, slug = os.path.split(url)
- path = '%s/' % path
- # write html
- response = self.client.get(url)
- print(path, slug)
- self.write_file(path, response.content, filename=slug)
-
-
-def builder():
- j = BuildNotes("notes", "luxnote")
- j.build()
diff --git a/app/unused_apps/ccg_notes/forms.py b/app/unused_apps/ccg_notes/forms.py
deleted file mode 100644
index 0934306..0000000
--- a/app/unused_apps/ccg_notes/forms.py
+++ /dev/null
@@ -1,17 +0,0 @@
-from django import forms
-import dal
-from dal_select2_taggit.widgets import TaggitSelect2
-from .models import CcgNote
-from dal import autocomplete
-
-
-class CcgNoteForm(autocomplete.FutureModelForm):
- class Meta:
- model = CcgNote
- fields = ('tags',)
- widgets = {
- 'tags': autocomplete.TaggitSelect2(
- 'tag-autocomplete'
- ),
- 'body_markdown': forms.Textarea(attrs={'rows': 18, 'cols': 60}),
- }
diff --git a/app/unused_apps/ccg_notes/mdx_urlize.py b/app/unused_apps/ccg_notes/mdx_urlize.py
deleted file mode 100644
index dc8d1d7..0000000
--- a/app/unused_apps/ccg_notes/mdx_urlize.py
+++ /dev/null
@@ -1,81 +0,0 @@
-"""A more liberal autolinker
-
-Inspired by Django's urlize function.
-
-Positive examples:
-
->>> import markdown
->>> md = markdown.Markdown(extensions=['urlize'])
-
->>> md.convert('http://example.com/')
-u'<p><a href="http://example.com/">http://example.com/</a></p>'
-
->>> md.convert('go to http://example.com')
-u'<p>go to <a href="http://example.com">http://example.com</a></p>'
-
->>> md.convert('example.com')
-u'<p><a href="http://example.com">example.com</a></p>'
-
->>> md.convert('example.net')
-u'<p><a href="http://example.net">example.net</a></p>'
-
->>> md.convert('www.example.us')
-u'<p><a href="http://www.example.us">www.example.us</a></p>'
-
->>> md.convert('(www.example.us/path/?name=val)')
-u'<p>(<a href="http://www.example.us/path/?name=val">www.example.us/path/?name=val</a>)</p>'
-
->>> md.convert('go to <http://example.com> now!')
-u'<p>go to <a href="http://example.com">http://example.com</a> now!</p>'
-
-Negative examples:
-
->>> md.convert('del.icio.us')
-u'<p>del.icio.us</p>'
-
-"""
-
-import markdown
-
-# Global Vars
-URLIZE_RE = '(%s)' % '|'.join([
- r'<(?:f|ht)tps?://[^>]*>',
- r'\b(?:f|ht)tps?://[^)<>\s]+[^.,)<>\s]',
- r'\bwww\.[^)<>\s]+[^.,)<>\s]',
- r'[^(<\s]+\.(?:com|net|org)\b',
-])
-
-class UrlizePattern(markdown.inlinepatterns.Pattern):
- """ Return a link Element given an autolink (`http://example/com`). """
- def handleMatch(self, m):
- url = m.group(2)
-
- if url.startswith('<'):
- url = url[1:-1]
-
- text = url
-
- if not url.split('://')[0] in ('http','https','ftp'):
- if '@' in url and not '/' in url:
- url = 'mailto:' + url
- else:
- url = 'http://' + url
-
- el = markdown.util.etree.Element("a")
- el.set('href', url)
- el.text = markdown.util.AtomicString(text)
- return el
-
-class UrlizeExtension(markdown.Extension):
- """ Urlize Extension for Python-Markdown. """
-
- def extendMarkdown(self, md, md_globals):
- """ Replace autolink with UrlizePattern """
- md.inlinePatterns['autolink'] = UrlizePattern(URLIZE_RE, md)
-
-def makeExtension(configs=None):
- return UrlizeExtension(configs=configs)
-
-if __name__ == "__main__":
- import doctest
- doctest.testmod()
diff --git a/app/unused_apps/ccg_notes/migrations/0001_initial.py b/app/unused_apps/ccg_notes/migrations/0001_initial.py
deleted file mode 100644
index 1877e91..0000000
--- a/app/unused_apps/ccg_notes/migrations/0001_initial.py
+++ /dev/null
@@ -1,33 +0,0 @@
-# -*- coding: utf-8 -*-
-# Generated by Django 1.9 on 2016-07-22 19:54
-from __future__ import unicode_literals
-
-from django.db import migrations, models
-import django.utils.timezone
-import taggit.managers
-
-
-class Migration(migrations.Migration):
-
- initial = True
-
- dependencies = [
- ('taggit', '0002_auto_20150616_2121'),
- ]
-
- operations = [
- migrations.CreateModel(
- name='CcgNote',
- fields=[
- ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
- ('title', models.CharField(blank=True, max_length=250, null=True)),
- ('slug', models.SlugField(blank=True, unique_for_date='pub_date')),
- ('pub_date', models.DateTimeField(default=django.utils.timezone.now)),
- ('date_last_updated', models.DateTimeField(blank=True, verbose_name='Date')),
- ('body_html', models.TextField(blank=True)),
- ('body_markdown', models.TextField(verbose_name='Note')),
- ('status', models.IntegerField(choices=[(0, 'Draft'), (1, 'Published')], default=1)),
- ('tags', taggit.managers.TaggableManager(blank=True, help_text='A comma-separated list of tags.', through='taggit.TaggedItem', to='taggit.Tag', verbose_name='Tags')),
- ],
- ),
- ]
diff --git a/app/unused_apps/ccg_notes/migrations/__init__.py b/app/unused_apps/ccg_notes/migrations/__init__.py
deleted file mode 100644
index e69de29..0000000
--- a/app/unused_apps/ccg_notes/migrations/__init__.py
+++ /dev/null
diff --git a/app/unused_apps/ccg_notes/models.py b/app/unused_apps/ccg_notes/models.py
deleted file mode 100644
index b235d36..0000000
--- a/app/unused_apps/ccg_notes/models.py
+++ /dev/null
@@ -1,36 +0,0 @@
-from django.contrib.gis.db import models
-from django.utils import timezone
-from django.core.urlresolvers import reverse
-
-from taggit.managers import TaggableManager
-from utils.widgets import markdown_to_html
-from jrnl.models import render_images
-
-
-class CcgNote(models.Model):
- title = models.CharField(max_length=250, null=True, blank=True)
- slug = models.SlugField(unique_for_date='pub_date', blank=True)
- pub_date = models.DateTimeField(default=timezone.now)
- date_last_updated = models.DateTimeField('Date', blank=True)
- body_html = models.TextField(blank=True)
- body_markdown = models.TextField('Note')
- PUB_STATUS = (
- (0, 'Draft'),
- (1, 'Published'),
- )
- status = models.IntegerField(choices=PUB_STATUS, default=1)
- tags = TaggableManager(blank=True)
-
- def __str__(self):
- return self.title
-
- def get_absolute_url(self):
- return reverse("ccg_notes:detail", kwargs={"year": self.pub_date.year, "month": self.pub_date.strftime("%m"), "slug": self.slug})
-
- def save(self, *args, **kwargs):
- md = render_images(self.body_markdown)
- self.body_html = markdown_to_html(md)
- if not self.id:
- self.pub_date = timezone.now()
- self.date_last_updated = timezone.now()
- super(CcgNote, self).save()
diff --git a/app/unused_apps/ccg_notes/urls.py b/app/unused_apps/ccg_notes/urls.py
deleted file mode 100644
index 0f9fad7..0000000
--- a/app/unused_apps/ccg_notes/urls.py
+++ /dev/null
@@ -1,62 +0,0 @@
-from django.conf.urls import url
-from django.views.generic.base import RedirectView
-
-from . import views
-
-app_name = "notes"
-
-urlpatterns = [
- url(
- r'(?P<year>\d{4})/(?P<month>\d{2})/(?P<slug>[-\w]+).txt$',
- views.NoteDetailViewTXT.as_view(),
- name="detail-txt"
- ),
- url(
- r'(?P<year>\d{4})/(?P<month>\d{2})/(?P<slug>[-\w]+).amp$',
- views.NoteDetailViewAMP.as_view(),
- name="detail-amp"
- ),
- url(
- r'(?P<year>\d{4})/(?P<month>\d{2})/(?P<slug>[-\w]+)$',
- views.NoteDetailView.as_view(),
- name="detail"
- ),
- url(
- r'^(?P<year>[0-9]{4})/(?P<month>[0-9]{2})/$',
- views.NoteMonthArchiveView.as_view(month_format='%m'),
- name="list_month"
- ),
- url(
- r'(?P<year>\d{4})/$',
- views.NoteYearArchiveView.as_view(),
- name="list_year"
- ),
-
-
- url(
- r'(?P<year>\d{4})/(?P<month>\d{2})/$',
- views.date_list,
- name="notes_by_month"
- ),
- url(
- r'(?P<year>\d{4})/$',
- views.date_list,
- name="notes_by_year"
- ),
- url(
- r'(?P<page>\d+)/$',
- views.NoteList.as_view(),
- name="list"
- ),
- # redirect / to /1/ for live server
- url(
- r'',
- RedirectView.as_view(url="/field-notes/1/", permanent=False),
- name="live_redirect"
- ),
- url(
- r'^$',
- views.entry_list,
- name="notes_archive"
- ),
-]
diff --git a/app/unused_apps/ccg_notes/views.py b/app/unused_apps/ccg_notes/views.py
deleted file mode 100644
index 1fbe6f4..0000000
--- a/app/unused_apps/ccg_notes/views.py
+++ /dev/null
@@ -1,85 +0,0 @@
-from django.shortcuts import render_to_response, get_object_or_404
-from django.template import RequestContext
-from django.views.generic.dates import YearArchiveView, MonthArchiveView
-from django.views.generic.detail import DetailView
-
-from utils.views import PaginatedListView
-
-from notes.models import LuxNote, Note
-
-
-class NoteList(PaginatedListView):
- """
- Return a list of Notes in reverse chronological order
- """
- queryset = LuxNote.objects.all().order_by('-pub_date')
- template_name = "archives/notes.html"
-
-
-class NoteDetailView(DetailView):
- model = LuxNote
- template_name = "details/note.html"
- slug_field = "slug"
-
-
-class NoteDetailViewTXT(NoteDetailView):
- template_name = "details/entry.txt"
-
-
-class NoteDetailViewAMP(NoteDetailView):
- template_name = "details/entry.amp"
-
-
-class NoteYearArchiveView(YearArchiveView):
- queryset = LuxNote.objects.all()
- date_field = "pub_date"
- make_object_list = True
- allow_future = True
- template_name = "archives/notes_date.html"
-
-
-class NoteMonthArchiveView(MonthArchiveView):
- queryset = LuxNote.objects.all()
- date_field = "pub_date"
- allow_future = True
- template_name = "archives/notes_date.html"
-
-
-"""
-Legacy Notes views
-"""
-
-
-def entry_detail(request, year, month, slug):
- context = {
- 'object': get_object_or_404(Note, slug__exact=slug),
- }
- return render_to_response(
- 'details/note.html',
- context,
- context_instance=RequestContext(request)
- )
-
-
-def date_list(request, year, month=None):
- if month:
- qs = Note.objects.filter(date_created__year=year, date_created__month=month).order_by('-date_created')
- else:
- qs = Note.objects.filter(date_created__year=year).order_by('-date_created')
- context = {
- 'year': year,
- 'month': month,
- 'object_list': qs,
- }
- return render_to_response(
- "archives/notes_date.html",
- context,
- context_instance=RequestContext(request)
- )
-
-
-def entry_list(request):
- context = {
- 'object_list': Note.objects.all().order_by('-date_created').select_related(),
- }
- return render_to_response("archives/notes.html", context, context_instance=RequestContext(request))