Giter VIP home page Giter VIP logo

dropthings's People

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar

dropthings's Issues

RSS Widget requires authentication

I have this RSS widget that retrieves the content from another site that 
requires login. The url that I specified for the RSS widget 
programmatically logs the user in and redirect the user to the rss page.
If I just typed in the url manually to an IE browser, everything seems to 
work just fine; however when the 'WebRequest' in RSSWidget tries to 
retrieve the content, it just fails to retrieve anything.

Any idea what went wrong?
Is there a way to be able to auto login a user and then retrieve the rss 
feed?

Thanks


Original issue reported on code.google.com by [email protected] on 6 Aug 2009 at 12:06

Problem adding a new teme

What steps will reproduce the problem?
1. I tried to add an additional Theme to Dropthings. 
2. I added a New theme folder in the App_Themes folder
3. I changed the Theme in the default.aspx page, but the theme template 
isn't applied

What is the expected output? What do you see instead?
Is there additional step to do this ? did I missed something ?



Original issue reported on code.google.com by [email protected] on 18 Mar 2009 at 9:21

Widget cannot be moved back to first column

What steps will reproduce the problem?
1. start with a blank tab
2. add a widget to column one, move widget to column two
3. try moving widget back to column one - will not work

What is the expected output? What do you see instead?


Please use labels and text to provide additional information.


Original issue reported on code.google.com by [email protected] on 14 Apr 2009 at 2:26

"Sys.Net.WebServiceFailedException" when you change the page layout

When you change the column layout on your page, you can obtain this 
exception :
"Sys.Net.WebServiceFailedException: The server method 'ChangePageLayout' 
failed with the following error : 
Dropthings.Business.Exceptions.WorkflowException-- The sequence contains 
several elements."

Let me describe the problem :
Initially (with a clean database), if you change the layout from a 3-
columns to a 2-columns, or from a 2-columns to a 2-columns, or from a 2-
columns to a 1-column, you have no problem.
It's the same from 1 to 2, from 2 to 2, and from 2 to 3.
The problem arrives if you have a 1-column layout and you change to a 3-
columns layout. It seems to work, but after that, if you try to change the 
layout, you obtain the exception described above.

What happens? Look at the database with this request:

SELECT
P.Title  'Page title',
P.LayoutType    'Page layout',
P.ColumnCount 'Number of columns',
C.ColumnNo   'Column n°',
W.Title  'Column title',
W.UniqueID   'Column ID'
FROM
[aspnet_Users] U
INNER JOIN
[PAGE] P
ON
U.UserId = P.UserId
INNER JOIN
[COLUMN] C
ON 
C.PAGEID = P.ID
INNER JOIN
[WIDGETZONE] W
ON 
W.ID = C.WidgetZoneID
WHERE
U.UserName = '_PUT_THE_USERNAME_HERE_'
ORDER BY
P.TITLE,
C.COLUMNNO

You can see that SQL tables Column and WidgetZone have some problems. When 
you change the layout from 1-column to 3-columns:
- Column : columns number are 0-2-2 instead of 0-1-2
- WidgetZone : Titles and UniqueID are 'Column 1'-'Column 3'-'Column 3' 
instead of 'Column 1'-'Column 2'-'Column 3'

How can you fix that?
The problem is in the ModifyPageLayoutWorkflow. The column counter is not 
well calculated.
You have to modify these methods: 
- IncreaseColumnCounter_ExecuteCode
- DecreaseColumnCounter_ExecuteCode
- SetCounters_ExecuteCode

private void IncreaseColumnCounter_ExecuteCode(object sender, EventArgs e)
{
this.ColumnCounter++;
this.NewColumnNo++;
}

private void DecreaseColumnCounter_ExecuteCode(object sender, EventArgs e)
{
this.ColumnCounter--;
if (this.ColumnCounter < 0)
this.ColumnCounter = 0;

this.NewColumnNo--;
if (this.NewColumnNo < 0)
this.NewColumnNo = 0;
}

private void SetCounters_ExecuteCode(object sender, EventArgs e)
{
this.ColumnCounter = this.ExistingColumns.Count - 1;
if (this.NewColumnNo == 0)
this.NewColumnNo = this.ExistingColumns.Count;
else
this.NewColumnNo++;
}

And you have to update the database for having correct data:
- Column table : update to have the correct sequence of ColumnNo 0-1-2
- WidgetZone : you can let it in peace. next time you change the layout, it 
will be fixed

Now, you can safely change the layout, even if the difference between the 
initial layout and the new one is greater that 1...

Original issue reported on code.google.com by [email protected] on 7 Apr 2009 at 8:25

Attachments:

WeatherWidget.ascx.cs State element is not saved

What steps will reproduce the problem?
1. Change the zip in the weather widget
2. Refresh the page and it goes back to hard coded value
3.

What is the expected output? What do you see instead?
the control should keep the weather zip

What version of the product are you using? On what operating system?
2.3.1 , xp, ff 3.5, ie 8

Please provide any additional information below.
will have to correct the way the information is pulled for zip and the url
similar to omar's rss feed widget.  previous method above does not use
SaveState properly


Original issue reported on code.google.com by [email protected] on 24 Jul 2009 at 8:56

register new user error

What steps will reproduce the problem?
1. login in
2. enter user name & password
3. Register

What is the expected output? What do you see instead?
==>correct output

What version of the product are you using? On what operating system?
==>online version

Please provide any additional information below.


Original issue reported on code.google.com by [email protected] on 29 Jul 2009 at 8:26

Attachments:

All Widgets Squized to first column after postback on Internet Explorer 6.

What steps will reproduce the problem?
1. Open portal in IE6, click on a few widget that would postback data. 
2. All widgets moved to the first column.
3.

What is the expected output? What do you see instead?
All widgets moved to the first column. 

What version of the product are you using? On what operating system?
2.1. Hosted on Windows Server 2008, IIS 7.

Please provide any additional information below.


Original issue reported on code.google.com by [email protected] on 14 Jul 2009 at 5:45

Unable to adjust the height of the widget

What steps will reproduce the problem?
1. Add a widget which has the toggle to increase/decrease the height of the
widget.
2. Drag the toggle to increase/decrease the height.

What is the expected output? What do you see instead?
I expect the height of the widget can be adjusted by dragging the toggle up
and down.
Instead, I saw a javascript error pops up, 'Line:295 Error:options.handles
is null or not an object (MyFramework.js)

What version of the product are you using? On what operating system?
This happens in: http://dropthings.omaralzabir.com/

Please provide any additional information below.


Original issue reported on code.google.com by [email protected] on 22 Apr 2009 at 7:22

Widget Restoring is not working

What steps will reproduce the problem?
1. Maximize widget.
2. Click on Restore icon.
3. Icon is changed to maximize icon but widget is not restored. If we
refresh page, it is displayed properly in restored state.

What is the expected output? What do you see instead?
Widget should be restored on restore icon click.

What version of the product are you using? On what operating system?
Version: Dropthings-2.1-Src1
Operating system: Windows Server 2003

Please provide any additional information below.


Original issue reported on code.google.com by [email protected] on 17 Jun 2009 at 5:46

close edit on widget - breaks

What steps will reproduce the problem?
1. Load New Source Code and dB
2. Open in web browser
3. Click Edit on Weather Widget
4. Change Zip Code
5. Click Save
6. Content is updated successfully
7. click 'close edit' does not revert back to 'edit' link
8. click 'close edit' and error bubbles up

What is the expected output? What do you see instead?
'close edit' link hides settings panel and link returns to 'edit'

Settings panel does not hide on other widget such as HTML widget.

Error

Webpage error details

User Agent: Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0;
.NET CLR 1.1.4322; .NET CLR 2.0.50727; InfoPath.2; .NET CLR 3.0.04506.648;
.NET CLR 3.5.21022; MS-RTC LM 8; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)
Timestamp: Fri, 24 Jul 2009 14:21:20 UTC


Message: Sys.WebForms.PageRequestManagerServerErrorException: An unknown
error occurred while processing the request on the server. The status code
returned from the server was: 500
Line: 5
Char: 62099
Code: 0
URI:
http://dropthings.omaralzabir.com/ScriptResource.axd?d=NRc8ZF5fG9BCEJxYHta1DN38D
CyDNxIQ2v_7sne0g2A1x4mGLCYytyWPC_gaxcR7RCzywGIKBIwftSE-sCYp0Ha6egWGyrOQzVemKgttV
Kk1&t=ffffffffd7199832



What version of the product are you using? On what operating system?
dropthings 2.3.1, xp pro also is broken at
http://dropthings.omaralzabir.com/Default.aspx

Please provide any additional information below.


Original issue reported on code.google.com by [email protected] on 24 Jul 2009 at 2:28

deorpthings tab and widget problem

 hello to all i am creating an application using drop things so now i have
created the usercontrols for the search as yahoo and google and put the
datalist to bind using the quary string so how can i put that control to
the widget when i click the button and i want when i click the search
button it will open a new tab and put the search result user control in it

Original issue reported on code.google.com by [email protected] on 22 May 2009 at 3:44

FastRssWidget is failing on attempt to edit

What steps will reproduce the problem?
1. Load default.aspx
2. Click "edit" in FastRssWidget
3. Get script error "Microsoft JScript runtime error: 
Sys.ScriptLoadFailedException: The script 'Widgets/FastRssWidget.js' could 
not be loaded."

What is the expected output? What do you see instead?

No script error

What version of the product are you using? On what operating system?

Last build from svn revision 33.
Windows Vista.

Looks like the following code in FastRssWidget.ascx.cs file makes browser 
to load the .js file after "edit" is clicked because OnPreRender is called.

FastRssWidget.js is already loaded through Scripts.ashx so theoretically 
it shold not be needed again.

I do not know the build deep enough yet to figure out the solution.

This is the code attaching the script after "edit" is clicked.

protected override void OnPreRender(EventArgs e)
    {
        base.OnPreRender(e);

        ScriptManager.RegisterClientScriptInclude(this,
                        typeof(Widgets_FastRssWidget),
                        "FastRssWidget",
                        this.ResolveClientUrl
(this.AppRelativeTemplateSourceDirectory + "FastRssWidget.js"));



Please provide any additional information below.


Original issue reported on code.google.com by [email protected] on 15 Apr 2009 at 2:01

Add-stuff menu layout buggy with Google Chrome

What steps will reproduce the problem?
1. Fresh install of Dropthings 2.0.2
2. Google Chrome on Vista computer
3. Click on add stuff

What is the expected output? What do you see instead?
Output should be as in Firefox / IE

What version of the product are you using? On what operating system?
Dropthings 2.0.2, Vista Professionnal

Please provide any additional information below.



Original issue reported on code.google.com by [email protected] on 17 Mar 2009 at 1:26

Attachments:

The file MyFramework.js was deleted from the project. DropthingsUI no longer exists anywhere.

What steps will reproduce the problem?
1. DropthingsUI no longer exists anywhere because MyFramework.js was 
deleted.
2. New release 2.2 of drophtings no longer works
3.

What is the expected output? What do you see instead?
We could not longer add widget (the panel didn't open), move widget...

What version of the product are you using? On what operating system?
Dropthing 2.2 on windows XP SP3

Please provide any additional information below.


Original issue reported on code.google.com by [email protected] on 15 Jun 2009 at 9:36

What does r34 mean?

I would like to get some clarity to why r34 
(http://code.google.com/p/dropthings/source/detail?r=34) is introduced to the 
project.
Thank you.


Original issue reported on code.google.com by [email protected] on 23 Jul 2009 at 5:27

Silverlight widget become blank when drag/drop

What steps will reproduce the problem?

1. When you drag and drop silverlight widget (digg for example), it become 
blank when drag/drop


Solution to this problem :

In my implementation of dropthings for poshboard, I used literaloutput 
instead of silverlight container in the widget aspx page, and call the 
classic html code for loading the xapfiles, and all is ok with silverlight 
drag/drop (and loading is fast)

I can provide some code samples on this if you think it's usefull for the 
main dropthings project ?

antoine



Original issue reported on code.google.com by [email protected] on 26 Feb 2009 at 11:16

Add new widget not working properly with existing maximized widgets.

What steps will reproduce the problem?
1. Add 2-3 Widgets. Maximize them.
2. Add another widget.
3. Now after adding another widget all maximized widgets are displayed
twice (one in maximize form and another in normal form).
If we refresh page then everything is displayed fine.

What is the expected output? What do you see instead?
Maximized widgets should not be repeated.

What version of the product are you using? On what operating system?
Version: Dropthings-2.1
OS: Windows Server 2003

Please provide any additional information below.


Original issue reported on code.google.com by [email protected] on 17 Jun 2009 at 5:16

Widget content does not reposition correctly

What steps will reproduce the problem?
1. Open site
2. Click add stuff 
3. Widget move down and their content does not.

What is the expected output? What do you see instead?
The Widget frame and content should move in unison. Widget frame moves and 
content remains unchanged until you mouse over it.

What version of the product are you using? On what operating system?
Latest version on Vista

Please provide any additional information below.


Original issue reported on code.google.com by [email protected] on 3 Mar 2009 at 7:51

Change Layout from 3 columns to 1 column then 1 to 3 didn't work

What steps will reproduce the problem?
1. Change layout from 3 columns to 1 column => Ok
2. Change layout from 1 column to 3 column => seem to be OK, but not in 
database.
3. Try to change layout from 3 columns to 1 columns didn't work, nothing 
happen (because there is an exception).

What is the expected output? What do you see instead?
the layout must change but nothing happen

What version of the product are you using? On what operating system?
Dropthings 2.2 on windows XP SP3.

Please provide any additional information below.
It is the same bug of previous versions, not in the same file.
The correction is to decrement the variable "newColumnNo". See line 287 in 
attached file "Facade.page.cs".

Please make the correction to remove this bug definitely.

Original issue reported on code.google.com by [email protected] on 15 Jun 2009 at 1:06

Attachments:

Failure to save permissions on ManageWidgetPermission.aspx

What steps will reproduce the problem?
1. Load ManageWidgetPermission.aspx in a browser
2. Click and checkbox to make a change
3. Click Save button on page

What is the expected output? What do you see instead?
Expected - records to be updated in database, possibly page refresh showing
messages indicated in code to acknowledge records are updated.

What happens is nothing. JavaScript error: Object Expected. In tracing the
MyFramework.js file and exception occurs at $('#Message').html('');

What version of the product are you using? On what operating system?
Version 2.0 (Apr 8, 2009 - unmodified). Tested on XP Pro 64, Vista 32 and
W2K8 64.

Please provide any additional information below.
Have tested this with and without MS DTC running to just to make sure it
wasn't a DTC error like the one that happens on password retrieval.

Original issue reported on code.google.com by [email protected] on 6 May 2009 at 1:55

Change the color of widget dynamic data


 Hi,

  I am using the code for developing our portal. I am customizing the 
widget and want to change the green color of the links of existing widgets.

 Kindly help in this regard. I have changed the css but does not reflect. 

Regards
Srinath

Original issue reported on code.google.com by [email protected] on 24 Jul 2009 at 4:00

Viewstate errors when widgets get moved and contain comboboxes and grids and

What steps will reproduce the problem?
1. create a widget that has comboboxes and grid controlos
2. add multiple of these widgets to a tab and move these around
3. when trying to make a selection that updates the grid viewstate error 
occur

What is the expected output? What do you see instead?
the expected out output is an updated grid, but get viewstate errors 
instead


What version of the product are you using? On what operating system?
v2.01 latest download from google

Please provide any additional information below.

using firebug here is bascially what happens 

Move the widget:
WidgetService.asmx/MoveWidgetInstance

followed by the following error

<html><h1>Error occured loading the page. Please ensure you have run the 
<a href='Setup.aspx'>Setup page
</a>.</h1><pre>System.Web.HttpException: Failed to load viewstate.  The 
control tree into which viewstate
 is being loaded must match the control tree that was used to save 
viewstate during the previous request
.  For example, when adding controls dynamically, the controls added 
during a post-back must match the
 type and position of the controls added during the initial request.
   at System.Web.UI.Control.LoadViewStateRecursive(Object savedState)
   at System.Web.UI.Control.LoadChildViewStateByIndex(ArrayList childState)
   at System.Web.UI.Control.LoadViewStateRecursive(Object savedState)
   at System.Web.UI.Control.LoadChildViewStateByIndex(ArrayList childState)
   at System.Web.UI.Control.LoadViewStateRecursive(Object savedState)
   at System.Web.UI.Control.LoadChildViewStateByIndex(ArrayList childState)
   at System.Web.UI.Control.LoadViewStateRecursive(Object savedState)
   at System.Web.UI.Control.LoadChildViewStateByIndex(ArrayList childState)
   at System.Web.UI.Control.LoadViewStateRecursive(Object savedState)
   at System.Web.UI.Control.LoadChildViewStateByIndex(ArrayList childState)
   at System.Web.UI.Control.LoadViewStateRecursive(Object savedState)
   at System.Web.UI.Control.LoadChildViewStateByIndex(ArrayList childState)
   at System.Web.UI.Control.LoadViewStateRecursive(Object savedState)
   at System.Web.UI.Control.LoadChildViewStateByIndex(ArrayList childState)
   at System.Web.UI.Control.LoadViewStateRecursive(Object savedState)
   at System.Web.UI.Control.LoadChildViewStateByIndex(ArrayList childState)
   at System.Web.UI.Control.LoadViewStateRecursive(Object savedState)
   at System.Web.UI.Control.LoadChildViewStateByIndex(ArrayList childState)
   at System.Web.UI.Control.LoadViewStateRecursive(Object savedState)
   at System.Web.UI.Control.AddedControl(Control control, Int32 index)
   at System.Web.UI.ControlCollection.Add(Control child)
   at WidgetInstanceZone.LoadWidgets() in 
http://server/clientwebnew/NET2/Portal/WidgetInstanceZone.ascx
.cs:line 74
   at WidgetPage.<>c__DisplayClass2.<SetupWidgetZones>b__1(Column column, 
Int32 index) in http://server
/ClientWebNew/NET2/Portal/WidgetPage.ascx.cs:line 85
   at ExtensionFunctions.Each[T](IList`1 list, Action`2 act) in 
http://server/ClientWebNew/App_Code/Portal
/ExtensionFunctions.cs:line 60
   at WidgetPage.SetupWidgetZones(String widgetContainerPath) in 
http://server/ClientWebNew/NET2/Portal
/WidgetPage.ascx.cs:line 65
   at WidgetPage.LoadWidgets(Page page, String widgetContainerPath) in 
http://server/ClientWebNew/NET2
/Portal/WidgetPage.ascx.cs:line 33
   at _Default.<CreateChildControls>b__1() in 
http://server/clientwebnew/NET2/Portal/Default.aspx.cs
:line 104
   at _Default.TrapDatabaseException(Action work) in 
http://server/clientwebnew/NET2/Portal/Default.aspx



Original issue reported on code.google.com by [email protected] on 7 Mar 2009 at 2:22

Guide to set windows authentication and direct mapping to dropthings user ?

I'm trying to set windows authentication on dropthings in order to 
automatically log the authenticated user to his corresponding account in 
the dropthings DB (with a creation of the account if it doesn't exist), 
without success.

There are some post on codeplex on this subject, but I didn't manage to get 
it work this way.

Can someone gives me some input on how to achieve this ?

thanks !




Original issue reported on code.google.com by [email protected] on 24 Mar 2009 at 1:57

theme problem when published

What steps will reproduce the problem?
1. after publishing in iis 6, design(theme) is not loading when accessing   
from another machine  
2. but its working  in server machine only when development server is 
running
3.

What is the expected output? What do you see instead?
 expected  Widgets with theme , but getting without theme and images

What version of the product are you using? On what operating system?
i'm using Dropthings-Src-v1.7.0 on windows xp professional with sp2 

Please provide any additional information below.



Original issue reported on code.google.com by [email protected] on 7 Mar 2009 at 6:42

Proyect doesn't run in IIS version 5.1

What steps will reproduce the problem?
1. I put Dropthings folder in wwwroot.
2. I open IIS and check in create, then click in explore button. 
3. It doesn't run ok because it shows a lot of mistakes.
One of them is because it shows sqlExcetions
"DROPTHINGS.MDF" because the database is read-only.

What is the expected output? What do you see instead?
the expected output is the same as Dropthings.com because I have tried it
in IIS Version 6.0 and it runs good.


What version of the product are you using? On what operating system?
I have used Dropthings-2.1-src now

Please provide any additional information below.


Original issue reported on code.google.com by [email protected] on 22 Jun 2009 at 3:23

3:05 09-04-2009

What steps will reproduce the problem?
1. Rename Page Title1 = Page Title2 --> Bug
2.
3.

What is the expected output? What do you see instead?


What version of the product are you using? On what operating system?


Please provide any additional information below.


Original issue reported on code.google.com by [email protected] on 9 Apr 2009 at 8:07

No maximizing/minimizing

What steps will reproduce the problem?
1. Maximizing/minimimizing widget via resprective image icon click.

What is the expected output? What do you see instead?
Widget maximizing/minimizing. Nothing happens , click is ignored.

What version of the product are you using? On what operating system?
Extracted from SVN. Windows XP SP2

Please provide any additional information below.


Original issue reported on code.google.com by [email protected] on 23 Feb 2009 at 1:48

Error on Default Page after registering new user.

What steps will reproduce the problem?
1. Browse dropthings.com
2. Register a user.
3. Error "System.InvalidOperationException: Sequence contains more than one
element at System.Linq.Enumerable.SingleOrDefault" is ancountered.

What is the expected output? What do you see instead?
Page should be browsed with out any errors.

What version of the product are you using? On what operating system?
Version: Dropthings-2.3
Operating system: Windows Server 2003

Please provide any additional information below.


Original issue reported on code.google.com by [email protected] on 29 Jun 2009 at 5:34

Attachments:

Dragging widget of the add panel removes it from the add panel

What steps will reproduce the problem?
1. add a widget by dragging it from the add panel
2. wideget gets removed from the add panel
3.

What is the expected output? What do you see instead?


Please use labels and text to provide additional information.


Original issue reported on code.google.com by [email protected] on 14 Apr 2009 at 2:29

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.