Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
1answer
391 views

Is web development possible using Google Sites?

I have hosted a website. But now my client asks to change it to http://sites.google.com. They have registered their domain with Google. I logged in the site and saw the procedures to create a website ...
5
votes
2answers
7k views

Where can I find custom themes for Google Sites

I'm trying to create a custom background theme for a Google Sites site. Awhile back I did some googling and found some sites with a background image and instructions of how to change table dimensions ...
3
votes
2answers
193 views

Google free site search, post query

I have a google site search http://www.google.com/cse/manage/create Which gives me the following working code: <div id="cse" style="width: 100%;">Loading</div> <script ...
3
votes
5answers
2k views

How to create expandable FAQ page in HTML?

I'd like to create an FAQ page for my website that lists all of the questions as hyperlinks. When the link is clicked, the answer for that question should expand out beneath it. The answers need to ...
2
votes
1answer
1k views

JavaScript/jQuery limitations in Google Sites?

My client has a Google site and is requesting some jQuery/javascript functionality like lightboxes, etc. Can I assume I can tackle most generic jQuery/javascript features (By way of the gadgets API), ...
2
votes
2answers
235 views

HTML to Google Sites

I have a website that is a bunch of standard HTML4 files. It has a Dreamweaver template file but each file has the template already put into it. Is there an easier way to convert a website from HTML ...
1
vote
3answers
87 views

How can Google account credentials by applied to my PHP app (SSO)?

I have a PHP application that will be accessed by users who are already signed into Google ( the app runs in an iFrame on a Google Site that requires Google login) What is the best SSO approach that ...
1
vote
1answer
331 views

Google Apps Script - Document and Announcements

So here's the scenario I've been trying to solve. A user comes to our site, uploads a file, that file is sent to a google docs collection and generates a link to that doc which is emailed to an ...
1
vote
1answer
158 views

Syntax highlighting tool for Objective C compatible for Google sites?

I'm using Google Sites to share/store useful code snippets. Can anyone show me how I can make my code snippets look like this ?
1
vote
1answer
43 views

What is the URI format to create a Google Site with custom URL

Using python google appengine: entry = client.create_site(orgName, description=orgDescription, source_site='https://sites.google.com/feeds/site/dpau.org/org' ...
1
vote
0answers
479 views

Using Google Gadgets, Sites, and Facebook App integration

All, I am using a Google Gadget embedded in a Google Site to host my Facebook app. I have registered the app at URL = https://sites.google.com/a/mydomain/asite/gadgettester/. The gadget is at ...
1
vote
1answer
159 views

google web hosting

my client told me they are using google web hosting. which i never used can anyone tell: can we upload any custom asp.net or php or jsp based application which languages/frameworks it supports?
1
vote
1answer
161 views

Google Webfonts with Google Sites

Is it possible to use Google Webfonts in websites created with Google Sites? If so, I'd be much obliged for input as to how to go about doing this. It looks as though it's possible to add scripts in ...
1
vote
1answer
146 views

google site spreadsheet

Can we write our front end design and use the google spreadsheet for the back-end for a website? Thank You
1
vote
2answers
199 views

Whats the technology behind sites like (Google Sites, Shoppify etc)?

I am wondering how sites like Google sites and shopify allow customers to create a website and then link it to their own domain?. Google sites allow a user to create their own website, at a user ...
1
vote
0answers
144 views

Google sites creation

I am creating a sites by java programming using google sites API developer guide. I had easily created different type of pages as parent page and sub pages also. my problem is,I am not able to create ...
1
vote
1answer
1k views

Embedding swf in google site

I have a google site. I want to embed an SWF file but I am not able to do it. I am able to display images and videos but not SWF files. Is there any solution to this problem?
1
vote
1answer
99 views

Error while updating content to Google sites through API

The code to insert document data works for Google sites but for update it fails. I tried below two calls 1 entry.setMediaSource(ms); gives following //IllegalArgumentException: Cannot set ...
1
vote
3answers
660 views

How do I update attachment content with the google sites python API?

I'm trying to write a script that will automatically update some attachments on a website created and managed through Google Sites. This should be possible as Google released the Sites API in ...
1
vote
4answers
723 views

How to embed AsciiMathML in Google Sites?

We would need to embed mathematical formulas through AsciiMathML into Google Sites pages (internal wiki for a research team). I am stuck with the limitation of Google Sites. Any idea how to do that? ...
0
votes
1answer
10 views

On Google Sites, is it possible to directly provide my own pages, stylesheets etc without going thru the creating process?

Now I have to pick a template and jump thru bunch of loops to create a page that I don't like. So we wonder if it's possible to just drop a few web pages and the css that we created on our own as our ...
0
votes
0answers
20 views

How to link a google apps script in a google site

I'm creating a google site for my company and I'm utilizing google apps scripts to do a little extra on the site. I would really like to link a script to a drop-down menu that I made. However, I can't ...
0
votes
0answers
7 views

Accessing the container from a gadget on Google Sites

I'm writing a custom navbar Google Gadget for use on a Google Site. I need to access data in the gadget container (the site page): either the webspace object which contains the breadcrumb object or at ...
0
votes
1answer
44 views

How do we write a CSS “block-level-style” within an inline style attribute tag?

Hi all I'm using Google Sites and I want to write a very simple CSS script in my page: <style>p {background:#ccc;}</style> However, Google removes all style tags. The solution they ...
0
votes
0answers
22 views

Internet Explorer Conundrum w/Google Sites (presumably others where ifram is involved) - understanding inPrivate

I've created a site using google sites (www.dtc-leads.com). There's an embedded presentation on the site, which works fine in FF, Chrome, & Safari, but.... not IE. Instead I get a notice that, ...
0
votes
0answers
117 views

Adding facebook comments on a google sites using xml

I'm using the following code to enable facebook comments box on a google site <?xml version="1.0" encoding="UTF-8" ?> <Module> <ModulePrefs title="__UP_title__" ...
0
votes
0answers
36 views

Is it possible to allow a Google gadget that is embedded in a Google Sites page to “Pop-Out” into an external window?

I have a site at Google Sites, and I am using a qwebirc Google Gadget to provide access to IRC. I would like to be able to allow users to have the option to "pop-out" the gadget into a new window. ...
0
votes
0answers
44 views

How to upload an image using the Google Sites API without it being shown as an attachment on the page

If an image is inserted using the GUI in Google Sites it will be attached to the page but it is not shown as an attachment on the page. I would like to do the same using the Java API. I tried to ...
0
votes
1answer
44 views

Construct the url to fetch a page by url

With this code I create a page in a Google site: pageEntry = new WebPageEntry(); pageEntry.setTitle(new PlainTextConstruct(PageTitle)); .. .. client.insert(new URL(getContentFeedUrl()), pageEntry); ...
0
votes
0answers
31 views

Where we find the Update Google Sites APIs for .NET?

http://code.google.com/apis/sites/docs/1.0/developers_guide_java.html#UpdatingPageFile ContentFeed contentFeed = client.getFeed( new URL(buildContentFeedUrl() + "?kind=listpage"), ...
0
votes
0answers
58 views

How we can Update google Site WebPage Using Google-Site-API?

I am using the Following code. public AtomEntry createWebPage(String title, String html, String pageName) { SiteEntry entry = new SiteEntry(); AtomCategory category = new ...
0
votes
0answers
47 views

Google Sites - error to update a web page

I am trying to update (add/delete) a webpage using Google Site with its Python API. I am using the following code: try: entry = client.CreatePage('webpage', 'xxx', html=htmlData) except ...
0
votes
0answers
20 views

Google Site creation using .Net

Any one help me to how to create a site by using google Site API. I am working on Google Site API with C#. Following is my code. public void CreateSite(String Title, string Summary) { ...
0
votes
1answer
73 views

gdata internal error

Since yesterday a working Python gdata program has stopped working after I changed the IP address used. I receive the following stack trace: Traceback (most recent call last): File ...
0
votes
1answer
75 views

need some direction on google sites developement

Some companies are use google sites ( sites.google.com ) as their intranet. I want to do some development to develop a webapp on google sites based on a a webapp we already have (with webservices , ...
0
votes
0answers
98 views

Google sites api “real” html?

How can I retrieve content from Google Sites using the API and display this content as "real" html without their namespace? The html that is returned looks like: <html:div>div content, nested ...
0
votes
1answer
132 views

How can I create new folders in file cabinets using Google Sites API and C#

Can you please guide me in creation of folders in file cabinets using the Google sites API. Thanks in advance...
0
votes
1answer
41 views

Error while uploading atatchment to Google Sites

Using the following code to upload an attachment to Google site, but I am getting an error as "Insert requests must contain an entry". I am using the code below: FileInfo info = new ...
0
votes
2answers
181 views

Upload file to a Google Site from C# Code

Any idea of how to upload a file to Google site from c#? I am trying to upload but getting a 403 error. However, I am using the same credentials to connect to the site and get the list of attachments ...
0
votes
2answers
223 views

Google Site creation using .Net

I am working on a C# application to create a Google Site, but I am unable to find any sample code for it. Any help in C# or VB.Net will be greatly appreciated. Please help!!! Thanks to all...
0
votes
0answers
159 views

How to add forward/back command in an “iframe” of a google gadget

I want to add navigation command to "iframe" of a google gadget. I know this works for normal website <input type="button" value="Back" onclick="iframe_name.history.back()"> <input ...
0
votes
2answers
166 views

How to set up an Eclipse P2 server using Google Sites?

I'm trying to use Google Sites to host an Eclipse P2 site. However, Install New Software fails to the site because the features and plugins directories are not found. It seems that Google Sites ...
0
votes
2answers
169 views

How can I convert a Google Site to PDF or ODF?

I created a documentation site on Google Docs, and now I have to hand in that Docs. I need all pages in the site converted to PDF to take to a print, and I'm now realizing that GDocs has no "export as ...
0
votes
1answer
144 views

Samples of “Google Sites”

my client would like to use Google sites. They have fairly complex design requirements. Can anybody point to any examples of decent designs using Google Sites? I'm wondering how far it can be pushed. ...
0
votes
1answer
57 views

how do i specify psedo class attributes inline?

This wiki I'm using (Google Sites) does not support linking of style sheets or even tags in its HTML mode (It sucks, I know). The only way to specify styles is to define them inline. I need to put a ...
0
votes
1answer
489 views

Developing websites using Google Sites API in Java and Eclipse

Actually my work is, I want to create a simple site using java programming. After search i came to know about google sites api, and i got all sample programs for google sites creation, But i dont know ...
0
votes
1answer
105 views

Google Site Data fetching

Hail! I want to fetch image from NOT PUBLIC Google Site's page. I'm using WebClient for this purposes. var uri = new Uri("http://sites.google.com/a/MYDOMAIN.COM/SITENAME/" + ...
0
votes
1answer
598 views

Invalid Authsub token in Google sites for apps

I do not get any error while trying to access feed content for google sites from application hosted on gmail authenticated account. But I get Token invalid - Invalid AuthSub token. when I try to ...
0
votes
2answers
1k views

Create Dynamic pages in asp.net mvc

I need to integrate the functionality of creating dynamic pages (like google sites) to my regular asp.net mvc(C#) application. I like to write my own code with database. Any suggestions or reference ...
0
votes
1answer
590 views

Google site page in an iframe

I'm building a quite large Flex application as our administration tools and I need build in documentation functionality. I want this documentation to be like a wiki and as we're using Google apps I ...

1 2