summaryrefslogtreecommitdiff
path: root/gstudio
diff options
context:
space:
mode:
authorgnowgi <nagarjun@gnowledge.org>2012-08-13 05:58:06 -0700
committergnowgi <nagarjun@gnowledge.org>2012-08-13 05:58:06 -0700
commit86e66913d92e2534ca9ddf8a1a61b323d0cf277a (patch)
tree6e88fc9c2f6f1d704b82c815d554db9815042a62 /gstudio
parent3180e360c3eff8f6bf02d3c5fffeb22644a98704 (diff)
parentc46d21012bdb0cad3c4e2313586b0a5ea740bcbe (diff)
downloadgnowsys-86e66913d92e2534ca9ddf8a1a61b323d0cf277a.tar.gz
Merge pull request #81 from supriyasawant/master
tags added to wikipage
Diffstat (limited to 'gstudio')
-rw-r--r--gstudio/static/gstudio/js/addcontent.js26
-rw-r--r--gstudio/templates/gstudio/NewPage.html6
-rw-r--r--gstudio/templates/gstudio/NewSection1.html5
-rw-r--r--gstudio/templates/gstudio/skeleton.html4
-rw-r--r--gstudio/templates/gstudio/tags/commentpage.html23
-rw-r--r--gstudio/templates/metadashboard/pgedashboard.html71
-rw-r--r--gstudio/views/page.py8
7 files changed, 104 insertions, 39 deletions
diff --git a/gstudio/static/gstudio/js/addcontent.js b/gstudio/static/gstudio/js/addcontent.js
index fe4f51c..655e2f5 100644
--- a/gstudio/static/gstudio/js/addcontent.js
+++ b/gstudio/static/gstudio/js/addcontent.js
@@ -4,6 +4,7 @@
$("#addcontent").one("click",function(){
//var abc = document.getElementById('pageid1').value;
//window.location.replace('sectionadd1/'+abc);
+ $("#save").show();
$("#chart").hide();
// var orgdata = document.getElementById('orgcontent').value;
document.getElementById('gnoweditor').style.visibility="visible";
@@ -27,6 +28,7 @@
$("#chart").hide();
document.getElementById('gnoweditor').style.visibility="visible";
$("#gnoweditor").orgitdown(mySettings);
+ $("#save1").show();
});
$("#save1").one("click",function() {
var org_data = $("#gnoweditor").val();
@@ -36,6 +38,8 @@
});
$("#editseccontent").one("click",function(){
+ $("#saveseccontent").show();
+
$("#chart").hide();
document.getElementById('gnoweditor').style.visibility="visible";
$("#gnoweditor").orgitdown(mySettings);
@@ -44,10 +48,6 @@
var screenTop = $(document).scrollTop();
$(".orgitdownContainer").css({
"margin-top":screenTop,});
- $("#savesubsec").hide();
- $("#savesubsec1").hide();
- $("#savepagecontent").hide();
-
});
$("#saveseccontent").one("click",function(){
var org_data = $("#gnoweditor").val();
@@ -85,6 +85,8 @@
});
$("#editsubsec").one("click",function(){
+ $("#savesubsec1").show();
+
$("#chart").hide();
document.getElementById('gnoweditor').style.visibility="visible";
$("#gnoweditor").orgitdown(mySettings);
@@ -93,10 +95,7 @@
var screenTop = $(document).scrollTop();
$(".orgitdownContainer").css({
"margin-top":screenTop,});
- $("#savesubsec").hide();
- $("#saveseccontent").hide();
- $("#savepagecontent").hide();
-
+
});
$("#savesubsec1").one("click",function(){
var org_data = $("#gnoweditor").val();
@@ -136,6 +135,7 @@
$("#editpagecontent").one("click",function(){
$("#chart").hide();
+ $("#savepagecontent").show();
document.getElementById('gnoweditor').style.visibility="visible";
$("#gnoweditor").orgitdown(mySettings);
@@ -144,10 +144,6 @@
var screenTop = $(document).scrollTop();
$(".orgitdownContainer").css({
"margin-top":screenTop,});
- $("#saveseccontent").hide();
- $("#savesubsec").hide();
- $("#savesubsec1").hide();
-
});
$("#savepagecontent").one("click",function(){
@@ -189,6 +185,8 @@
$("#createsubsection").one("click",function(){
+ $("#savesubsec").show();
+
$("#chart").hide();
document.getElementById('gnoweditor').style.visibility="visible";
$("#gnoweditor").orgitdown(mySettings);
@@ -196,9 +194,7 @@
var screenTop = $(document).scrollTop();
$(".orgitdownContainer").css({
"margin-top":screenTop,});
- $("#savesubsec1").hide();
- $("#saveseccontent").hide();
- $("#savepagecontent").hide();
+
});
$("#savesubsec").one("click",function() {
var org_data = $("#gnoweditor").val();
diff --git a/gstudio/templates/gstudio/NewPage.html b/gstudio/templates/gstudio/NewPage.html
index ac87a10..b73b0dc 100644
--- a/gstudio/templates/gstudio/NewPage.html
+++ b/gstudio/templates/gstudio/NewPage.html
@@ -1,6 +1,12 @@
{%extends "gstudio/base.html"%}
{%load i18n %}
{% block content %}
+<script src="http://code.jquery.com/jquery-latest.js"></script>
+ <script type="text/javascript" >
+ $(window).load(function() {
+ $("#save1").hide();});
+</script>
+
{%if user.is_authenticated%}
{% if errors %}
<ul>
diff --git a/gstudio/templates/gstudio/NewSection1.html b/gstudio/templates/gstudio/NewSection1.html
index 01cd3d9..daf29bc 100644
--- a/gstudio/templates/gstudio/NewSection1.html
+++ b/gstudio/templates/gstudio/NewSection1.html
@@ -1,6 +1,11 @@
{% extends "gstudio/base.html" %}
{% block content %}
+<script src="http://code.jquery.com/jquery-latest.js"></script>
+ <script type="text/javascript" >
+ $(window).load(function() {
+ $("#save").hide();});
+</script>
<h1>Add a new Section</h1>
{% if errors %}
<ul>
diff --git a/gstudio/templates/gstudio/skeleton.html b/gstudio/templates/gstudio/skeleton.html
index 3e0de7f..176b0b3 100644
--- a/gstudio/templates/gstudio/skeleton.html
+++ b/gstudio/templates/gstudio/skeleton.html
@@ -293,6 +293,10 @@
<script type="text/javascript" src="{{STATIC_URL}}gstudio/js/topiccomment.js"></script>
+ <script type="text/javascript" src="http://code.jquery.com/jquery-1.7.2.min.js"></script>
+ <script type="text/javascript" src="{{STATIC_URL}}gstudio/js/orgitdown/orgitdown/sets/org/set.js"></script>
+
+ <script type="text/javascript" src="{{STATIC_URL}}gstudio/js/orgitdown/orgitdown/jquery.orgitdown.js"></script>
<script type="text/javascript" src="{{STATIC_URL}}gstudio/js/orgitdown/orgitdown/sets/savedata.js"></script>
<script type="text/javascript" src="http://code.jquery.com/jquery-1.7.2.min.js"></script>
diff --git a/gstudio/templates/gstudio/tags/commentpage.html b/gstudio/templates/gstudio/tags/commentpage.html
index 1b5a0ca..a55f4ed 100644
--- a/gstudio/templates/gstudio/tags/commentpage.html
+++ b/gstudio/templates/gstudio/tags/commentpage.html
@@ -4,6 +4,8 @@
{% load gstudio_tags %}
{% load i18n %}
+{% load tagging_tags comments i18n %}
+
@@ -32,7 +34,26 @@
<input type="button" id="subsecorg" value="{{child.content_org}}" style="visibility:hidden;"/>
<input type="button" id="subsecid" value="{{child.id}}" style="visibility:hidden;"/>
<input type="checkbox" name="del_comment" value="delete_comment">
- <input type="submit" value="Delete this Subsection">
+ <input type="submit" value="Delete this Subsection"></br>
+ <form method="post" action="">{% csrf_token %}
+ <input type="hidden" name="docid" value={{child.id}}>
+ <input type="text" value="" name="texttags" />
+ <input type="submit" value="Add Tags" name="addtags" />
+ </form>
+ <br>
+ <div class="tags">
+ <p class="gbobject-tags span-16 last">
+ <strong>{% trans "Tags" %}</strong> :
+ {% tags_for_object child as tag_list %}
+ {% for tag in tag_list %}
+ <a href="{% url objectapp_tag_detail tag %}"
+ title="Tag {{ tag }}" rel="tag">{{ tag }}</a>
+ {% empty %}
+ <span>{% trans "No tags" %}</span>
+ {% endfor %}
+ </p>
+ </div>
+
</form>
{% show_commentpage child idusr flag admin_id attribute%}
</li>
diff --git a/gstudio/templates/metadashboard/pgedashboard.html b/gstudio/templates/metadashboard/pgedashboard.html
index c46cc07..f06063a 100644
--- a/gstudio/templates/metadashboard/pgedashboard.html
+++ b/gstudio/templates/metadashboard/pgedashboard.html
@@ -3,6 +3,9 @@
{% load adminmedia grp_tags %}
{% load gstudio_tags %}
{% load pagination_tags %}
+{% load i18n objectapp_tags %}
+{% load tagging_tags comments i18n %}
+
<!-- {% load i18n %} -->
{% block content %}
<style>
@@ -20,6 +23,14 @@ $(window).load(function() {
$("#graphcss").hide();
});
+$(window).load(function() {
+
+ $("#savepagecontent").hide();
+ $("#saveseccontent").hide();
+ $("#savesubsec").hide();
+ $("#savesubsec1").hide();
+
+ });
</script>
@@ -39,32 +50,27 @@ $(window).load(function() {
<input type="button" id="editpagecontent" value="Edit"/>
<input type="button" id="savepagecontent" value="Save"/></br>
+ <form method="post" action="">{% csrf_token %}
+ <input type="hidden" name="docid" value={{page_ob.id}}>
+ <input type="text" value="" name="texttags" />
+ <input type="submit" value="Add Tags" name="addtags" />
+ </form>
+ <br>
+ <div class="tags">
+ <p class="gbobject-tags span-16 last">
+ <strong>{% trans "Tags" %}</strong> :
+ {% tags_for_object ot as tag_list %}
+ {% for tag in tag_list %}
+ <a href="{% url objectapp_tag_detail tag %}"
+ title="Tag {{ tag }}" rel="tag">{{ tag }}</a>
+ {% empty %}
+ <span>{% trans "No tags" %}</span>
+ {% endfor %}
+ </p>
+ </div>
<input type="button" id="pageid" value="{{page_ob.id}}" style="visibility:hidden;"/>
<input type="button" id="pageorg" value="{{page_ob.content_org}}" style="visibility:hidden;"/>
-
- <!-- <h3> This Discussion was initiated by {{admin_m.username}}</h3> -->
-
- <!-- <h>You are logged in as <font color="blue">{{user.username}}</font></h> -->
-
- <!-- {%if flag %} -->
- <!-- <div id="Release"> -->
- <!-- <form method="post" action=".">{% csrf_token %} -->
- <!-- <input type="submit" value="Release Replies"> -->
- <!-- <input type="hidden" value="hits" name = "pagerelease"> -->
- <!-- </form> -->
- <!-- </div> -->
- <!-- <div> -->
- <!-- <form method="post" action=".">{% csrf_token %} -->
- <!-- <input type="submit" value="Block Replies"> -->
- <!-- <input type="hidden" value="hits" name = "block"> -->
- <!-- </form> -->
- <!-- </div> -->
- <!-- {% endif %} -->
- <!-- </br> -->
-
-
<form method="post" action=".">{% csrf_token %}
-<!-- <input type="hidden" value="{{page_ob.id}}" name = "pageid">-->
<input type="button" id="newsection1" value="Add a new Section" onClick="location.href=parseURL('sectionadd1/{{page_ob.id}}');">
<input type="hidden" id="pageid1" value="{{page_ob.id}}"/>
</form>
@@ -89,6 +95,25 @@ $(window).load(function() {
{% endautoescape%}
<input type="button" id="editseccontent" value="Edit"/>
<input type="button" id="saveseccontent" value="Save"/>
+ <form method="post" action="">{% csrf_token %}
+ <input type="hidden" name="docid" value={{each.id}}>
+ <input type="text" value="" name="texttags" />
+ <input type="submit" value="Add Tags" name="addtags" />
+ </form>
+ <br>
+ <div class="tags">
+ <p class="gbobject-tags span-16 last">
+ <strong>{% trans "Tags" %}</strong> :
+ {% tags_for_object each as tag_list %}
+ {% for tag in tag_list %}
+ <a href="{% url objectapp_tag_detail tag %}"
+ title="Tag {{ tag }}" rel="tag">{{ tag }}</a>
+ {% empty %}
+ <span>{% trans "No tags" %}</span>
+ {% endfor %}
+ </p>
+ </div>
+
<input type="button" id="sectionorg" value="{{each.content_org}}" style="visibility:hidden;"/>
<input type="button" id="sectionid" value="{{each.id}}" style="visibility:hidden;"/>
<form method="post" action=".">{% csrf_token %}<br/>
diff --git a/gstudio/views/page.py b/gstudio/views/page.py
index d673f77..e59caec 100644
--- a/gstudio/views/page.py
+++ b/gstudio/views/page.py
@@ -39,12 +39,20 @@ def pagedashboard(request,pageid):
# # block = request.POST.get("block","")
section_del = request.POST.get("del_section", "")
comment_del = request.POST.get("del_comment", "")
+ docid = request.POST.get("docid","")
+ addtags = request.POST.get("addtags","")
+ texttags = request.POST.get("texttags","")
if section_del:
del_section(int(id_no))
if comment_del:
del_comment(int(id_no1))
if rating :
rate_section(int(id_no),request,int(rating))
+ if addtags != "":
+ i=Gbobject.objects.get(id=docid)
+ i.tags = i.tags+ ","+str(texttags)
+ i.save()
+
if rep :
if not id_no :
ptitle= make_title(int(id_no))